Skip to content

Commit

Permalink
feat: add hooks
Browse files Browse the repository at this point in the history
  • Loading branch information
José Molina committed Sep 20, 2023
1 parent 629f342 commit e547869
Show file tree
Hide file tree
Showing 6 changed files with 266 additions and 91 deletions.
99 changes: 50 additions & 49 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 3 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,10 @@ description = "Library for performing storage migrations in Substrate pallets"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
syn = "2.0.32"
proc-macro2 = "1.0.64"
quote = "1.0.33"
proc-macro-crate = "1.3.1"
log = { version = "0.4", default-features = false }
codec = { package = "parity-scale-codec", version = "3.6.5", default-features = false, features = ["derive", "max-encoded-len"] }
log = "0.4"
parity-scale-codec = { version = "3.6", default-features = false, features = ["derive", "max-encoded-len"] }
migratable-procedural = { path = "./procedural", default-features = false }
frame-support = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
frame-support-procedural = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
frame-system = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v1.0.0" }
Expand All @@ -29,7 +24,7 @@ impl-trait-for-tuples = "0.2"
[features]
default = ["std"]
std = [
"codec/std",
"parity-scale-codec/std",
"frame-support/std",
"frame-system/std",
"sp-runtime/std",
Expand Down
Loading

0 comments on commit e547869

Please sign in to comment.