Skip to content

Commit 338e410

Browse files
chore: remove prefer-post-quantum flag, bump project version
1 parent bc50c3e commit 338e410

File tree

4 files changed

+60
-60
lines changed

4 files changed

+60
-60
lines changed

Cargo.lock

Lines changed: 57 additions & 54 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,6 @@ The following list shows the options you can configure for the Secrets Manager A
466466
## Optional features<a name="secrets-manager-agent-features"></a>
467467

468468
The Secrets Manager Agent can be built with optional features by passing the `--features` flag to `cargo build`. The available features are:
469-
* `prefer-post-quantum`: makes `X25519MLKEM768` the highest-priority key exchange algorithm. Otherwise, it is available but not highest-priority. `X25519MLKEM768` is a hybrid, post-quantum-secure key exchange algorithm.
470469
* `fips`: restricts the cipher suites used by the agent to only FIPS-approved ciphers
471470

472471
## Logging<a name="secrets-manager-agent-log"></a>

aws_secretsmanager_agent/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws_secretsmanager_agent"
3-
version = "1.2.1"
3+
version = "1.2.2"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "The AWS Secrets Manager Agent is a local HTTP service that you can install and use in your compute environments to read secrets from Secrets Manager and cache them in memory."
@@ -28,7 +28,7 @@ aws-sdk-sts = "1"
2828
log = "0.4.20"
2929
log4rs = { version = "1.2.0", features = ["gzip"] }
3030
url = "2"
31-
aws_secretsmanager_caching = { version = "1.2.1", path = "../aws_secretsmanager_caching" }
31+
aws_secretsmanager_caching = { version = "1.2.2", path = "../aws_secretsmanager_caching" }
3232

3333
# For unit tests
3434
[dev-dependencies]
@@ -39,5 +39,4 @@ http = "0.2.9"
3939
aws-smithy-types = "1"
4040

4141
[features]
42-
prefer-post-quantum = ["aws_secretsmanager_caching/prefer-post-quantum"]
4342
fips = ["aws_secretsmanager_caching/fips"]

aws_secretsmanager_caching/Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws_secretsmanager_caching"
3-
version = "1.2.1"
3+
version = "1.2.2"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "The AWS Secrets Manager Rust caching client enables in-process caching of secrets for Rust applications."
@@ -30,5 +30,4 @@ http = "0"
3030
tokio-test = "0.4.4"
3131

3232
[features]
33-
prefer-post-quantum = ["rustls/prefer-post-quantum"]
3433
fips = ["rustls/fips"]

0 commit comments

Comments
 (0)