refactored get uuid fuction on extension

This commit is contained in:
Valmo Trindade
2024-09-08 03:15:25 -03:00
parent c9ca35ebd5
commit 0f5b1130bc
4 changed files with 132 additions and 23 deletions

View File

@@ -7,8 +7,17 @@ edition = "2021"
[dependencies]
arma-rs = "1.10.4"
regex = "1.10.6"
serde = { version = "1.0.210", features = ["derive"] }
[dependencies.uuid]
version = "1.10.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]
[lib]
name = "armatak"
crate-type = ["cdylib"]