-
Notifications
You must be signed in to change notification settings - Fork 92
/
Cargo.toml
55 lines (48 loc) · 1.14 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
[package]
name = "avro-rs"
version = "0.13.0"
authors = ["Flavien Raynaud <[email protected]>", "Antonio Verardi <[email protected]>"]
description = "Library for working with Apache Avro in Rust"
license = "MIT"
readme = "README.md"
repository = "https://github.com/flavray/avro-rs"
edition = "2018"
[features]
snappy = ["crc", "snap"]
[lib]
path = "src/lib.rs"
# disable benchmarks to allow passing criterion arguments to `cargo bench`
bench = false
[[bench]]
name = "serde"
harness = false
[[bench]]
name = "serde_json"
harness = false
[[bench]]
name = "single"
harness = false
[dependencies]
byteorder = "1.0.0"
crc = { version = "1.3.0", optional = true }
digest = "0.9"
libflate = "1"
num-bigint = "0.2.6"
rand = "0.7.0"
regex = "^1.4"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
snap = { version = "0.2.3", optional = true }
strum = "0.18.0"
strum_macros = "0.18.0"
thiserror = "1.0"
typed-builder = "0.5.1"
uuid = { version = "0.8.1", features = ["serde", "v4"] }
zerocopy = "0.3.0"
lazy_static = "^1.1"
[dev-dependencies]
md-5 = "0.9"
sha2 = "0.9"
criterion = "0.3.1"
anyhow = "1.0.31"
hex-literal = "0.3.1"