1
1
mirror of https://github.com/tweag/nickel.git synced 2024-09-19 07:28:22 +03:00
nickel/Cargo.toml

56 lines
1.2 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]
2021-07-05 20:31:41 +03:00
default = ["markdown", "repl"]
markdown = ["termimad"]
2021-07-05 20:31:41 +03:00
repl = ["rustyline", "rustyline-derive", "ansi_term"]
repl-wasm = ["wasm-bindgen", "js-sys", "serde_repr"]
2021-01-13 13:52:58 +03:00
[build-dependencies]
2021-08-02 17:35:06 +03:00
lalrpop = "0.19.6"
2019-01-09 00:46:02 +03:00
[dependencies]
2021-08-02 17:35:06 +03:00
lalrpop-util = "0.19.6"
2019-01-09 00:46:02 +03:00
regex = "0.2.1"
simple-counter = "0.1.0"
codespan = "0.11"
codespan-reporting = "0.11"
2020-10-26 19:21:02 +03:00
logos = "0.11.4"
2021-08-02 17:35:06 +03:00
serde = { version = "1.0.117", features = ["derive"] }
2020-11-10 14:33:26 +03:00
serde_json = "1.0.59"
2021-01-28 18:48:20 +03:00
serde_yaml = "0.8.15"
toml = "0.5.8"
2021-07-05 20:31:41 +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"
directories = "4.0.1"
2019-01-09 00:46:02 +03:00
termimad = { version = "0.16.2", optional = true }
ansi_term = { version = "0.12", optional = true }
2021-08-02 17:35:06 +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 }
wasm-bindgen = { version = "=0.2.74", optional = true, features = ["serde-serialize"] }
js-sys = { version = "0.3", optional = true }
serde_repr = { version = "0.1", optional = true }
2021-04-16 17:10:13 +03:00
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-09-23 17:21:45 +03:00
[workspace]
members = [
".",
"lsp/nls"
]