Skip to content

Commit 6be36b6

Browse files
committed
m
1 parent 9b39e1a commit 6be36b6

File tree

7 files changed

+574
-277
lines changed

7 files changed

+574
-277
lines changed

DynamoDbEncryption/runtimes/rust/Cargo.toml

+2-4
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,12 @@ aws-smithy-runtime-api = {version = "1.7.3", features = ["client"] }
2525
aws-smithy-types = "1.2.10"
2626
chrono = "0.4.39"
2727
cpu-time = "1.0.0"
28-
dafny-runtime = "0.1.1"
28+
#dafny-runtime = "0.1.1"
29+
dafny-runtime = { path = "../../../releases/rust/db_esdk/dafny_runtime_rust", features = ["sync"] }
2930
dashmap = "6.1.0"
3031
pem = "3.0.4"
3132
tokio = {version = "1.42.0", features = ["full"] }
3233
uuid = { version = "1.11.0", features = ["v4"] }
3334

3435
[[example]]
3536
name = "main"
36-
37-
[features]
38-
async-fixed = []

DynamoDbEncryption/runtimes/rust/src/software_externs.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ pub mod software {
2424
pub mod legacy {
2525
use crate::software::amazon::cryptography::dbencryptionsdk::dynamodb::itemencryptor::internaldafny::types::Error as DafnyError;
2626
use crate::software::amazon::cryptography::dbencryptionsdk::dynamodb::internaldafny::types::LegacyPolicy;
27-
use ::std::rc::Rc;
27+
use ::dafny_runtime::Rc;
2828
type Legacy = ::dafny_runtime::Object<crate::software::amazon::cryptography::dbencryptionsdk::dynamodb::itemencryptor::internaldafny::legacy::InternalLegacyOverride>;
2929

3030
fn error(s: &str) -> Rc<DafnyError> {

releases/rust/db_esdk/dafny_runtime_rust/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ readme = "README.md"
1313
once_cell = "1.18.0"
1414
num = "0.4"
1515
itertools = "0.11.0"
16+
17+
[features]
18+
sync = []

0 commit comments

Comments
 (0)