Skip to content

Commit

Permalink
Merge pull request #45 from artichoke/lopopolo/crates.io-catagory-met…
Browse files Browse the repository at this point in the history
…a-no-alloc

Add no-std, no-alloc crates.io category metadata
  • Loading branch information
lopopolo authored Jun 2, 2023
2 parents a37f0c1 + e527dde commit 146acd5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "posix-space"
version = "1.0.3" # remember to set `html_root_url` in `src/lib.rs`.
version = "1.0.4" # remember to set `html_root_url` in `src/lib.rs`.
authors = ["Ryan Lopopolo <rjl@hyperbo.la>"]
license = "MIT"
edition = "2018"
Expand All @@ -11,7 +11,7 @@ documentation = "https://docs.rs/posix-space"
homepage = "https://github.com/artichoke/posix-space"
description = "Pure Rust implementation of `isspace` for the POSIX locale"
keywords = ["isspace", "locale", "posix", "space"]
categories = ["encoding", "no-std", "text-processing"]
categories = ["encoding", "no-std", "no-std::no-alloc", "text-processing"]
include = ["src/**/*", "tests/**/*", "LICENSE", "README.md"]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
posix-space = "1.0.3"
posix-space = "1.0.4"
```

Then classify bytes like:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
//!
//! [`isspace`]: https://linux.die.net/man/3/isspace

#![doc(html_root_url = "https://docs.rs/posix-space/1.0.3")]
#![doc(html_root_url = "https://docs.rs/posix-space/1.0.4")]
#![no_std]

/// Determine whether the given byte is in **space** POSIX character class.
Expand Down

0 comments on commit 146acd5

Please sign in to comment.