# 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 = "integer-encoding" version = "4.0.2" authors = ["Lewin Bormann "] description = "varint+zigzag and fixedint integer encoding/decoding (https://developers.google.com/protocol-buffers/docs/encoding)" documentation = "https://docs.rs/integer-encoding/" readme = "README.md" keywords = [ "integer", "varint", "zigzag", "protobuf", "serialize", ] license = "MIT" repository = "https://github.com/dermesser/integer-encoding-rs" [package.metadata.docs.rs] features = ["tokio_async"] [[example]] name = "encode_varint_from_stdin" required-features = ["tokio_async"] [[example]] name = "read_write_file" required-features = ["tokio_async"] [[bench]] name = "main" harness = false [dependencies.async-trait] version = "0.1" optional = true [dependencies.futures-util] version = "0.3" features = ["io"] optional = true [dependencies.tokio] version = "1.0" features = ["io-util"] optional = true [dev-dependencies.bencher] version = "~0.1" [dev-dependencies.tokio] version = "1.0" features = [ "fs", "rt-multi-thread", "macros", ] [features] futures_async = [ "futures-util", "async-trait", ] tokio_async = [ "tokio", "async-trait", ]