-
Notifications
You must be signed in to change notification settings - Fork 261
/
Cargo.toml
243 lines (239 loc) · 9.18 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
[profile.release]
debug = true
[workspace]
resolver = "2"
members = [
"bin/asset-sprayer-prompts",
"bin/cyclone",
"bin/forklift",
"bin/module-index",
"bin/pinga",
"bin/rebaser",
"bin/sdf",
"bin/veritech",
"lib/asset-sprayer",
"lib/audit-logs",
"lib/auth-api-client",
"lib/billing-events",
"lib/buck2-resources",
"lib/bytes-lines-codec",
"lib/config-file",
"lib/cyclone-client",
"lib/cyclone-core",
"lib/cyclone-server",
"lib/dal",
"lib/dal-macros",
"lib/dal-test",
"lib/data-warehouse-stream-client",
"lib/forklift-server",
"lib/module-index-client",
"lib/module-index-server",
"lib/nats-multiplexer",
"lib/nats-multiplexer-client",
"lib/nats-multiplexer-core",
"lib/nats-subscriber",
"lib/naxum",
"lib/naxum-api-types",
"lib/object-tree",
"lib/pending-events",
"lib/pinga-core",
"lib/pinga-server",
"lib/permissions",
"lib/rebaser-client",
"lib/rebaser-core",
"lib/rebaser-server",
"lib/sdf-server",
"lib/shuttle-core",
"lib/shuttle-server",
"lib/si-crypto",
"lib/si-data-nats",
"lib/si-data-pg",
"lib/si-data-spicedb",
"lib/si-events-rs",
"lib/si-firecracker",
"lib/si-frontend-types-rs",
"lib/si-hash",
"lib/si-layer-cache",
"lib/si-pkg",
"lib/si-pool-noodle",
"lib/si-posthog-rs",
"lib/si-runtime-rs",
"lib/si-service",
"lib/si-settings",
"lib/si-std",
"lib/si-test-macros",
"lib/telemetry-application-rs",
"lib/telemetry-http-rs",
"lib/telemetry-nats-rs",
"lib/telemetry-rs",
"lib/telemetry-utils-rs",
"lib/tokio-dedicated-executor",
"lib/veritech-client",
"lib/veritech-core",
"lib/veritech-server",
]
[workspace.package]
version = "0.1.0"
authors = ["System Initiative Inc. <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/systeminit/si"
edition = "2021"
rust-version = "1.82"
publish = false
[workspace.dependencies]
async-nats = { version = "0.36.0", features = ["service"] }
async-openai = "0.25.0"
async-recursion = "1.0.5"
async-trait = "0.1.79"
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-firehose = "1.46.0"
axum = { version = "0.6.20", features = ["macros", "multipart", "ws"] } # todo: upgrade this alongside hyper/http/tokio-tungstenite
base64 = "0.22.0"
blake3 = "1.5.1"
bollard = "0.16.1"
bytes = "1.6.0"
chrono = { version = "0.4.37", features = ["serde"] }
ciborium = "0.2.2"
clap = { version = "4.5.4", features = ["derive", "color", "env", "wrap_help"] }
color-eyre = "0.6.3"
colored = "2.1.0"
comfy-table = { version = "7.1.0", features = ["crossterm", "tty", "custom_styling"] }
config = { version = "0.14.0", default-features = false, features = ["toml"] }
console = "0.15.8"
convert_case = "0.6.0"
criterion = { version = "0.5.1", features = ["async_tokio"] }
crossbeam-channel = "0.5.12"
crossbeam-queue = {version = "0.3.10"}
darling = "0.20.10"
deadpool = { version = "0.10.0", features = ["rt_tokio_1"] }
deadpool-postgres = "0.12.1"
derive_builder = "0.20.0"
derive_more = "0.99.17"
devicemapper = { version = "=0.34.1" }
diff = "0.1.13"
directories = "5.0.1"
dyn-clone = "1.0.17"
fastrace = "0.7.3"
flate2 = "1.0.28"
futures = "0.3.30"
futures-lite = "2.3.0"
foyer = { version = "0.12.2", features = ["tracing"] }
fs4 = "0.11.0"
glob = "0.3.1"
hex = "0.4.3"
http = "0.2.12" # todo: upgrade this alongside hyper/axum/tokio-tungstenite/tower-http
hyper = { version = "0.14.28", features = ["client", "http1", "runtime", "server"] } # todo: upgrade this alongside http/axum/tokio-tungstenite/tower-http
hyperlocal = { version = "0.8.0", default-features = false, features = ["client"] } # todo: using the very latest of hyper client 1.x, we _may_ be able to phase this crate
iftree = "1.0.5"
include_dir = "0.7.4"
indexmap = { version = "2.2.6", features = ["serde", "std"] }
indicatif = "0.17.8"
indoc = "2.0.5"
inquire = "0.7.4"
itertools = "0.12.1"
jwt-simple = { version = "0.12.9", default-features = false, features = ["pure-rust"] }
krata-loopdev = "0.0.12"
lazy_static = "1.4.0"
manyhow = { version = "0.11.4", features = ["darling"] }
mime_guess = { version = "=2.0.4" } # TODO(fnichol): 2.0.5 sets an env var in build.rs which needs to be tracked, required by reqwest
miniz_oxide = { version = "0.7.2", features = ["simd"] }
names = { version = "0.14.0", default-features = false }
nix = { version = "0.27.1", features = ["fs", "mount", "process", "signal", "user"] }
nkeys = "0.4.0"
num_cpus = "1.16.0"
once_cell = "1.19.0"
open = "5.1.2"
opentelemetry = { version = "0.22.0", features = ["trace"] }
opentelemetry-otlp = { version = "0.15.0", features = ["metrics", "trace"] }
opentelemetry-semantic-conventions = "0.14.0"
opentelemetry_sdk = { version = "0.22.1", features = ["rt-tokio"] }
ordered-float = { version = "4.4.0", features = ["serde"] }
ouroboros = "0.18.3"
parking_lot = "0.12.3"
paste = "1.0.14"
pathdiff = "0.2.1"
petgraph = { version = "0.6.4", features = ["serde-1"] }
pin-project-lite = "0.2.13"
podman-api = "0.10.0"
postcard = { version = "1.0.8", features = ["use-std"] }
postgres-types = { version = "0.2.6", features = ["derive"] }
pretty_assertions_sorted = "1.2.3"
proc-macro2 = "1.0.79"
procfs = "0.16.0"
quote = "1.0.35"
rand = "0.8.5"
refinery = { version = "= 0.8.12", features = ["tokio-postgres"] }
regex = "1.10.4"
remain = "0.2.13"
reqwest = { version = "0.12.2", default-features = false, features = ["rustls-tls", "json", "multipart"] }
ring = "=0.17.5" # Upgrading this is possible, but a pain, so we don't want to pick up every new minor version (see: https://github.com/facebook/buck2/commit/91af40b66960d003067c3d241595fb53d1e636c8)
rust-s3 = { version = "0.34.0-rc4", default-features = false, features = ["tokio-rustls-tls"] }
rustls = { version = "0.22.3" }
rustls-native-certs = "0.7.0"
rustls-pemfile = { version = "2.1.1" }
sea-orm = { version = "1.1.0", features = ["sqlx-postgres", "runtime-tokio-rustls", "macros", "with-chrono", "debug-print"] }
self-replace = "1.3.7"
serde = { version = "1.0.197", features = ["derive", "rc"] }
serde-aux = "4.5.0"
serde_json = { version = "=1.0.125", features = ["preserve_order"] }
serde_path_to_error = { version = "0.1.16" }
serde_qs = "0.13.0"
serde_url_params = "0.2.1"
serde_with = "3.7.0"
serde_yaml = "0.9.33" # NOTE(nick): this has been archived upstream
sodiumoxide = "0.2.7"
spicedb-client = { version = "0.1.1", features = ["tls"] }
spicedb-grpc = "0.1.1"
stream-cancel = "0.8.2"
strum = { version = "0.26.2", features = ["derive"] }
syn = { version = "2.0.55", features = ["full", "extra-traits"] }
sysinfo = "0.32.0"
tar = "0.4.40"
tempfile = "3.10.1"
test-log = { version = "0.2.15", default-features = false, features = ["trace"] }
thiserror = "1.0.58"
thread-priority = "1.1.0"
time = "0.3.36"
tokio = { version = "1.37.0", features = ["full"] }
tokio-postgres = { version = "0.7.10", features = ["runtime", "with-chrono-0_4", "with-serde_json-1"] }
tokio-postgres-rustls = { version = "0.11.1" }
tokio-serde = { version = "0.9.0", features = ["json"] }
tokio-stream = { version = "0.1.15", features = ["sync", "time"] }
tokio-test = "0.4.4"
tokio-tungstenite = "0.20.1" # todo: pinning back from 0.21.0, upgrade this alongside hyper/http/axum/tokio-tungstenite,tower-http
tokio-util = { version = "0.7.10", features = ["codec", "rt"] }
tokio-vsock = { version = "0.4.0" }
toml = { version = "0.8.12" }
tower = { version = "0.4.13", features = ["full"] }
tower-http = { version = "0.4.4", features = ["compression-br", "compression-deflate", "compression-gzip", "cors", "trace"] } # todo: pinning back to 0.4.4, upgrade this alongside hyper/http/axum/tokio-tungstenite
tracing = { version = "0.1.40" }
tracing-opentelemetry = "0.23.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json", "std"] }
tracing-tunnel = "0.1.0"
trybuild = { version = "1.0.99", features = ["diff"] }
tryhard = "0.5.1"
ulid = { version = "1.1.2", features = ["serde"] }
url = { version = "2.5.0", features = ["serde"] }
uuid = { version = "1.8.0", features = ["serde", "v4"] }
version_check = "0.9.4"
vfs = "0.12.0"
vfs-tar = { version = "0.4.1", features = ["mmap"] }
webpki-roots = { version = "0.25.4" }
xxhash-rust = { version = "0.8.10", features = ["xxh3", "const_xxh3"] }
y-sync = { version = "0.4.0", features = ["net"] }
yrs = { version = "0.17.4" }
[patch.crates-io]
# pending a potential merge and release of
# https://github.com/softprops/hyperlocal/pull/53
hyperlocal = { git = "https://github.com/fnichol/hyperlocal.git", branch = "pub-unix-stream" }
# pending a potential merge and release of
# https://github.com/durch/rust-s3/pull/372
# Note that this helps us to narrow down the number of `ring`/`rustls` versions to 1 each
rust-s3 = { git = "https://github.com/ScuffleTV/rust-s3.git", branch = "troy/rustls" }
# pending merging of patches upstream
spicedb-client = { git = "https://github.com/systeminit/spicedb-client.git", branch = "si-stable" }
# pending merging of patches upstream
spicedb-grpc = { git = "https://github.com/systeminit/spicedb-client.git", branch = "si-stable" }
# pending a potential merge and release of
# https://github.com/jbg/tokio-postgres-rustls/pull/18
tokio-postgres-rustls = { git = "https://github.com/jbg/tokio-postgres-rustls.git", branch = "master" }