mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
* feat: move over to workspaces * chore: Move to libs * chore:fix(build): Compat * chore: fixing pr
18 lines
486 B
TOML
18 lines
486 B
TOML
[package]
|
|
name = "js_engine"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dashmap = "5.1.0"
|
|
deno_core = "0.136.0"
|
|
deno_ast = {version="0.15.0", features = ["transpiling"]}
|
|
models = {path = "../models"}
|
|
helpers = {path = "../helpers"}
|
|
serde = { version = "1.0.*", features = ["derive", "rc"] }
|
|
serde_json = "1.0.*"
|
|
tokio = { version = "1.*.*", features = ["full"] }
|
|
tracing = "0.1"
|