git.delta.rocks / unique-network / refs/commits / 32f66f7e1404

difftreelog

source

pallets/fungible/Cargo.toml1.1 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-fungible"5version = "0.1.11"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 }22up-data-structs = { workspace = true }2324[features]25default = ["std"]26runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']27std = [28	"evm-coder/std",29	"frame-support/std",30	"frame-system/std",31	"pallet-common/std",32	"pallet-evm-coder-substrate/std",33	"pallet-evm/std",34	"pallet-structure/std",35	"sp-runtime/std",36	"sp-std/std",37	"up-data-structs/std",38	'frame-benchmarking/std',39]40stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]41try-runtime = ["frame-support/try-runtime"]