-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
65 lines (57 loc) · 1.61 KB
/
Cargo.toml
File metadata and controls
65 lines (57 loc) · 1.61 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "polylang"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
crate-type = ["staticlib", "cdylib", "rlib"]
[[bin]]
name = "compile"
path = "src/bin/compile/main.rs"
[workspace]
members = [
"parser",
"prover",
"abi",
"miden-run",
"error",
"tests",
"wasm-api",
"server",
"server-routes",
]
exclude = ["showcase"]
[features]
default = ["parser", "bindings"]
parser = []
bindings = []
[dependencies]
abi = { path = "./abi" }
error = { path = "./error" }
regex = { version = "1", default-features = false }
wasm-bindgen = "0.2"
console_error_panic_hook = "0.1.7"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
polylang_parser = { path = "./parser" }
miden-vm = { git = "https://github.com/0xPolygonMiden/miden-vm", tag = "v0.7.0", default-features = false }
miden-processor = { git = "https://github.com/0xPolygonMiden/miden-vm", tag = "v0.7.0", default-features = false }
miden-stdlib = { git = "https://github.com/0xPolygonMiden/miden-vm", tag = "v0.7.0", default-features = false }
winter-math = "*"
lazy_static = "1.4.0"
base64 = "0.21.0"
derive_more = { version = "0.99.17", features = [
"deref",
"from",
"deref_mut",
], default-features = false }
parking_lot = "0.12.1"
[dev-dependencies]
pretty_assertions = "1.3.0"
expect-test = "1.4.0"
itertools = "0.10.5"
test-case = "3.0.0"
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
rand = "0.8.5"
quickcheck_macros = "1.0.0"
quickcheck = "1.0.3"