Skip to content

Commit fd2f505

Browse files
committed
chore: Bump crate versions
1 parent 83d6101 commit fd2f505

6 files changed

Lines changed: 24 additions & 24 deletions

File tree

basic_credential/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openmls_basic_credential"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["OpenMLS Authors"]
55
edition = "2021"
66
description = "A Basic Credential implementation for OpenMLS"
@@ -10,13 +10,13 @@ repository = "https://github.com/openmls/openmls/tree/main/basic_credential"
1010
readme = "README.md"
1111

1212
[dependencies]
13-
openmls_traits = { version = "0.1.0", path = "../traits" }
13+
openmls_traits = { version = "0.2.0", path = "../traits" }
1414
tls_codec = { workspace = true }
1515
async-trait = { workspace = true }
1616
serde = "1.0"
1717

1818
# Rust Crypto
19-
ed25519-dalek = { version = "2.0.0-rc.2", features = ["rand_core"] }
19+
ed25519-dalek = { version = "2.0.0-rc.3", features = ["rand_core"] }
2020
p256 = "0.13"
2121
p384 = "0.13"
2222
secrecy = { version = "0.8", features = ["serde"] }

memory_keystore/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "openmls_memory_keystore"
33
authors = ["OpenMLS Authors"]
4-
version = "0.1.0"
4+
version = "0.2.0"
55
edition = "2021"
66
description = "A very basic key store for OpenMLS implementing openmls_traits."
77
license = "MIT"
@@ -10,7 +10,7 @@ repository = "https://github.com/openmls/openmls/tree/main/memory_keystore"
1010
readme = "README.md"
1111

1212
[dependencies]
13-
openmls_traits = { version = "0.1.0", path = "../traits" }
13+
openmls_traits = { version = "0.2.0", path = "../traits" }
1414
thiserror = "1.0"
1515
serde_json = "1.0"
1616
async-trait = { workspace = true }

openmls/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
[package]
22
name = "openmls"
3-
version = "0.20.2"
3+
version = "1.0.0"
44
authors = ["OpenMLS Authors"]
55
edition = "2021"
6-
description = "This is a WIP Rust implementation of the Messaging Layer Security (MLS) protocol based on draft 20-ish."
6+
description = "This is a Rust implementation of the Messaging Layer Security (MLS) protocol based on RFC9420."
77
license = "MIT"
88
documentation = "https://openmls.github.io/openmls/"
99
repository = "https://github.com/openmls/openmls/"
1010
readme = "../README.md"
1111

1212
[dependencies]
13-
openmls_traits = { version = "0.1.0", path = "../traits" }
13+
openmls_traits = { version = "0.2.0", path = "../traits" }
1414
serde = { version = "^1.0", features = ["derive"] }
1515
log = { version = "0.4", features = ["std"] }
1616
tls_codec = { workspace = true }
1717
thiserror = "^1.0"
1818
backtrace = "0.3"
1919
hex = "0.4"
2020
async-trait = { workspace = true }
21-
openmls_basic_credential = { version = "0.1.0", path = "../basic_credential", features = ["clonable", "test-utils"] }
22-
openmls_x509_credential = { version = "0.1.0", path = "../x509_credential" }
21+
openmls_basic_credential = { version = "0.2.0", path = "../basic_credential", features = ["clonable", "test-utils"] }
22+
openmls_x509_credential = { version = "0.2.0", path = "../x509_credential" }
2323
x509-cert = "0.2"
2424
subtle = "2.5"
2525
fluvio-wasm-timer = "0.2"
@@ -30,7 +30,7 @@ getrandom = { version = "0.2", optional = true, features = ["js"] }
3030
serde_json = { version = "1.0", optional = true }
3131
# Crypto backends required for KAT and testing - "test-utils" feature
3232
itertools = { version = "0.10", optional = true }
33-
openmls_rust_crypto = { version = "0.1.0", path = "../openmls_rust_crypto", optional = true }
33+
openmls_rust_crypto = { version = "0.2.0", path = "../openmls_rust_crypto", optional = true }
3434
async-lock = { version = "2.7", optional = true }
3535
rstest = { version = "^0.16", optional = true }
3636
rstest_reuse = { version = "0.4", optional = true }
@@ -60,7 +60,7 @@ hex = { version = "0.4", features = ["serde"] }
6060
itertools = "0.10"
6161
lazy_static = "1.4"
6262
openmls = { path = ".", features = ["test-utils"] }
63-
openmls_traits = { version = "0.1.0", path = "../traits", features = ["test-utils"] }
63+
openmls_traits = { version = "0.2.0", path = "../traits", features = ["test-utils"] }
6464
pretty_env_logger = "0.4"
6565
rstest = "^0.16"
6666
rstest_reuse = "0.4"

openmls_rust_crypto/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "openmls_rust_crypto"
33
authors = ["OpenMLS Authors"]
4-
version = "0.1.0"
4+
version = "0.2.0"
55
edition = "2021"
66
description = "A crypto backend for OpenMLS implementing openmls_traits using RustCrypto primitives."
77
license = "MIT"
@@ -10,14 +10,14 @@ repository = "https://github.com/openmls/openmls/tree/main/openmls_rust_crypto"
1010
readme = "README.md"
1111

1212
[dependencies]
13-
openmls_traits = { version = "0.1.0", path = "../traits" }
14-
openmls_memory_keystore = { version = "0.1.0", path = "../memory_keystore" }
13+
openmls_traits = { version = "0.2.0", path = "../traits" }
14+
openmls_memory_keystore = { version = "0.2.0", path = "../memory_keystore" }
1515
# Rust Crypto dependencies
1616
sha2 = { version = "0.10" }
1717
aes-gcm = { version = "0.9" }
1818
chacha20poly1305 = { version = "0.9" }
1919
hmac = { version = "0.12" }
20-
ed25519-dalek = { version = "2.0.0-rc.2", features = ["rand_core"] }
20+
ed25519-dalek = { version = "2.0.0-rc.3", features = ["rand_core"] }
2121
p256 = { version = "0.13" }
2222
p384 = { version = "0.13" }
2323
hkdf = { version = "0.12" }
@@ -29,6 +29,6 @@ signature = "2.1"
2929
thiserror = "1.0"
3030

3131
[dependencies.hpke]
32-
git = "https://github.com/otak/rust-hpke.git"
33-
branch = "xyber768d00"
32+
git = "https://github.com/wireapp/rust-hpke.git"
33+
branch = "wire/unstable-pq-xyber"
3434
features = ["x25519", "p256", "p384", "xyber768d00", "serde_impls"]

traits/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openmls_traits"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["OpenMLS Authors"]
55
edition = "2021"
66
description = "Traits used by OpenMLS"
@@ -22,7 +22,7 @@ rand_core = "0.6"
2222
tls_codec = { workspace = true }
2323
async-trait = { workspace = true }
2424
# for the default signer
25-
ed25519-dalek = { version = "2.0.0-rc.2", features = ["rand_core"] }
25+
ed25519-dalek = { version = "2.0.0-rc.3", features = ["rand_core"] }
2626
p256 = "0.13"
2727
p384 = "0.13"
2828
zeroize = "1.6"

x509_credential/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
[package]
22
name = "openmls_x509_credential"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2021"
55
description = "A Basic Credential implementation for OpenMLS"
66
license = "MIT"
77
readme = "README.md"
88

99
[dependencies]
10-
openmls_traits = { version = "0.1.0", path = "../traits" }
10+
openmls_traits = { version = "0.2.0", path = "../traits" }
1111
tls_codec = { workspace = true }
1212
async-trait = { workspace = true }
1313
serde = "1.0"
14-
openmls_basic_credential = { version = "0.1.0", path = "../basic_credential" }
14+
openmls_basic_credential = { version = "0.2.0", path = "../basic_credential" }
1515
fluvio-wasm-timer = "0.2"
1616

1717
# Rust Crypto
1818
secrecy = { version = "0.8", features = ["serde"] }
1919
x509-cert = "0.2"
20-
oid-registry = "0.6"
20+
oid-registry = "0.6"

0 commit comments

Comments
 (0)