rust-ipfs/vendor/unsigned-varint/Cargo.toml
Vladislav Tsarev 3dec7eeb01 Initial commit
2024-10-18 11:36:33 +03:00

84 lines
1.6 KiB
TOML

# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2018"
name = "unsigned-varint"
version = "0.7.2"
authors = ["Parity Technologies <admin@parity.io>"]
description = "unsigned varint encoding"
readme = "README.md"
license = "MIT"
repository = "https://github.com/paritytech/unsigned-varint"
[package.metadata.docs.rs]
all-features = true
[[bench]]
name = "benchmark"
harness = false
[dependencies.asynchronous-codec]
version = "0.6"
optional = true
[dependencies.bytes]
version = "1"
optional = true
[dependencies.futures-io]
version = "0.3.4"
optional = true
[dependencies.futures-util]
version = "0.3.4"
features = ["io"]
optional = true
[dependencies.nom]
version = "7"
optional = true
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
optional = true
[dev-dependencies.criterion]
version = "0.3"
[dev-dependencies.futures-executor]
version = "0.3.4"
[dev-dependencies.hex]
version = "0.4"
[dev-dependencies.quickcheck]
version = "1"
[features]
asynchronous_codec = [
"std",
"bytes",
"asynchronous-codec",
]
codec = [
"std",
"bytes",
"tokio-util",
]
futures = [
"std",
"futures-io",
"futures-util",
]
std = []