forked from dherman/esprit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 940 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
[package]
name = "esprit"
version = "0.0.5"
authors = ["Dave Herman <[email protected]>"]
license = "MIT"
description = "An ECMAScript parser library."
documentation = "https://esprit.surge.sh"
homepage = "https://esprit.surge.sh"
repository = "https://github.com/dherman/esprit"
exclude = ["tests/esprima/**/*"]
[dependencies]
serde = "0.8"
serde_json = "0.8"
tristate = "0.1.1"
unjson = { version = "0.0.5", path = "crates/unjson" }
joker = { version = "0.0.5", path = "crates/joker" }
easter = { version = "0.0.5", path = "crates/easter" }
estree = { version = "0.0.5", path = "crates/estree" }
[dev-dependencies]
rustc-test = "0.1"
glob = "0.2"
[[test]]
name = "parser-test"
harness = false
[profile.bench]
# It makes little sense to run cross-crate benchmarks w/o lto
# (difference is significant)
lto = true
[[bench]]
name = "parser-bench"
harness = false
test = true
[workspace]
# Implicitly crawled from dependencies.*.path