-
Notifications
You must be signed in to change notification settings - Fork 221
Closed
Description
Describe the bug
Im just trying to write some learning tests and i'm having trouble enabling the "v4" feature for this crate.
To Reproduce
main.rs
use uuid::Uuid;
fn main() -> Result<(), Box<dyn std::error::Error>> {
#[cfg(feature = "v4")] {
let my_uuid = Uuid::new_v4()?;
println!("{}", my_uuid);
}
Ok(())
}Cargo.toml
[dependencies]
[dependencies.uuid]
version = "0.8"
features = ["serde", "v4"]I've tried every permutation of the dependency setup but I can't get this example build to run! it runs successfully, but just doesn't do anything
Expected behavior
the example of building a v4 UUID and Printing it runs
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Windows on WSL if that matters, but i don't think it should?
Metadata
Metadata
Assignees
Labels
No labels