-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
48 lines (43 loc) · 1.55 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "sjs"
version = "1.5.5"
edition = "2021"
authors = ["Trin Wasinger"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
deno_runtime = "0.166.0"
tokio = { version = "1.28.1", features = ["full"] }
clap = { version = "4.5.0", features = ["cargo"] }
panic-message = "0.3.0"
backtrace = "0.3.64"
velcro = "0.5.4"
home = "0.5.9"
cache_control = "=0.2.0"
chrono = { version = "0.4", default-features = false, features = ["std", "serde"] }
base64 = "0.21.4"
once_cell = "1.17.1"
deno_ast = { version = "=0.39.2", features = ["transpiling"] }
deno_graph = "0.78.1"
deno_cache_dir = "=0.6.1"
rand = "0.8.5"
twox-hash = "1.6.3"
thiserror = "1.0.61"
import_map = { version = "0.19.0", features = ["ext"] }
data-url = "0.3.0"
or_panic = { git = "https://github.com/SteveBeeblebrox/or_panic.git" }
mtsc = { git = "https://github.com/SteveBeeblebrox/mtsc.git", features = ["preprocess","transpile"]}
# mtsc = { path = "../mtsc", features = ["preprocess", "transpile"]}
[build-dependencies]
deno_runtime = "0.166.0"
mtsc = { git = "https://github.com/SteveBeeblebrox/mtsc.git", features = ["preprocess","transpile"]}
# mtsc = { path = "../mtsc", features = ["preprocess", "transpile"]}
[patch.crates-io]
deno_core = { git = "https://github.com/SteveBeeblebrox/deno_core.git" }
deno_runtime = { git = "https://github.com/SteveBeeblebrox/deno.git" }
# deno_core = { path = "../deno_core/core" }
# deno_runtime = { path = "../deno/runtime" }
[profile.release]
opt-level = "z"
codegen-units = 1
lto = true
strip = "debuginfo"