Crates.io | nectere |
lib.rs | nectere |
version | 0.0.0 |
source | src |
created_at | 2024-11-20 21:50:36.028078 |
updated_at | 2024-11-20 21:50:36.028078 |
description | An efficient space for mananging any and all bindings |
homepage | https://github.com/scattered-systems/nectere/nectere/wiki |
repository | https://github.com/scattered-systems/nectere/nectere.git |
max_upload_size | |
id | 1455326 |
size | 5,197 |
The library is currently in the early stages of development and is not yet ready for production use.
An efficient space for mananging any and all bindings
Start by cloning the repository
git clone https://github.com/scattered-systems/nectere/nectere.git
cd nectere
cargo build --all-features -r -v --workspace
cargo test --all-features -r -v --workspace
Add this to your Cargo.toml
:
[dependencies.nectere]
features = []
version = "0.0.0"
extern crate nectere;
fn main() -> Result<(), Box<dyn std::error::Error>> {
tracing_subscriber::fmt::init();
tracing::info!("Welcome to {name}", name = nectere);
Ok(())
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.