aquavm/crates/air-parser/Cargo.toml

33 lines
547 B
TOML
Raw Normal View History

2020-11-03 14:43:58 +00:00
[package]
name = "air-parser"
version = "0.7.0"
2020-11-03 14:43:58 +00:00
authors = ["Fluence Labs"]
edition = "2018"
2020-12-27 21:12:11 +00:00
license = "Apache-2.0"
2020-11-03 14:43:58 +00:00
[build-dependencies]
lalrpop = "0.19.5"
2020-11-03 14:43:58 +00:00
[dependencies]
lalrpop-util = "0.19.5"
2020-11-03 14:43:58 +00:00
regex = "1.4.1"
codespan = "0.9.5"
codespan-reporting = "0.9.5"
2021-03-19 16:15:41 +00:00
multimap = "0.8.3"
2020-11-03 14:43:58 +00:00
2021-01-22 15:54:05 +00:00
# TODO: hide serde behind a feature
serde = { version = "=1.0.118", features = ["rc", "derive"] }
2021-02-16 06:45:33 +00:00
serde_json = "=1.0.61"
2021-02-16 17:04:00 +00:00
itertools = "0.10.0"
2021-01-22 15:54:05 +00:00
thiserror = "1.0.23"
2020-11-03 14:43:58 +00:00
[dev-dependencies]
fstrings = "0.2.3"
2020-11-05 13:50:09 +00:00
criterion = "0.3.3"
[[bench]]
name = "parser"
harness = false