chore: release v0.1.0-alpha.12 (#928)

This commit is contained in:
dan
2025-06-19 09:05:34 +00:00
committed by GitHub
parent 9bf3371873
commit f2ff4ba792
21 changed files with 44 additions and 39 deletions

36
Cargo.lock generated
View File

@@ -4301,7 +4301,7 @@ dependencies = [
[[package]]
name = "notary-client"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"derive_builder 0.12.0",
"futures",
@@ -4319,14 +4319,14 @@ dependencies = [
[[package]]
name = "notary-common"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"serde",
]
[[package]]
name = "notary-server"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"async-tungstenite 0.28.2",
"axum 0.8.4",
@@ -6379,7 +6379,7 @@ dependencies = [
[[package]]
name = "tlsn-cipher"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"aes 0.8.4",
"async-trait",
@@ -6398,7 +6398,7 @@ dependencies = [
[[package]]
name = "tlsn-common"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"async-trait",
"derive_builder 0.12.0",
@@ -6430,7 +6430,7 @@ dependencies = [
[[package]]
name = "tlsn-core"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"alloy-primitives",
"alloy-signer",
@@ -6468,7 +6468,7 @@ version = "0.0.0"
[[package]]
name = "tlsn-deap"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"async-trait",
"futures",
@@ -6522,7 +6522,7 @@ dependencies = [
[[package]]
name = "tlsn-formats"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"bytes",
"rstest",
@@ -6604,7 +6604,7 @@ dependencies = [
[[package]]
name = "tlsn-hmac-sha256"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"criterion",
"hex",
@@ -6625,7 +6625,7 @@ dependencies = [
[[package]]
name = "tlsn-key-exchange"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"async-trait",
"derive_builder 0.12.0",
@@ -6651,7 +6651,7 @@ dependencies = [
[[package]]
name = "tlsn-mpc-tls"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"aes 0.8.4",
"aes-gcm",
@@ -6701,7 +6701,7 @@ dependencies = [
[[package]]
name = "tlsn-prover"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"derive_builder 0.12.0",
"futures",
@@ -6761,7 +6761,7 @@ version = "0.0.0"
[[package]]
name = "tlsn-tls-backend"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"async-trait",
"futures",
@@ -6771,7 +6771,7 @@ dependencies = [
[[package]]
name = "tlsn-tls-client"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"aes-gcm",
"async-trait",
@@ -6798,7 +6798,7 @@ dependencies = [
[[package]]
name = "tlsn-tls-client-async"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"bytes",
"futures",
@@ -6816,7 +6816,7 @@ dependencies = [
[[package]]
name = "tlsn-tls-core"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"futures",
"hmac",
@@ -6839,7 +6839,7 @@ source = "git+https://github.com/tlsnotary/tlsn-utils?rev=6168663#6168663495281f
[[package]]
name = "tlsn-verifier"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"derive_builder 0.12.0",
"futures",
@@ -6869,7 +6869,7 @@ dependencies = [
[[package]]
name = "tlsn-wasm"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
dependencies = [
"bincode",
"console_error_panic_hook",

View File

@@ -1,7 +1,7 @@
[package]
name = "tlsn-common"
description = "Common code shared between tlsn-prover and tlsn-verifier"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -5,7 +5,7 @@ description = "This crate provides implementations of ciphers for two parties"
keywords = ["tls", "mpc", "2pc", "aes"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -1,6 +1,6 @@
[package]
name = "tlsn-deap"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -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.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -5,7 +5,7 @@ description = "Implementation of the 3-party key-exchange protocol"
keywords = ["tls", "mpc", "2pc", "pms", "key-exchange"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -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.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -1,6 +1,6 @@
[package]
name = "tlsn-formats"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -5,7 +5,7 @@ description = "TLSNotary MPC-TLS protocol"
keywords = ["tls", "mpc", "2pc"]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -1,6 +1,6 @@
[package]
name = "notary-client"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -1,6 +1,6 @@
[package]
name = "notary-common"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
description = "Common code shared between notary-server and notary-client"
edition = "2021"

View File

@@ -1,6 +1,6 @@
[package]
name = "notary-server"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -2,7 +2,7 @@ openapi: 3.0.0
info:
title: Notary Server
description: Notary server written in Rust to provide notarization service.
version: 0.1.0-alpha.12-pre
version: 0.1.0-alpha.12
tags:
- name: General
- name: Notarization

View File

@@ -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.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -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.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -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.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -5,7 +5,7 @@ description = "A TLS client for TLSNotary"
keywords = ["tls", "mpc", "2pc", "client", "sync"]
categories = ["cryptography"]
license = "Apache-2.0 OR ISC OR MIT"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
autobenches = false

View File

@@ -5,7 +5,7 @@ description = "Cryptographic operations for the TLSNotary TLS client"
keywords = ["tls", "mpc", "2pc"]
categories = ["cryptography"]
license = "Apache-2.0 OR ISC OR MIT"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -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.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
[lints]

View File

@@ -1,6 +1,6 @@
[package]
name = "tlsn-wasm"
version = "0.1.0-alpha.12-pre"
version = "0.1.0-alpha.12"
edition = "2021"
repository = "https://github.com/tlsnotary/tlsn.git"
description = "A core WebAssembly package for TLSNotary."

View File

@@ -13,13 +13,18 @@ toml_edit = "0.22.22"
walkdir = "2.5.0"
---
// On some systems the above shebang should look like
// #!/usr/bin/env -S cargo +nightly -Zscript
// This scripts sets the TLSNotary version in all relevant files. Run it with:
// ./set_tlsn_version <version>
use clap::Parser;
use serde_yaml::Value;
use std::fs::{self, read_to_string};
use std::path::Path;
use std::{
fs::{self, read_to_string},
path::Path,
};
use toml_edit::{value, DocumentMut};
use walkdir::WalkDir;