Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## [0.1.1](https://github.com/RustUse/use-ecology/compare/use-ecology-v0.1.0...use-ecology-v0.1.1) - 2026-05-23

### Changed

- Add error docs, const fns, and float comparisons

### Added

- Added the initial `use-ecology` workspace with focused primitive vocabulary crates for ecosystems, habitats, populations, communities, niches, biomes, food webs, species interactions, trophic levels, biodiversity, and conservation status.
Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,21 +24,21 @@ publish = false
readme = "README.md"
repository = "https://github.com/RustUse/use-ecology"
rust-version = "1.95.0"
version = "0.1.0"
version = "0.1.1"

[workspace.dependencies]
use-biodiversity = { version = "0.1.0", path = "crates/use-biodiversity" }
use-biome = { version = "0.1.0", path = "crates/use-biome" }
use-community = { version = "0.1.0", path = "crates/use-community" }
use-conservation-status = { version = "0.1.0", path = "crates/use-conservation-status" }
use-ecology = { version = "0.1.0", path = "crates/use-ecology" }
use-ecosystem = { version = "0.1.0", path = "crates/use-ecosystem" }
use-food-web = { version = "0.1.0", path = "crates/use-food-web" }
use-habitat = { version = "0.1.0", path = "crates/use-habitat" }
use-niche = { version = "0.1.0", path = "crates/use-niche" }
use-population = { version = "0.1.0", path = "crates/use-population" }
use-species-interaction = { version = "0.1.0", path = "crates/use-species-interaction" }
use-trophic-level = { version = "0.1.0", path = "crates/use-trophic-level" }
use-biodiversity = { version = "0.1.1", path = "crates/use-biodiversity" }
use-biome = { version = "0.1.1", path = "crates/use-biome" }
use-community = { version = "0.1.1", path = "crates/use-community" }
use-conservation-status = { version = "0.1.1", path = "crates/use-conservation-status" }
use-ecology = { version = "0.1.1", path = "crates/use-ecology" }
use-ecosystem = { version = "0.1.1", path = "crates/use-ecosystem" }
use-food-web = { version = "0.1.1", path = "crates/use-food-web" }
use-habitat = { version = "0.1.1", path = "crates/use-habitat" }
use-niche = { version = "0.1.1", path = "crates/use-niche" }
use-population = { version = "0.1.1", path = "crates/use-population" }
use-species-interaction = { version = "0.1.1", path = "crates/use-species-interaction" }
use-trophic-level = { version = "0.1.1", path = "crates/use-trophic-level" }

[workspace.lints.rust]
unsafe_code = "forbid"
Expand Down