1[package]2name = "pallet-foreing-assets"3version = "0.1.0"4license = "GPLv3"5edition = "2021"67[dependencies]8log = { version = "0.4.14", default-features = false }9serde = { version = "1.0.136", optional = true }10scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }11codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }12sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24", default-features = false }13sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24", default-features = false }14frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24", default-features = false }15frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24", default-features = false }16up-data-structs = { default-features = false, path = '../../primitives/data-structs' }17pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24", default-features = false }18pallet-common = { default-features = false, path = '../common' }19pallet-fungible = { default-features = false, path = '../fungible' }20xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.24", default-features = false }21xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.24", default-features = false }22xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.24", default-features = false }23orml-tokens = { git = 'https://github.com/UniqueNetwork/open-runtime-module-library', branch = 'unique-polkadot-v0.9.24', version = "0.4.1-dev", default-features = false }2425[dev-dependencies]26serde_json = "1.0.68"27hex = { version = "0.4" }28sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }29sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }30pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }31pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.24" }3233[features]34default = ["std"]35std = [36 "serde",37 "log/std",38 "codec/std",39 "scale-info/std",40 "sp-runtime/std",41 "sp-std/std",42 "frame-support/std",43 "frame-system/std",44 "up-data-structs/std",45 "pallet-common/std",46 "pallet-balances/std",47 "pallet-fungible/std",48 "orml-tokens/std"49]50try-runtime = ["frame-support/try-runtime"]