1[package]2edition = "2021"3license = "GPLv3"4name = "up-rpc"5version = "0.1.3"67[dependencies]8codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = ["derive"] }9pallet-common = { default-features = false, path = "../../pallets/common" }10pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }11sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }12sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }14sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }15up-data-structs = { default-features = false, path = "../data-structs" }1617[features]18default = ["std"]19std = [20 "codec/std",21 "pallet-common/std",22 "sp-api/std",23 "sp-core/std",24 "sp-runtime/std",25 "sp-std/std",26 "up-data-structs/std",27]