-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
128 lines (125 loc) · 3.58 KB
/
Cargo.toml
File metadata and controls
128 lines (125 loc) · 3.58 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[workspace]
resolver = "2"
members = ["backend", "logger", "runner", "init", "cloud-hypervisor-client"]
[workspace.dependencies]
secretspec = "0.3.1"
secretspec-derive = "0.3.1"
axum = "0.8"
axum-extra = { version = "0.10.0", features = ["json-lines"] }
axum-typed-websockets = { version = "0.6.0", git = "https://github.com/cachix/axum-typed-websockets" }
async-stream = "0.3.6"
async-trait = "0.1.88"
base64 = "~0.7.0"
bytes = "1.9.0"
cached = "0.55.1"
cc = "1.0"
cfg-if = "1.0.0"
chrono = { version = "0.4.38", features = ["serde"] }
clap = { version = "4.5.20", features = ["derive", "env"] }
color-eyre = "0.6.3"
diesel = { version = "2.2.10", features = [
"uuid",
"time",
"chrono",
"serde_json",
] }
diesel-async = { version = "0.5.1", features = [
"async-connection-wrapper",
"deadpool",
"postgres",
"tokio-postgres",
] }
diesel_migrations = { version = "2.2.0", features = ["postgres"] }
digest = "0.10.7"
devenv = { git = "https://github.com/cachix/devenv", branch = "main" }
eyre = "0.6.12"
futures = "0.3.31"
futures-util = "0.3.31"
gen_passphrase = { version = "0.1.1", features = ["eff_large"] }
generic-array = "1.1.0"
hex = "0.4.3"
hmac = "0.12.1"
http = "~0.2"
http-body-util = { version = "0.1.2" }
hyper = { version = "^1.3.1", features = ["full"] }
hyper-util = { version = "0.1.5", features = [
"client",
"client-legacy",
"http1",
"http2",
] }
hyperlocal = "0.9.1"
jsonwebtoken = "9.3.0"
libc = "0.2.153"
metrics-prometheus = "0.10.0"
octocrab = "0.44.0"
pin-project = "1.1.8"
posthog-rs = "0.3.5"
prometheus = "0.14.0"
reqwest = { version = "0.12.12", features = [
"stream",
"json",
"rustls-tls-webpki-roots",
] }
rustls = "0.23.4"
sentry = "0.37.0"
sentry-tower = { version = "0.37.0", features = [
"axum",
"axum-matched-path",
"http",
] }
sentry-tracing = "0.37.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_repr = "^0.1"
serde_yaml = "0.9.27"
sha2 = "0.10.8"
slatedb = "0.10.0"
strum = "0.27"
strum_macros = "0.27"
sysinfo = "0.34.2"
tempfile = "3.14.0"
thiserror = "2.0.3"
time = { version = "0.3.37", features = ["formatting"] }
tokio = { version = "1.41.1", features = [
"rt-multi-thread",
"full",
"macros",
"sync",
] }
tokio-stream = "0.1.17"
tokio-tungstenite = "0.26.2"
toml = "0.8.19"
tower = "0.5.1"
tower-http = { version = "0.6.2", features = ["catch-panic", "trace", "cors"] }
tracing = { version = "0.1.40", features = ["valuable"] }
tokio-vsock = "0.7.1"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt", "json", "valuable"] }
valuable = { version = "0.1", features = ["derive"] }
tracing-error = "0.2.1"
# https://github.com/tokio-rs/console/pull/623
tonic = "0.13"
url = { version = "2.5.4", features = ["serde"] }
utoipa = { version = "5.3.1", features = ["chrono", "uuid"] }
utoipa-axum = "0.2"
uuid = { version = "1.11.0", features = ["v7", "serde"] }
which = "7.0.2"
zitadel = { git = "https://github.com/cachix/zitadel-rust", branch = "cachix", features = ["api", "axum", "actions-v3"] }
gix = { version = "0.71.0", features = [
"worktree-mutation",
"blocking-network-client",
"blocking-http-transport-reqwest-rust-tls",
] }
signal-hook = "0.3.17"
nix = { version = "0.29.0", features = ["fs", "hostname", "mount"] }
fs_extra = "1.3.0"
prost = "0.13"
backon = "1.5"
tokio-shutdown = { git = "https://github.com/cachix/devenv", branch = "main" }
# MacOS-specific dependencies
block2 = "0.6"
dispatch2 = "0.3.0"
objc2 = { version = "0.6", features = ["std", "exception"] }
objc2-app-kit = "0.3"
objc2-foundation = "0.3"
objc2-virtualization = "0.3"