panorama/proto-common/Cargo.toml

26 lines
600 B
TOML
Raw Normal View History

2021-08-09 22:06:49 +00:00
[package]
name = "panorama-proto-common"
description = "Common code between protocol implementations"
version = "0.0.1"
edition = "2018"
authors = ["Michael Zhang <mail@mzhang.io>"]
license = "GPL-3.0-or-later"
repository = "https://git.mzhang.io/michael/panorama"
workspace = ".."
2021-08-23 06:52:20 +00:00
[features]
default = []
fuzzing = ["arbitrary"]
2021-08-09 22:06:49 +00:00
[dependencies]
2021-10-28 22:30:25 +00:00
anyhow = { version = "1.0.44", features = ["backtrace"] }
bstr = "0.2.17"
bytes = "1.1.0"
2021-08-09 22:06:49 +00:00
format-bytes = "0.2.2"
2021-08-09 23:02:26 +00:00
log = "0.4.14"
2021-10-28 22:30:25 +00:00
nom = "7.0.0"
2021-08-23 06:52:20 +00:00
# for fuzzing
2021-10-28 22:30:25 +00:00
arbitrary = { version = "1.0.2", optional = true, features = ["derive"] }
2021-08-24 02:54:09 +00:00
num-traits = "0.2.14"