-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (41 loc) · 1.17 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
49
50
[workspace]
resolver = "2"
members = ["kurtex_binding", "kurtex_cli"," kurtex_core"]
[workspace.package]
version = "0.1.0"
license = "MIT"
edition = "2021"
repository = "https://github.com/kurtexdev/kurtex"
[workspace.dependencies]
deno_ast = { version = "0.41.2", features = ["transpiling"] }
deno_core = { git = "https://github.com/kurtexdev/deno_core", branch = "remove_es_module_feat" }
reqwest = { version = "0.12.5" }
tokio = { version = "1.39.2", features = ["full", "tracing"] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = { version = "1.0.121" }
rccell = "0.1.3"
tokio-stream = "0.1.15"
nu-ansi-term = "=0.50.1"
log = "0.4.22"
deno_graph = "0.81.3"
hashbrown = { version = "0.14.5", features = ["rayon"] }
anyhow = { version = "1.0.86" }
# Local dependencies
kurtex_core = { path = "kurtex_core" }
kurtex_cli = { path = "kurtex_cli" }
kurtex_bindings = { path = "kurtex_binding" }
[profile.dev]
codegen-units = 16
debug = 2
incremental = true
panic = "abort"
[profile.release]
codegen-units = 1
debug = false
lto = "thin"
opt-level = 3
panic = "abort"
strip = true
[profile.release-prod]
inherits = "release"
lto = "fat"