-
Notifications
You must be signed in to change notification settings - Fork 22
/
Cargo.toml
36 lines (31 loc) · 972 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
35
36
[package]
name = "unsigned-varint"
version = "0.8.0"
authors = ["Parity Technologies <[email protected]>"]
license = "MIT"
description = "unsigned varint encoding"
repository = "https://github.com/paritytech/unsigned-varint"
readme = "README.md"
edition = "2018"
[package.metadata.docs.rs]
all-features = true
[features]
std = []
codec = ["std", "bytes", "tokio-util"]
futures = ["std", "futures-io", "futures-util"]
asynchronous_codec = ["std", "bytes", "asynchronous-codec"]
[dependencies]
bytes = { version = "1", optional = true }
futures-io = { version = "0.3.4", optional = true }
futures-util = { version = "0.3.4", features = ["io"], optional = true }
asynchronous-codec = { version = "0.7", optional = true }
tokio-util = { version = "0.7", features = ["codec"], optional = true }
nom = { version = "7", optional = true }
[dev-dependencies]
criterion = "0.3"
futures-executor = "0.3.4"
hex = "0.4"
quickcheck = "1"
[[bench]]
name = "benchmark"
harness = false