From 6760e0e01100b0f2bda190d61d13976b98f7827b Mon Sep 17 00:00:00 2001 From: Astraea Sinclair Date: Fri, 14 Nov 2025 19:48:57 +0000 Subject: [PATCH] Migrate from awslabs to aws --- examples/basic-sdk/README.md | 2 +- lambda-events/Cargo.toml | 6 +++--- lambda-events/src/event/dynamodb/mod.rs | 2 +- lambda-extension/Cargo.toml | 4 ++-- lambda-http/Cargo.toml | 6 +++--- lambda-http/src/request.rs | 2 +- lambda-integration-tests/Cargo.toml | 4 ++-- lambda-runtime-api-client/Cargo.toml | 4 ++-- lambda-runtime/Cargo.toml | 6 +++--- 9 files changed, 18 insertions(+), 18 deletions(-) diff --git a/examples/basic-sdk/README.md b/examples/basic-sdk/README.md index 483f6951f..ebe70dc7e 100644 --- a/examples/basic-sdk/README.md +++ b/examples/basic-sdk/README.md @@ -1,7 +1,7 @@ ## basic-sdk example -This is an sample function that uses the [AWS SDK](https://github.com/awslabs/aws-sdk-rust) to +This is an sample function that uses the [AWS SDK](https://github.com/aws/aws-sdk-rust) to list the contents of an S3 bucket specified by the invoker. It uses standard credentials as defined in the function's execution role to make calls against S3. diff --git a/lambda-events/Cargo.toml b/lambda-events/Cargo.toml index 3cd7310b6..1eb91e12b 100644 --- a/lambda-events/Cargo.toml +++ b/lambda-events/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aws_lambda_events" -version = "1.0.0" +version = "1.0.1" rust-version = "1.82.0" description = "AWS Lambda event definitions" authors = [ @@ -9,8 +9,8 @@ authors = [ "David Calavera ", ] license = "MIT" -homepage = "https://github.com/awslabs/aws-lambda-rust-runtime" -repository = "https://github.com/awslabs/aws-lambda-rust-runtime" +homepage = "https://github.com/aws/aws-lambda-rust-runtime" +repository = "https://github.com/aws/aws-lambda-rust-runtime" readme = "README.md" keywords = ["lambda", "aws", "amazon", "events", "S3"] categories = ["api-bindings", "encoding", "web-programming"] diff --git a/lambda-events/src/event/dynamodb/mod.rs b/lambda-events/src/event/dynamodb/mod.rs index 62872f3e1..5b2b2db52 100644 --- a/lambda-events/src/event/dynamodb/mod.rs +++ b/lambda-events/src/event/dynamodb/mod.rs @@ -269,7 +269,7 @@ pub struct UserIdentity { pub struct StreamRecord { /// The approximate date and time when the stream record was created, in UNIX /// epoch time () format. Might not be present in - /// the record: + /// the record: #[serde(rename = "ApproximateCreationDateTime")] #[serde(with = "float_unix_epoch")] #[serde(default)] diff --git a/lambda-extension/Cargo.toml b/lambda-extension/Cargo.toml index 5f8881e65..bebd1e36e 100644 --- a/lambda-extension/Cargo.toml +++ b/lambda-extension/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda-extension" -version = "1.0.0" +version = "1.0.1" edition = "2021" rust-version = "1.82.0" authors = [ @@ -9,7 +9,7 @@ authors = [ ] description = "AWS Lambda Extension API" license = "Apache-2.0" -repository = "https://github.com/awslabs/aws-lambda-rust-runtime" +repository = "https://github.com/aws/aws-lambda-rust-runtime" categories = ["web-programming::http-server"] keywords = ["AWS", "Lambda", "API"] readme = "README.md" diff --git a/lambda-http/Cargo.toml b/lambda-http/Cargo.toml index a9f1e536f..24b6d405f 100644 --- a/lambda-http/Cargo.toml +++ b/lambda-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_http" -version = "1.0.0" +version = "1.0.1" authors = [ "David Calavera ", "Harold Sun ", @@ -10,8 +10,8 @@ rust-version = "1.82.0" description = "Application Load Balancer and API Gateway event types for AWS Lambda" keywords = ["AWS", "Lambda", "APIGateway", "ALB", "API"] license = "Apache-2.0" -homepage = "https://github.com/awslabs/aws-lambda-rust-runtime" -repository = "https://github.com/awslabs/aws-lambda-rust-runtime" +homepage = "https://github.com/aws/aws-lambda-rust-runtime" +repository = "https://github.com/aws/aws-lambda-rust-runtime" documentation = "https://docs.rs/lambda_runtime" categories = ["web-programming::http-server"] readme = "README.md" diff --git a/lambda-http/src/request.rs b/lambda-http/src/request.rs index fc88fc4a6..0a69ee212 100644 --- a/lambda-http/src/request.rs +++ b/lambda-http/src/request.rs @@ -121,7 +121,7 @@ fn into_api_gateway_v2_request(ag: ApiGatewayV2httpRequest) -> http::Request", "Harold Sun ", @@ -9,7 +9,7 @@ description = "AWS Lambda Runtime" edition = "2021" rust-version = "1.82.0" license = "Apache-2.0" -repository = "https://github.com/awslabs/aws-lambda-rust-runtime" +repository = "https://github.com/aws/aws-lambda-rust-runtime" categories = ["web-programming::http-server"] keywords = ["AWS", "Lambda", "API"] readme = "../README.md" @@ -23,7 +23,7 @@ eyre = ["dep:eyre"] # enables From for Diagnostic for eyre error types, see R miette = ["dep:miette"] # enables From for Diagnostic for miette error types, see README.md for more info # TODO: remove tokio/rt and rt-multi-thread from non-feature-flagged dependencies in new breaking version, since they are unused: # as well as default features -# https://github.com/awslabs/aws-lambda-rust-runtime/issues/984 +# https://github.com/aws/aws-lambda-rust-runtime/issues/984 graceful-shutdown = ["tokio/rt", "tokio/signal", "dep:lambda-extension"] [dependencies]