mirror of
https://github.com/Zenithsiz/dcb.git
synced 2026-02-09 03:40:23 +00:00
Honstly not sure what's happened, but `dcb-exe` is mostly being redone from scratch.
39 lines
640 B
TOML
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"
|