dcb/Cargo.toml
Filipe Rodrigues 65deb1fe84 Added global allow for new clippy lint, clippy::unwrap_in_result.
Fixed bug with `Read` and `Write` implementations of `GameFile`.
`Data` and `Real` addresses, now print `0x` before their number to indicate they're hexadecimal.
Added unit tests for `Read` and `Write` implementations of `GameFile`.
2020-09-17 15:48:52 +01:00

27 lines
407 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"
thiserror = "1.0"
[dev-dependencies]
itertools = "0.9"