1
1
mirror of https://github.com/tweag/nickel.git synced 2024-09-19 23:47:54 +03:00
nickel/Cargo.toml

21 lines
415 B
TOML
Raw Normal View History

2019-01-09 00:46:02 +03:00
[package]
name = "nickel"
version = "0.1.0"
authors = ["Nicl team"]
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Programmable configuration files."
2020-01-21 16:50:28 +03:00
edition = "2018"
2019-01-09 00:46:02 +03:00
[build-dependencies] # <-- We added this and everything after!
lalrpop = "0.16.2"
[dependencies]
lalrpop-util = "0.16.2"
regex = "0.2.1"
2020-01-21 13:30:21 +03:00
either = "1.5.3"
simple-counter = "0.1.0"
2019-01-09 00:46:02 +03:00
[dev-dependencies]
pretty_assertions = "0.5.1"