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

77 lines
1.4 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"
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"
2021-02-04 19:58:27 +03:00
sha-1 = "0.9.3"
sha2 = "0.9.3"
md-5 = "0.9.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"
2021-03-25 19:27:58 +03:00
criterion = "0.3"
2021-03-26 15:36:24 +03:00
[lib]
bench = false
2021-03-26 20:07:54 +03:00
[[bin]]
name = "nickel"
path = "src/main.rs"
bench = false
2021-03-25 19:27:58 +03:00
[[bench]]
name = "numeric"
harness = false
2021-03-25 22:09:40 +03:00
[[bench]]
name = "functions"
harness = false
2021-03-25 22:10:54 +03:00
[[bench]]
name = "lists"
harness = false
2021-03-26 13:12:44 +03:00
[[bench]]
name = "records"
harness = false
[[bench]]
name = "serialization"
harness = false