git.delta.rocks / unique-network / refs/commits / 751651bbbc76

difftreelog

source

pallets/foreign-assets/Cargo.toml2.0 KiBsourcehistory
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.37" }12frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37", default-features = false }13frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37", 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.37", default-features = false }17pallet-common = { default-features = false, path = "../common" }18pallet-fungible = { default-features = false, path = "../fungible" }19serde = { version = "1.0.136", default-features = false, optional = true }20sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37", default-features = false }21sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.37", default-features = false }22up-data-structs = { default-features = false, path = "../../primitives/data-structs" }23xcm = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }24xcm-executor = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.37", default-features = false }2526[features]27default = ["std"]28runtime-benchmarks = ['frame-benchmarking', 'pallet-common/runtime-benchmarks']29std = [30	"codec/std",31	"frame-support/std",32	"frame-system/std",33	"log/std",34	"orml-tokens/std",35	"pallet-balances/std",36	"pallet-common/std",37	"pallet-fungible/std",38	"scale-info/std",39	"serde",40	"sp-runtime/std",41	"sp-std/std",42	"up-data-structs/std",43]44try-runtime = ["frame-support/try-runtime"]