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 = [10 "derive",11] }12sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }13sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }14sp-api = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }15sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.12' }1617[features]18default = ["std"]19std = [20 "codec/std",21 "sp-core/std",22 "sp-std/std",23 "sp-api/std",24 "sp-runtime/std",25 "pallet-common/std",26 "nft-data-structs/std",27]