git.delta.rocks / unique-network / refs/commits / 1d12e73b766b

difftreelog

source

primitives/rpc/Cargo.toml1.0 KiBsourcehistory
1[package]2name = "up-rpc"3version = "0.1.0"4edition = "2018"56[dependencies]7pallet-common = { default-features = false, path = '../../pallets/common' }8nft-data-structs = { default-features = false, path = '../nft' }9codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }10sp-core = { default-features = false, version = "4.0.0-dev", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }11sp-std = { default-features = false, version = "4.0.0-dev", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }12sp-api = { default-features = false, version = "4.0.0-dev", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }13sp-runtime = { default-features = false, version = '4.0.0-dev', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.10' }1415[features]16default = ["std"]17std = [18	"codec/std",19	"sp-core/std",20	"sp-std/std",21	"sp-api/std",22	"sp-runtime/std",23	"pallet-common/std",24	"nft-data-structs/std",25]