Crates.io | intervalsets |
lib.rs | intervalsets |
version | 0.1.0-alpha.2 |
created_at | 2024-10-19 07:38:04.15422+00 |
updated_at | 2024-10-19 22:46:59.671834+00 |
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 |
size | 159,605 |
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"