diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2023-08-07 09:53:40 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2023-08-07 09:53:40 +0200 |
| commit | 4b4536ceaf8932a83f10cd5231bedd93d24e9058 (patch) | |
| tree | 21b17bd21d2d673930ce70ad288eaac5dcbb7d02 | |
| parent | 447ec77510f02f91efc0c60e24b59dc8584e56a1 (diff) | |
| parent | e92639b45f36751675e6b6f45f4a8698bc586a30 (diff) | |
| download | mullvadvpn-4b4536ceaf8932a83f10cd5231bedd93d24e9058.tar.xz mullvadvpn-4b4536ceaf8932a83f10cd5231bedd93d24e9058.zip | |
Merge branch 'upgrade-uuid'
| -rw-r--r-- | Cargo.lock | 4 | ||||
| -rw-r--r-- | mullvad-fs/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-problem-report/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-types/Cargo.toml | 2 | ||||
| -rw-r--r-- | talpid-openvpn/Cargo.toml | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock index cc7ef30c80..edf4ba1434 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4363,9 +4363,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "uuid" -version = "0.8.2" +version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" +checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d" dependencies = [ "getrandom 0.2.3", "serde", diff --git a/mullvad-fs/Cargo.toml b/mullvad-fs/Cargo.toml index f3a6465798..5ebe3512a7 100644 --- a/mullvad-fs/Cargo.toml +++ b/mullvad-fs/Cargo.toml @@ -11,6 +11,6 @@ publish.workspace = true [dependencies] log = "0.4" tokio = { workspace = true, features = ["fs"] } -uuid = { version = "0.8", features = ["v4"] } +uuid = { version = "1.4.1", features = ["v4"] } talpid-types = { path = "../talpid-types" } diff --git a/mullvad-problem-report/Cargo.toml b/mullvad-problem-report/Cargo.toml index 74a420e676..b88c814013 100644 --- a/mullvad-problem-report/Cargo.toml +++ b/mullvad-problem-report/Cargo.toml @@ -14,7 +14,7 @@ err-derive = "0.3.1" once_cell = "1.13" log = "0.4" regex = "1.0" -uuid = { version = "0.8", features = ["v4"] } +uuid = { version = "1.4.1", features = ["v4"] } tokio = { workspace = true, features = ["rt"] } mullvad-paths = { path = "../mullvad-paths" } diff --git a/mullvad-types/Cargo.toml b/mullvad-types/Cargo.toml index 54c6e7bff0..60cfa9c5f2 100644 --- a/mullvad-types/Cargo.toml +++ b/mullvad-types/Cargo.toml @@ -17,7 +17,7 @@ log = "0.4" regex = "1" serde = { version = "1.0", features = ["derive"] } rand = "0.8" -uuid = { version = "0.8", features = ["v4", "serde"] } +uuid = { version = "1.4.1", features = ["v4", "serde" ] } talpid-types = { path = "../talpid-types" } diff --git a/talpid-openvpn/Cargo.toml b/talpid-openvpn/Cargo.toml index 9745e3ddc6..bf8c41078c 100644 --- a/talpid-openvpn/Cargo.toml +++ b/talpid-openvpn/Cargo.toml @@ -23,7 +23,7 @@ shell-escape = "0.1" talpid-routing = { path = "../talpid-routing" } talpid-tunnel = { path = "../talpid-tunnel" } talpid-types = { path = "../talpid-types" } -uuid = { version = "0.8", features = ["v4"] } +uuid = { version = "1.4.1", features = ["v4"] } tokio = { workspace = true, features = ["process", "rt-multi-thread", "fs"] } shadowsocks-service = { git = "https://github.com/mullvad/shadowsocks-rust", rev = "c45980bb22d0d50ac888813c59a1edf0cff14a36", features = [ "local", "stream-cipher" ] } |
