diff --git a/agb-fixnum/Cargo.toml b/agb-fixnum/Cargo.toml index 61fd1897..d434d870 100644 --- a/agb-fixnum/Cargo.toml +++ b/agb-fixnum/Cargo.toml @@ -5,6 +5,7 @@ edition = "2021" license = "MPL-2.0" description = "Library for abstracting over fixed precision numbers. Designed for use with the agb library for the Game Boy Advance" repository = "https://github.com/agbrs/agb" +keywords = ["no-std", "no-std::no-alloc"] [dependencies] agb_macros = { version = "0.21.1", path = "../agb-macros" } diff --git a/agb-hashmap/Cargo.toml b/agb-hashmap/Cargo.toml index 71234a47..5acab0bf 100644 --- a/agb-hashmap/Cargo.toml +++ b/agb-hashmap/Cargo.toml @@ -6,6 +6,7 @@ license = "MPL-2.0" description = "A simple no_std hashmap implementation intended for use in the `agb` library" repository = "https://github.com/agbrs/agb" exclude = ["/benches"] +keywords = ["no-std", "data-structures"] [features] allocator_api = [] diff --git a/agb/Cargo.toml b/agb/Cargo.toml index 23c5e0dd..6984418c 100644 --- a/agb/Cargo.toml +++ b/agb/Cargo.toml @@ -8,6 +8,7 @@ license = "MPL-2.0" repository = "https://github.com/agbrs/agb" homepage = "https://agbrs.dev" exclude = ["/tests", "/examples"] +keywords = ["game-engines", "embedded"] [features] default = ["backtrace", "testing"]