forked from tweag/nickel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 1.06 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
[package]
name = "nickel"
version = "0.1.0"
authors = ["Nicl team"]
license = "MIT OR Apache-2.0"
readme = "README.md"
description = "Programmable configuration files."
edition = "2018"
[features]
default = ["markdown", "repl"]
# markdown = ["termimad", "minimad", "lazy_static", "crossterm"]
markdown = ["termimad", "minimad"]
repl = ["rustyline", "rustyline-derive", "ansi_term"]
[build-dependencies]
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"
logos = "0.11.4"
serde = "1.0.117"
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"
termimad = { version = "0.9.1", optional = true }
# Use the same version as termimad
minimad = { version = "0.6.7", optional = true }
ansi_term = { version = "0.12", optional = true }
rustyline = {version = "7.1.0", optional = true}
rustyline-derive = { version = "0.4.0", optional = true }
[dev-dependencies]
pretty_assertions = "0.5.1"
assert_matches = "1.4.0"