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 }15orml-tokens = { workspace = true }16pallet-balances = { features = ["insecure_zero_ed"], workspace = true }17pallet-common = { workspace = true }18pallet-fungible = { workspace = true }19serde = { workspace = true }20sp-runtime = { workspace = true }21sp-std = { workspace = true }22staging-xcm = { workspace = true }23staging-xcm-executor = { workspace = true }24up-data-structs = { workspace = true }2526[features]27default = ["std"]28runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']29std = [30 "frame-support/std",31 "frame-system/std",32 "log/std",33 "orml-tokens/std",34 "pallet-balances/std",35 "pallet-common/std",36 "pallet-fungible/std",37 "parity-scale-codec/std",38 "scale-info/std",39 "sp-runtime/std",40 "sp-std/std",41 "staging-xcm-executor/std",42 "up-data-structs/std",43]44try-runtime = ["frame-support/try-runtime"]