36 lines
956 B
TOML
36 lines
956 B
TOML
[package]
|
|
name = "bincode"
|
|
version = "2.0.0-dev" # remember to update html_root_url
|
|
authors = ["Ty Overby <ty@pre-alpha.com>", "Francesco Mazzoli <f@mazzo.li>", "David Tolnay <dtolnay@gmail.com>", "Zoey Riordan <zoey@dos.cafe>"]
|
|
exclude = ["logo.svg", "examples/*", ".gitignore", ".travis.yml"]
|
|
|
|
publish = true
|
|
|
|
repository = "https://github.com/bincode-org/bincode"
|
|
documentation = "https://docs.rs/bincode"
|
|
readme = "./readme.md"
|
|
categories = ["encoding", "network-programming"]
|
|
keywords = ["binary", "encode", "decode", "serialize", "deserialize"]
|
|
|
|
license = "MIT"
|
|
description = "A binary serialization / deserialization strategy that uses Serde for transforming structs into bytes and vice versa!"
|
|
|
|
edition = "2018"
|
|
[dependencies]
|
|
byteorder = "1.3.0"
|
|
serde = "1.0.63"
|
|
|
|
[dev-dependencies]
|
|
serde_bytes = "0.11"
|
|
serde_derive = "1.0.27"
|
|
criterion = "0.3"
|
|
rand = "0.8"
|
|
|
|
[[bench]]
|
|
name = "varint"
|
|
harness = false
|
|
|
|
[profile.bench]
|
|
codegen-units = 1
|
|
debug = 1
|