From 9e61f003f7bed5bfd43964d2e8d4f9d302c4bba6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Sala=C3=BCn?= Date: Fri, 27 Jan 2023 12:21:45 +0100 Subject: [PATCH] landlock: Bump to 0.2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Release a new crate version for current users before bringing more invasive API breaking changes (see #12 and #23). The API is not ready to be stable yet but perfect is the enemy of good. Switch to the 2021 Rust edition. Only keep myself as the current maintainer. Thanks Vincent for the collaboration in early development! Add four crate categories: - api-bindings - os::linux-apis - virtualization - filesystem Signed-off-by: Mickaël Salaün --- Cargo.toml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d46898c9..3eac8ea1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,17 +1,15 @@ [package] name = "landlock" -version = "0.1.0" -authors = [ - "Mickaël Salaün ", - "Vincent Dagonneau " -] -edition = "2018" +version = "0.2.0" +edition = "2021" rust-version = "1.63" +authors = ["Mickaël Salaün "] description = "Landlock LSM helpers" homepage = "https://landlock.io" repository = "https://github.com/landlock-lsm/rust-landlock" license = "MIT OR Apache-2.0" keywords = ["access-control", "linux", "sandbox", "security"] +categories = ["api-bindings", "os::linux-apis", "virtualization", "filesystem"] exclude = [".gitignore"] readme = "README.md"