1
1
mirror of https://github.com/tweag/nickel.git synced 2024-09-20 16:08:14 +03:00
nickel/Cargo.toml

46 lines
1.0 KiB
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
[features]
default = ["markdown", "repl"]
# markdown = ["termimad", "minimad", "lazy_static", "crossterm"]
markdown = ["termimad", "minimad"]
2021-01-18 16:52:06 +03:00
repl = ["rustyline", "rustyline-derive", "ansi_term"]
2021-01-13 13:52:58 +03:00
[build-dependencies]
2019-01-09 00:46:02 +03:00
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"
codespan = "0.9.5"
codespan-reporting = "0.9.5"
2020-10-26 19:21:02 +03:00
logos = "0.11.4"
2020-11-10 14:33:26 +03:00
serde = "1.0.117"
serde_json = "1.0.59"
2021-01-28 18:48:20 +03:00
serde_yaml = "0.8.15"
toml = "0.5.8"
2020-11-17 16:39:47 +03:00
structopt = "0.3"
2021-01-11 18:02:20 +03:00
void = "1"
2019-01-09 00:46:02 +03:00
termimad = { version = "0.9.1", optional = true }
# Use the same version as termimad
minimad = { version = "0.6.7", optional = true }
2021-01-13 13:52:58 +03:00
ansi_term = { version = "0.12", optional = true }
2021-01-12 17:20:30 +03:00
rustyline = {version = "7.1.0", optional = true}
2021-01-18 16:52:06 +03:00
rustyline-derive = { version = "0.4.0", optional = true }
2019-01-09 00:46:02 +03:00
[dev-dependencies]
pretty_assertions = "0.5.1"
2021-01-19 14:47:45 +03:00
assert_matches = "1.4.0"