Skip to content

Commit

Permalink
Feature/no std (#14)
Browse files Browse the repository at this point in the history
* add no_std

* no-std category

* bump version
  • Loading branch information
geo-ant authored Jul 24, 2024
1 parent 9f9f829 commit 80accf7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "fluent-comparisons"
version = "1.0.2"
version = "1.0.3"
authors = ["geo-ant <geos.blog@posteo.de>"]
edition = "2021"
homepage = "https://github.com/geo-ant/fluent-comparisons"
repository = "https://github.com/geo-ant/fluent-comparisons"
categories = ["development-tools", "rust-patterns", "algorithms"]
categories = ["development-tools", "rust-patterns", "no-std"]
description = "Boost readability by writing multicomparison expressions like `if any_of!({a,b,c}>=5) {...}` while keeping the benefits of hand-written code."

readme = "README.md"
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![cfg_attr(not(test), no_std)]
//! This crate is for you if you have ever been annoyed at writing repetitive conditions like this
//! ```rust
//! # fn test(a:i32,x:i32,y:i32,z:i32) {
Expand Down

0 comments on commit 80accf7

Please sign in to comment.