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

difftreelog

source

primitives/rmrk-rpc/Cargo.toml978 Bsourcehistory
1[package]2name = "rmrk-rpc"3version = "0.0.2"4license = ""5edition = "2021"67[dependencies]8codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = [9	"derive",10] }11sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }12sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }14sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }15serde = { version = "1.0.130", default-features = false, features = ["derive"] }16rmrk-traits = { default-features = false, path = "../rmrk-traits" }1718[features]19default = ["std"]20std = [21	"codec/std",22	"sp-core/std",23	"sp-std/std",24	"sp-api/std",25	"sp-runtime/std",26	"serde/std",27	"rmrk-traits/std",28]