Skip to content

Commit

Permalink
Fix feature documentation and keywords + bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Coloquinte committed Jan 6, 2024
1 parent d50b55a commit ff0744a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "volute"
version = "1.1.0"
version = "1.1.1"
edition = "2021"

authors = ["Gabriel Gouvine <[email protected]>"]
description = "Boolean functions implementation, represented as lookup tables"
description = "Boolean functions implementation, represented as lookup tables (LUT) or sum-of-products (SOP)"
license = "MIT OR Apache-2.0"
keywords = ["boolean", "logic", "LUT", "lookup-table", "truth-table", "SOP", "ESOP"]
keywords = ["boolean", "logic", "LUT", "lookup-table", "truth-table"]
repository = "https://github.com/Coloquinte/volute"
homepage = "https://github.com/Coloquinte/volute"
categories = ["mathematics", "algorithms"]
Expand Down
2 changes: 1 addition & 1 deletion src/sop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ mod soes;
mod sop;

Check warning on line 10 in src/sop.rs

View workflow job for this annotation

GitHub Actions / Clippy Output

module has the same name as its containing module

warning: module has the same name as its containing module --> src/sop.rs:10:1 | 10 | mod sop; | ^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#module_inception = note: `#[warn(clippy::module_inception)]` on by default

#[cfg(any(feature = "optim-mip", feature = "optim-sat"))]
#[cfg_attr(docsrs, doc(cfg(feature = "optim-mip")))]
#[cfg_attr(docsrs, doc(cfg(any(feature = "optim-mip", feature = "optim-sat"))))]
pub mod optim;

pub use cube::Cube;
Expand Down

0 comments on commit ff0744a

Please sign in to comment.