Skip to content

Commit 88555a3

Browse files
committed
start, move all dependencies to workspace Cargo.toml and depend on them from there
1 parent 5170034 commit 88555a3

File tree

69 files changed

+1674
-1411
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+1674
-1411
lines changed

Cargo.toml

Lines changed: 261 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,267 @@ resolver = "2"
8080
edition = "2021"
8181
rust-version = "1.68.2"
8282

83+
[workspace.dependencies]
84+
anyhow = "1.0.66"
85+
arrow2 = "0.16.0"
86+
askama = { version = "0.11.1", default-features = false }
87+
assert_cmd = "2.0.5"
88+
aho-corasick = "0.7.20"
89+
async-compression = "0.3.15"
90+
async-stream = "0.3.3"
91+
async-trait = "0.1.68"
92+
atty = "0.2.14"
93+
aws-config = { version = "0.55", default-features = false }
94+
aws-credential-types = "0.55"
95+
aws-sdk-s3 = { version = "0.26", default-features = false }
96+
aws-sdk-sts = { version = "0.26", default-features = false }
97+
aws-types = "0.55"
98+
axum = "0.6.7"
99+
backtrace = "0.3.66"
100+
base64 = "0.13.1"
101+
bincode = "1.3.3"
102+
bitflags = "1.3.2"
103+
byteorder = "1.4.3"
104+
bytes = "1.3.0"
105+
bytefmt = "0.1.7"
106+
bytesize = "1.1.0"
107+
cc = "1.0.78"
108+
cfg-if = "1.0.0"
109+
csv = "1.1.6"
110+
chrono = { version = "0.4.23", default-features = false }
111+
chrono-tz = "0.8.1"
112+
clap = "3.2.24"
113+
columnation = { git = "https://github.com/frankmcsherry/columnation" }
114+
compile-time-run = "0.2.12"
115+
console-subscriber = { git = "https://github.com/MaterializeInc/tokio-console.git" }
116+
const_format = "0.2.30"
117+
crc32fast = "1.3.2"
118+
csv-core = "0.1.10"
119+
criterion = "0.4.0"
120+
crossbeam = "0.8.2"
121+
crossbeam-channel = "0.5.8"
122+
ctor = "0.1.26"
123+
datadriven = "0.6.0"
124+
deadpool-postgres = "0.10.3"
125+
dec = "0.4.8"
126+
derivative = "2.2.0"
127+
differential-dataflow = { git = "https://github.com/TimelyDataflow/differential-dataflow.git" }
128+
digest = "0.10.6"
129+
dirs = "4.0.0"
130+
either = "1.8.0"
131+
encoding = "0.2.0"
132+
enum_dispatch = "0.3.11"
133+
enum-iterator = "1.2.0"
134+
enum-kinds = "0.5.1"
135+
fail = "0.5.1"
136+
fallible-iterator = "0.2.0"
137+
fast-float = "0.2.0"
138+
flate2 = "1.0.24"
139+
futures = "0.3.25"
140+
futures-core = "0.3.25"
141+
futures-task = "0.3.25"
142+
futures-util = "0.3.25"
143+
globset = "0.4.9"
144+
h2 = "0.3.13"
145+
headers = "0.3.8"
146+
hex = "0.4.3"
147+
hex-literal = "0.3.4"
148+
hmac = "0.12.1"
149+
http = "0.2.8"
150+
humantime = "2.1.0"
151+
hyper = "0.14.23"
152+
hyper-openssl = "0.9.2"
153+
hyper-tls = "0.5.0"
154+
include_dir = "0.7.3"
155+
indexmap = { version = "1.9.1", default-features = false }
156+
indicatif = "0.17.2"
157+
itertools = "0.10.5"
158+
jsonwebtoken = "8.2.0"
159+
junit-report = "0.7.1"
160+
k8s-openapi = "0.16.0"
161+
kube = "0.77.0"
162+
launchdarkly-server-sdk = { git = "https://github.com/MaterializeInc/rust-server-sdk", default_features = false }
163+
libc = "0.2.138"
164+
maplit = "1.0.2"
165+
md-5 = "0.10.5"
166+
mysql_async = "0.31.2"
167+
mime = "0.3.16"
168+
native-tls = "0.2.11"
169+
nix = "0.26.1"
170+
num = "0.4.0"
171+
num_cpus = "1.14.0"
172+
num_enum = "0.5.7"
173+
num-derive = "0.3"
174+
num-traits = "0.2.15"
175+
once_cell = "1.16.0"
176+
open = "3.2.0"
177+
openssh = { version = "0.9.8", default-features = false }
178+
openssh-mux-client = "0.15.5"
179+
openssl = "0.10.48"
180+
openssl-probe = "0.1.2"
181+
openssl-sys = "0.9.80"
182+
opentelemetry = { git = "https://github.com/MaterializeInc/opentelemetry-rust.git" }
183+
opentelemetry-otlp = { git = "https://github.com/MaterializeInc/opentelemetry-rust.git" }
184+
ordered-float = "3.4.0"
185+
os_info = "3.5.1"
186+
parquet2 = { version = "0.17.1", default-features = false }
187+
paste = "1.0.11"
188+
pin-project = "1.0.12"
189+
phf = "0.11.1"
190+
phf_codegen = "0.11.1"
191+
polonius-the-crab = "0.3.1"
192+
postgres = { git = "https://github.com/MaterializeInc/rust-postgres" }
193+
postgres_array = { git = "https://github.com/MaterializeInc/rust-postgres-array" }
194+
postgres-openssl = { git = "https://github.com/MaterializeInc/rust-postgres" }
195+
postgres-protocol = { git = "https://github.com/MaterializeInc/rust-postgres" }
196+
pprof = "0.11.1"
197+
predicates = "2.1.4"
198+
proc-macro2 = "1.0.47"
199+
prometheus = { version = "0.13.3", default-features = false }
200+
proptest = { git = "https://github.com/MaterializeInc/proptest.git", default-features = false, features = ["std"] }
201+
proptest-derive = { git = "https://github.com/MaterializeInc/proptest.git" }
202+
prost = "0.11.9"
203+
prost-build = "0.11.9"
204+
prost-reflect = "0.9.2"
205+
protobuf-native = "0.2.1"
206+
protobuf-src = "1.1.0"
207+
quote = "1.0.23"
208+
rand = "0.8.5"
209+
rdkafka = { git = "https://github.com/MaterializeInc/rust-rdkafka.git" }
210+
rdkafka-sys = { git = "https://github.com/MaterializeInc/rust-rdkafka.git" }
211+
regex = "1.7.0"
212+
regex-syntax = "0.6.28"
213+
reqwest = "0.11.13"
214+
rlimit = "0.8.3"
215+
rpassword = "7.2.0"
216+
rocksdb = { version = "0.21.0", default-features = false }
217+
ryu = "1.0.12"
218+
schemars = "0.8.11"
219+
scopeguard = "1.1.0"
220+
security-framework = "2.7.0"
221+
segment = { version = "0.2.1", default-features = false }
222+
semver = "1.0.16"
223+
sentry = "0.29.1"
224+
sentry-tracing = "0.29.1"
225+
serde = "1.0.152"
226+
serde_json = "1.0.89"
227+
serde_plain = "1.0.1"
228+
serde_regex = "1.1.0"
229+
serde_urlencoded = "0.7.1"
230+
sha1 = "0.10.5"
231+
sha2 = "0.10.6"
232+
shell-words = "1.1.0"
233+
similar = "2.2.1"
234+
smallvec = "1.10.0"
235+
snap = "1.1.0"
236+
socket2 = "0.4.7"
237+
ssh-key = "0.4.3"
238+
stacker = "0.1.15"
239+
syn = "1.0.107"
240+
sysctl = "0.5.4"
241+
sysinfo = "0.27.2"
242+
tar = "0.4.38"
243+
tempfile = "3.3.0"
244+
termcolor = "1.1.3"
245+
thiserror = "1.0.37"
246+
tiberius = { version = "0.11.3", default-features = false }
247+
tikv-jemallocator = "0.5.0"
248+
tikv-jemalloc-ctl = "0.5.0"
249+
time = "0.3.17"
250+
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", default-features = false }
251+
tokio = "1.27.0"
252+
tokio-native-tls = "0.3.0"
253+
tokio-openssl = "0.6.3"
254+
tokio-postgres = { git = "https://github.com/MaterializeInc/rust-postgres" }
255+
tokio-stream = "0.1.11"
256+
tokio-test = "0.4.2"
257+
tokio-util = "0.7.4"
258+
toml = "0.5.9"
259+
tonic = "0.8.2"
260+
tonic-build = "0.8.2"
261+
tower = "0.4.13"
262+
tower-http = "0.3.5"
263+
tracing = "0.1.37"
264+
tracing-core = "0.1.30"
265+
typemap_rev = "0.3.0"
266+
tracing-opentelemetry = { git = "https://github.com/MaterializeInc/tracing.git", branch = "v0.1.x" }
267+
tracing-subscriber = "0.3.16"
268+
tungstenite = "0.18.0"
269+
unicode-width = "0.1.10"
270+
uncased = "0.9.7"
271+
url = "2.3.1"
272+
uuid = "1.2.2"
273+
walkdir = "2.3.2"
274+
yansi = "0.5.1"
275+
zeroize = "1.5.7"
276+
277+
mz-adapter = { path = "src/adapter" }
278+
mz-alloc = { path = "src/alloc" }
279+
mz-audit-log = { path = "src/audit-log" }
280+
mz-avro = { path = "src/avro" }
281+
mz-avro-derive = { path = "src/avro-derive" }
282+
mz-aws-s3-util = { path = "src/aws-s3-util" }
283+
mz-build-id = { path = "src/build-id" }
284+
mz-build-info = { path = "src/build-info" }
285+
mz-ccsr = { path = "src/ccsr" }
286+
mz-cloud-api = { path = "src/cloud-api" }
287+
mz-cloud-resources = { path = "src/cloud-resources" }
288+
mz-cluster = { path = "src/cluster" }
289+
mz-cluster-client = { path = "src/cluster-client" }
290+
mz-clusterd = { path = "src/clusterd" }
291+
mz-compute = { path = "src/compute" }
292+
mz-compute-client = { path = "src/compute-client" }
293+
mz-controller = { path = "src/controller" }
294+
mz-environmentd = { path = "src/environmentd" }
295+
mz-expr = { path = "src/expr" }
296+
mz-expr-test-util = { path = "src/expr-test-util" }
297+
mz-frontegg-auth = { path = "src/frontegg-auth" }
298+
mz-frontegg-client = { path = "src/frontegg-client" }
299+
mz-http-util = { path = "src/http-util" }
300+
mz-interchange = { path = "src/interchange" }
301+
mz-kafka-util = { path = "src/kafka-util" }
302+
mz-lowertest = { path = "src/lowertest" }
303+
mz-lowertest-derive = { path = "src/lowertest-derive" }
304+
mz-metabase = { path = "src/metabase" }
305+
mz-mz = { path = "src/mz" }
306+
mz-npm = { path = "src/npm" }
307+
mz-orchestrator = { path = "src/orchestrator" }
308+
mz-orchestrator-kubernetes = { path = "src/orchestrator-kubernetes" }
309+
mz-orchestrator-process = { path = "src/orchestrator-process" }
310+
mz-orchestrator-tracing = { path = "src/orchestrator-tracing" }
311+
mz-ore = { path = "src/ore" }
312+
mz-persist = { path = "src/persist" }
313+
mz-persist-client = { path = "src/persist-client" }
314+
mz-persist-types = { path = "src/persist-types" }
315+
mz-pgcopy = { path = "src/pgcopy" }
316+
mz-pgrepr = { path = "src/pgrepr" }
317+
mz-pgrepr-consts = { path = "src/pgrepr-consts" }
318+
mz-pgtest = { path = "src/pgtest" }
319+
mz-pgwire = { path = "src/pgwire" }
320+
mz-pid-file = { path = "src/pid-file" }
321+
mz-postgres-util = { path = "src/postgres-util" }
322+
mz-prof = { path = "src/prof" }
323+
mz-proto = { path = "src/proto" }
324+
mz-repr = { path = "src/repr" }
325+
mz-repr-test-util = { path = "src/repr-test-util" }
326+
mz-rocksdb = { path = "src/rocksdb" }
327+
mz-s3-datagen = { path = "src/s3-datagen" }
328+
mz-secrets = { path = "src/secrets" }
329+
mz-segment = { path = "src/segment" }
330+
mz-service = { path = "src/service" }
331+
mz-sql = { path = "src/sql" }
332+
mz-sql-parser = { path = "src/sql-parser" }
333+
mz-sqllogictest = { path = "src/sqllogictest" }
334+
mz-ssh-util = { path = "src/ssh-util" }
335+
mz-stash = { path = "src/stash" }
336+
mz-stash-debug = { path = "src/stash-debug" }
337+
mz-storage = { path = "src/storage" }
338+
mz-storage-client = { path = "src/storage-client" }
339+
mz-testdrive = { path = "src/testdrive" }
340+
mz-timely-util = { path = "src/timely-util" }
341+
mz-transform = { path = "src/transform" }
342+
mz-walkabout = { path = "src/walkabout" }
343+
83344
[profile.dev]
84345
# TODO(gusywnn|benesch): remove this when incremental ice's are improved
85346
incremental = false

0 commit comments

Comments
 (0)