summaryrefslogtreecommitdiff
path: root/protocol/Cargo.toml
blob: 473e0e3cbbf970bff73d086d7bb55616ddd78f46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "protocol"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.85"
uuid = { version = "1.2.0", features = ["serde", "wasm-bindgen", "v4", "fast-rng"] }
rand =  "0.8.4"
anyhow = "1.0"
strum = "0.24"
strum_macros = "0.24"
log = "0.4"
regex = "1.0"
lazy_static = "1.4"

[dev-dependencies]
env_logger = "0.8.4"
dotenv = "0.15"