Skip to content

Commit

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

Add no-std, no-alloc crates.io category metadata
  • Loading branch information
lopopolo authored Jun 2, 2023
2 parents 0937cc4 + e403d72 commit 7fdf895
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,7 +1,7 @@
[package]
name = "strftime-ruby"
# remember to set `html_root_url` in `src/lib.rs`.
version = "1.0.0"
version = "1.0.1"
authors = ["Ryan Lopopolo <[email protected]>", "x-hgg-x"]
license = "MIT"
edition = "2021"
Expand All @@ -12,7 +12,7 @@ documentation = "https://docs.rs/strftime-ruby"
homepage = "https://github.com/artichoke/strftime-ruby"
description = "Ruby `Time#strftime` parser and formatter"
keywords = ["ruby", "strftime", "time"]
categories = ["date-and-time", "no-std", "parser-implementations", "value-formatting"]
categories = ["date-and-time", "no-std", "no-std::no-alloc", "parser-implementations", "value-formatting"]
include = ["src/**/*", "tests/**/*", "LICENSE", "README.md"]

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

```toml
[dependencies]
strftime-ruby = "1.0.0"
strftime-ruby = "1.0.1"
```

## Crate features
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
//! days in that year. The days before the first week are in the last week of
//! the previous year.

#![doc(html_root_url = "https://docs.rs/strftime-ruby/1.0.0")]
#![doc(html_root_url = "https://docs.rs/strftime-ruby/1.0.1")]
#![no_std]

#[cfg(feature = "alloc")]
Expand Down

0 comments on commit 7fdf895

Please sign in to comment.