Skip to content

Commit 5022594

Browse files
committed
Add uuid with feature of V4 - database tests require it and it is no longer a private module
1 parent a5e33ea commit 5022594

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

collector/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ inquire = "0.7.5"
4444

4545
benchlib = { path = "benchlib" }
4646
database = { path = "../database" }
47+
uuid = { version = "1.16.0", features = ["v4"] }
4748

4849
[target.'cfg(windows)'.dependencies]
4950
miow = "0.3"

database/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ csv = "1"
2626
x509-cert = { version = "0.2.5", features = ["pem"] }
2727

2828
intern = { path = "../intern" }
29-
uuid = "1.16.0"
29+
uuid = { version = "1.16.0", features = ["v4"] }
3030

3131
[dev-dependencies]
3232
uuid = { version = "1.16.0", features = ["v4"] }

0 commit comments

Comments
 (0)