23 lines
473 B
TOML
Raw Normal View History

2021-07-31 20:53:45 +08:00
[package]
name = "lib-ot"
2021-07-31 20:53:45 +08:00
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bytecount = "0.6.0"
2021-08-01 14:39:30 +08:00
serde = { version = "1.0", features = ["derive"] }
serde_json = {version = "1.0"}
derive_more = {version = "0.99", features = ["display"]}
log = "0.4"
2021-11-03 15:37:38 +08:00
tracing = { version = "0.1", features = ["log"] }
2021-08-11 08:40:58 +08:00
lazy_static = "1.4.0"
2021-09-15 15:01:24 +08:00
strum = "0.21"
strum_macros = "0.21"
2021-09-21 16:21:35 +08:00
bytes = "1.0"
2021-07-31 20:53:45 +08:00
2021-09-14 16:22:44 +08:00
2021-11-12 21:44:26 +08:00