Expand description
§use-rust
Composable Rust ecosystem primitives for RustUse.
use-rust is the thin umbrella crate for the publishable RustUse core crates in this workspace.
It currently re-exports:
use-cratefor crate naming and metadata helpersuse-versionfor semantic version parsing and version bump helpers
§Example
use use_rust::prelude::{expected_repository_url, next_patch, parse_version};
let version = parse_version("0.1.0").unwrap();
assert_eq!(expected_repository_url("use-crate").as_str(), "https://github.com/RustUse/use-crate");
assert_eq!(next_patch(&version).to_string(), "0.1.1");Thin umbrella re-exports for RustUse Rust ecosystem primitives.
Re-exports§
pub use use_crate;pub use use_version;
Modules§
- prelude
- Commonly used RustUse Rust ecosystem primitives.