Skip to content

Commit 085fac9

Browse files
committed
adapt to p27 release
1 parent c96c93c commit 085fac9

5 files changed

Lines changed: 39 additions & 35 deletions

File tree

Cargo.lock

Lines changed: 27 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/rust/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ tracy-client = { version = "=0.17.0", features = [
115115
# unify them, perturbing the contents of the lockfile.
116116

117117
[dependencies.soroban-env-host-p27]
118-
version = "=26.1.2"
118+
version = "=27.0.0"
119119
git = "https://github.com/stellar/rs-soroban-env"
120120
package = "soroban-env-host"
121-
rev = "7fb0a840812fe8921bb48bebf7b4aa7160467ec8"
121+
rev = "b03d2563f3a08d51095a19bdbb6d90364b8ce04a"
122122
optional = true
123123

124124
[dependencies.soroban-env-host-p26]
@@ -167,24 +167,24 @@ optional = true
167167
# supported host, since test material usually just grows over time.
168168

169169
[dependencies.soroban-test-wasms]
170-
version = "=26.0.0"
170+
version = "=27.0.0"
171171
git = "https://github.com/stellar/rs-soroban-env"
172-
rev = "b351f88a468d3b9e1d6de53d5b0ca585f6b7dadb"
172+
rev = "b03d2563f3a08d51095a19bdbb6d90364b8ce04a"
173173

174174
[dependencies.soroban-synth-wasm]
175-
version = "=26.0.0"
175+
version = "=27.0.0"
176176
git = "https://github.com/stellar/rs-soroban-env"
177-
rev = "b351f88a468d3b9e1d6de53d5b0ca585f6b7dadb"
177+
rev = "b03d2563f3a08d51095a19bdbb6d90364b8ce04a"
178178

179179
# The soroban-fuzz-targets crate will actually pull in _its own copy_ of the
180180
# soroban host (or at least unify with one of the versions above if you're doing
181181
# a unified build) which means that it should also be updated any time the max
182182
# soroban is updated -- it should track the highest protocol available (or
183183
# at least whichever one you want to fuzz).
184184
[dependencies.soroban-fuzz-targets]
185-
version = "=26.0.0"
185+
version = "=27.0.0"
186186
git = "https://github.com/stellar/rs-soroban-env"
187-
rev = "b351f88a468d3b9e1d6de53d5b0ca585f6b7dadb"
187+
rev = "b03d2563f3a08d51095a19bdbb6d90364b8ce04a"
188188
optional = true
189189

190190
[dependencies.stellar-quorum-analyzer]

src/rust/src/soroban_proto_all.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ pub(crate) mod p27 {
220220
}
221221
}
222222

223+
#[cfg(not(feature = "fastdev"))]
223224
#[path = "."]
224225
pub(crate) mod p26 {
225226
pub(crate) extern crate soroban_env_host_p26;
@@ -1477,6 +1478,7 @@ const HOST_MODULES: &'static [HostModule] = &[
14771478
proto_versioned_functions_for_module!(p24),
14781479
#[cfg(not(feature = "fastdev"))]
14791480
proto_versioned_functions_for_module!(p25),
1481+
#[cfg(not(feature = "fastdev"))]
14801482
proto_versioned_functions_for_module!(p26),
14811483
proto_versioned_functions_for_module!(p27),
14821484
];

src/rust/src/soroban_proto_any.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use crate::{
1010
InvokeHostFunctionOutput, RustBuf, SorobanVersionInfo, XDRFileHash,
1111
},
1212
};
13-
use log::{debug, error, trace, warn};
13+
use log::{debug, error, trace};
1414
use std::{fmt::Display, io::Cursor, panic, rc::Rc, time::Instant};
1515

1616
// This module (soroban_proto_any) is bound to _multiple locations_ in the

src/rust/src/soroban_test_extra_protocol.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ pub(super) fn maybe_invoke_host_function_again_and_compare_outputs(
8383
}
8484
}
8585

86+
#[cfg_attr(feature = "fastdev", allow(unused_variables))]
8687
fn modify_resources_for_extra_test_execution(
8788
instruction_limit: &mut u32,
8889
resources_buf: &mut CxxBuf,

0 commit comments

Comments
 (0)