forked from argotorg/fe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 924 Bytes
/
Copy pathCargo.toml
File metadata and controls
36 lines (31 loc) · 924 Bytes
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
[package]
name = "fe-parser"
version = "0.18.0-alpha"
authors = ["The Fe Developers <snakecharmers@ethereum.org>"]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/ethereum/fe"
description = "Parser lib for Fe."
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
fe-common = {path = "../common", version = "^0.18.0-alpha"}
logos = { version = "0.12.0", default-features = false, features = ["export_derive"] }
serde = { version = "1", features = ["derive"] }
unescape = "0.1.0"
vec1 = { version = "1.8.0", features = ["serde"] }
if_chain = "1.0.1"
semver = "1.0.0"
indenter = "0.3"
smol_str = "0.1.21"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
[dev-dependencies]
fe-test-files = {path = "../test-files", version = "^0.18.0-alpha"}
insta = "1.7.1"
wasm-bindgen-test = "0.3"
pretty_assertions = "1.0.0"
criterion = "0.3.5"
[[bench]]
name = "bench"
harness = false