chore: bump to v1.0.0-rc.0, fix doc #6
+9
-2
@@ -1,12 +1,19 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 1.0.0-pre.1 (July 1, 2026)
|
## 1.0.0-rc.0 (July 3, 2026)
|
||||||
|
|
||||||
|
* Fixed doc showing incorrect MSRV
|
||||||
|
* Fixed readme incorrect doc link
|
||||||
|
* Bump `ecdsa` to `0.17`
|
||||||
|
* Bump `voprf-vx` to `1.0.0-rc`
|
||||||
|
|
||||||
|
## 1.0.0-pre.1 (July 2, 2026)
|
||||||
|
|
||||||
* Fixed README package name
|
* Fixed README package name
|
||||||
* Implement `zeroize` feature on `argon2`, `ed25519-dalek`, `hmac`, `chacha20poly1305` and `sha2`
|
* Implement `zeroize` feature on `argon2`, `ed25519-dalek`, `hmac`, `chacha20poly1305` and `sha2`
|
||||||
* Removed `rand_core` dependency to use it through `rand` re-export
|
* Removed `rand_core` dependency to use it through `rand` re-export
|
||||||
|
|
||||||
## 1.0.0-pre.0 (June 29, 2026)
|
## 1.0.0-pre.0 (July 1, 2026)
|
||||||
|
|
||||||
Forked from [facebook/opaque-ke](https://github.com/facebook/opaque-ke/) at `4.1.0-pre.2`.
|
Forked from [facebook/opaque-ke](https://github.com/facebook/opaque-ke/) at `4.1.0-pre.2`.
|
||||||
|
|
||||||
|
|||||||
+6
-6
@@ -14,7 +14,7 @@ name = "opaque-vx"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/vexahub/opaque-vx"
|
repository = "https://github.com/vexahub/opaque-vx"
|
||||||
rust-version = "1.90"
|
rust-version = "1.90"
|
||||||
version = "1.0.0-pre.1"
|
version = "1.0.0-rc.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
argon2 = ["dep:argon2"]
|
argon2 = ["dep:argon2"]
|
||||||
@@ -48,7 +48,7 @@ curve25519-dalek = { version = "5.0.0-rc", default-features = false, features =
|
|||||||
derive-where = { version = "1.6", features = ["zeroize-on-drop"] }
|
derive-where = { version = "1.6", features = ["zeroize-on-drop"] }
|
||||||
digest = { version = "0.11", features = ["zeroize"] }
|
digest = { version = "0.11", features = ["zeroize"] }
|
||||||
displaydoc = { version = "0.2", default-features = false }
|
displaydoc = { version = "0.2", default-features = false }
|
||||||
ecdsa = { version = "0.17.0-rc.23", default-features = false, features = [
|
ecdsa = { version = "0.17", default-features = false, features = [
|
||||||
"algorithm",
|
"algorithm",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
ed25519-dalek = { version = "3.0.0-rc", default-features = false, features = [
|
ed25519-dalek = { version = "3.0.0-rc", default-features = false, features = [
|
||||||
@@ -69,7 +69,7 @@ serde = { version = "1", default-features = false, features = [
|
|||||||
"derive",
|
"derive",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
subtle = { version = "2.6", default-features = false }
|
subtle = { version = "2.6", default-features = false }
|
||||||
voprf = { package = "voprf-vx", version = "1.0.0-pre.1", default-features = false, features = [
|
voprf = { package = "voprf-vx", version = "1.0.0-rc", default-features = false, features = [
|
||||||
"danger",
|
"danger",
|
||||||
] }
|
] }
|
||||||
zeroize = { version = "1.9", features = ["zeroize_derive"] }
|
zeroize = { version = "1.9", features = ["zeroize_derive"] }
|
||||||
@@ -85,18 +85,18 @@ criterion = "0.8"
|
|||||||
cryptoki = "0.12"
|
cryptoki = "0.12"
|
||||||
elliptic-curve = { version = "0.14", features = ["alloc", "pkcs8"] }
|
elliptic-curve = { version = "0.14", features = ["alloc", "pkcs8"] }
|
||||||
hex = "0.4"
|
hex = "0.4"
|
||||||
p256 = { version = "0.14.0-rc.15", default-features = false, features = [
|
p256 = { version = "0.14.0-rc", default-features = false, features = [
|
||||||
"ecdsa",
|
"ecdsa",
|
||||||
"hash2curve",
|
"hash2curve",
|
||||||
"pkcs8",
|
"pkcs8",
|
||||||
"oprf",
|
"oprf",
|
||||||
] }
|
] }
|
||||||
p384 = { version = "0.14.0-rc.15", default-features = false, features = [
|
p384 = { version = "0.14.0-rc", default-features = false, features = [
|
||||||
"hash2curve",
|
"hash2curve",
|
||||||
"pkcs8",
|
"pkcs8",
|
||||||
"oprf",
|
"oprf",
|
||||||
] }
|
] }
|
||||||
p521 = { version = "0.14.0-rc.15", default-features = false, features = [
|
p521 = { version = "0.14.0-rc", default-features = false, features = [
|
||||||
"hash2curve",
|
"hash2curve",
|
||||||
"pkcs8",
|
"pkcs8",
|
||||||
"oprf",
|
"oprf",
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ OPAQUE is a PKI-free aPAKE that is secure against pre-computation attacks and ca
|
|||||||
Documentation
|
Documentation
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
The API can be found [here](https://docs.rs/opaque-ke-vx/) along with an example for usage. More examples can be found
|
The API can be found [here](https://docs.rs/opaque-vx/) along with an example for usage. More examples can be found
|
||||||
in
|
in
|
||||||
the [examples](./examples) directory.
|
the [examples](./examples) directory.
|
||||||
|
|
||||||
@@ -30,7 +30,7 @@ Installation
|
|||||||
Add the following line to the dependencies of your `Cargo.toml`:
|
Add the following line to the dependencies of your `Cargo.toml`:
|
||||||
|
|
||||||
```
|
```
|
||||||
opaque-ke = { package = "opaque-vx", version = "1.0.0-pre.0" }
|
opaque-ke = { package = "opaque-vx", version = "1.0.0-rc.0" }
|
||||||
```
|
```
|
||||||
|
|
||||||
### Minimum Supported Rust Version
|
### Minimum Supported Rust Version
|
||||||
|
|||||||
+1
-1
@@ -7,7 +7,7 @@
|
|||||||
//!
|
//!
|
||||||
//! ### Minimum Supported Rust Version
|
//! ### Minimum Supported Rust Version
|
||||||
//!
|
//!
|
||||||
//! Rust **1.87** or higher.
|
//! Rust **1.90** or higher.
|
||||||
//!
|
//!
|
||||||
//! # Overview
|
//! # Overview
|
||||||
//!
|
//!
|
||||||
|
|||||||
Reference in New Issue
Block a user