panorama/proto-common/Cargo.toml
Michael Zhang 3f09e8b55f
updates:
- reformat with 80char
- add SQLx to daemon
- add backtrace to anyhow
2021-10-13 00:50:48 -05:00

25 lines
596 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.42", features = ["backtrace"] }
bstr = "0.2.15"
bytes = "1.0.1"
format-bytes = "0.2.2"
log = "0.4.14"
nom = "6.2.1"
# for fuzzing
arbitrary = { version = "1", optional = true, features = ["derive"] }
num-traits = "0.2.14"