git.delta.rocks / unique-network / refs/commits / 91e514bdbb72

difftreelog

source

primitives/pov-estimate-rpc/Cargo.toml1.0 KiBsourcehistory
1[package]2name = "up-pov-estimate-rpc"3version = "0.1.0"4license = "GPLv3"5edition = "2021"67[dependencies]8codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = [9	"derive",10] }11serde = { version = "1.0.130", features = ["derive"], default-features = false, optional = true }12scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }13sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }14sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }15sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }1718[features]19default = ["std"]20std = [21	"codec/std",22	"serde/std",23	"scale-info/std",24	"sp-core/std",25	"sp-std/std",26	"sp-api/std",27	"sp-runtime/std",28]