forked from risc0/risc0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (21 loc) · 888 Bytes
/
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
[package]
name = "substrate-minimal-runtime"
version = "0.1.0"
description = "Minimal Substrate runtime for testing compatibility"
publish = false
[workspace]
[package.metadata.release]
release = false
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
frame-support = { git = "https://github.com/paritytech/polkadot-sdk/", branch = "release-polkadot-v1.1.0", default-features = false }
risc0-zkvm = { path = "../../risc0/zkvm", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk/", branch = "release-polkadot-v1.1.0", default-features = false, features = [
"serde",
] }
[build-dependencies]
substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk/", branch = "release-polkadot-v1.1.0", optional = true }
[features]
default = ["std"]
std = ["frame-support/std", "substrate-wasm-builder"]