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
26 lines (22 loc) · 735 Bytes
/
Copy pathCargo.toml
File metadata and controls
26 lines (22 loc) · 735 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
[package]
name = "fe-parser"
version = "0.5.0-alpha"
authors = ["David Sanders <david@ethereum.org>"]
edition = "2018"
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.5.0-alpha"}
logos = { version = "0.11.4", default-features = false, features = ["export_derive"] }
serde = { version = "1", features = ["derive"] }
unescape = "0.1.0"
uuid = { version = "0.8", features = ["v4", "stdweb"] }
vec1 = { version = "1.8.0", features = ["serde"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
[dev-dependencies]
insta = "1.7.1"
wasm-bindgen-test = "0.3"