summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2018-11-24 10:42:40 +0100
committerJustus Winter <justus@sequoia-pgp.org>2018-11-24 10:42:40 +0100
commit84f609c063dc4a838784bf2b418d1b5476dc83b1 (patch)
treeaeb161c1fcd6dae7239b38668e5b6a73aad7aff5
parentd17090a6ffce19ab0fb786a7e3bfb72c47256531 (diff)
Update packaging metadata in preparation for a release.
-rw-r--r--Cargo.toml14
-rw-r--r--buffered-reader/Cargo.toml16
-rw-r--r--core/Cargo.toml18
-rw-r--r--ffi/Cargo.toml19
-rw-r--r--net/Cargo.toml18
-rw-r--r--openpgp/Cargo.toml18
-rw-r--r--store/Cargo.toml18
-rw-r--r--tool/Cargo.toml18
8 files changed, 130 insertions, 9 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1d9e7b6f..79b638f1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,13 +1,23 @@
[package]
name = "sequoia"
+description = "A cool new OpenPGP implementation"
version = "0.1.0"
-authors = ["Neal H. Walfield <neal@gnu.org>"]
+authors = [
+ "Justus Winter <justus@sequoia-pgp.org",
+ "Kai Michaelis <kai@sequoia-pgp.org>",
+ "Neal H. Walfield <neal@sequoia-pgp.org>",
+]
documentation = "https://docs.sequoia-pgp.org/"
homepage = "https://sequoia-pgp.org/"
repository = "https://gitlab.com/sequoia-pgp/sequoia"
readme = "README.md"
-publish = false # not yet...
+keywords = ["cryptography", "openpgp", "pgp", "encryption", "signing"]
+categories = ["cryptography", "authentication", "email"]
+license = "GPL-3.0"
+[badges]
+gitlab = { repository = "https://gitlab.com/sequoia-pgp/sequoia" }
+maintenance = { status = "actively-developed" }
[workspace]
diff --git a/buffered-reader/Cargo.toml b/buffered-reader/Cargo.toml
index 325c5056..f28c0c28 100644
--- a/buffered-reader/Cargo.toml
+++ b/buffered-reader/Cargo.toml
@@ -1,7 +1,21 @@
[package]
name = "buffered-reader"
+description = "A super-powered Reader"
version = "0.1.0"
-authors = ["Neal H. Walfield <neal@gnu.org>"]
+authors = [
+ "Justus Winter <justus@sequoia-pgp.org",
+ "Kai Michaelis <kai@sequoia-pgp.org>",
+ "Neal H. Walfield <neal@sequoia-pgp.org>",
+]
+documentation = "https://docs.sequoia-pgp.org/buffered_reader"
+homepage = "https://sequoia-pgp.org/"
+repository = "https://gitlab.com/sequoia-pgp/sequoia"
+readme = "../README.md"
+license = "GPL-3.0"
+
+[badges]
+gitlab = { repository = "https://gitlab.com/sequoia-pgp/sequoia" }
+maintenance = { status = "actively-developed" }
[dependencies]
bzip2 = { version = "0.3.2", optional = true }
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 33298259..ff72d799 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -1,7 +1,23 @@
[package]
name = "sequoia-core"
+description = "Policies for Sequoia"
version = "0.1.0"
-authors = ["Justus Winter <justus@pep-project.org>"]
+authors = [
+ "Justus Winter <justus@sequoia-pgp.org",
+ "Kai Michaelis <kai@sequoia-pgp.org>",
+ "Neal H. Walfield <neal@sequoia-pgp.org>",
+]
+documentation = "https://docs.sequoia-pgp.org/sequoia_core"
+homepage = "https://sequoia-pgp.org/"
+repository = "https://gitlab.com/sequoia-pgp/sequoia"
+readme = "../README.md"
+keywords = ["cryptography", "openpgp", "pgp", "encryption", "signing"]
+categories = ["cryptography", "authentication", "email"]
+license = "GPL-3.0"
+
+[badges]
+gitlab = { repository = "https://gitlab.com/sequoia-pgp/sequoia" }
+maintenance = { status = "actively-developed" }
[dependencies]
dirs = "1.0"
diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml
index 85eb773e..5f7c8cd8 100644
--- a/ffi/Cargo.toml
+++ b/ffi/Cargo.toml
@@ -1,7 +1,24 @@
[package]
name = "sequoia-ffi"
+description = "C API for Sequoia"
version = "0.1.0"
-authors = ["Justus Winter <justus@pep-project.org>"]
+authors = [
+ "Justus Winter <justus@sequoia-pgp.org",
+ "Kai Michaelis <kai@sequoia-pgp.org>",
+ "Neal H. Walfield <neal@sequoia-pgp.org>",
+]
+documentation = "https://docs.sequoia-pgp.org/sequoia_ffi"
+homepage = "https://sequoia-pgp.org/"
+repository = "https://gitlab.com/sequoia-pgp/sequoia"
+readme = "../README.md"
+keywords = ["cryptography", "openpgp", "pgp", "encryption", "signing"]
+categories = ["cryptography", "authentication", "development-tools::ffi",
+ "email"]
+license = "GPL-3.0"
+
+[badges]
+gitlab = { repository = "https://gitlab.com/sequoia-pgp/sequoia" }
+maintenance = { status = "actively-developed" }
[dependencies]
openpgp = { path = "../openpgp" }
diff --git a/net/Cargo.toml b/net/Cargo.toml
index 4eec9357..a50dce33 100644
--- a/net/Cargo.toml
+++ b/net/Cargo.toml
@@ -1,7 +1,23 @@
[package]
name = "sequoia-net"
+description = "Network services for OpenPGP"
version = "0.1.0"
-authors = ["Justus Winter <justus@pep-project.org>"]
+authors = [
+ "Justus Winter <justus@sequoia-pgp.org",
+ "Kai Michaelis <kai@sequoia-pgp.org>",
+ "Neal H. Walfield <neal@sequoia-pgp.org>",
+]
+documentation = "https://docs.sequoia-pgp.org/sequoia_net"
+homepage = "https://sequoia-pgp.org/"
+repository = "https://gitlab.com/sequoia-pgp/sequoia"
+readme = "../README.md"
+keywords = ["cryptography", "openpgp", "pgp", "hkp", "keyserver"]
+categories = ["cryptography", "authentication", "email"]
+license = "GPL-3.0"
+
+[badges]
+gitlab = { repository = "https://gitlab.com/sequoia-pgp/sequoia" }
+maintenance = { status = "actively-developed" }
[dependencies]
openpgp = { path = "../openpgp" }
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index 4373f353..40f98f04 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -1,8 +1,24 @@
[package]
name = "openpgp"
+description = "OpenPGP data types and associated machinery"
version = "0.1.0"
-authors = ["Neal H. Walfield <neal@gnu.org>"]
+authors = [
+ "Justus Winter <justus@sequoia-pgp.org",
+ "Kai Michaelis <kai@sequoia-pgp.org>",
+ "Neal H. Walfield <neal@sequoia-pgp.org>",
+]
build = "build.rs"
+documentation = "https://docs.sequoia-pgp.org/openpgp"
+homepage = "https://sequoia-pgp.org/"
+repository = "https://gitlab.com/sequoia-pgp/sequoia"
+readme = "../README.md"
+keywords = ["cryptography", "openpgp", "pgp", "encryption", "signing"]
+categories = ["cryptography", "authentication", "email"]
+license = "GPL-3.0"
+
+[badges]
+gitlab = { repository = "https://gitlab.com/sequoia-pgp/sequoia" }
+maintenance = { status = "actively-developed" }
[dependencies]
buffered-reader = { path = "../buffered-reader", default-features = false }
diff --git a/store/Cargo.toml b/store/Cargo.toml
index d5f13a03..c2f7c6eb 100644
--- a/store/Cargo.toml
+++ b/store/Cargo.toml
@@ -1,8 +1,24 @@
[package]
name = "sequoia-store"
+description = "Public-Key store for Sequoia"
version = "0.1.0"
-authors = ["Justus Winter <justus@pep-project.org>"]
+authors = [
+ "Justus Winter <justus@sequoia-pgp.org",
+ "Kai Michaelis <kai@sequoia-pgp.org>",
+ "Neal H. Walfield <neal@sequoia-pgp.org>",
+]
build = "build.rs"
+documentation = "https://docs.sequoia-pgp.org/sequoia_store"
+homepage = "https://sequoia-pgp.org/"
+repository = "https://gitlab.com/sequoia-pgp/sequoia"
+readme = "../README.md"
+keywords = ["cryptography", "openpgp", "pgp", "keyring"]
+categories = ["cryptography", "authentication", "email"]
+license = "GPL-3.0"
+
+[badges]
+gitlab = { repository = "https://gitlab.com/sequoia-pgp/sequoia" }
+maintenance = { status = "actively-developed" }
[features]
default = ["background-services"]
diff --git a/tool/Cargo.toml b/tool/Cargo.toml
index 0017c77f..d7f7b2f3 100644
--- a/tool/Cargo.toml
+++ b/tool/Cargo.toml
@@ -1,8 +1,24 @@
[package]
name = "sequoia-tool"
+description = "Command-line frontends for Sequoia"
version = "0.1.0"
-authors = ["Justus Winter <justus@pep-project.org>"]
+authors = [
+ "Justus Winter <justus@sequoia-pgp.org",
+ "Kai Michaelis <kai@sequoia-pgp.org>",
+ "Neal H. Walfield <neal@sequoia-pgp.org>",
+]
build = "build.rs"
+documentation = "https://docs.sequoia-pgp.org/sq"
+homepage = "https://sequoia-pgp.org/"
+repository = "https://gitlab.com/sequoia-pgp/sequoia"
+readme = "../README.md"
+keywords = ["cryptography", "openpgp", "pgp", "encryption", "signing"]
+categories = ["cryptography", "authentication", "command-line-utilities"]
+license = "GPL-3.0"
+
+[badges]
+gitlab = { repository = "https://gitlab.com/sequoia-pgp/sequoia" }
+maintenance = { status = "actively-developed" }
[dependencies]
openpgp = { path = "../openpgp" }