forked from MaterializeInc/materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (44 loc) · 1.52 KB
/
Cargo.toml
File metadata and controls
50 lines (44 loc) · 1.52 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
[package]
name = "mz-interchange"
description = "Translations for various data serialization formats."
version = "0.0.0"
edition.workspace = true
rust-version.workspace = true
publish = false
[lints]
workspace = true
[[bench]]
name = "mz-interchange-bench"
path = "benches/benches.rs"
harness = false
[dependencies]
anyhow = "1.0.66"
byteorder = "1.4.3"
chrono = { version = "0.4.23", default-features = false, features = ["std"] }
clap = { version = "3.2.24", features = ["derive"] }
differential-dataflow = "0.12.0"
itertools = "0.10.5"
once_cell = "1.16.0"
maplit = "1.0.2"
mz-avro = { path = "../avro", features = ["snappy"] }
mz-avro-derive = { path = "../avro-derive" }
mz-ccsr = { path = "../ccsr" }
mz-ore = { path = "../ore", features = ["network"] }
mz-repr = { path = "../repr" }
ordered-float = { version = "4.2.0", features = ["serde"] }
prost = { version = "0.11.3", features = ["no-recursion-limit"] }
prost-reflect = "0.11.4"
serde_json = "1.0.109"
timely = { version = "0.12.0", default-features = false, features = ["bincode"] }
tokio = { version = "1.32.0", features = ["macros", "net", "rt", "rt-multi-thread", "time"] }
tracing = "0.1.37"
uuid = { version = "1.7.0", features = ["serde"] }
workspace-hack = { version = "0.0.0", path = "../workspace-hack" }
[dev-dependencies]
criterion = { version = "0.4.0", features = ["async_tokio"] }
tokio = { version = "1.32.0", features = ["macros"] }
[build-dependencies]
prost-build = "0.11.2"
protobuf-src = "1.1.0"
[package.metadata.cargo-udeps.ignore]
normal = ["workspace-hack"]