panorama/proto-common/Cargo.toml

25 lines
600 B
TOML

[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 = ".."
[features]
default = []
fuzzing = ["arbitrary"]
[dependencies]
anyhow = { version = "1.0.44", features = ["backtrace"] }
bstr = "0.2.17"
bytes = "1.1.0"
format-bytes = "0.2.2"
log = "0.4.14"
nom = "7.0.0"
# for fuzzing
arbitrary = { version = "1.0.2", optional = true, features = ["derive"] }
num-traits = "0.2.14"