This repository has been archived on 2024-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
brd/Cargo.toml
Simon Bruder 5a77d86fe7
Switch from nom to custom parser
The reason for the switch is mostly related to error handling (and me
being unable to unterstand how nom does it). Using byteorder and a few
handwritten helper functions for parsing makes error handling much
easier. It also allows me to return more helpful error messages.
2020-06-26 13:25:21 +02:00

17 lines
365 B
TOML

[package]
name = "brd"
version = "0.1.0"
authors = ["Simon Bruder <simon@sbruder.de>"]
edition = "2018"
[dependencies]
anyhow = "^1.0.31"
byteorder = "^1.3.4"
clap = "3.0.0-beta.1"
log = "^0.4.8"
num-derive = "^0.3"
num-traits = "^0.2"
pretty_env_logger = "^0.4"
thiserror = "^1.0.20"
zip = { version = "^0.5.5", default-features = false, features = ["deflate"] }