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

128 lines
2.7 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"
version = "1.0.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"]
2022-08-05 16:08:29 +03:00
edition = "2021"
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]
lalrpop = "0.19.9"
2019-01-09 00:46:02 +03:00
[dependencies]
lalrpop-util = "0.19.9"
regex = "1"
simple-counter = "0.1.0"
clap = { version = "4.3", features = ["derive"] }
codespan = "0.11"
codespan-reporting = "0.11"
logos = "0.12"
serde = { version = "1.0.154", features = ["derive"] }
serde_json = "1.0.94"
serde_yaml = "0.9.19"
toml = { version = "0.7.2", features = ["parse"] }
2021-01-11 18:02:20 +03:00
void = "1"
sha-1 = "0.10.0"
sha2 = "0.10.6"
md-5 = "0.10.5"
directories = "4.0.1"
unicode-segmentation = "1.10.1"
indoc = "2"
2019-01-09 00:46:02 +03:00
termimad = { version = "0.23.0", optional = true }
ansi_term = { version = "0.12", optional = true }
rustyline = { version = "11.0", optional = true}
rustyline-derive = { version = "0.8.0", optional = true }
# The `wasm-bindgen` version is pinned (`=`) because it must be a version
# available in Nixpkgs.
wasm-bindgen = { version = "=0.2.83", optional = true, features = ["serde-serialize"] }
serde-wasm-bindgen = "0.5.0"
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.17.0", optional = true, features = [] }
once_cell = "1.17.1"
typed-arena = "2.0.2"
malachite = {version = "0.3.2", features = ["enable_serde"] }
malachite-q = "0.3.2"
indexmap = {version = "1.9.3", features = ["serde"] }
strip-ansi-escapes = "0.1.1"
2019-01-09 00:46:02 +03:00
[dev-dependencies]
pretty_assertions = "1.3.0"
assert_matches = "1.5.0"
criterion = "0.4"
pprof = { version = "0.11.1", features = ["criterion", "flamegraph"] }
nickel-lang-utilities = {path = "utilities", version = "1.0.0"}
similar = "2.2.1"
test-generator = "0.3.1"
insta = { version = "1.28.0", features = ["filters"] }
2021-09-23 17:21:45 +03:00
[workspace]
members = [
".",
"lsp/nls",
"lsp/lsp-harness",
"utilities",
"nickel-wasm-repl",
"pyckel",
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