Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Draft] Running experiments using latest env in core and flipping curr to latest env in rust bridge #4286

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,15 @@ git = "https://github.com/stellar/rs-soroban-env"
package = "soroban-env-host"
rev = "93120b6b32cd910fcc224cbf6aec1333f771a8bc"

# This copy of the soroban host is for testing the latest env changes.
# This could be unstable so will only be used in our vnext job for
# early testing of env changes.

[dependencies.soroban-env-host-latest]
git = "https://github.com/stellar/rs-soroban-env"
package = "soroban-env-host"
rev = "cd534ed18dc44368b26e0c5089756cd1bcde0bc1"

[dependencies.soroban-test-wasms]
version = "=21.0.0"
git = "https://github.com/stellar/rs-soroban-env"
Expand All @@ -83,4 +92,4 @@ features = ["dependency-tree"]
[features]
soroban-env-host-prev = ["dep:soroban-env-host-prev"]
tracy = ["dep:tracy-client", "soroban-env-host-curr/tracy"]
core-vnext = ["soroban-env-host-curr/next"]
core-vnext = ["soroban-env-host-latest/next"]
Loading
Loading