diff --git a/components/aead/Cargo.toml b/components/aead/Cargo.toml index 93b5b27241..4dbfb723f9 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.1" +version = "0.1.0-alpha.2" edition = "2021" [lib] diff --git a/components/cipher/block-cipher/Cargo.toml b/components/cipher/block-cipher/Cargo.toml index 43154aebc6..3aa9396b7e 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.1" +version = "0.1.0-alpha.2" edition = "2021" [lib] diff --git a/components/cipher/stream-cipher/Cargo.toml b/components/cipher/stream-cipher/Cargo.toml index 00ce91e916..9d181b21cd 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.1" +version = "0.1.0-alpha.2" edition = "2021" [features] diff --git a/components/key-exchange/Cargo.toml b/components/key-exchange/Cargo.toml index 021320901c..be9d0a972b 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.1" +version = "0.1.0-alpha.2" edition = "2021" [lib] diff --git a/components/point-addition/Cargo.toml b/components/point-addition/Cargo.toml index cd7f91a12d..226b4b6e33 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.1" +version = "0.1.0-alpha.2" edition = "2021" [lib] diff --git a/components/prf/hmac-sha256-circuits/Cargo.toml b/components/prf/hmac-sha256-circuits/Cargo.toml index fe9c854577..a0ac1dc0f7 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.1" +version = "0.1.0-alpha.2" edition = "2021" [lib] diff --git a/components/prf/hmac-sha256/Cargo.toml b/components/prf/hmac-sha256/Cargo.toml index fea3d94ced..6ec80f7b5a 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.1" +version = "0.1.0-alpha.2" edition = "2021" [lib] diff --git a/components/tls/tls-backend/Cargo.toml b/components/tls/tls-backend/Cargo.toml index 7b04330f33..7a782d926c 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.1" +version = "0.1.0-alpha.2" edition = "2021" [lib] diff --git a/components/tls/tls-client-async/Cargo.toml b/components/tls/tls-client-async/Cargo.toml index 9439c4303a..ee37e0b666 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.1" +version = "0.1.0-alpha.2" edition = "2021" [lib] diff --git a/components/tls/tls-client/Cargo.toml b/components/tls/tls-client/Cargo.toml index b9365ef3eb..bd4ca59571 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.1" +version = "0.1.0-alpha.2" edition = "2021" autobenches = false build = "build.rs" diff --git a/components/tls/tls-core/Cargo.toml b/components/tls/tls-core/Cargo.toml index 3d11f65323..ac5df64d5e 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.1" +version = "0.1.0-alpha.2" edition = "2021" [lib] diff --git a/components/tls/tls-mpc/Cargo.toml b/components/tls/tls-mpc/Cargo.toml index 67ce71bc61..6a76320ed8 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.1" +version = "0.1.0-alpha.2" edition = "2021" [lib] diff --git a/components/uid-mux/Cargo.toml b/components/uid-mux/Cargo.toml index d4d8d1711b..b74f4fc1c8 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.1" +version = "0.1.0-alpha.2" 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 4752a6bada..ce4cc8c4c5 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.1" +version = "0.1.0-alpha.2" edition = "2021" [features] diff --git a/tlsn/examples/Cargo.toml b/tlsn/examples/Cargo.toml index d6c26af498..e296daead5 100644 --- a/tlsn/examples/Cargo.toml +++ b/tlsn/examples/Cargo.toml @@ -10,7 +10,7 @@ tlsn-notary.workspace = true tlsn-core.workspace = true tlsn-tls-core.workspace = true tlsn-tls-client.workspace = true -notary-server = { version = "0.1.0-alpha.1", git = "https://github.com/tlsnotary/notary-server" } +notary-server = { tag = "v0.1.0-alpha.2", git = "https://github.com/tlsnotary/notary-server" } mpz-core.workspace = true futures.workspace = true diff --git a/tlsn/tlsn-core/Cargo.toml b/tlsn/tlsn-core/Cargo.toml index c1c7fb4f57..7a7c59ee48 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.1" +version = "0.1.0-alpha.2" edition = "2021" [features] diff --git a/tlsn/tlsn-notary/Cargo.toml b/tlsn/tlsn-notary/Cargo.toml index 2a1fef46dc..3e2b4b1eea 100644 --- a/tlsn/tlsn-notary/Cargo.toml +++ b/tlsn/tlsn-notary/Cargo.toml @@ -5,7 +5,7 @@ description = "A library for the notary server" keywords = ["tls", "mpc", "2pc", "notary"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0-alpha.1" +version = "0.1.0-alpha.2" edition = "2021" [features] diff --git a/tlsn/tlsn-prover/Cargo.toml b/tlsn/tlsn-prover/Cargo.toml index 09b92d962d..7bea236f7b 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.1" +version = "0.1.0-alpha.2" edition = "2021" [features]