From 9af207109548c68d2bd063ebd47f388c8487ed28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Tue, 5 Nov 2024 21:23:27 +0100 Subject: [PATCH] Release v0.2.0 --- Cargo.toml | 6 +++--- README.md | 5 +++++ 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 README.md diff --git a/Cargo.toml b/Cargo.toml index e40ba4b..7c3636e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "aws" +name = "aws-lib" version.workspace = true edition.workspace = true rust-version.workspace = true @@ -13,7 +13,7 @@ categories.workspace = true readme.workspace = true [workspace.package] -version = "0.1.0" +version = "0.2.0" edition = "2021" rust-version = "1.81" @@ -26,7 +26,7 @@ categories = ["api-bindings"] readme = "README.md" [dependencies] -aws-macros = { path = "./aws_macros" } +aws-macros = { path = "./aws_macros", version = "0.2.*" } aws-config = { version = "1.*", default-features = false } aws-sdk-ec2 = { version = "1.*", default-features = false, features = [ "rustls", diff --git a/README.md b/README.md new file mode 100644 index 0000000..e639a05 --- /dev/null +++ b/README.md @@ -0,0 +1,5 @@ +# AWS + +* Helper functions for frequently used AWS operations (create EC2 instance, Route53 record, ...) +* Type-safe operations on AWS tags (e.g. from an EC2 instance), see [the separate README](./src/tags/README.md) +