diff --git a/test-cases/dos-unbounded-operation/dos-unbounded-operation-1/remediated-example/Cargo.toml b/test-cases/dos-unbounded-operation/dos-unbounded-operation-1/remediated-example/Cargo.toml index a0a9680f..09f3bff0 100644 --- a/test-cases/dos-unbounded-operation/dos-unbounded-operation-1/remediated-example/Cargo.toml +++ b/test-cases/dos-unbounded-operation/dos-unbounded-operation-1/remediated-example/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -soroban-sdk = { version = "20.0.0-rc2" } +soroban-sdk = { version = "20.0.0" } [dev_dependencies] -soroban-sdk = { version = "20.0.0-rc2", features = ["testutils"] } +soroban-sdk = { version = "20.0.0", features = ["testutils"] } [features] testutils = ["soroban-sdk/testutils"] diff --git a/test-cases/dos-unbounded-operation/dos-unbounded-operation-1/vulnerable-example/Cargo.toml b/test-cases/dos-unbounded-operation/dos-unbounded-operation-1/vulnerable-example/Cargo.toml index 8208f45f..59fef86f 100644 --- a/test-cases/dos-unbounded-operation/dos-unbounded-operation-1/vulnerable-example/Cargo.toml +++ b/test-cases/dos-unbounded-operation/dos-unbounded-operation-1/vulnerable-example/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -soroban-sdk = { version = "20.0.0-rc2" } +soroban-sdk = { version = "20.0.0" } [dev_dependencies] -soroban-sdk = { version = "20.0.0-rc2", features = ["testutils"] } +soroban-sdk = { version = "20.0.0", features = ["testutils"] } [features] testutils = ["soroban-sdk/testutils"] diff --git a/test-cases/dos-unbounded-operation/dos-unbounded-operation-2/remediated-example/Cargo.toml b/test-cases/dos-unbounded-operation/dos-unbounded-operation-2/remediated-example/Cargo.toml index 6cd5597d..033fbc91 100644 --- a/test-cases/dos-unbounded-operation/dos-unbounded-operation-2/remediated-example/Cargo.toml +++ b/test-cases/dos-unbounded-operation/dos-unbounded-operation-2/remediated-example/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -soroban-sdk = { version = "20.0.0-rc2" } +soroban-sdk = { version = "20.0.0" } [dev_dependencies] -soroban-sdk = { version = "20.0.0-rc2", features = ["testutils"] } +soroban-sdk = { version = "20.0.0", features = ["testutils"] } [features] testutils = ["soroban-sdk/testutils"] diff --git a/test-cases/dos-unbounded-operation/dos-unbounded-operation-2/remediated-example/src/lib.rs b/test-cases/dos-unbounded-operation/dos-unbounded-operation-2/remediated-example/src/lib.rs index 49ba642d..080c6a40 100644 --- a/test-cases/dos-unbounded-operation/dos-unbounded-operation-2/remediated-example/src/lib.rs +++ b/test-cases/dos-unbounded-operation/dos-unbounded-operation-2/remediated-example/src/lib.rs @@ -32,7 +32,7 @@ mod tests { // ... // When - let count = DosUnboundedOperation::safe_loop_with_vector(); + let count = DosUnboundedOperation::safe_loop_with_struct(); // Then assert_eq!(count, 499500); diff --git a/test-cases/dos-unbounded-operation/dos-unbounded-operation-2/vulnerable-example/Cargo.toml b/test-cases/dos-unbounded-operation/dos-unbounded-operation-2/vulnerable-example/Cargo.toml index 1ff44327..9168c29c 100644 --- a/test-cases/dos-unbounded-operation/dos-unbounded-operation-2/vulnerable-example/Cargo.toml +++ b/test-cases/dos-unbounded-operation/dos-unbounded-operation-2/vulnerable-example/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -soroban-sdk = { version = "20.0.0-rc2" } +soroban-sdk = { version = "20.0.0" } [dev_dependencies] -soroban-sdk = { version = "20.0.0-rc2", features = ["testutils"] } +soroban-sdk = { version = "20.0.0", features = ["testutils"] } [features] testutils = ["soroban-sdk/testutils"] diff --git a/test-cases/dos-unbounded-operation/dos-unbounded-operation-3/remediated-example/Cargo.toml b/test-cases/dos-unbounded-operation/dos-unbounded-operation-3/remediated-example/Cargo.toml index 689dc2c4..67c931fb 100644 --- a/test-cases/dos-unbounded-operation/dos-unbounded-operation-3/remediated-example/Cargo.toml +++ b/test-cases/dos-unbounded-operation/dos-unbounded-operation-3/remediated-example/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -soroban-sdk = { version = "20.0.0-rc2" } +soroban-sdk = { version = "20.0.0" } [dev_dependencies] -soroban-sdk = { version = "20.0.0-rc2", features = ["testutils"] } +soroban-sdk = { version = "20.0.0", features = ["testutils"] } [features] testutils = ["soroban-sdk/testutils"] diff --git a/test-cases/dos-unbounded-operation/dos-unbounded-operation-3/vulnerable-example/Cargo.toml b/test-cases/dos-unbounded-operation/dos-unbounded-operation-3/vulnerable-example/Cargo.toml index 248cfb89..efefdeab 100644 --- a/test-cases/dos-unbounded-operation/dos-unbounded-operation-3/vulnerable-example/Cargo.toml +++ b/test-cases/dos-unbounded-operation/dos-unbounded-operation-3/vulnerable-example/Cargo.toml @@ -7,10 +7,10 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -soroban-sdk = { version = "20.0.0-rc2" } +soroban-sdk = { version = "20.0.0" } [dev_dependencies] -soroban-sdk = { version = "20.0.0-rc2", features = ["testutils"] } +soroban-sdk = { version = "20.0.0", features = ["testutils"] } [features] testutils = ["soroban-sdk/testutils"]