Skip to content

Commit

Permalink
Add asset-registry
Browse files Browse the repository at this point in the history
  • Loading branch information
balqaasem committed Feb 23, 2024
1 parent 5e49e1d commit 2533088
Show file tree
Hide file tree
Showing 5 changed files with 2,246 additions and 0 deletions.
49 changes: 49 additions & 0 deletions blockchain/modules/asset-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
[package]
name = "module-asset-registry"
version = "0.9.81"
authors = ["Setheum Labs"]
edition = "2021"

[dependencies]
log = { workspace = true }
scale-info = { workspace = true }
parity-scale-codec = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
primitives = { workspace = true }

xcm = { workspace = true }

module-support = { workspace = true }

[dev-dependencies]
serde_json = { workspace = true, features = ["std"] }
hex = { workspace = true, features = ["std"] }
sp-core = { workspace = true, features = ["std"] }
sp-io = { workspace = true, features = ["std"] }
pallet-balances = { workspace = true, features = ["std"] }
pallet-timestamp = { workspace = true, features = ["std"] }

module-evm = { workspace = true, features = ["std"] }
module-evm-bridge = { workspace = true, features = ["std"] }

[features]
default = ["std"]
std = [
"log/std",
"parity-scale-codec/std",
"scale-info/std",
"sp-runtime/std",
"sp-std/std",
"frame-support/std",
"frame-system/std",
"primitives/std",
"xcm/std",
"module-support/std",
]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
]
Loading

0 comments on commit 2533088

Please sign in to comment.