Skip to content

Commit

Permalink
Upgrade uuid dependency to latest (1.8.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
faern committed May 29, 2024
1 parent 8548959 commit a592880
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 104 deletions.
118 changes: 19 additions & 99 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ ipnetwork = "0.20.0"

[dev-dependencies]
assert_matches = "1.1.0"
uuid = { version = "0.8", features = ["v4"] }
uuid = { version = "1.8.0", features = ["v4"] }
scopeguard = "1.0"
5 changes: 1 addition & 4 deletions tests/anchors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ use assert_matches::assert_matches;
use uuid::Uuid;

fn unique_anchor() -> String {
format!(
"pfctl-rs.integration.testing.{}",
Uuid::new_v4().to_simple()
)
format!("pfctl-rs.integration.testing.{}", Uuid::new_v4().simple())
}

fn before_each() {}
Expand Down

0 comments on commit a592880

Please sign in to comment.