1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-foreign-assets"5version = "0.1.0"67[dependencies]8codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }9scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }1011frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }12frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }13frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }14log = { version = "0.4.16", default-features = false }15orml-tokens.workspace = true16pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }17pallet-common = { default-features = false, path = "../common" }18pallet-fungible = { default-features = false, path = "../fungible" }19serde = { version = "1.0.136", optional = true }20sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }21sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }22up-data-structs = { default-features = false, path = "../../primitives/data-structs" }23xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }24xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }2526[dev-dependencies]27hex = "0.4"28pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }29pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }30serde_json = "1.0.68"31sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }32sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }3334[features]35default = ["std"]36runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']37std = [38 "codec/std",39 "frame-support/std",40 "frame-system/std",41 "log/std",42 "orml-tokens/std",43 "pallet-balances/std",44 "pallet-common/std",45 "pallet-fungible/std",46 "scale-info/std",47 "serde",48 "sp-io/std",49 "sp-runtime/std",50 "sp-std/std",51 "up-data-structs/std",52]53try-runtime = ["frame-support/try-runtime"]