Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cargo.toml metadata cleanup #640

Merged
merged 2 commits into from
Jul 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions nym-vpn-core/nym-vpn-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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 }
6 changes: 5 additions & 1 deletion nym-vpn-core/nym-vpnc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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 }
8 changes: 7 additions & 1 deletion nym-vpn-core/nym-vpnd/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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"
Expand Down
7 changes: 4 additions & 3 deletions nym-vpn-x/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
[package]
name = "nym-vpn-x"
version = "0.1.6-dev"
description = "NymVPN Desktop Client"
authors = ["pierre <dommerc.pierre@gmail.com>", "zane <zanecschepke@gmail.com>", "nym"]
description = "NymVPN desktop client"
authors = ["Nym Technologies SA", "Pierre <dommerc.pierre@gmail.com>", "Zane <zanecschepke@gmail.com>"]
license = "GPL-3.0-only"
repository = ""
documentation = "https://nymtech.net"
repository = "https://github.com/nymtech/nym-vpn-client"
edition = "2021"

[build-dependencies]
Expand Down
Loading