Skip to content

Commit 578bb6a

Browse files
Update docs: Migrate from awslabs to aws (#1055)
1 parent fcc2bdb commit 578bb6a

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

examples/basic-sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
## basic-sdk example
33

4-
This is an sample function that uses the [AWS SDK](https://github.com/awslabs/aws-sdk-rust) to
4+
This is an sample function that uses the [AWS SDK](https://github.com/aws/aws-sdk-rust) to
55
list the contents of an S3 bucket specified by the invoker. It uses standard credentials as defined
66
in the function's execution role to make calls against S3.
77

lambda-events/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws_lambda_events"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
rust-version = "1.82.0"
55
description = "AWS Lambda event definitions"
66
authors = [
@@ -9,8 +9,8 @@ authors = [
99
"David Calavera <[email protected]>",
1010
]
1111
license = "MIT"
12-
homepage = "https://github.com/awslabs/aws-lambda-rust-runtime"
13-
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"
12+
homepage = "https://github.com/aws/aws-lambda-rust-runtime"
13+
repository = "https://github.com/aws/aws-lambda-rust-runtime"
1414
readme = "README.md"
1515
keywords = ["lambda", "aws", "amazon", "events", "S3"]
1616
categories = ["api-bindings", "encoding", "web-programming"]

lambda-events/src/event/dynamodb/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ pub struct UserIdentity {
269269
pub struct StreamRecord {
270270
/// The approximate date and time when the stream record was created, in UNIX
271271
/// epoch time (<http://www.epochconverter.com/>) format. Might not be present in
272-
/// the record: <https://github.com/awslabs/aws-lambda-rust-runtime/issues/889>
272+
/// the record: <https://github.com/aws/aws-lambda-rust-runtime/issues/889>
273273
#[serde(rename = "ApproximateCreationDateTime")]
274274
#[serde(with = "float_unix_epoch")]
275275
#[serde(default)]

lambda-extension/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda-extension"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
rust-version = "1.82.0"
66
authors = [
@@ -9,7 +9,7 @@ authors = [
99
]
1010
description = "AWS Lambda Extension API"
1111
license = "Apache-2.0"
12-
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"
12+
repository = "https://github.com/aws/aws-lambda-rust-runtime"
1313
categories = ["web-programming::http-server"]
1414
keywords = ["AWS", "Lambda", "API"]
1515
readme = "README.md"

lambda-http/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_http"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = [
55
"David Calavera <[email protected]>",
66
"Harold Sun <[email protected]>",
@@ -10,8 +10,8 @@ rust-version = "1.82.0"
1010
description = "Application Load Balancer and API Gateway event types for AWS Lambda"
1111
keywords = ["AWS", "Lambda", "APIGateway", "ALB", "API"]
1212
license = "Apache-2.0"
13-
homepage = "https://github.com/awslabs/aws-lambda-rust-runtime"
14-
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"
13+
homepage = "https://github.com/aws/aws-lambda-rust-runtime"
14+
repository = "https://github.com/aws/aws-lambda-rust-runtime"
1515
documentation = "https://docs.rs/lambda_runtime"
1616
categories = ["web-programming::http-server"]
1717
readme = "README.md"

lambda-http/src/request.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ fn into_api_gateway_v2_request(ag: ApiGatewayV2httpRequest) -> http::Request<Bod
121121
// don't use the query_string_parameters from API GW v2 to
122122
// populate the QueryStringParameters extension because
123123
// the value is not compatible with the whatgw specification.
124-
// See: https://github.com/awslabs/aws-lambda-rust-runtime/issues/470
124+
// See: https://github.com/aws/aws-lambda-rust-runtime/issues/470
125125
// See: https://url.spec.whatwg.org/#urlencoded-parsing
126126
let query_string_parameters = if let Some(query) = &ag.raw_query_string {
127127
query.parse().unwrap() // this is Infallible

lambda-integration-tests/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "lambda-integration-tests"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = ["Maxime David"]
55
edition = "2021"
66
rust-version = "1.82.0"
77
description = "AWS Lambda Runtime integration tests"
88
license = "Apache-2.0"
9-
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"
9+
repository = "https://github.com/aws/aws-lambda-rust-runtime"
1010
categories = ["web-programming::http-server"]
1111
keywords = ["AWS", "Lambda", "API"]
1212
readme = "../README.md"

lambda-runtime-api-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_runtime_api_client"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2021"
55
rust-version = "1.82.0"
66
authors = [
@@ -9,7 +9,7 @@ authors = [
99
]
1010
description = "AWS Lambda Runtime interaction API"
1111
license = "Apache-2.0"
12-
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"
12+
repository = "https://github.com/aws/aws-lambda-rust-runtime"
1313
categories = ["web-programming::http-server"]
1414
keywords = ["AWS", "Lambda", "API"]
1515
readme = "README.md"

lambda-runtime/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_runtime"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
authors = [
55
"David Calavera <[email protected]>",
66
"Harold Sun <[email protected]>",
@@ -9,7 +9,7 @@ description = "AWS Lambda Runtime"
99
edition = "2021"
1010
rust-version = "1.82.0"
1111
license = "Apache-2.0"
12-
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"
12+
repository = "https://github.com/aws/aws-lambda-rust-runtime"
1313
categories = ["web-programming::http-server"]
1414
keywords = ["AWS", "Lambda", "API"]
1515
readme = "../README.md"
@@ -23,7 +23,7 @@ eyre = ["dep:eyre"] # enables From<T> for Diagnostic for eyre error types, see R
2323
miette = ["dep:miette"] # enables From<T> for Diagnostic for miette error types, see README.md for more info
2424
# TODO: remove tokio/rt and rt-multi-thread from non-feature-flagged dependencies in new breaking version, since they are unused:
2525
# as well as default features
26-
# https://github.com/awslabs/aws-lambda-rust-runtime/issues/984
26+
# https://github.com/aws/aws-lambda-rust-runtime/issues/984
2727
graceful-shutdown = ["tokio/rt", "tokio/signal", "dep:lambda-extension"]
2828

2929
[dependencies]

0 commit comments

Comments
 (0)