-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (57 loc) · 1.62 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (57 loc) · 1.62 KB
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
[workspace]
resolver = "2"
members = [
"apps/cli",
"apps/tui",
"apps/local-server",
"apps/desktop/src-tauri",
"modules/brand",
"modules/protocol",
"modules/kernel",
"modules/runtime",
"modules/extensions",
"modules/compat",
"modules/store",
"modules/testkit",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
license = "MIT"
repository = "https://github.com/universea/ccodex"
[workspace.dependencies]
anyhow = "1"
async-trait = "0.1"
clap = { version = "4", features = ["derive", "env"] }
crossterm = "0.28"
dirs = "6"
futures = "0.3"
glob = "0.3"
pretty_assertions = "1"
ratatui = "0.29"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
rusqlite = { version = "0.32", features = ["bundled", "time"] }
schemars = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
time = { version = "0.3", features = ["formatting", "macros", "parsing", "serde"] }
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = "0.24"
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
thiserror = "2"
tungstenite = "0.24"
ulid = { version = "1", features = ["serde"] }
ccodex-brand = { path = "modules/brand" }
ccodex-protocol = { path = "modules/protocol" }
ccodex-kernel = { path = "modules/kernel" }
ccodex-runtime = { path = "modules/runtime" }
ccodex-extensions = { path = "modules/extensions" }
ccodex-compat = { path = "modules/compat" }
ccodex-store = { path = "modules/store" }
ccodex-testkit = { path = "modules/testkit" }
[profile.release]
lto = "thin"
strip = true