diff options
| author | David Lönnhager <david.l@mullvad.net> | 2023-09-08 15:55:26 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2023-09-11 16:34:41 +0200 |
| commit | 986e0c4ffef1beafb65f765650ad78f9e51dd1b1 (patch) | |
| tree | c0828e6637888f4ee4d29d4a81374b24668a054c | |
| parent | 61f5eb87c54a57f8240ca7a11952416271566ac2 (diff) | |
| download | mullvadvpn-986e0c4ffef1beafb65f765650ad78f9e51dd1b1.tar.xz mullvadvpn-986e0c4ffef1beafb65f765650ad78f9e51dd1b1.zip | |
Make env_logger a workspace dependency
| -rw-r--r-- | Cargo.toml | 1 | ||||
| -rw-r--r-- | mullvad-cli/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-problem-report/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-setup/Cargo.toml | 2 | ||||
| -rw-r--r-- | talpid-openvpn-plugin/Cargo.toml | 2 |
5 files changed, 5 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml index ca3945bd41..63faa4a8d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,6 +49,7 @@ tower = "0.4" prost = "0.12.0" prost-types = "0.12.0" +env_logger = "0.10.0" err-derive = "0.3.1" shadowsocks = { version = "1.16" } diff --git a/mullvad-cli/Cargo.toml b/mullvad-cli/Cargo.toml index 3a340e69d9..5437b1980c 100644 --- a/mullvad-cli/Cargo.toml +++ b/mullvad-cli/Cargo.toml @@ -17,7 +17,7 @@ path = "src/main.rs" anyhow = "1.0" chrono = { workspace = true } clap = { workspace = true } -env_logger = "0.10.0" +env_logger = { workspace = true } futures = "0.3" natord = "1.0.9" itertools = "0.10" diff --git a/mullvad-problem-report/Cargo.toml b/mullvad-problem-report/Cargo.toml index 9c275546f4..2461afceb1 100644 --- a/mullvad-problem-report/Cargo.toml +++ b/mullvad-problem-report/Cargo.toml @@ -25,7 +25,7 @@ talpid-platform-metadata = { path = "../talpid-platform-metadata" } [target.'cfg(not(target_os="android"))'.dependencies] clap = { workspace = true } -env_logger = "0.10.0" +env_logger = { workspace = true } [target.'cfg(target_os = "android")'.dependencies] duct = "0.13" diff --git a/mullvad-setup/Cargo.toml b/mullvad-setup/Cargo.toml index cbcc672035..df509a5e80 100644 --- a/mullvad-setup/Cargo.toml +++ b/mullvad-setup/Cargo.toml @@ -14,7 +14,7 @@ path = "src/main.rs" [dependencies] clap = { workspace = true } -env_logger = "0.10.0" +env_logger = { workspace = true } err-derive = { workspace = true } once_cell = "1.13" diff --git a/talpid-openvpn-plugin/Cargo.toml b/talpid-openvpn-plugin/Cargo.toml index d7ba325c83..cdf312907b 100644 --- a/talpid-openvpn-plugin/Cargo.toml +++ b/talpid-openvpn-plugin/Cargo.toml @@ -14,7 +14,7 @@ crate-type = ["cdylib"] [dependencies] err-derive = { workspace = true } log = "0.4" -env_logger = "0.10.0" +env_logger = { workspace = true } parity-tokio-ipc = "0.9" tokio = { workspace = true, features = ["rt"] } |
