-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
73 lines (71 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[workspace.package]
version = "0.5.0-beta.4"
edition = "2021"
authors = ["fuxiaohei <fudong0797@gmail.com>"]
[workspace]
members = [
"land-cli",
"land-server",
"land-worker",
"lib/common",
"lib/core",
"lib/dao",
"lib/sdk",
"lib/sdk-macro",
"lib/vars",
"lib/wasm-gen",
"lib/wasm-host",
"lib/wasm-server",
]
default-members = ["land-cli"]
resolver = "2"
[workspace.dependencies]
# internal dependencies
land-common = { path = "lib/common" }
land-core = { path = "lib/core" }
land-dao = { path = "lib/dao" }
land-vars = { path = "lib/vars" }
land-sdk-macro = { path = "lib/sdk-macro" }
land-wasm-gen = { path = "lib/wasm-gen" }
land-wasm-host = { path = "lib/wasm-host" }
land-wasm-server = { path = "lib/wasm-server" }
# third-party dependencies
anyhow = "1.0.86"
async-trait = "0.1.81"
axum = "0.7.5"
chrono = "0.4.38"
clap = { version = "4.5.13", features = ["derive", "env"] }
http = "1.1.0"
lazy_static = "1.5.0"
metrics = "0.23.0"
md5 = "0.7.0"
once_cell = "1.19.0"
rand = "0.8.5"
reqwest = { version = "0.12.5", default-features = false, features = [
"stream",
"rustls-tls",
"json",
] }
rust-embed = { version = "8.5.0", features = [
"include-exclude",
"compression",
] }
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.122"
strum = { version = "0.26.3", features = ["derive"] }
time = { version = "0.3.36", features = ["local-offset"] }
tokio = { version = "1.39.2", features = ["full"] }
tower-http = { version = "0.5.2", features = [
"timeout",
"cors",
"fs",
"trace",
] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = [
"time",
"local-time",
"env-filter",
] }
uuid = { version = "1.10.0", features = ["v4"] }
walkdir = "2.5.0"