Remove dependency on uuid-macro-internal

`uuid-macro-internal` is only relevant when using `uuid!` macro to parse
uuids at compile time. RustPython doesn't do that so it's unnecessary.
This commit is contained in:
Ankit Goel
2024-09-23 04:33:41 +01:00
committed by Jeong, YunWon
parent e534b10722
commit 0dacf8a326
2 changed files with 1 additions and 13 deletions

12
Cargo.lock generated
View File

@@ -3035,18 +3035,6 @@ dependencies = [
"atomic",
"getrandom",
"rand",
"uuid-macro-internal",
]
[[package]]
name = "uuid-macro-internal"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1b300a878652a387d2a0de915bdae8f1a548f0c6d45e072fe2688794b656cc9"
dependencies = [
"proc-macro2",
"quote",
"syn 1.0.109",
]
[[package]]

View File

@@ -88,7 +88,7 @@ bzip2 = { version = "0.4", optional = true }
# uuid
[target.'cfg(not(any(target_os = "ios", target_os = "android", target_os = "windows", target_arch = "wasm32", target_os = "redox")))'.dependencies]
mac_address = "1.1.3"
uuid = { version = "1.1.2", features = ["v1", "fast-rng", "macro-diagnostics"] }
uuid = { version = "1.1.2", features = ["v1", "fast-rng"] }
# mmap
[target.'cfg(all(unix, not(target_arch = "wasm32")))'.dependencies]