forked from tweag/nickel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
93 lines (77 loc) · 1.9 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[package]
name = "nickel-lang"
version = "0.1.0"
authors = ["Nickel team"]
license = "MIT"
readme = "README.md"
description = "Programmable configuration files."
homepage = "https://nickel-lang.org"
repository = "https://github.com/tweag/nickel"
keywords = ["configuration", "language", "nix"]
edition = "2018"
[[bin]]
name = "nickel"
path = "src/bin/nickel.rs"
bench = false
[lib]
bench = false
[features]
default = ["markdown", "repl"]
markdown = ["termimad"]
repl = ["rustyline", "rustyline-derive", "ansi_term"]
repl-wasm = ["wasm-bindgen", "js-sys", "serde_repr"]
[build-dependencies]
lalrpop = "0.19.6"
[dependencies]
lalrpop-util = "0.19.6"
regex = "0.2.1"
simple-counter = "0.1.0"
codespan = "0.11"
codespan-reporting = "0.11"
logos = "0.12.0"
serde = { version = "1.0.117", features = ["derive"] }
serde_json = "1.0.59"
serde_yaml = "0.8.15"
toml = "0.5.8"
structopt = "0.3"
void = "1"
sha-1 = "0.9.3"
sha2 = "0.9.3"
md-5 = "0.9.1"
directories = "4.0.1"
termimad = { version = "0.16.2", optional = true }
ansi_term = { version = "0.12", optional = true }
rustyline = { version = "7.1.0", optional = true}
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 }
[dev-dependencies]
pretty_assertions = "0.5.1"
assert_matches = "1.4.0"
criterion = "0.3"
pprof = { version = "0.4.4", features = ["criterion", "flamegraph"] }
nickel-lang-utilities = {path = "utilities", version = "0.1.0"}
[workspace]
members = [
".",
"lsp/nls"
]
# Enable this to use flamegraphs
# [profile.release]
# debug = true
[[bench]]
name = "numeric"
harness = false
[[bench]]
name = "functions"
harness = false
[[bench]]
name = "arrays"
harness = false
# [[bench]]
# name = "records"
# harness = false
[[bench]]
name = "serialization"
harness = false