Skip to content

Commit

Permalink
fix(class): 🐛 #116
Browse files Browse the repository at this point in the history
This is a temporary fix using a fork of starknet-rs. Will need to manually update to commit [c974e5c](xJonathanLEI/starknet-rs@c974e5c) in the future.
  • Loading branch information
Trantorian committed Feb 7, 2024
1 parent 954e2ba commit b6bbbf6
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 53 deletions.
100 changes: 55 additions & 45 deletions Cargo.lock

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

26 changes: 18 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -203,13 +203,23 @@ cairo-vm = { git = "https://github.com/keep-starknet-strange/cairo-rs", branch =
"cairo-1-hints",
"parity-scale-codec",
] }
starknet-accounts = { git = "https://github.com/xJonathanLEI/starknet-rs.git", rev = "95d50ac", default-features = false }
starknet-contract = { git = "https://github.com/xJonathanLEI/starknet-rs.git", rev = "95d50ac", default-features = false }
starknet-core = { git = "https://github.com/xJonathanLEI/starknet-rs.git", rev = "95d50ac", default-features = false }
starknet-crypto = { git = "https://github.com/xJonathanLEI/starknet-rs.git", rev = "95d50ac", default-features = false }
starknet-ff = { git = "https://github.com/xJonathanLEI/starknet-rs.git", rev = "95d50ac", default-features = false }
starknet-providers = { git = "https://github.com/xJonathanLEI/starknet-rs.git", rev = "95d50ac", default-features = false }
starknet-signers = { git = "https://github.com/xJonathanLEI/starknet-rs.git", rev = "95d50ac", default-features = false }
# starknet-accounts = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }
# starknet-contract = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }
# starknet-core = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }
# starknet-crypto = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }
# starknet-ff = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }
# starknet-providers = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }
# starknet-signers = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }

# temporary fokr fix for `failed deserialization when accessible_scopes is missing`
# until we can update to commit c974e5c is starknet-rs
starknet-accounts = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }
starknet-contract = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }
starknet-core = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }
starknet-crypto = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }
starknet-ff = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }
starknet-providers = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }
starknet-signers = { git = "https://github.com/jbcaron/starknet-rs.git", branch = "classes", default-features = false }

blockifier = { git = "https://github.com/keep-starknet-strange/blockifier", branch = "no_std-support-7578442", default-features = false, features = [
"parity-scale-codec",
Expand Down Expand Up @@ -286,7 +296,7 @@ http = "0.2.8"
hyper = "0.14"
insta = "1.29.0"
integer-encoding = "3.0.4"
itertools = "0.10.5"
itertools = "0.12.1"
jsonschema = "0.17.0"
libmdbx = "0.3.5"
mc-deoxys = { path = "crates/client/deoxys" }
Expand Down

0 comments on commit b6bbbf6

Please sign in to comment.