mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
* feat: fetch effect * fix: Make not available in sandbox * chore: Update to use text(), and to use headers * chore: use the postman echo for testing * chore: add json * chore: Testing the json * chore: Make the json lazy
42 lines
1.2 KiB
TOML
42 lines
1.2 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]
|
|
dashmap = "5.1.0"
|
|
deno_core = "=0.136.0"
|
|
deno_ast = {version="=0.15.0", features = ["transpiling"]}
|
|
dprint-swc-ext = "=0.1.1"
|
|
reqwest = { version = "0.11.4" }
|
|
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"
|
|
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"
|