diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2017-07-06 15:55:53 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2017-07-06 22:37:01 +0200 |
| commit | 239e101a91d67ee83d8f5e1c55cea60a095bbbaa (patch) | |
| tree | b65156026e4089c37c1d0ba1bf05b7f956d6a9e7 | |
| parent | 84ab812dfbbd6dae47eacc16d950d8856b1916be (diff) | |
| download | mullvadvpn-239e101a91d67ee83d8f5e1c55cea60a095bbbaa.tar.xz mullvadvpn-239e101a91d67ee83d8f5e1c55cea60a095bbbaa.zip | |
Renamed talpid_cli to mullvad_cli
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad_cli/Cargo.toml (renamed from talpid_cli/Cargo.toml) | 2 | ||||
| -rw-r--r-- | mullvad_cli/src/cli.rs (renamed from talpid_cli/src/cli.rs) | 2 | ||||
| -rw-r--r-- | mullvad_cli/src/main.rs (renamed from talpid_cli/src/main.rs) | 0 |
4 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml index 6c90856996..2ade69a1d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,2 +1,2 @@ [workspace] -members = ["mullvad_daemon", "talpid_openvpn_plugin", "openvpn_ffi", "talpid_ipc", "talpid_cli"] +members = ["mullvad_daemon", "mullvad_cli", "talpid_openvpn_plugin", "openvpn_ffi", "talpid_ipc"] diff --git a/talpid_cli/Cargo.toml b/mullvad_cli/Cargo.toml index f6b563ae9c..5d758482c9 100644 --- a/talpid_cli/Cargo.toml +++ b/mullvad_cli/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "talpid_cli" +name = "mullvad_cli" version = "0.0.0" authors = ["Linus Färnstrand <linus@mullvad.net>", "Erik Larkö <erik@mullvad.net>"] description = "Run Talpid easily from the command line" diff --git a/talpid_cli/src/cli.rs b/mullvad_cli/src/cli.rs index be2f4c3ef4..c21e7f1562 100644 --- a/talpid_cli/src/cli.rs +++ b/mullvad_cli/src/cli.rs @@ -1,4 +1,4 @@ -use clap::{App, Arg, ArgMatches, SubCommand, AppSettings}; +use clap::{App, AppSettings, Arg, ArgMatches, SubCommand}; pub fn get_matches() -> ArgMatches<'static> { let app = create_app(); diff --git a/talpid_cli/src/main.rs b/mullvad_cli/src/main.rs index 0d87173418..0d87173418 100644 --- a/talpid_cli/src/main.rs +++ b/mullvad_cli/src/main.rs |
