mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
chore: Make the commit do by checksum. chore: Remove the logging at the start chore: use the defaults of the original. chore: Convert the error into just the source. chore: Remove some of the unwraps
45 lines
1.3 KiB
TOML
45 lines
1.3 KiB
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]
|
|
async-trait = "0.1.56"
|
|
dashmap = "5.3.4"
|
|
deno_core = "=0.136.0"
|
|
deno_ast = { version = "=0.15.0", features = ["transpiling"] }
|
|
dprint-swc-ext = "=0.1.1"
|
|
embassy_container_init = { path = "../embassy_container_init" }
|
|
reqwest = { version = "0.11.11" }
|
|
swc_atoms = "=0.2.11"
|
|
swc_common = "=0.18.7"
|
|
swc_config = "=0.1.1"
|
|
swc_config_macro = "=0.1.0"
|
|
swc_ecma_ast = "=0.78.1"
|
|
swc_ecma_codegen = "=0.108.6"
|
|
swc_ecma_codegen_macros = "=0.7.0"
|
|
swc_ecma_parser = "=0.104.2"
|
|
swc_ecma_transforms = "=0.154.0"
|
|
swc_ecma_transforms_base = "=0.85.4"
|
|
swc_ecma_transforms_classes = "=0.73.0"
|
|
swc_ecma_transforms_macros = "=0.3.0"
|
|
swc_ecma_transforms_proposal = "=0.107.0"
|
|
swc_ecma_transforms_react = "=0.114.1"
|
|
swc_ecma_transforms_typescript = "=0.117.2"
|
|
swc_ecma_utils = "=0.85.1"
|
|
swc_ecma_visit = "=0.64.0"
|
|
swc_ecmascript = "=0.157.0"
|
|
swc_eq_ignore_macros = "=0.1.0"
|
|
swc_macros_common = "=0.3.5"
|
|
swc_visit = "=0.3.0"
|
|
swc_visit_macros = "=0.3.1"
|
|
sha2 = "0.10.2"
|
|
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"
|