diff --git a/nym-vpn-core/nym-vpn-cli/Cargo.toml b/nym-vpn-core/nym-vpn-cli/Cargo.toml index 3b4aa4f5e5..95ce3c9659 100644 --- a/nym-vpn-core/nym-vpn-cli/Cargo.toml +++ b/nym-vpn-core/nym-vpn-cli/Cargo.toml @@ -1,9 +1,13 @@ [package] name = "nym-vpn-cli" version = "0.1.10-dev" -edition = "2021" -license = "GPL-3.0-only" -authors = ["Nym Technologies"] +description = "Standalone NymVPN commandline client" +authors.workspace = true +repository.workspace = true +homepage.workspace = true +documentation.workspace = true +edition.workspace = true +license.workspace = true [dependencies] anyhow.workspace = true @@ -34,5 +38,10 @@ metrics-server = ["nym-vpn-lib/metrics-server"] # Debian [package.metadata.deb] name = "nym-vpn-cli" +extended-description = '''NymVPN is a vpn service that uses the Nym mixnet. + +This package contains the nym-vpn-cli binary, that connects in the terminal and runs in the foreground + +It's primarily used for testing and not aimed and end-users''' maintainer-scripts = "debian" systemd-units = { enable = false } diff --git a/nym-vpn-core/nym-vpnc/Cargo.toml b/nym-vpn-core/nym-vpnc/Cargo.toml index 48a0e091f9..2f3c88aa0d 100644 --- a/nym-vpn-core/nym-vpnc/Cargo.toml +++ b/nym-vpn-core/nym-vpnc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nym-vpnc" version = "0.1.10-dev" -description = "Nym VPN console client" +description = "NymVPN commandline client" authors.workspace = true repository.workspace = true homepage.workspace = true @@ -35,5 +35,9 @@ vergen = { workspace = true, default-features = false, features = [ # Debian [package.metadata.deb] name = "nym-vpnc" +extended-description = '''NymVPN is a vpn service that uses the Nym mixnet. + +This package contains the nym-vpnc binary, which is a CLI application used to interact with the nym-vpnd daemon.''' +recommends = "nym-vpnd" maintainer-scripts = "debian" systemd-units = { enable = false } diff --git a/nym-vpn-core/nym-vpnd/Cargo.toml b/nym-vpn-core/nym-vpnd/Cargo.toml index 82cb4c2d02..90c120cc08 100644 --- a/nym-vpn-core/nym-vpnd/Cargo.toml +++ b/nym-vpn-core/nym-vpnd/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nym-vpnd" version = "0.1.10-dev" -description = "Nym VPN daemon" +description = "NymVPN daemon" authors.workspace = true repository.workspace = true homepage.workspace = true @@ -75,7 +75,13 @@ vergen = { workspace = true, default-features = false, features = [ # Debian [package.metadata.deb] name = "nym-vpnd" +extended-description = '''NymVPN is a vpn service that uses the Nym mixnet. + +This package contains the nym-vpnd daemon binary, which runs as a background service. + +End-users should use either the CLI client, nym-vpnc, or the GUI client, nym-vpn-x.''' maintainer-scripts = "debian" +recommends = "nym-vpnc" [package.metadata.deb.systemd-units] unit-name = "nym-vpnd" diff --git a/nym-vpn-x/src-tauri/Cargo.toml b/nym-vpn-x/src-tauri/Cargo.toml index 97cdd81175..c691e62b50 100644 --- a/nym-vpn-x/src-tauri/Cargo.toml +++ b/nym-vpn-x/src-tauri/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "nym-vpn-x" version = "0.1.6-dev" -description = "NymVPN Desktop Client" -authors = ["pierre ", "zane ", "nym"] +description = "NymVPN desktop client" +authors = ["Nym Technologies SA", "Pierre ", "Zane "] license = "GPL-3.0-only" -repository = "" +documentation = "https://nymtech.net" +repository = "https://github.com/nymtech/nym-vpn-client" edition = "2021" [build-dependencies]