forked from 0xPolygonMiden/miden-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (37 loc) · 1.24 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
[package]
name = "miden-stdlib"
version = "0.9.2"
description = "Miden VM standard library"
authors = ["miden contributors"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/0xPolygonMiden/miden-vm"
documentation = "https://docs.rs/miden-stdlib/0.9.2"
categories = ["cryptography", "mathematics"]
keywords = ["miden", "program", "stdlib"]
edition = "2021"
rust-version = "1.75"
[lib]
bench = false
doctest = false
[[test]]
name = "stdlib"
path = "tests/main.rs"
[features]
default = ["std"]
std = []
[dependencies]
assembly = { package = "miden-assembly", path = "../assembly", version = "0.9", default-features = false }
[dev-dependencies]
blake3 = "1.5"
miden-air = { package = "miden-air", path = "../air", version = "0.9", default-features = false }
num-bigint = "0.4"
processor = { package = "miden-processor", path = "../processor", version = "0.9", features = ["internals"], 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.8" }
winter-fri = { package = "winter-fri", version = "0.8" }
[build-dependencies]
assembly = { package = "miden-assembly", path = "../assembly", version = "0.9" }