Skip to content

Commit

Permalink
Merge pull request #64 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 fe977a2 + bdffa67 commit 011ca97
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 = "qed"
version = "1.6.0"
version = "1.6.1"
authors = ["Ryan Lopopolo <rjl@hyperbo.la>"]
license = "MIT"
edition = "2021"
Expand All @@ -11,7 +11,7 @@ documentation = "https://docs.rs/qed"
homepage = "https://github.com/artichoke/qed"
description = "Compile-time assertions"
keywords = ["assert", "const", "no_std", "static"]
categories = ["no-std", "rust-patterns"]
categories = ["no-std", "no-std::no-alloc", "rust-patterns"]
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 @@ -23,7 +23,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
qed = "1.6.0"
qed = "1.6.1"
```

Then make compile time assertions like:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
//! ```

#![no_std]
#![doc(html_root_url = "https://docs.rs/qed/1.6.0")]
#![doc(html_root_url = "https://docs.rs/qed/1.6.1")]

// Ensure code blocks in `README.md` compile
#[cfg(all(doctest, any(target_pointer_width = "32", target_pointer_width = "64")))]
Expand Down

0 comments on commit 011ca97

Please sign in to comment.