diff options
| author | Markus Pettersson <markus.pettersson@mullvad.net> | 2023-10-04 12:05:38 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2023-10-11 17:11:02 +0200 |
| commit | 205425dcd5af1d2d0fe9e2d0c837e966be6a5250 (patch) | |
| tree | 569066e31899e5480cddf7293195b4e769b39df5 | |
| parent | 105dd14971213a524ae6c22638e48f2ffa5589db (diff) | |
| download | mullvadvpn-205425dcd5af1d2d0fe9e2d0c837e966be6a5250.tar.xz mullvadvpn-205425dcd5af1d2d0fe9e2d0c837e966be6a5250.zip | |
Make `once_cell` a workspace dependency
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | android/translations-converter/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-api/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-daemon/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-management-interface/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-paths/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-problem-report/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-relay-selector/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-setup/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-types/Cargo.toml | 2 | ||||
| -rw-r--r-- | talpid-core/Cargo.toml | 2 | ||||
| -rw-r--r-- | talpid-dbus/Cargo.toml | 2 | ||||
| -rw-r--r-- | talpid-openvpn/Cargo.toml | 2 | ||||
| -rw-r--r-- | talpid-routing/Cargo.toml | 2 | ||||
| -rw-r--r-- | talpid-wireguard/Cargo.toml | 2 |
15 files changed, 15 insertions, 14 deletions
diff --git a/Cargo.toml b/Cargo.toml index ffa8d8784a..f68e491d9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,6 +60,7 @@ windows-sys = "0.48.0" chrono = { version = "0.4.26", default-features = false} clap = { version = "4.2.7", features = ["cargo", "derive"] } +once_cell = "1.13" [profile.release] diff --git a/android/translations-converter/Cargo.toml b/android/translations-converter/Cargo.toml index d0868d70e1..1c3b89e1d8 100644 --- a/android/translations-converter/Cargo.toml +++ b/android/translations-converter/Cargo.toml @@ -11,7 +11,7 @@ publish.workspace = true [dependencies] err-derive = { workspace = true } htmlize = { version = "1.0.2", features = ["unescape"] } -once_cell = "1.13" +once_cell = { workspace = true } regex = "1" serde = { version = "1", features = ["derive"] } quick-xml = { version = "0.27.1", features = ["serialize"] } diff --git a/mullvad-api/Cargo.toml b/mullvad-api/Cargo.toml index 83d8bf0723..08db7de306 100644 --- a/mullvad-api/Cargo.toml +++ b/mullvad-api/Cargo.toml @@ -26,7 +26,7 @@ tokio = { workspace = true, features = ["macros", "time", "rt-multi-thread", "ne tokio-rustls = "0.24.1" tokio-socks = "0.5.1" rustls-pemfile = "1.0.3" -once_cell = "1.13" +once_cell = { workspace = true } mullvad-fs = { path = "../mullvad-fs" } mullvad-types = { path = "../mullvad-types" } diff --git a/mullvad-daemon/Cargo.toml b/mullvad-daemon/Cargo.toml index aaa893e170..cc89500abd 100644 --- a/mullvad-daemon/Cargo.toml +++ b/mullvad-daemon/Cargo.toml @@ -17,7 +17,7 @@ chrono = { workspace = true } err-derive = { workspace = true } fern = { version = "0.6", features = ["colored"] } futures = "0.3" -once_cell = "1.13" +once_cell = { workspace = true } libc = "0.2" log = { workspace = true } regex = "1.0" diff --git a/mullvad-management-interface/Cargo.toml b/mullvad-management-interface/Cargo.toml index 5a36da5a29..dc70a47905 100644 --- a/mullvad-management-interface/Cargo.toml +++ b/mullvad-management-interface/Cargo.toml @@ -25,7 +25,7 @@ log = { workspace = true } [target.'cfg(unix)'.dependencies] nix = "0.23" -once_cell = "1.13" +once_cell = { workspace = true } [build-dependencies] tonic-build = { workspace = true, default-features = false, features = ["transport", "prost"] } diff --git a/mullvad-paths/Cargo.toml b/mullvad-paths/Cargo.toml index 3b4e017920..78ddeefa9a 100644 --- a/mullvad-paths/Cargo.toml +++ b/mullvad-paths/Cargo.toml @@ -16,7 +16,7 @@ log = { workspace = true } [target.'cfg(windows)'.dependencies] widestring = "1.0" -once_cell = "1.13" +once_cell = { workspace = true } [target.'cfg(windows)'.dependencies.windows-sys] workspace = true diff --git a/mullvad-problem-report/Cargo.toml b/mullvad-problem-report/Cargo.toml index 5bddff5640..9001b4a181 100644 --- a/mullvad-problem-report/Cargo.toml +++ b/mullvad-problem-report/Cargo.toml @@ -11,7 +11,7 @@ publish.workspace = true [dependencies] dirs = "5.0.1" err-derive = { workspace = true } -once_cell = "1.13" +once_cell = { workspace = true } log = { workspace = true } regex = "1.0" uuid = { version = "1.4.1", features = ["v4"] } diff --git a/mullvad-relay-selector/Cargo.toml b/mullvad-relay-selector/Cargo.toml index 6574b866a4..aa954ba610 100644 --- a/mullvad-relay-selector/Cargo.toml +++ b/mullvad-relay-selector/Cargo.toml @@ -25,4 +25,4 @@ mullvad-api = { path = "../mullvad-api" } mullvad-types = { path = "../mullvad-types" } [dev-dependencies] -once_cell = "1.13" +once_cell = { workspace = true } diff --git a/mullvad-setup/Cargo.toml b/mullvad-setup/Cargo.toml index df509a5e80..22fc63b54f 100644 --- a/mullvad-setup/Cargo.toml +++ b/mullvad-setup/Cargo.toml @@ -16,7 +16,7 @@ path = "src/main.rs" clap = { workspace = true } env_logger = { workspace = true } err-derive = { workspace = true } -once_cell = "1.13" +once_cell = { workspace = true } mullvad-management-interface = { path = "../mullvad-management-interface" } diff --git a/mullvad-types/Cargo.toml b/mullvad-types/Cargo.toml index db300ef00c..603f9df388 100644 --- a/mullvad-types/Cargo.toml +++ b/mullvad-types/Cargo.toml @@ -12,7 +12,7 @@ publish.workspace = true chrono = { workspace = true, features = ["clock", "serde"] } err-derive = { workspace = true } ipnetwork = "0.16" -once_cell = "1.13" +once_cell = { workspace = true } log = { workspace = true } regex = "1" serde = { version = "1.0", features = ["derive"] } diff --git a/talpid-core/Cargo.toml b/talpid-core/Cargo.toml index b8c730a1bc..668e39863f 100644 --- a/talpid-core/Cargo.toml +++ b/talpid-core/Cargo.toml @@ -13,7 +13,7 @@ duct = "0.13" err-derive = { workspace = true } futures = "0.3.15" ipnetwork = "0.16" -once_cell = "1.13" +once_cell = { workspace = true } libc = "0.2" log = { workspace = true } parking_lot = "0.12.0" diff --git a/talpid-dbus/Cargo.toml b/talpid-dbus/Cargo.toml index aa37b32640..60ab88f973 100644 --- a/talpid-dbus/Cargo.toml +++ b/talpid-dbus/Cargo.toml @@ -10,7 +10,7 @@ publish.workspace = true [target.'cfg(target_os = "linux")'.dependencies] dbus = "0.9" err-derive = { workspace = true } -once_cell = "1.13" +once_cell = { workspace = true } log = { workspace = true } libc = "0.2" tokio = { workspace = true, features = ["rt"] } diff --git a/talpid-openvpn/Cargo.toml b/talpid-openvpn/Cargo.toml index 028519613c..294012a373 100644 --- a/talpid-openvpn/Cargo.toml +++ b/talpid-openvpn/Cargo.toml @@ -14,7 +14,7 @@ async-trait = "0.1" duct = "0.13" err-derive = { workspace = true } futures = "0.3.15" -once_cell = "1.13" +once_cell = { workspace = true } log = { workspace = true } os_pipe = "1.1.4" parking_lot = "0.12.0" diff --git a/talpid-routing/Cargo.toml b/talpid-routing/Cargo.toml index 50bd4c1477..56fb12b13c 100644 --- a/talpid-routing/Cargo.toml +++ b/talpid-routing/Cargo.toml @@ -21,7 +21,7 @@ talpid-types = { path = "../talpid-types" } [target.'cfg(target_os = "linux")'.dependencies] libc = "0.2" -once_cell = "1.13" +once_cell = { workspace = true } rtnetlink = "0.11" netlink-packet-route = "0.13" netlink-sys = "0.8.3" diff --git a/talpid-wireguard/Cargo.toml b/talpid-wireguard/Cargo.toml index 04ea3fc00b..f8e854a7c5 100644 --- a/talpid-wireguard/Cargo.toml +++ b/talpid-wireguard/Cargo.toml @@ -14,7 +14,7 @@ err-derive = { workspace = true } futures = "0.3.15" hex = "0.4" ipnetwork = "0.16" -once_cell = "1.13" +once_cell = { workspace = true } libc = "0.2" log = { workspace = true } parking_lot = "0.12.0" |
