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

difftreelog

source

pallets/fungible/Cargo.toml1.2 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-fungible"5version = "0.1.11"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 }1213evm-coder = { workspace = true }14frame-benchmarking = { workspace = true, optional = true }15frame-support = { workspace = true }16frame-system = { workspace = true }17pallet-common = { workspace = true }18pallet-evm = { workspace = true }19pallet-evm-coder-substrate = { workspace = true }20pallet-structure = { workspace = true }21sp-core = { workspace = true }22sp-runtime = { workspace = true }23sp-std = { workspace = true }24up-data-structs = { workspace = true }2526[features]27default = ["std"]28runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']29std = [30	"evm-coder/std",31	"frame-support/std",32	"frame-system/std",33	"pallet-common/std",34	"pallet-evm-coder-substrate/std",35	"pallet-evm/std",36	"pallet-structure/std",37	"sp-runtime/std",38	"sp-std/std",39	"up-data-structs/std",40	'frame-benchmarking/std',41]42stubgen = ["evm-coder/stubgen", "pallet-common/stubgen"]43try-runtime = ["frame-support/try-runtime"]