summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml3
-rw-r--r--talpid_cli/Cargo.toml3
-rw-r--r--talpid_cli/src/cli.rs7
-rw-r--r--talpid_openvpn_plugin/Cargo.toml3
4 files changed, 8 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f0bba952ec..abce286414 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,8 @@
[package]
name = "talpid_core"
version = "0.0.0"
-authors = ["Linus Färnstrand <linus@mullvad.net>"]
+authors = ["Linus Färnstrand <linus@mullvad.net>", "Erik Larkö <erik@mullvad.net>"]
+description = "Core backend functionality of the Mullvad VPN client"
[dependencies]
clonablechild = "0.1"
diff --git a/talpid_cli/Cargo.toml b/talpid_cli/Cargo.toml
index 637b1f6699..617a60e340 100644
--- a/talpid_cli/Cargo.toml
+++ b/talpid_cli/Cargo.toml
@@ -1,7 +1,8 @@
[package]
name = "talpid_cli"
version = "0.0.0"
-authors = ["Linus Färnstrand <linus@mullvad.net>"]
+authors = ["Linus Färnstrand <linus@mullvad.net>", "Erik Larkö <erik@mullvad.net>"]
+description = "Run Talpid easily from the command line"
[dependencies]
clap = "2.20"
diff --git a/talpid_cli/src/cli.rs b/talpid_cli/src/cli.rs
index c439a923ec..d6d5899846 100644
--- a/talpid_cli/src/cli.rs
+++ b/talpid_cli/src/cli.rs
@@ -3,9 +3,6 @@ use std::path::PathBuf;
use talpid_core::net::RemoteAddr;
-static APP_AUTHOR: &'static str = "Mullvad";
-static APP_ABOUT: &'static str = "Run Talpid easily from the command line.";
-
pub struct Args {
pub binary: String,
pub config: PathBuf,
@@ -32,8 +29,8 @@ fn get_matches() -> ArgMatches<'static> {
fn create_app() -> App<'static, 'static> {
App::new(crate_name!())
.version(crate_version!())
- .author(APP_AUTHOR)
- .about(APP_ABOUT)
+ .author(crate_authors!())
+ .about(crate_description!())
.arg(Arg::with_name("openvpn")
.long("openvpn")
.help("Specify what OpenVPN binary to run")
diff --git a/talpid_openvpn_plugin/Cargo.toml b/talpid_openvpn_plugin/Cargo.toml
index c15ef9cdbd..1a740a7491 100644
--- a/talpid_openvpn_plugin/Cargo.toml
+++ b/talpid_openvpn_plugin/Cargo.toml
@@ -1,7 +1,8 @@
[package]
name = "talpid_openvpn_plugin"
version = "0.1.0"
-authors = ["Linus Färnstrand <linus@mullvad.net>"]
+authors = ["Linus Färnstrand <linus@mullvad.net>", "Erik Larkö <erik@mullvad.net>"]
+description = "OpenVPN shared library plugin for relaying OpenVPN events to talpid_core"
[lib]
crate-type = ["dylib"]