Files
dcb/Cargo.toml
Filipe Rodrigues 8b4b11113a Refactored array_split(_mut) macro.
Now using `AsciiString` instead of `arrayvec::ArrayVec<[ascii::AsciiChar; _]>`.
2020-04-26 07:10:45 +01:00

23 lines
386 B
TOML

[package]
name = "dcb"
version = "0.1.0"
authors = ["Filipe Rodrigues <filipejacintorodrigues1@gmail.com>"]
edition = "2018"
[dependencies]
# Log
log = "0.4"
# Util
byteorder = "1.3"
ascii = { version = "1.0", features = ["serde"] }
arrayref = "0.3"
# Serde
serde = { version = "1.0", features = ["derive"] }
# Derives
derive_more = "0.99"
err-impl = { path = "../err-impl" }