From e4a0b943c537f142e2bfeda46075dfefea1a8890 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Fri, 24 May 2024 21:45:19 +0200 Subject: [PATCH] cargo: Add `categories` for discoverability (#473) `os::android-apis` is a new category that I added upstream in https://github.com/rust-lang/crates.io/pull/8558. The rest already exists on crates.io, and should make it easier to find/place this crate. --- ndk-sys/Cargo.toml | 1 + ndk/Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/ndk-sys/Cargo.toml b/ndk-sys/Cargo.toml index 40e63443..a17bae36 100644 --- a/ndk-sys/Cargo.toml +++ b/ndk-sys/Cargo.toml @@ -11,6 +11,7 @@ documentation = "https://docs.rs/ndk-sys" homepage = "https://github.com/rust-mobile/ndk" repository = "https://github.com/rust-mobile/ndk" rust-version = "1.60" +categories = ["os", "os::android-apis", "external-ffi-bindings"] [dependencies] jni-sys = "0.3.0" diff --git a/ndk/Cargo.toml b/ndk/Cargo.toml index e9205327..8378f6a0 100644 --- a/ndk/Cargo.toml +++ b/ndk/Cargo.toml @@ -11,6 +11,7 @@ documentation = "https://docs.rs/ndk" homepage = "https://github.com/rust-mobile/ndk" repository = "https://github.com/rust-mobile/ndk" rust-version = "1.66" +categories = ["os", "os::android-apis", "api-bindings"] [features] default = ["rwh_06"]