1[package]2name = "up-rpc"3version = "0.1.3"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", branch = "polkadot-v0.9.30" }14sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }15sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }17pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30-2" }1819[features]20default = ["std"]21std = [22 "codec/std",23 "sp-core/std",24 "sp-std/std",25 "sp-api/std",26 "sp-runtime/std",27 "pallet-common/std",28 "up-data-structs/std",29]