[package] name = "prost-bytes05" # NB: When modifying, also modify html_root_url in lib.rs version = "0.0.2" authors = ["Dan Burkert "] license = "Apache-2.0" repository = "https://github.com/danburkert/prost" documentation = "https://docs.rs/prost" readme = "README.md" description = "A Protocol Buffers implementation for the Rust Language." keywords = ["protobuf", "serialization"] categories = ["encoding"] edition = "2018" [badges] travis-ci = { repository = "danburkert/prost" } appveyor = { repository = "danburkert/prost" } [workspace] members = [ "conformance", "prost-build", "prost-derive", "prost-types", "protobuf", "tests", "tests-2015", ] exclude = [ # The fuzz crate can't be compiled or tested without the 'cargo fuzz' command, # so exclude it from normal builds. "fuzz", ] [lib] # https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options bench = false [features] default = ["prost-derive"] no-recursion-limit = [] [dependencies] bytes = "0.5" prost-derive = { version = "0.5.0", path = "prost-derive", optional = true } [dev-dependencies] criterion = "0.3" env_logger = { version = "0.7", default-features = false } log = "0.4" quickcheck = "0.9" rand = "0.7" [profile.bench] debug = true [[bench]] name = "varint" harness = false