diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..1ce401c3 --- /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 + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..ea8c4bf7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 00000000..f786be70 --- /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" diff --git a/README.md b/README.md index d9e1fcae..a31414d0 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