-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (69 loc) · 2.9 KB
/
Copy pathCargo.toml
File metadata and controls
73 lines (69 loc) · 2.9 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
62
63
64
65
66
67
68
69
70
71
72
73
[workspace]
exclude = [
"apps/decodex",
"apps/decodex-app",
"spikes/gpui",
]
members = [
"apps/decodex-cli",
"apps/decodex-gpui",
"apps/decodex-publisher",
"apps/decodexd",
"apps/radar",
"crates/decodex-app-client-ffi",
"crates/decodex-codex",
"crates/decodex-core",
"crates/decodex-postgres",
"crates/decodex-protocol",
"crates/decodex-runtime",
]
resolver = "3"
[workspace.package]
authors = ["Xavier Lau <x@acg.box>"]
description = "Decodex runtime, static site, and local operator tooling."
edition = "2024"
homepage = "https://decodex.space"
license = "GPL-3.0"
repository = "https://github.com/hack-ink/decodex"
version = "0.2.0"
[workspace.dependencies]
decodex-codex = { path = "crates/decodex-codex" }
decodex-core = { path = "crates/decodex-core" }
decodex-postgres = { path = "crates/decodex-postgres" }
decodex-protocol = { path = "crates/decodex-protocol" }
decodex-runtime = { path = "crates/decodex-runtime" }
base64 = { version = "0.22" }
clap = { version = "4.6", features = ["derive"] }
color-eyre = { version = "0.6" }
core-foundation = { version = "=0.10.0" }
futures-util = { version = "0.3.32" }
getrandom = { version = "=0.4.2" }
globset = { version = "0.4" }
gpui = { git = "https://github.com/hack-ink/zed.git", rev = "92f315647f776854053fc334b73110d97964bc5f", default-features = false }
gpui_platform = { git = "https://github.com/hack-ink/zed.git", rev = "92f315647f776854053fc334b73110d97964bc5f", default-features = false, features = ["font-kit"] }
libc = { version = "0.2" }
regex = { version = "1.12" }
reqwest = { version = "0.13", default-features = false, features = ["blocking", "json", "rustls"] }
rusqlite = { version = "0.40", features = ["bundled"] }
rustix = { version = "=1.1.4", features = ["fs"] }
security-framework = { version = "=3.7.0", default-features = false, features = ["OSX_10_15"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
sha1 = { version = "0.11" }
sha2 = { version = "0.11" }
tempfile = { version = "3.27" }
time = { version = "0.3", features = ["formatting"] }
tokio = { version = "1.52.3", features = ["macros", "net", "rt-multi-thread", "signal", "sync", "time"] }
tokio-postgres = { version = "=0.7.18" }
tokio-tungstenite = { version = "0.29" }
toml = { version = "1.1" }
toml_edit = { version = "0.25" }
tracing = { version = "0.1" }
tracing-appender = { version = "0.2" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
vergen-gitcl = { version = "10.0", features = ["cargo"] }
wait-timeout = { version = "0.2.1" }
zeroize = { version = "1.9" }
[profile.final-release]
inherits = "release"
lto = true