git.delta.rocks / unique-network / refs/commits / 474086629f2e

difftreelog

source

pallets/refungible/Cargo.toml1.2 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-refungible"5version = "0.2.13"67[dependencies]8parity-scale-codec = { workspace = true }9scale-info = { workspace = true }1011evm-coder = { workspace = true }12frame-benchmarking = { workspace = true, optional = true }13frame-support = { workspace = true }14frame-system = { workspace = true }15pallet-common = { workspace = true }16pallet-evm = { workspace = true }17pallet-evm-coder-substrate = { workspace = true }18pallet-structure = { workspace = true }19sp-core = { workspace = true }20sp-runtime = { workspace = true }21sp-std = { workspace = true }2223up-data-structs = { workspace = true }2425[features]26default = ["std"]27runtime-benchmarks = [28	'frame-benchmarking',29	'frame-support/runtime-benchmarks',30	'frame-system/runtime-benchmarks',31	'up-data-structs/runtime-benchmarks',32]33std = [34	"evm-coder/std",35	"frame-support/std",36	"frame-system/std",37	"pallet-common/std",38	"pallet-evm-coder-substrate/std",39	"pallet-evm/std",40	"pallet-structure/std",41	"sp-runtime/std",42	"sp-std/std",43	"up-data-structs/std",44	'frame-benchmarking/std',45]46stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]47try-runtime = ["frame-support/try-runtime"]