git.delta.rocks / unique-network / refs/commits / 0895f5c26bec

difftreelog

source

runtime/tests/Cargo.toml2.2 KiBsourcehistory
1[package]2name = "tests"3version = "0.1.1"4edition = "2021"56[features]7default = ['refungible']89refungible = []1011[dependencies]12up-data-structs = { default-features = false, path = '../../primitives/data-structs' }1314sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }15sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }1819fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }2021frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }22frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2324pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }25pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }26pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2728pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }29pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }3031pallet-common = { path = '../../pallets/common' }32pallet-structure = { path = '../../pallets/structure' }33pallet-fungible = { path = '../../pallets/fungible' }34pallet-nonfungible = { path = '../../pallets/nonfungible' }35pallet-refungible = { path = '../../pallets/refungible' }36pallet-unique = { path = '../../pallets/unique' }3738pallet-evm-coder-substrate = { path = '../../pallets/evm-coder-substrate' }3940parity-scale-codec = { version = "3.1.2", default-features = false, features = [41	"derive",42] }43scale-info = "*"4445evm-coder = { default-features = false, path = '../../crates/evm-coder' }46up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.36" }