git.delta.rocks / unique-network / refs/commits / 69f287a4abbd

difftreelog

source

runtime/tests/Cargo.toml2.2 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.39" }15sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }16sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }17sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }1819fp-evm-mapping = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.39" }2021frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }22frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }2324pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }25pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }26pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.39" }2728pallet-ethereum = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.39" }29pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/unique-frontier", branch = "unique-polkadot-v0.9.39" }3031pallet-common.path = "../../pallets/common"32pallet-fungible.path = "../../pallets/fungible"33pallet-nonfungible.path = "../../pallets/nonfungible"34pallet-refungible.path = "../../pallets/refungible"35pallet-structure.path = "../../pallets/structure"36pallet-unique.path = "../../pallets/unique"3738pallet-evm-coder-substrate.path = "../../pallets/evm-coder-substrate"3940parity-scale-codec = { version = "3.2.2", default-features = false, features = ["derive"] }41scale-info = "*"4243evm-coder = { workspace = true }44up-sponsorship = { default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.39" }45xcm = { workspace = true }46pallet-xcm = { workspace = true }47pallet-configuration = { workspace = true }