1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-foreign-assets"5version = "0.1.0"67[dependencies]8parity-scale-codec = { workspace = true }9scale-info = { workspace = true }1011frame-benchmarking = { workspace = true, optional = true }12frame-support = { workspace = true }13frame-system = { workspace = true }14log = { workspace = true }15pallet-balances = { features = ["insecure_zero_ed"], workspace = true }16pallet-common = { workspace = true }17pallet-fungible = { workspace = true }18serde = { workspace = true }19sp-runtime = { workspace = true }20sp-std = { workspace = true }21staging-xcm = { workspace = true }22staging-xcm-executor = { workspace = true }23up-data-structs = { workspace = true }2425[features]26default = ["std"]27runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']28std = [29 "frame-support/std",30 "frame-system/std",31 "log/std",32 "pallet-balances/std",33 "pallet-common/std",34 "pallet-fungible/std",35 "parity-scale-codec/std",36 "scale-info/std",37 "sp-runtime/std",38 "sp-std/std",39 "staging-xcm-executor/std",40 "up-data-structs/std",41]42try-runtime = ["frame-support/try-runtime"]