From 399b3bc02c803f016b2af3d30c6e995ef7a35525 Mon Sep 17 00:00:00 2001 From: Franziskus Kiefer Date: Tue, 23 Jul 2024 16:28:08 +0200 Subject: [PATCH 1/2] Don't publish test The test vectors are pretty big, let's not put them in the crate. --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d312891..1b2ae8a 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hpke-rs" -version = "0.2.0" +version = "0.2.1-pre.1" authors = ["Franziskus Kiefer "] edition = "2021" license = "MPL-2.0" @@ -8,6 +8,7 @@ documentation = "https://docs.rs/hpke-rs" description = "HPKE Implementation" readme = "Readme.md" repository = "https://github.com/franziskuskiefer/hpke-rs" +exclude = ["/tests"] [dependencies] log = "0.4" From b1d417f1fbb8a52214c0fb8928f4d7753ead2191 Mon Sep 17 00:00:00 2001 From: Franziskus Kiefer Date: Tue, 23 Jul 2024 16:31:48 +0200 Subject: [PATCH 2/2] bump tls_codec to 0.4.1-pre.1 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1b2ae8a..e88d682 100755 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ exclude = ["/tests"] [dependencies] log = "0.4" serde = { version = "1.0", features = ["derive"], optional = true } -tls_codec = { version = "0.4.0", features = ["derive"], optional = true } +tls_codec = { version = "0.4.1-pre.1", features = ["derive"], optional = true } zeroize = { version = "1.5", features = ["zeroize_derive"] } hpke-rs-crypto = { version = "0.2.0", path = "./traits" }