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

difftreelog

source

pallets/nonfungible/Cargo.toml2.1 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-nonfungible"5version = "0.1.13"67[dependencies]8codec = { default-features = false, features = ['derive'], package = 'parity-scale-codec', version = "3.1.2" }9evm-coder = { default-features = false, path = "../../crates/evm-coder" }10frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }11frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }12frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13pallet-common = { default-features = false, path = "../common" }14pallet-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }15pallet-evm-coder-substrate = { default-features = false, path = "../evm-coder-substrate" }16pallet-structure = { default-features = false, path = "../structure" }17scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }19sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }20sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }21struct-versioning.path = "../../crates/struct-versioning"22up-data-structs = { default-features = false, path = "../../primitives/data-structs" }2324[features]25default = ["std"]26runtime-benchmarks = [27	'frame-benchmarking',28	'frame-support/runtime-benchmarks',29	'frame-system/runtime-benchmarks',30	'up-data-structs/runtime-benchmarks',31]32std = [33	"evm-coder/std",34	"frame-support/std",35	"frame-system/std",36	"pallet-common/std",37	"pallet-evm-coder-substrate/std",38	"pallet-evm/std",39	"pallet-structure/std",40	"sp-runtime/std",41	"sp-std/std",42	"up-data-structs/std",43	'frame-benchmarking/std',44]45stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]46try-runtime = ["frame-support/try-runtime"]