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

difftreelog

source

pallets/proxy-rmrk-core/Cargo.toml1.1 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-rmrk-core"5version = "0.1.2"67[dependencies]8# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.9codec = { workspace = true, package = "parity-scale-codec" }1011scale-info = { workspace = true }1213frame-benchmarking = { workspace = true, optional = true }14frame-support = { workspace = true }15frame-system = { workspace = true }16pallet-common = { workspace = true }17pallet-evm = { workspace = true }18pallet-nonfungible = { workspace = true }19pallet-structure = { workspace = true }20rmrk-traits = { workspace = true }21sp-runtime = { workspace = true }22sp-std = { workspace = true }23up-data-structs = { workspace = true }2425[features]26default = ["std"]27runtime-benchmarks = ['frame-benchmarking', 'frame-support/runtime-benchmarks', 'frame-system/runtime-benchmarks']28std = [29	"frame-support/std",30	"frame-system/std",31	"pallet-common/std",32	"pallet-evm/std",33	"pallet-nonfungible/std",34	"pallet-structure/std",35	"rmrk-traits/std",36	"sp-runtime/std",37	"sp-std/std",38	"up-data-structs/std",39	'frame-benchmarking/std',40]41try-runtime = ["frame-support/try-runtime"]