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

difftreelog

source

pallets/foreign-assets/Cargo.toml1.3 KiBsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-foreign-assets"5version = "0.1.0"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 }16log = { workspace = true }17orml-tokens = { workspace = true }18pallet-balances = { features = ["insecure_zero_ed"], workspace = true }19pallet-common = { workspace = true }20pallet-fungible = { workspace = true }21serde = { workspace = true, optional = true }22sp-runtime = { workspace = true }23sp-std = { workspace = true }24up-data-structs = { workspace = true }25xcm = { workspace = true }26xcm-executor = { workspace = true }2728[features]29default = ["std"]30runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']31std = [32	"codec/std",33	"frame-support/std",34	"frame-system/std",35	"log/std",36	"orml-tokens/std",37	"pallet-balances/std",38	"pallet-common/std",39	"pallet-fungible/std",40	"scale-info/std",41	"serde",42	"sp-runtime/std",43	"sp-std/std",44	"up-data-structs/std",45	"xcm-executor/std"46]47try-runtime = ["frame-support/try-runtime"]