summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Birr-Pixton <jpixton@gmail.com>2024-03-13 16:51:56 +0000
committerJoe Birr-Pixton <jpixton@gmail.com>2024-03-13 17:18:59 +0000
commit9a911841cd073244e995015fd52e0e5d6797c6c7 (patch)
tree0fb1db75c2bf07ffd9516dcdc6b89bfdb30c96d4
parent92cb23e6e5cb6247664d9ee9d98bb3f8e25be1e4 (diff)
Prepare rustls-post-quantum 0.1.0rustls-post-quantum-v/0.1.0
-rw-r--r--Cargo.lock17
-rw-r--r--rustls-post-quantum/Cargo.toml9
2 files changed, 23 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a4f5060a..960e07da 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2159,6 +2159,21 @@ dependencies = [
]
[[package]]
+name = "rustls"
+version = "0.23.2"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "5dfbdb5ddfafe3040e01fe9dced711e27b5336ac97d4a9b2089f0066a04b5846"
+dependencies = [
+ "aws-lc-rs",
+ "log",
+ "once_cell",
+ "rustls-pki-types",
+ "rustls-webpki 0.102.2",
+ "subtle",
+ "zeroize",
+]
+
+[[package]]
name = "rustls-ci-bench"
version = "0.0.1"
dependencies = [
@@ -2248,7 +2263,7 @@ version = "0.1.0"
dependencies = [
"aws-lc-rs",
"env_logger",
- "rustls 0.23.2",
+ "rustls 0.23.2 (registry+https://github.com/rust-lang/crates.io-index)",
"webpki-roots 0.26.1",
]
diff --git a/rustls-post-quantum/Cargo.toml b/rustls-post-quantum/Cargo.toml
index c2a9627b..7c137933 100644
--- a/rustls-post-quantum/Cargo.toml
+++ b/rustls-post-quantum/Cargo.toml
@@ -2,10 +2,15 @@
name = "rustls-post-quantum"
version = "0.1.0"
edition = "2021"
-publish = false
+license = "Apache-2.0 OR ISC OR MIT"
+readme = "README.md"
+description = "Experimental support for post-quantum key exchange in rustls"
+homepage = "https://github.com/rustls/rustls"
+repository = "https://github.com/rustls/rustls"
+categories = ["network-programming", "cryptography"]
[dependencies]
-rustls = { path = "../rustls", features = ["aws_lc_rs"] }
+rustls = { version = "0.23.2", features = ["aws_lc_rs"] }
aws-lc-rs = { version = "1.6", features = ["unstable"], default-features = false }
[dev-dependencies]