diff --git a/AwsEncryptionSDK/runtimes/rust/Cargo.toml b/AwsEncryptionSDK/runtimes/rust/Cargo.toml index ee0a74f6d..0a9a072ca 100644 --- a/AwsEncryptionSDK/runtimes/rust/Cargo.toml +++ b/AwsEncryptionSDK/runtimes/rust/Cargo.toml @@ -24,6 +24,7 @@ aws-sdk-kms = "1.51.0" aws-smithy-runtime-api = {version = "1.7.3", features = ["client"] } aws-smithy-types = "1.2.10" chrono = "0.4.39" +cpu-time = "1.0.0" dafny-runtime = "0.1.1" dashmap = "6.1.0" pem = "3.0.4" diff --git a/AwsEncryptionSDK/runtimes/rust/README.md b/AwsEncryptionSDK/runtimes/rust/README.md index 599a1c7fc..612c2cac5 100644 --- a/AwsEncryptionSDK/runtimes/rust/README.md +++ b/AwsEncryptionSDK/runtimes/rust/README.md @@ -15,14 +15,6 @@ The AWS Encryption SDK enables secure client-side encryption. It uses cryptograp For more details about the design and architecture of the AWS Encryption SDK, see the [AWS Encryption SDK Developer Guide](https://docs.aws.amazon.com/encryption-sdk/latest/developer-guide/introduction.html). -## Using the AWS Encryption SDK in Rust - -Add the following to your `Cargo.toml` with the correct version number: -``` -[dependencies] -aws-esdk = "" -``` - ## Examples for AWS Encryption SDK in Rust Please look at the Examples on how to use the Encryption SDK in Rust [here](https://github.com/aws/aws-encryption-sdk-dafny/tree/mainline/AwsEncryptionSDK/runtimes/rust/examples). diff --git a/AwsEncryptionSDK/runtimes/rust/start_release.sh b/AwsEncryptionSDK/runtimes/rust/start_release.sh index 91e80d65e..07cb77691 100755 --- a/AwsEncryptionSDK/runtimes/rust/start_release.sh +++ b/AwsEncryptionSDK/runtimes/rust/start_release.sh @@ -40,7 +40,7 @@ cp -r . ../../../releases/rust/esdk cd ../../../releases/rust/esdk # Remove unnecessary files and directories -rm -rf *~ copy_externs.sh start_release.sh test_published.sh test_examples *.pem RELEASE.md CHANGELOG.md +rm -rf *~ copy_externs.sh start_release.sh test_published.sh test_examples *.pem RELEASE.md CHANGELOG.md src/README.md # Create .gitignore file with specified entries echo Cargo.lock > .gitignore diff --git a/TestVectors/runtimes/rust/Cargo.toml b/TestVectors/runtimes/rust/Cargo.toml index 5d52f2d19..2139c8410 100644 --- a/TestVectors/runtimes/rust/Cargo.toml +++ b/TestVectors/runtimes/rust/Cargo.toml @@ -22,6 +22,7 @@ aws-sdk-kms = "1.52.0" aws-smithy-runtime-api = {version = "1.7.3", features = ["client"] } aws-smithy-types = "1.2.10" chrono = "0.4.39" +cpu-time = "1.0.0" dafny-runtime = "0.1.1" dashmap = "6.1.0" pem = "3.0.4"