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

difftreelog

source

pallets/foreign-assets/Cargo.toml2.8 KiBsourcehistory
1[package]2name = "pallet-foreign-assets"3version = "0.1.0"4license = "GPLv3"5edition = "2021"67[dependencies]8log = { version = "0.4.16", 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.27", default-features = false }13sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27", default-features = false  }14frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27", default-features = false }15frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27", 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.27", 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.27", default-features = false }21xcm-builder = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.27", default-features = false }22xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.27", default-features = false }23#orml-tokens = { git = 'https://github.com/UniqueNetwork/open-runtime-module-library', branch = 'unique-polkadot-v0.9.24', version = "0.4.1-dev", default-features = false }24orml-tokens = { git = "https://github.com/open-web3-stack/open-runtime-module-library", branch = "polkadot-v0.9.27", version = "0.4.1-dev", default-features = false }25frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }2627[dev-dependencies]28serde_json = "1.0.68"29hex = { version = "0.4" }30sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }31sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }32pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }33pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }3435[features]36default = ["std"]37std = [38	"serde",39	"log/std",40	"codec/std",41	"scale-info/std",42	"sp-runtime/std",43	"sp-std/std",44	"frame-support/std",45	"frame-system/std",46	"up-data-structs/std",47	"pallet-common/std",48	"pallet-balances/std",49	"pallet-fungible/std",50	"orml-tokens/std"51]52try-runtime = ["frame-support/try-runtime"]53runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']