From 78c9834ac608b23c2c22d98a9a5671fd2708ae52 Mon Sep 17 00:00:00 2001 From: Duncan Harvey Date: Wed, 19 Mar 2025 13:44:34 -0400 Subject: [PATCH 1/3] initialize workspace --- .gitignore | 1 + Cargo.toml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f786be7 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,15 @@ +# Copyright 2025-Present Datadog, Inc. https://www.datadoghq.com/ +# SPDX-License-Identifier: Apache-2.0 + +[workspace] +resolver = "2" +members = [ + "crates/*", +] + +[workspace.package] +rust-version = "1.85" +edition = "2021" +license = "Apache-2.0" +homepage = "https://github.com/DataDog/serverless-components" +repository = "https://github.com/DataDog/serverless-components" From 60c0b616aaa12fabb029f8a9e596534fc99f5251 Mon Sep 17 00:00:00 2001 From: Duncan Harvey Date: Wed, 19 Mar 2025 15:09:11 -0400 Subject: [PATCH 2/3] add pull request template --- .github/pull_request_template.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..1ce401c --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,15 @@ +### What does this PR do? + + + +### Motivation + + + +### Additional Notes + + + +### Describe how to test/QA your changes + + From 7f1221ebc218ad7a1094077198687f001b7cfada Mon Sep 17 00:00:00 2001 From: Duncan Harvey Date: Wed, 19 Mar 2025 15:13:29 -0400 Subject: [PATCH 3/3] update readme with description of repo --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d9e1fca..a31414d 100644 --- a/README.md +++ b/README.md @@ -1 +1,3 @@ -# serverless-components \ No newline at end of file +# Serverless Components + +A collection of libraries and binaries used for instrumenting AWS Lambda Functions, Azure Functions, and Azure Spring Apps. \ No newline at end of file