From a6d5fcb26f009b0820c49fb2cd15f429369aaeba Mon Sep 17 00:00:00 2001 From: "sinu.eth" <65924192+sinui0@users.noreply.github.com> Date: Tue, 19 Sep 2023 10:25:50 -0700 Subject: [PATCH] update manifests for v0.1.0-alpha.1 (#340) --- components/aead/Cargo.toml | 2 +- components/cipher/block-cipher/Cargo.toml | 8 ++------ components/cipher/stream-cipher/Cargo.toml | 8 ++------ components/integration-tests/Cargo.toml | 8 ++------ components/key-exchange/Cargo.toml | 2 +- components/point-addition/Cargo.toml | 2 +- components/prf/hmac-sha256-circuits/Cargo.toml | 2 +- components/prf/hmac-sha256/Cargo.toml | 2 +- components/tls/tls-backend/Cargo.toml | 2 +- components/tls/tls-client-async/Cargo.toml | 10 +++------- components/tls/tls-client/Cargo.toml | 2 +- components/tls/tls-core/Cargo.toml | 3 +-- components/tls/tls-mpc/Cargo.toml | 2 +- components/tls/tls-server-fixture/Cargo.toml | 4 ++-- components/uid-mux/Cargo.toml | 2 +- components/universal-hash/Cargo.toml | 2 +- tlsn/tests-integration/Cargo.toml | 7 +------ tlsn/tlsn-core/Cargo.toml | 2 +- tlsn/tlsn-notary/Cargo.toml | 2 +- tlsn/tlsn-prover/Cargo.toml | 2 +- 20 files changed, 26 insertions(+), 48 deletions(-) diff --git a/components/aead/Cargo.toml b/components/aead/Cargo.toml index f8692165a..93b5b2724 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" +version = "0.1.0-alpha.1" edition = "2021" [lib] diff --git a/components/cipher/block-cipher/Cargo.toml b/components/cipher/block-cipher/Cargo.toml index 10f7570b2..43154aebc 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" +version = "0.1.0-alpha.1" edition = "2021" [lib] @@ -28,8 +28,4 @@ tracing = { workspace = true, optional = true } [dev-dependencies] aes.workspace = true cipher.workspace = true -tokio = { workspace = true, features = [ - "macros", - "rt", - "rt-multi-thread", -] } +tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread"] } diff --git a/components/cipher/stream-cipher/Cargo.toml b/components/cipher/stream-cipher/Cargo.toml index 62861d6c8..00ce91e91 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" +version = "0.1.0-alpha.1" edition = "2021" [features] @@ -27,11 +27,7 @@ tracing = { workspace = true, optional = true } ctr.workspace = true cipher.workspace = true futures.workspace = true -tokio = { workspace = true, features = [ - "macros", - "rt", - "rt-multi-thread", -] } +tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread"] } rstest = { workspace = true, features = ["async-timeout"] } criterion = { workspace = true, features = ["async_tokio"] } diff --git a/components/integration-tests/Cargo.toml b/components/integration-tests/Cargo.toml index 3021b5ba3..6dd90c4c0 100644 --- a/components/integration-tests/Cargo.toml +++ b/components/integration-tests/Cargo.toml @@ -1,12 +1,8 @@ [package] name = "integration-tests" -authors = ["TLSNotary Team"] -description = "Integration tests for TLSNotary" -keywords = ["tls", "mpc", "2pc", "test"] -categories = ["cryptography"] -license = "MIT OR Apache-2.0" -version = "0.1.0" +version = "0.0.0" edition = "2021" +publish = false # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/components/key-exchange/Cargo.toml b/components/key-exchange/Cargo.toml index ea89f8d6a..021320901 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" +version = "0.1.0-alpha.1" edition = "2021" [lib] diff --git a/components/point-addition/Cargo.toml b/components/point-addition/Cargo.toml index 2f54cb04e..cd7f91a12 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" +version = "0.1.0-alpha.1" edition = "2021" [lib] diff --git a/components/prf/hmac-sha256-circuits/Cargo.toml b/components/prf/hmac-sha256-circuits/Cargo.toml index d5a4589ca..fe9c85457 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" +version = "0.1.0-alpha.1" edition = "2021" [lib] diff --git a/components/prf/hmac-sha256/Cargo.toml b/components/prf/hmac-sha256/Cargo.toml index fe7a0122a..fea3d94ce 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" +version = "0.1.0-alpha.1" edition = "2021" [lib] diff --git a/components/tls/tls-backend/Cargo.toml b/components/tls/tls-backend/Cargo.toml index 296970c97..7b04330f3 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" +version = "0.1.0-alpha.1" edition = "2021" [lib] diff --git a/components/tls/tls-client-async/Cargo.toml b/components/tls/tls-client-async/Cargo.toml index 8ff33bf0b..9439c4303 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" +version = "0.1.0-alpha.1" edition = "2021" [lib] @@ -24,12 +24,8 @@ thiserror.workspace = true [dev-dependencies] tracing-subscriber.workspace = true -tokio = { workspace = true, features = [ - "rt", - "rt-multi-thread", - "macros", -] } +tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros"] } webpki-roots.workspace = true hyper = { workspace = true, features = ["client", "http1"] } tls-server-fixture = { path = "../tls-server-fixture" } -rstest = { workspace = true } \ No newline at end of file +rstest = { workspace = true } diff --git a/components/tls/tls-client/Cargo.toml b/components/tls/tls-client/Cargo.toml index cf89e93a9..b9365ef3e 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" +version = "0.1.0-alpha.1" edition = "2021" autobenches = false build = "build.rs" diff --git a/components/tls/tls-core/Cargo.toml b/components/tls/tls-core/Cargo.toml index 49ab8342c..0a8c2504d 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" +version = "0.1.0-alpha.1" edition = "2021" [lib] @@ -27,4 +27,3 @@ tracing = { workspace = true, optional = true } ring.workspace = true futures.workspace = true serde = { workspace = true, optional = true, features = ["derive"] } - diff --git a/components/tls/tls-mpc/Cargo.toml b/components/tls/tls-mpc/Cargo.toml index 9b9b33fdf..67ce71bc6 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" +version = "0.1.0-alpha.1" edition = "2021" [lib] diff --git a/components/tls/tls-server-fixture/Cargo.toml b/components/tls/tls-server-fixture/Cargo.toml index 2cebc365d..b488006b4 100644 --- a/components/tls/tls-server-fixture/Cargo.toml +++ b/components/tls/tls-server-fixture/Cargo.toml @@ -5,8 +5,9 @@ description = "Fixtures for testing" keywords = ["tls", "fixture"] categories = ["cryptography"] license = "MIT OR Apache-2.0" -version = "0.1.0" +version = "0.0.0" edition = "2021" +publish = false [dependencies] async-rustls.workspace = true @@ -16,4 +17,3 @@ rustls = { version = "0.21", features = ["logging"] } tokio-util = { workspace = true, features = ["compat", "io-util"] } tracing.workspace = true tokio.workspace = true - diff --git a/components/uid-mux/Cargo.toml b/components/uid-mux/Cargo.toml index 23347652a..d4d8d1711 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" +version = "0.1.0-alpha.1" 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 674c8a71b..4752a6bad 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" +version = "0.1.0-alpha.1" edition = "2021" [features] diff --git a/tlsn/tests-integration/Cargo.toml b/tlsn/tests-integration/Cargo.toml index 10ab24158..4e14f6287 100644 --- a/tlsn/tests-integration/Cargo.toml +++ b/tlsn/tests-integration/Cargo.toml @@ -1,11 +1,6 @@ [package] name = "tests-integration" -authors = ["TLSNotary Team"] -description = "Integration tests for TLSNotary" -keywords = ["tls", "mpc", "2pc", "test"] -categories = ["cryptography"] -license = "MIT OR Apache-2.0" -version = "0.1.0" +version = "0.0.0" edition = "2021" publish = false diff --git a/tlsn/tlsn-core/Cargo.toml b/tlsn/tlsn-core/Cargo.toml index 13f52da75..c1c7fb4f5 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" +version = "0.1.0-alpha.1" edition = "2021" [features] diff --git a/tlsn/tlsn-notary/Cargo.toml b/tlsn/tlsn-notary/Cargo.toml index daa9d24de..2a1fef46d 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" +version = "0.1.0-alpha.1" edition = "2021" [features] diff --git a/tlsn/tlsn-prover/Cargo.toml b/tlsn/tlsn-prover/Cargo.toml index 1d218efcb..09b92d962 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" +version = "0.1.0-alpha.1" edition = "2021" [features]