Skip to content

Commit

Permalink
Downgrade tls_codec to 0.4.1 and bump a few prerelease versions (open…
Browse files Browse the repository at this point in the history
  • Loading branch information
keks authored Jul 23, 2024
1 parent 51ff1c6 commit 1f0b14a
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ resolver = "2"

# Central dependency management for some crates
[workspace.dependencies]
tls_codec = { version = "0.4.2-pre.1", features = [
tls_codec = { version = "0.4.1", features = [
"derive",
"serde",
"mls",
], git = "https://github.com/rustcrypto/formats" }
]}
2 changes: 1 addition & 1 deletion basic_credential/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repository = "https://github.com/openmls/openmls/tree/main/basic_credential"
readme = "README.md"

[dependencies]
openmls_traits = { version = "0.3.0-pre.1", path = "../traits" }
openmls_traits = { version = "0.3.0-pre.2", path = "../traits" }
tls_codec = { workspace = true }
serde = "1.0"

Expand Down
6 changes: 3 additions & 3 deletions libcrux_crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmls_libcrux_crypto"
version = "0.1.0-pre.1"
version = "0.1.0-pre.2"
edition = "2021"
authors = ["OpenMLS Authors"]
description = "A crypto backend for OpenMLS based on libcrux implementing openmls_traits."
Expand All @@ -12,7 +12,7 @@ readme = "../README.md"
[dependencies]
getrandom = "0.2.12"
libcrux = { version = "=0.0.2-alpha.3", features = ["rand"] }
openmls_traits = { version = "0.3.0-pre.1", path = "../traits" }
openmls_memory_storage = { version = "0.3.0-pre.1", path = "../memory_storage" }
openmls_traits = { version = "0.3.0-pre.2", path = "../traits" }
openmls_memory_storage = { version = "0.3.0-pre.2", path = "../memory_storage" }
rand = "0.8.5"
tls_codec.workspace = true
4 changes: 2 additions & 2 deletions memory_storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "openmls_memory_storage"
authors = ["OpenMLS Authors"]
version = "0.3.0-pre.1"
version = "0.3.0-pre.2"
edition = "2021"
description = "A very basic storage for OpenMLS implementing openmls_traits."
license = "MIT"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/openmls/openmls/tree/main/memory_storage"
readme = "README.md"

[dependencies]
openmls_traits = { version = "0.3.0-pre.1", path = "../traits" }
openmls_traits = { version = "0.3.0-pre.2", path = "../traits" }
thiserror = "1.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
Expand Down
24 changes: 12 additions & 12 deletions openmls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,17 @@ readme = "../README.md"
keywords = ["MLS", "IETF", "RFC9420", "Encryption", "E2EE"]

[dependencies]
openmls_traits = { version = "0.3.0-pre.1", path = "../traits" }
openmls_traits = { version = "0.3.0-pre.2", path = "../traits" }
openmls_rust_crypto = { version = "0.3.0-pre.1", path = "../openmls_rust_crypto", optional = true }
openmls_basic_credential = { version = "0.3.0-pre.1", path = "../basic_credential", optional = true, features = [
"clonable",
"test-utils",
] }
openmls_memory_storage = { version = "0.3.0-pre.2", path = "../memory_storage", features = [
"test-utils",
], optional = true }
openmls_test = { version = "0.1.0-pre.1", path = "../openmls_test", optional = true }
openmls_libcrux_crypto = { version = "0.1.0-pre.2", path = "../libcrux_crypto", optional = true }
serde = { version = "^1.0", features = ["derive"] }
log = { version = "0.4", features = ["std"] }
tls_codec = { workspace = true }
Expand All @@ -23,19 +33,9 @@ rand = { version = "0.8", optional = true }
serde_json = { version = "1.0", optional = true }
# Crypto providers required for KAT and testing - "test-utils" feature
itertools = { version = "0.10", optional = true }
openmls_rust_crypto = { version = "0.3.0-pre.1", path = "../openmls_rust_crypto", optional = true }
openmls_basic_credential = { version = "0.3.0-pre.1", path = "../basic_credential", optional = true, features = [
"clonable",
"test-utils",
] }
wasm-bindgen-test = { version = "0.3.40", optional = true }
getrandom = { version = "0.2.12", optional = true, features = ["js"] }
fluvio-wasm-timer = { version = "0.2.5", optional = true }
openmls_memory_storage = { version = "0.3.0-pre.1", path = "../memory_storage", features = [
"test-utils",
], optional = true }
openmls_test = { version = "0.1.0-pre.1", path = "../openmls_test", optional = true }
openmls_libcrux_crypto = { version = "0.1.0-pre.1", path = "../libcrux_crypto", optional = true }
once_cell = { version = "1.19.0", optional = true }

[features]
Expand Down Expand Up @@ -69,7 +69,7 @@ criterion = { version = "^0.5", default-features = false } # need to disable def
hex = { version = "0.4", features = ["serde"] }
itertools = "0.10"
lazy_static = "1.4"
openmls_traits = { version = "0.3.0-pre.1", path = "../traits", features = [
openmls_traits = { version = "0.3.0-pre.2", path = "../traits", features = [
"test-utils",
] }
pretty_env_logger = "0.5"
Expand Down
4 changes: 2 additions & 2 deletions openmls_rust_crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ repository = "https://github.com/openmls/openmls/tree/main/openmls_rust_crypto"
readme = "README.md"

[dependencies]
openmls_traits = { version = "0.3.0-pre.1", path = "../traits" }
openmls_memory_storage = { version = "0.3.0-pre.1", path = "../memory_storage" }
openmls_traits = { version = "0.3.0-pre.2", path = "../traits" }
openmls_memory_storage = { version = "0.3.0-pre.2", path = "../memory_storage" }
hpke = { version = "0.2.0", package = "hpke-rs", default-features = false, features = [
"hazmat",
"serialization",
Expand Down
2 changes: 1 addition & 1 deletion traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "openmls_traits"
version = "0.3.0-pre.1"
version = "0.3.0-pre.2"
authors = ["OpenMLS Authors"]
edition = "2021"
description = "Traits used by OpenMLS"
Expand Down

0 comments on commit 1f0b14a

Please sign in to comment.