Crates.io | intervalsets |
lib.rs | intervalsets |
version | |
source | src |
created_at | 2024-10-19 07:38:04.15422 |
updated_at | 2024-10-19 22:46:59.671834 |
description | The intervalsets crate provides bounded and unbounded intervals implemented as sets with all the associated set operations. |
homepage | |
repository | https://github.com/gechelberger/intervalsets |
max_upload_size | |
id | 1415156 |
Cargo.toml error: | TOML parse error at line 23, column 1 | 23 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
This crate provides bounded and unbounded intervals implemented as sets with all the associated set operations.
See the documentation for details.
Domain
trait# the commit-msg git hook uses commitlint
cargo install commitlint-rs
# should install git hooks
cargo clean && cargo test
git commit -m "{type}{!}?: {[{issue|resolves}? #xx]? {description}"
# minor semver change, closes github issue #55
git commit -m "feat: [resolves #55] added new function struct::foo"
# major semver change, references github issue #67
# single quotes required because of the exclamation point.
git commit -m 'feat!: [issue #67] changed public api for Bar'
# patch semver change, closes github issue #33
git commit -m "fix: [resolves #33] fence post error in Baz"
# no semver change
git commit -m "chore: changed ci pipeline"