git.delta.rocks / unique-network / refs/commits / 8a829ea38883

difftreelog

source

primitives/app_promotion_rpc/Cargo.toml794 Bsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "app-promotion-rpc"5version = "0.1.0"67[dependencies]8codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = ["derive"] }9pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }10sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }11sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }12sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }1314[features]15default = ["std"]16std = ["codec/std", "sp-api/std", "sp-runtime/std", "sp-std/std"]