yary/Cargo.toml

26 lines
521 B
TOML
Raw Normal View History

2021-06-01 13:31:00 +00:00
[package]
name = "yary"
version = "0.1.0"
authors = ["Bazaah <github@luxolus.com>"]
edition = "2018"
license = "MPL-2.0"
2021-06-01 13:31:00 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-09-09 18:55:54 +00:00
[features]
# PRIVATE! FOR USE IN TEST ONLY!
test_lazy = []
2021-09-09 18:55:54 +00:00
test_buffer = []
test_buffer_large = ["test_buffer"]
test_buffer_medium = ["test_buffer"]
test_buffer_small = ["test_buffer"]
2021-06-01 13:31:00 +00:00
[dependencies]
atoi = "0.4"
2021-09-09 08:04:10 +00:00
bitflags = "1"
[dev-dependencies]
anyhow = "1"
pretty_assertions = "0.7"
2021-09-09 18:55:54 +00:00
cfg-if = "1"