Skip to content

Commit

Permalink
fix: add frame-support-procedural
Browse files Browse the repository at this point in the history
  • Loading branch information
chungquantin committed Sep 30, 2024
1 parent b210bfa commit dfc1628
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 14 deletions.
25 changes: 13 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
[workspace]
resolver = "2"
members = [
"crates/ink-sandbox",
"crates/drink/drink",
"crates/drink/drink-cli",
"crates/drink/drink/test-macro",
"crates/pop-drink",
]
exclude = [
"crates/drink/examples",
"crates/drink/examples",
]
members = [
"crates/drink/drink",
"crates/drink/drink-cli",
"crates/drink/drink/test-macro",
"crates/ink-sandbox",
"crates/pop-drink",
]
resolver = "2"

[workspace.package]
edition = "2021"
repository = "https://github.com/r0gue-io/pop-drink"

[workspace.dependencies]
log = { version = "0.4.21" }
anyhow = { version = "1.0.71" }
cargo_metadata = { version = "0.18.1" }
clap = { version = "4.3.4" }
Expand All @@ -26,13 +25,14 @@ contract-transcode = { version = "4.0.0" }
convert_case = { version = "0.6.0" }
crossterm = { version = "0.26.0" }
darling = { version = "0.20.3" }
log = { version = "0.4.21" }
parity-scale-codec-derive = { version = "3.6.9" }
paste = { version = "1.0.7" }
proc-macro2 = { version = "1" }
quote = { version = "1" }
ratatui = { version = "0.21.0" }
scale = { package = "parity-scale-codec", version = "3.6.9", features = [
"derive",
"derive",
] }
scale-info = { version = "2.10.0" }
serde_json = { version = "1.0" }
Expand All @@ -43,6 +43,7 @@ wat = { version = "1.0.71" }
# Substrate dependencies
frame-metadata = { version = "16.0.0" }
frame-support = { version = "36.0.0" }
frame-support-procedural = { version = "=30.0.1" }
frame-system = { version = "36.1.0" }
pallet-assets = { version = "37.0.0" }
pallet-balances = { version = "37.0.0" }
Expand All @@ -51,7 +52,7 @@ pallet-timestamp = { version = "35.0.0" }
sp-core = { version = "34.0.0" }
sp-externalities = { version = "0.29.0" }
sp-io = { version = "37.0.0" }
sp-runtime-interface = { version = "28.0.0", features = ["std"] }
sp-runtime-interface = { version = "28.0.0", features = [ "std" ] }

# Local
drink = { path = "crates/drink/drink" }
Expand Down
5 changes: 3 additions & 2 deletions crates/pop-drink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[package]
edition = "2021"
name = "pop-drink"
version = "0.1.0"
edition = "2021"

[dependencies]
drink.workspace = true
frame-support-procedural.workspace = true
frame-support.workspace = true
ink_sandbox.workspace = true
pop-runtime-devnet.workspace = true
frame-support.workspace = true
sp-io.workspace = true

0 comments on commit dfc1628

Please sign in to comment.