forked from gorules/zen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 764 Bytes
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 764 Bytes
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
[workspace]
resolver = "2"
members = [
"core/*",
"bindings/*"
]
[workspace.dependencies]
ahash = "0.8.6"
bincode = "2.0.0-rc.3"
bumpalo = "3.14.0"
chrono = "0.4.31"
criterion = "0.5.1"
fastrand = "2.0.1"
humantime = "2.1.0"
tokio = "1.38.0"
tokio-util = "0.7.11"
once_cell = "1.19.0"
petgraph = "0.6.4"
phf = "0.11.2"
regex = "1.10.2"
regex-lite = "0.1.5"
strum = "0.26.2"
strum_macros = "0.26.2"
serde = "1.0.195"
serde_json = "1.0.111"
itertools = "0.13.0"
rust_decimal = "1.33.1"
rust_decimal_macros = "1.33.1"
json_dotpath = "1.1.0"
anyhow = "1.0.79"
thiserror = "1.0.50"
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"
[patch.crates-io]
rquickjs-core = { git = "https://github.com/stefan-gorules/rquickjs.git", branch = "master" }