-
Notifications
You must be signed in to change notification settings - Fork 169
/
Copy pathCargo.toml
56 lines (48 loc) · 1.45 KB
/
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
47
48
49
50
51
52
53
54
55
56
[package]
name = "miden-stdlib"
version = "0.11.0"
description = "Miden VM standard library"
documentation = "https://docs.rs/miden-stdlib/0.11.0"
readme = "README.md"
categories = ["cryptography", "mathematics"]
keywords = ["miden", "program", "stdlib"]
license.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
rust-version.workspace = true
edition.workspace = true
[lib]
bench = false
doctest = false
[[bench]]
name = "compilation"
harness = false
[[test]]
name = "stdlib"
path = "tests/main.rs"
[features]
default = ["std"]
std = ["assembly/std"]
with-debug-info = []
[dependencies]
assembly = { package = "miden-assembly", path = "../assembly", version = "0.11", default-features = false }
[dev-dependencies]
blake3 = "1.5"
criterion = "0.5"
miden-air = { package = "miden-air", path = "../air", version = "0.11", default-features = false }
num = "0.4"
num-bigint = "0.4"
pretty_assertions = "1.4"
processor = { package = "miden-processor", path = "../processor", version = "0.11", default-features = false, features = [
"testing",
] }
rand = { version = "0.8", default-features = false }
serde_json = "1.0"
sha2 = "0.10"
sha3 = "0.10"
test-utils = { package = "miden-test-utils", path = "../test-utils" }
winter-air = { package = "winter-air", version = "0.10" }
winter-fri = { package = "winter-fri", version = "0.10" }
[build-dependencies]
assembly = { package = "miden-assembly", path = "../assembly", version = "0.11" }