forked from flavray/avro-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (31 loc) · 810 Bytes
/
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
[package]
name = "avro-rs"
version = "0.6.4"
authors = ["Flavien Raynaud <flavien.raynaud@gmail.com>", "Antonio Verardi <antonio.uccio.verardi@gmail.com>"]
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 = ["byteorder", "crc", "snap"]
[dependencies]
byteorder = { version = "1.0.0", optional = true }
crc = { version = "1.3.0", optional = true }
digest = "0.8"
failure = "0.1.1"
failure_derive = "0.1.1"
libflate = "0.1"
rand = "0.3"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
snap = { version = "0.2.3", optional = true }
regex = "1.1.2"
lazy_static = "1.3.0"
chrono = "0.4.6"
time = "0.1.42"
[dev-dependencies]
md-5 = "0.8"
#lazy_static = "^1.1"
sha2 = "0.8"