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]
|
|
|
|
anyhow = "1.0.42"
|
2021-08-09 23:02:26 +00:00
|
|
|
bstr = "0.2.15"
|
2021-08-09 22:06:49 +00:00
|
|
|
bytes = "1.0.1"
|
|
|
|
format-bytes = "0.2.2"
|
2021-08-09 23:02:26 +00:00
|
|
|
log = "0.4.14"
|
2021-08-23 06:52:20 +00:00
|
|
|
nom = "6.2.1"
|
|
|
|
|
|
|
|
# for fuzzing
|
2021-08-24 02:54:09 +00:00
|
|
|
arbitrary = { version = "1", optional = true, features = ["derive"] }
|
|
|
|
num-traits = "0.2.14"
|