This repository has been archived on 2024-01-28. You can view files and clone it, but cannot push or open issues/pull-requests.
brd/Cargo.toml

22 lines
491 B
TOML
Raw Normal View History

2020-06-22 20:33:12 +02:00
[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"
2020-06-27 17:15:37 +02:00
konami-lz77 = { git = "https://github.com/sbruder/konami-lz77" }
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"] }
2020-06-26 23:48:34 +02:00
[dev-dependencies]
quickcheck = "0.9.2"
quickcheck_macros = "0.9.1"