git.delta.rocks / unique-network / refs/commits / e83438b2f76b

difftreelog

source

primitives/rpc/Cargo.toml1009 Bsourcehistory
1[package]2name = "up-rpc"3version = "0.1.0"4license = "GPLv3"5edition = "2021"67[dependencies]8pallet-common = { default-features = false, path = '../../pallets/common' }9up-data-structs = { default-features = false, path = '../data-structs' }10codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = [11	"derive",12] }13sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }14sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }15sp-api = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }16sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }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	"pallet-common/std",27	"up-data-structs/std",28]