Skip to content

Commit

Permalink
go
Browse files Browse the repository at this point in the history
  • Loading branch information
guibescos committed Dec 20, 2024
1 parent 6a84fbb commit 94758a3
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 51 deletions.
41 changes: 21 additions & 20 deletions Cargo.lock

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

11 changes: 2 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,5 @@ async-stream = "0.3.5"
serde_yaml = "0.9.25"
url = "2.5.4"
rand = "0.8.5"
anchor-lang = { git = "https://github.com/coral-xyz/anchor", branch = "master" }

# The curve25519-dalek crate is a dependency of solana-sdk.
# This crate relies on a specific version of zeroize that is incompatible with many other packages.
# You can find more details in this issue https://github.com/solana-labs/solana/issues/26688
# Solana Labs has provided a solution for some of these package incompatibilities, which can be found here https://github.com/solana-labs/solana/blob/27eff8408b7223bb3c4ab70523f8a8dca3ca6645/Cargo.toml#L514
[patch.crates-io.curve25519-dalek]
git = "https://github.com/solana-labs/curve25519-dalek.git"
rev = "b500cdc2a920cd5bff9e2dd974d7b97349d61464"
anchor-lang = { git = "https://github.com/coral-xyz/anchor", rev = "6df05aa" }
litesvm = { git = "https://github.com/LiteSVM/litesvm", rev = "5346e86" }
2 changes: 1 addition & 1 deletion auction-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ express-relay = { path = "../contracts/svm/programs/express_relay" }
solana-rpc-client ={ workspace = true }
solana-transaction-status = { workspace = true }
borsh = "1.5.1"
litesvm = { git = "https://github.com/LiteSVM/litesvm", branch = "master" }
litesvm = { workspace = true }
express-relay-api-types = { path = "api-types" }
34 changes: 17 additions & 17 deletions contracts/svm/Cargo.lock

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

8 changes: 4 additions & 4 deletions contracts/svm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ incremental = false
codegen-units = 1

[workspace.dependencies]
anchor-lang = { git = "https://github.com/coral-xyz/anchor", branch = "master" }
anchor-spl = { git = "https://github.com/coral-xyz/anchor", branch = "master" }
anchor-client = { git = "https://github.com/coral-xyz/anchor", branch = "master" }
litesvm = { git = "https://github.com/LiteSVM/litesvm", branch = "master" }
anchor-lang = { git = "https://github.com/coral-xyz/anchor", rev = "6df05aa" }
anchor-spl = { git = "https://github.com/coral-xyz/anchor", rev = "6df05aa" }
anchor-client = { git = "https://github.com/coral-xyz/anchor", rev = "6df05aa" }
litesvm = { git = "https://github.com/LiteSVM/litesvm", rev = "5346e86" }
solana-program = "=2.1.0"
solana-program-test = "=2.1.0"
solana-sdk = "=2.1.0"

0 comments on commit 94758a3

Please sign in to comment.