-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
46 lines (39 loc) · 867 Bytes
/
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
[package]
name = "maiden"
version = "0.1.0"
authors = ["Tom Parker-Shemilt <[email protected]>"]
edition = "2018"
[dependencies]
pest = "2.1"
pest_meta = "2.1"
pest_derive = "2.1"
failure = "0.1.8"
clap = { version = "3.2.22", optional = true }
regex = "1"
log = "0.4.4"
pretty_env_logger = "0.4"
[build-dependencies]
walkdir = "2"
failure = "0.1.3"
serde_json = "1"
serde = "1.0.85"
serde_derive = "1.0.85"
# Fixes for
# * https://github.com/rust-lang/backtrace-rs/issues/24
# * https://github.com/rust-lang/backtrace-rs/issues/101
backtrace-sys = ">=0.1.21"
[dev-dependencies]
assert_cmd = "0.6"
pretty_assertions = "1"
[features]
default = ["cmd"]
cmd = ["clap"]
[target.'cfg(target_arch = "wasm32")'.dependencies]
yew = "0.19"
web-sys = "0.3"
js-sys = "0.3"
wasm-bindgen = "0.2"
console_error_panic_hook = "0.1"
[profile.release]
lto = true
opt-level = 's'