chore: bump svm-rs (#2179)

This commit is contained in:
Matthias Seitz 2023-02-23 21:48:41 +01:00 committed by GitHub
parent 2090bf560e
commit c679d402cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 7 deletions

8
Cargo.lock generated
View File

@ -4114,9 +4114,9 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
[[package]] [[package]]
name = "svm-rs" name = "svm-rs"
version = "0.2.20" version = "0.2.21"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1b8e811a6443e8d93665a5e532efa8429ea8e2052a234a82e2cd69478913310" checksum = "719b86a8043b9bf425247c8f559edb1de8cfc5d444f8b8f19af2d7d24a7f0988"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"cfg-if 1.0.0", "cfg-if 1.0.0",
@ -4145,9 +4145,9 @@ dependencies = [
[[package]] [[package]]
name = "svm-rs-builds" name = "svm-rs-builds"
version = "0.1.12" version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a61ba26a7b971b10d5211b945f6d3661c883bf3e67ffb95ebb4051f14ef14b99" checksum = "0b7d778dbd9c8f2b55a44fd953c2ccf91e8e1893406693263a22c9403cf65156"
dependencies = [ dependencies = [
"build_const", "build_const",
"hex", "hex",

View File

@ -45,10 +45,10 @@ cfg-if = "1.0.0"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
home = "0.5.4" home = "0.5.4"
svm = { package = "svm-rs", version = "0.2.20", default-features = false, optional = true, features = [ svm = { package = "svm-rs", version = "0.2", default-features = false, optional = true, features = [
"blocking", "blocking",
] } ] }
svm-builds = { package = "svm-rs-builds", version = "0.1.12", optional = true } svm-builds = { package = "svm-rs-builds", version = "0.1", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]
# NOTE: this enables wasm compatibility for getrandom indirectly # NOTE: this enables wasm compatibility for getrandom indirectly

View File

@ -830,7 +830,7 @@ mod tests {
// update this test whenever there's a new sol // update this test whenever there's a new sol
// version. that's ok! good reminder to check the // version. that's ok! good reminder to check the
// patch notes. // patch notes.
(">=0.5.0", "0.8.18"), (">=0.5.0", "0.8.19"),
// range // range
(">=0.4.0 <0.5.0", "0.4.26"), (">=0.4.0 <0.5.0", "0.4.26"),
] ]