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

difftreelog

source

runtime/tests/Cargo.toml2.1 KiBsourcehistory
1[package]2edition = "2021"3name = "tests"4version = "0.1.1"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.42" }15sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }16sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }17sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }1819frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }20frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }2122pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }23pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }24pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.42" }2526pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.42" }27pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.42" }2829pallet-common.path = "../../pallets/common"30pallet-fungible.path = "../../pallets/fungible"31pallet-nonfungible.path = "../../pallets/nonfungible"32pallet-refungible.path = "../../pallets/refungible"33pallet-structure.path = "../../pallets/structure"34pallet-unique.path = "../../pallets/unique"3536pallet-evm-coder-substrate.path = "../../pallets/evm-coder-substrate"3738parity-scale-codec = { version = "3.2.2", default-features = false, features = ["derive"] }39scale-info = "*"4041evm-coder = { workspace = true }42up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.42" }43xcm = { workspace = true }44pallet-xcm = { workspace = true }45pallet-configuration = { workspace = true }