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

difftreelog

source

primitives/rpc/Cargo.toml1.3 KiBsourcehistory
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", branch = "polkadot-v0.9.21" }14sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }15sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }17pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.21-logs" }1819# RMRK20# todo git21# rmrk-traits = { default-features = false, git = "https://github.com/UniqueNetwork/rmrk-substrate.git", branch = "test/tests-basic-infrastructure" } 2223[features]24default = ["std"]25std = [26	"codec/std",27	"sp-core/std",28	"sp-std/std",29	"sp-api/std",30	"sp-runtime/std",31	"pallet-common/std",32	"up-data-structs/std",33]