git.delta.rocks / unique-network / refs/commits / 4dff934f02cf

difftreelog

source

pallets/foreign-assets/Cargo.toml2.5 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 = [11	"derive",12] }13codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }14sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }15sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }16frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }17frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }18up-data-structs = { default-features = false, path = '../../primitives/data-structs' }19pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }20pallet-common = { default-features = false, path = '../common' }21pallet-fungible = { default-features = false, path = '../fungible' }22xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36", default-features = false }23xcm-builder = { 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 }25orml-tokens.workspace = true26frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2728[dev-dependencies]29serde_json = "1.0.68"30hex = { version = "0.4" }31sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }32sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }33pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }34pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }3536[features]37default = ["std"]38std = [39	"serde",40	"log/std",41	"codec/std",42	"scale-info/std",43	"sp-runtime/std",44	"sp-std/std",45	"frame-support/std",46	"frame-system/std",47	"up-data-structs/std",48	"pallet-common/std",49	"pallet-balances/std",50	"pallet-fungible/std",51	"orml-tokens/std",52]53try-runtime = ["frame-support/try-runtime"]54runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']