I need to add uuid in one of my struct. I found one crate for uuid support. I added the dependency to my Cargo.toml
uuid = "0.8.1"
It downloaded fine but I can't use the function Uuid::new_v3(). I get the error: no function or associated item named new_v3 found for struct uuid::Uuid in the current scope.
The weird part for me is that I can use some of them like from_slice works fine.