Skip to content

Commit

Permalink
update manifests for v0.1.0-alpha.1 (#340)
Browse files Browse the repository at this point in the history
  • Loading branch information
sinui0 authored Sep 19, 2023
1 parent ea30771 commit a6d5fcb
Show file tree
Hide file tree
Showing 20 changed files with 26 additions and 48 deletions.
2 changes: 1 addition & 1 deletion components/aead/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
8 changes: 2 additions & 6 deletions components/cipher/block-cipher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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"] }
8 changes: 2 additions & 6 deletions components/cipher/stream-cipher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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"] }

Expand Down
8 changes: 2 additions & 6 deletions components/integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion components/key-exchange/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion components/point-addition/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion components/prf/hmac-sha256-circuits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion components/prf/hmac-sha256/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion components/tls/tls-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
10 changes: 3 additions & 7 deletions components/tls/tls-client-async/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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 }
rstest = { workspace = true }
2 changes: 1 addition & 1 deletion components/tls/tls-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 1 addition & 2 deletions components/tls/tls-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -27,4 +27,3 @@ tracing = { workspace = true, optional = true }
ring.workspace = true
futures.workspace = true
serde = { workspace = true, optional = true, features = ["derive"] }

2 changes: 1 addition & 1 deletion components/tls/tls-mpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions components/tls/tls-server-fixture/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -16,4 +17,3 @@ rustls = { version = "0.21", features = ["logging"] }
tokio-util = { workspace = true, features = ["compat", "io-util"] }
tracing.workspace = true
tokio.workspace = true

2 changes: 1 addition & 1 deletion components/uid-mux/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion components/universal-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
7 changes: 1 addition & 6 deletions tlsn/tests-integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion tlsn/tlsn-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion tlsn/tlsn-notary/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion tlsn/tlsn-prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit a6d5fcb

Please sign in to comment.