From d564020df6b54209f9551f4101b6c6a76519e34d Mon Sep 17 00:00:00 2001 From: Bastian Kersting Date: Sat, 22 Oct 2022 00:08:59 +0200 Subject: [PATCH] Prepare for new releases (#7) --- scudo-proc-macros/Cargo.toml | 5 +++++ scudo-sys/Cargo.toml | 2 +- scudo/Cargo.toml | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/scudo-proc-macros/Cargo.toml b/scudo-proc-macros/Cargo.toml index 71151a4..c1e4d23 100644 --- a/scudo-proc-macros/Cargo.toml +++ b/scudo-proc-macros/Cargo.toml @@ -2,6 +2,11 @@ name = "scudo-proc-macros" version = "0.1.0" edition = "2021" +license = "Apache-2.0" +authors = ["Google LLC"] +description = "Proc macros to use with the Rust bindings for the Scudo Allocator" +homepage = "https://llvm.org/docs/ScudoHardenedAllocator.html" +repository = "https://github.com/google/rust-scudo" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/scudo-sys/Cargo.toml b/scudo-sys/Cargo.toml index 54381ba..3599a69 100644 --- a/scudo-sys/Cargo.toml +++ b/scudo-sys/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "scudo-sys" version = "0.2.2" -edition = "2018" +edition = "2021" license = "Apache-2.0" readme = "README.md" authors = ["Google LLC"] diff --git a/scudo/Cargo.toml b/scudo/Cargo.toml index e6ddab7..ebef9c7 100644 --- a/scudo/Cargo.toml +++ b/scudo/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "scudo" -version = "0.1.2" -edition = "2018" +version = "0.1.3" +edition = "2021" license = "Apache-2.0" authors = ["Google LLC"] description = "Rust Bindings for the Scudo Hardened Allocator"