-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
54 lines (45 loc) · 1.13 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
51
52
[workspace]
resolver = "2"
members = [
"zhang-core",
"zhang-ast",
"zhang-server",
"zhang-cli",
"extensions/*",
"bindings/python",
"bindings/wasm",
]
default-members = [
"zhang-core",
"zhang-ast",
"zhang-server",
"zhang-cli",
"extensions/*",
"bindings/python",
]
[workspace.dependencies]
base64 = "0.22"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
tokio = { version = "1", features = ['macros', "tracing", "signal", "rt-multi-thread"] }
tokio-util = { version = "0.7", features = ["io", "compat"] }
log = "0.4"
itertools = "0.12"
strum = { version = "0.26", features = ["derive"] }
bigdecimal = { version = "0.4", features = ["serde"] }
indexmap = { version = "2.2", features = ["serde"] }
axum = { version = "0.7", features = ["macros", "multipart"] }
bytes = "1.6.0"
chrono-tz = "0.8"
http = "1.1"
async-trait = "0.1"
pest = "2.1"
pest_consume = "1.1"
pest_derive = "2.1"
openssl = { version = "0.10", features = ["vendored"] }
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"