diff --git a/components/aead/Cargo.toml b/components/aead/Cargo.toml index 21d560207f..283103ba18 100644 --- a/components/aead/Cargo.toml +++ b/components/aead/Cargo.toml @@ -5,7 +5,7 @@ description = "This crate provides an implementation of a two-party version of A keywords = ["tls", "mpc", "2pc", "aead", "aes", "aes-gcm"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [lib] diff --git a/components/cipher/block-cipher/Cargo.toml b/components/cipher/block-cipher/Cargo.toml index 8059f331f7..011dec23f1 100644 --- a/components/cipher/block-cipher/Cargo.toml +++ b/components/cipher/block-cipher/Cargo.toml @@ -5,7 +5,7 @@ description = "2PC block cipher implementation" keywords = ["tls", "mpc", "2pc", "block-cipher"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [lib] diff --git a/components/cipher/stream-cipher/Cargo.toml b/components/cipher/stream-cipher/Cargo.toml index 850c6a232c..17f40a2bf5 100644 --- a/components/cipher/stream-cipher/Cargo.toml +++ b/components/cipher/stream-cipher/Cargo.toml @@ -5,7 +5,7 @@ description = "2PC stream cipher implementation" keywords = ["tls", "mpc", "2pc", "stream-cipher"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [features] diff --git a/components/key-exchange/Cargo.toml b/components/key-exchange/Cargo.toml index c8b20f6e58..f1ce28a81e 100644 --- a/components/key-exchange/Cargo.toml +++ b/components/key-exchange/Cargo.toml @@ -5,7 +5,7 @@ description = "Implementation of the TLSNotary-specific key-exchange protocol" keywords = ["tls", "mpc", "2pc", "pms", "key-exchange"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [lib] diff --git a/components/point-addition/Cargo.toml b/components/point-addition/Cargo.toml index ad117e81b8..b8cb44b0f6 100644 --- a/components/point-addition/Cargo.toml +++ b/components/point-addition/Cargo.toml @@ -5,7 +5,7 @@ description = "Addition of EC points using 2PC, producing additive secret-shares keywords = ["tls", "mpc", "2pc", "ecc", "elliptic"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [lib] diff --git a/components/prf/hmac-sha256-circuits/Cargo.toml b/components/prf/hmac-sha256-circuits/Cargo.toml index fec1214f57..4a47c666f9 100644 --- a/components/prf/hmac-sha256-circuits/Cargo.toml +++ b/components/prf/hmac-sha256-circuits/Cargo.toml @@ -5,7 +5,7 @@ description = "The 2PC circuits for TLS HMAC-SHA256 PRF" keywords = ["tls", "mpc", "2pc", "hmac", "sha256"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [lib] diff --git a/components/prf/hmac-sha256/Cargo.toml b/components/prf/hmac-sha256/Cargo.toml index cbf4688d36..639d9d74ef 100644 --- a/components/prf/hmac-sha256/Cargo.toml +++ b/components/prf/hmac-sha256/Cargo.toml @@ -5,7 +5,7 @@ description = "A 2PC implementation of TLS HMAC-SHA256 PRF" keywords = ["tls", "mpc", "2pc", "hmac", "sha256"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [lib] diff --git a/components/tls/tls-backend/Cargo.toml b/components/tls/tls-backend/Cargo.toml index 8df8ba4f8a..002728ee80 100644 --- a/components/tls/tls-backend/Cargo.toml +++ b/components/tls/tls-backend/Cargo.toml @@ -5,7 +5,7 @@ description = "A TLS backend trait for TLSNotary" keywords = ["tls", "mpc", "2pc"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [lib] diff --git a/components/tls/tls-client-async/Cargo.toml b/components/tls/tls-client-async/Cargo.toml index 9247f18e0c..6d4e19852d 100644 --- a/components/tls/tls-client-async/Cargo.toml +++ b/components/tls/tls-client-async/Cargo.toml @@ -5,7 +5,7 @@ description = "An async TLS client for TLSNotary" keywords = ["tls", "mpc", "2pc", "client", "async"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [lib] diff --git a/components/tls/tls-client/Cargo.toml b/components/tls/tls-client/Cargo.toml index 6d1dbfac87..389e6621ff 100644 --- a/components/tls/tls-client/Cargo.toml +++ b/components/tls/tls-client/Cargo.toml @@ -5,7 +5,7 @@ description = "A TLS client for TLSNotary" keywords = ["tls", "mpc", "2pc", "client", "sync"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" autobenches = false build = "build.rs" diff --git a/components/tls/tls-core/Cargo.toml b/components/tls/tls-core/Cargo.toml index 5bf38184ca..a7ca7fe633 100644 --- a/components/tls/tls-core/Cargo.toml +++ b/components/tls/tls-core/Cargo.toml @@ -5,7 +5,7 @@ description = "Cryptographic operations for the TLSNotary TLS client" keywords = ["tls", "mpc", "2pc"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [lib] diff --git a/components/tls/tls-mpc/Cargo.toml b/components/tls/tls-mpc/Cargo.toml index 6f9b88938c..067644643e 100644 --- a/components/tls/tls-mpc/Cargo.toml +++ b/components/tls/tls-mpc/Cargo.toml @@ -5,7 +5,7 @@ description = "Implementation of the backend trait for 2PC" keywords = ["tls", "mpc", "2pc"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [lib] diff --git a/components/uid-mux/Cargo.toml b/components/uid-mux/Cargo.toml index fba4bf200d..0ad18c13fd 100644 --- a/components/uid-mux/Cargo.toml +++ b/components/uid-mux/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uid-mux" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" authors = ["TLSNotary Team"] description = "Multiplex connections asynchronously." keywords = ["multiplex", "channel", "futures", "async"] diff --git a/components/universal-hash/Cargo.toml b/components/universal-hash/Cargo.toml index c35ed42871..f44fd18344 100644 --- a/components/universal-hash/Cargo.toml +++ b/components/universal-hash/Cargo.toml @@ -5,7 +5,7 @@ description = "A crate which implements different hash functions for two-party c keywords = ["tls", "mpc", "2pc", "hash"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [features] diff --git a/notary-server/Cargo.toml b/notary-server/Cargo.toml index 766b01ac08..59aab50714 100644 --- a/notary-server/Cargo.toml +++ b/notary-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "notary-server" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [dependencies] diff --git a/notary-server/openapi.yaml b/notary-server/openapi.yaml index e13f74e4f0..ced837bddd 100644 --- a/notary-server/openapi.yaml +++ b/notary-server/openapi.yaml @@ -3,7 +3,7 @@ openapi: 3.0.0 info: title: Notary Server description: Notary server written in Rust to provide notarization service. - version: 0.1.0-alpha.3 + version: 0.1.0-alpha.4 tags: - name: General diff --git a/tlsn/tlsn-common/Cargo.toml b/tlsn/tlsn-common/Cargo.toml index b70c14e2a2..4930197567 100644 --- a/tlsn/tlsn-common/Cargo.toml +++ b/tlsn/tlsn-common/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tlsn-common" description = "Common code shared between tlsn-prover and tlsn-verifier" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [features] diff --git a/tlsn/tlsn-core/Cargo.toml b/tlsn/tlsn-core/Cargo.toml index ec3854adb3..c1a08dc5bf 100644 --- a/tlsn/tlsn-core/Cargo.toml +++ b/tlsn/tlsn-core/Cargo.toml @@ -5,7 +5,7 @@ description = "Core types for TLSNotary" keywords = ["tls", "mpc", "2pc", "types"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [features] diff --git a/tlsn/tlsn-formats/Cargo.toml b/tlsn/tlsn-formats/Cargo.toml index 6ac3af0118..08107f6748 100644 --- a/tlsn/tlsn-formats/Cargo.toml +++ b/tlsn/tlsn-formats/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tlsn-formats" -version = "0.1.0" +version = "0.1.0-alpha.4" edition = "2021" [dependencies] diff --git a/tlsn/tlsn-prover/Cargo.toml b/tlsn/tlsn-prover/Cargo.toml index 6d3bb35f9d..8d0aa291bd 100644 --- a/tlsn/tlsn-prover/Cargo.toml +++ b/tlsn/tlsn-prover/Cargo.toml @@ -5,7 +5,7 @@ description = "Contains the prover library" keywords = ["tls", "mpc", "2pc", "prover"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [features] diff --git a/tlsn/tlsn-verifier/Cargo.toml b/tlsn/tlsn-verifier/Cargo.toml index 0c3bd6a3d4..28a115ce58 100644 --- a/tlsn/tlsn-verifier/Cargo.toml +++ b/tlsn/tlsn-verifier/Cargo.toml @@ -5,7 +5,7 @@ description = "A library for the TLSNotary verifier" keywords = ["tls", "mpc", "2pc"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.3" +version = "0.1.0-alpha.4" edition = "2021" [features]