diff options
| author | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-09-13 10:09:54 +0200 |
|---|---|---|
| committer | Markus Pettersson <markus.pettersson@mullvad.net> | 2025-09-23 17:04:16 +0200 |
| commit | 8bcd5cc7ce8b8aaea322fcaead8c165888a68d12 (patch) | |
| tree | 0519b49bee79c68dc2d0740d3fde17ea9a67336a | |
| parent | 1f949064c7431fe6120c9871243b2f1e9956f910 (diff) | |
| download | mullvadvpn-8bcd5cc7ce8b8aaea322fcaead8c165888a68d12.tar.xz mullvadvpn-8bcd5cc7ce8b8aaea322fcaead8c165888a68d12.zip | |
Promote `rand` to a workspace dependency
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | talpid-core/Cargo.toml | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index 4a787953bd..fe2f6b61c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -97,6 +97,7 @@ serde_json = "1.0.122" windows-sys = "0.52.0" nix = "0.30.1" strum = { version = "0.27" } +rand = "0.9" # Networking pnet_packet = "0.35.0" diff --git a/talpid-core/Cargo.toml b/talpid-core/Cargo.toml index d7303d9d7c..f2919169da 100644 --- a/talpid-core/Cargo.toml +++ b/talpid-core/Cargo.toml @@ -22,7 +22,7 @@ ipnetwork = { workspace = true } libc = "0.2" log = { workspace = true } parking_lot = "0.12.0" -rand = "0.9.0" +rand = { workspace = true } talpid-routing = { path = "../talpid-routing" } talpid-tunnel = { path = "../talpid-tunnel" } talpid-tunnel-config-client = { path = "../talpid-tunnel-config-client" } |
