[package] name = "informalsystems-prost" version = "0.8.1" authors = [ "Dan Burkert ", "Tokio Contributors ", ] license = "Apache-2.0" repository = "https://github.com/informalsystems/prost" documentation = "https://docs.rs/prost" readme = "README.md" description = "Release based on a fork until upstream is updated." keywords = ["protobuf", "serialization"] categories = ["encoding"] edition = "2018" [workspace] members = [ "conformance", "prost-build", "prost-derive", "prost-types", "protobuf", "tests", "tests-2015", "tests-no-std", "tests/single-include", ] exclude = [ # The fuzz crate can't be compiled or tested without the 'cargo fuzz' command, # so exclude it from normal builds. "fuzz", # Same counts for the afl fuzz targets "afl", ] [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", "std"] no-recursion-limit = [] std = [] [dependencies] bytes = { version = "1", default-features = false } prost-derive = { package = "informalsystems-prost-derive", version = "0.8.1", path = "prost-derive", optional = true } [dev-dependencies] criterion = "0.3" env_logger = { version = "0.8", default-features = false } log = "0.4" proptest = "1" rand = "0.8" [profile.bench] debug = true [[bench]] name = "varint" harness = false