Skip to content

Commit c0ec84d

Browse files
authored
chore: update for complete copyright notices (#1489)
1 parent e51f340 commit c0ec84d

File tree

8 files changed

+13
-8
lines changed

8 files changed

+13
-8
lines changed

DynamoDbEncryption/runtimes/rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-db-esdk"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
rust-version = "1.80.0"
66
keywords = ["cryptography", "security", "dynamodb", "encryption", "client-side"]

releases/rust/db_esdk/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws-db-esdk"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
rust-version = "1.80.0"
66
keywords = ["cryptography", "security", "dynamodb", "encryption", "client-side"]

releases/rust/db_esdk/src/aes_kdf_ctr.rs

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ pub mod AesKdfCtr {
1414
use dafny_runtime::Sequence;
1515
use std::rc::Rc;
1616

17-
#[allow(non_camel_case_types)]
18-
// pub struct _default {}
19-
2017
fn error(s: &str) -> Rc<DafnyError> {
2118
Rc::new(DafnyError::AwsCryptographicPrimitivesError {
2219
message:

releases/rust/db_esdk/src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
#![allow(warnings, unconditional_panic)]
55
#![allow(nonstandard_style)]
6+
#![allow(clippy::never_loop)]
7+
#![allow(clippy::absurd_extreme_comparisons)]
68

79
pub mod client;
810
pub mod conversions;
@@ -30,7 +32,7 @@ pub use crate::deps::aws_cryptography_materialProviders;
3032
pub use crate::deps::aws_cryptography_primitives;
3133

3234
pub(crate) mod implementation_from_dafny;
33-
pub(crate) use crate::implementation_from_dafny::r#_Wrappers_Compile;
35+
pub(crate) use crate::implementation_from_dafny::_Wrappers_Compile;
3436
pub(crate) use crate::implementation_from_dafny::software;
3537
pub(crate) use crate::implementation_from_dafny::AesKdfCtr;
3638
pub(crate) use crate::implementation_from_dafny::ConcurrentCall;

releases/rust/db_esdk/src/standard_library_conversions.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
pub fn ostring_to_dafny(
25
input: &Option<String>,
36
) -> ::std::rc::Rc<

releases/rust/db_esdk/src/standard_library_externs.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
2+
// SPDX-License-Identifier: Apache-2.0
3+
14
// Annotation to ignore the case of this module
25
use crate::r#_Wrappers_Compile;
36
use crate::implementation_from_dafny::UTF8;

submodules/smithy-dafny

0 commit comments

Comments
 (0)