preserves/implementations/rust/Cargo.toml

26 lines
585 B
TOML
Raw Normal View History

2019-06-29 22:02:27 +00:00
[package]
name = "preserves"
2021-01-29 12:53:49 +00:00
version = "0.11.0"
2019-06-29 22:02:27 +00:00
authors = ["Tony Garnock-Jones <tonyg@leastfixedpoint.com>"]
edition = "2018"
2019-09-17 10:42:13 +00:00
description = "Implementation of the Preserves serialization format via serde."
homepage = "https://preserves.gitlab.io/"
repository = "https://gitlab.com/preserves/preserves"
license = "Apache-2.0"
[badges]
gitlab = { repository = "preserves/preserves" }
2019-06-29 22:02:27 +00:00
[dependencies]
num = "0.2"
2019-09-16 23:58:32 +00:00
serde = { version = "1.0", features = ["derive"] }
2019-06-29 22:02:27 +00:00
serde_bytes = "0.11"
lazy_static = "1.4.0"
2020-06-16 15:46:55 +00:00
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "codec"
harness = false