Files
dcb/dcb-exe/Cargo.toml
Filipe Rodrigues 48e29ec83c Revamped most things.
Honstly not sure what's happened, but `dcb-exe` is mostly being redone from scratch.
2021-01-08 13:39:50 +00:00

39 lines
640 B
TOML

[package]
name = "dcb-exe"
version = "0.1.0"
authors = ["Filipe Rodrigues <filipejacintorodrigues1@gmail.com>"]
edition = "2018"
[dependencies]
# Dcb
dcb-bytes = { path = "../dcb-bytes" }
dcb-io = { path = "../dcb-io" }
dcb-util = { path = "../dcb-util" }
# Log
log = "0.4"
# Util
byteorder = "1.3"
ascii = { version = "1.0", features = ["serde"] }
arrayref = "0.3"
int-conv = "0.1"
bitmatch = "0.1"
smallvec = "1.4"
num_enum = "0.5"
either = "1.6.1"
# Serde
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
# Derives
derive_more = "0.99"
thiserror = "1.0"
ref-cast = "1.0"
[dev-dependencies]
itertools = "0.9"