diff --git a/Cargo.toml b/Cargo.toml index 0825621..66ca956 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ repository = "https://github.com/unicode-rs/unicode-properties" documentation = "https://docs.rs/unicode-properties" license = "MIT/Apache-2.0" keywords = ["text", "unicode"] +categories = ["no-std::no-alloc"] readme = "README.md" description = """ Query character Unicode properties according to diff --git a/src/lib.rs b/src/lib.rs index bfa58d6..87849d1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -42,6 +42,7 @@ //! //! Provides the emoji character properties of a character. //! +#![no_std] #![deny(missing_docs)] #[rustfmt::skip]