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

112 lines
2.2 KiB
TOML
Raw Normal View History

2019-01-09 00:46:02 +03:00
[package]
2022-03-04 18:48:02 +03:00
name = "nickel-lang"
2019-01-09 00:46:02 +03:00
version = "0.1.0"
2022-03-04 18:48:02 +03:00
authors = ["Nickel team"]
license = "MIT"
2019-01-09 00:46:02 +03:00
readme = "README.md"
description = "Programmable configuration files."
2022-03-04 18:48:02 +03:00
homepage = "https://nickel-lang.org"
repository = "https://github.com/tweag/nickel"
keywords = ["configuration", "language", "nix"]
2020-01-21 16:50:28 +03:00
edition = "2018"
2019-01-09 00:46:02 +03:00
2022-01-01 04:23:59 +03:00
[[bin]]
name = "nickel"
path = "src/bin/nickel.rs"
bench = false
[lib]
bench = false
[features]
default = ["markdown", "repl", "doc"]
markdown = ["termimad"]
2021-07-05 20:31:41 +03:00
repl = ["rustyline", "rustyline-derive", "ansi_term"]
repl-wasm = ["wasm-bindgen", "js-sys", "serde_repr"]
doc = [ "comrak" ]
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"
regex = "1.5"
simple-counter = "0.1.0"
codespan = "0.11"
codespan-reporting = "0.11"
logos = "0.12.0"
serde = { version = "1.0.137", features = ["derive"] }
serde_json = "1.0.81"
serde_yaml = "0.8.24"
toml = "0.5.9"
2021-07-05 20:31:41 +03:00
structopt = "0.3"
2021-01-11 18:02:20 +03:00
void = "1"
sha-1 = "0.10.0"
sha2 = "0.10.2"
md-5 = "0.10.1"
directories = "4.0.1"
2019-01-09 00:46:02 +03:00
termimad = { version = "0.20.1", optional = true }
ansi_term = { version = "0.12", optional = true }
rustyline = { version = "9.1.2", optional = true}
rustyline-derive = { version = "0.6.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 }
pretty = "0.11.3"
2021-04-16 17:10:13 +03:00
comrak = { version = "0.12.1", optional = true, features = [] }
2019-01-09 00:46:02 +03:00
[dev-dependencies]
pretty_assertions = "1.2.1"
assert_matches = "1.5.0"
2021-03-25 19:27:58 +03:00
criterion = "0.3"
pprof = { version = "0.9.1", features = ["criterion", "flamegraph"] }
2022-03-04 18:48:02 +03:00
nickel-lang-utilities = {path = "utilities", version = "0.1.0"}
similar = "2.1.0"
2021-09-23 17:21:45 +03:00
[workspace]
members = [
".",
"lsp/nls",
"utilities",
2021-09-23 17:21:45 +03:00
]
# Enable this to use flamegraphs
# [profile.release]
# debug = true
2021-03-25 19:27:58 +03:00
[[bench]]
name = "numeric"
harness = false
2021-03-25 22:09:40 +03:00
2021-12-31 21:59:10 +03:00
[[bench]]
name = "functions"
harness = false
2021-03-25 22:10:54 +03:00
[[bench]]
2022-02-23 13:32:10 +03:00
name = "arrays"
2021-03-25 22:10:54 +03:00
harness = false
2021-03-26 13:12:44 +03:00
2022-01-10 23:24:31 +03:00
# [[bench]]
# name = "records"
# harness = false
2021-03-26 13:12:44 +03:00
[[bench]]
name = "serialization"
harness = false
[[bench]]
name = "mantis"
harness = false
2022-05-25 11:40:14 +03:00
[[bench]]
name = "stdlib"
harness = false
[[bench]]
2022-05-30 17:36:45 +03:00
name = "typecheck-nixpkgs-lib"
harness = false