diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 86f2abf30b..2f51cc4eba 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -4,12 +4,12 @@ version = "0.1.0" edition = "2021" [dependencies] -openmls = "0.4.0" -openmls_traits = "0.1.0" -openmls_rust_crypto = "0.1.0" -core-crypto = { version = "0.1.0", path = "../crypto" } -core-crypto-keystore = { version = "0.1.0", path = "../keystore" } -mls-crypto-provider = { version = "0.1.0", path = "../mls-provider" } +openmls = "0.4" +openmls_traits = "0.1" +openmls_rust_crypto = "0.1" +core-crypto = { version = "0.2", path = "../crypto" } +core-crypto-keystore = { version = "0.2", path = "../keystore" } +mls-crypto-provider = { version = "0.2", path = "../mls-provider" } uuid = "1.0.0-alpha" clap = { version = "3", features = ["derive"] } diff --git a/crypto-ffi/Cargo.toml b/crypto-ffi/Cargo.toml index 8c5f6a9ad8..511331d161 100644 --- a/crypto-ffi/Cargo.toml +++ b/crypto-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-crypto-ffi" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "GPL-3.0-only" @@ -13,7 +13,7 @@ default = [] mobile = ["uniffi", "uniffi_macros", "uniffi_build", "uniffi_bindgen"] [dependencies] -core-crypto = { version = "0.1", path = "../crypto" } +core-crypto = { version = "0.2", path = "../crypto" } # UniFFI - Android + iOS bindings - Runtime support uniffi = { version = "0.17", optional = true } uniffi_macros = { version = "0.17", optional = true } diff --git a/crypto/Cargo.toml b/crypto/Cargo.toml index 5cb154deb0..371d719165 100644 --- a/crypto/Cargo.toml +++ b/crypto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-crypto" -version = "0.1.0" +version = "0.2.0" edition = "2021" license = "GPL-3.0-only" @@ -21,11 +21,11 @@ openmls_traits = "0.1" tls_codec = "0.2" [dependencies.core-crypto-keystore] -version = "0.1.0" +version = "0.2" path = "../keystore" [dependencies.mls-crypto-provider] -version = "0.1.0" +version = "0.2" path = "../mls-provider" [dev-dependencies] diff --git a/extras/anycrypto/Cargo.toml b/extras/anycrypto/Cargo.toml index 12f1b7c009..58cdab9a77 100644 --- a/extras/anycrypto/Cargo.toml +++ b/extras/anycrypto/Cargo.toml @@ -12,15 +12,15 @@ default = [] eyre = "0.6" thiserror = "1.0" uuid = "0.8" -openmls = "0.4.0-pre" -openmls_rust_crypto = "0.1.0-pre" -openmls_traits = "0.1.0-pre" +openmls = "0.4" +openmls_rust_crypto = "0.1" +openmls_traits = "0.1" proteus = "1.0" [dependencies.core-crypto-keystore] -version = "0.1.0" +version = "0.2" path = "../keystore" [dependencies.mls-crypto-provider] -version = "0.1.0" +version = "0.2" path = "../mls-provider" diff --git a/keystore/Cargo.toml b/keystore/Cargo.toml index 16a8292f24..7165676f03 100644 --- a/keystore/Cargo.toml +++ b/keystore/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "core-crypto-keystore" -version = "0.1.1" +version = "0.2.0" edition = "2021" license = "GPL-3.0-only" @@ -35,7 +35,7 @@ barrel = { version = "0.7", features = ["sqlite3"] } hex = { version = "0.4", optional = true } security-framework = { version = "2.5.0-alpha", optional = true } -openmls_traits = { version = "0.1.0", optional = true } +openmls_traits = { version = "0.1", optional = true } proteus = { version = "1.0", default-features = false, optional = true } [dependencies.rusqlite] diff --git a/mls-provider/Cargo.toml b/mls-provider/Cargo.toml index 7664d329fb..a83d8dfbc6 100644 --- a/mls-provider/Cargo.toml +++ b/mls-provider/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mls-crypto-provider" -version = "0.1.0" +version = "0.2.0" edition = "2018" license = "GPL-3.0-only" @@ -13,5 +13,5 @@ openmls_rust_crypto = "0.1" openmls_traits = "0.1" [dependencies.core-crypto-keystore] -version = "0.1" +version = "0.2" path = "../keystore"