yary/Cargo.toml

31 lines
624 B
TOML
Raw Normal View History

2021-06-01 13:31:00 +00:00
[package]
name = "yary"
edition = "2018"
authors = ["Bazaah <github@luxolus.com>"]
repository = "https://github.com/dolysis/yary"
description = "Lazy, efficient YAML parsing"
readme = "docs/README.md"
version = "0.1.0"
license = "MPL-2.0"
2021-06-01 13:31:00 +00:00
keywords = ["yaml", "parser", "parsing"]
categories = ["parser-implementations"]
2021-06-01 13:31:00 +00:00
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"