11[package ]
22name = " openmls"
3- version = " 0.20.2 "
3+ version = " 1.0.0 "
44authors = [" OpenMLS Authors" ]
55edition = " 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 ."
77license = " MIT"
88documentation = " https://openmls.github.io/openmls/"
99repository = " https://github.com/openmls/openmls/"
1010readme = " ../README.md"
1111
1212[dependencies ]
13- openmls_traits = { version = " 0.1 .0" , path = " ../traits" }
13+ openmls_traits = { version = " 0.2 .0" , path = " ../traits" }
1414serde = { version = " ^1.0" , features = [" derive" ] }
1515log = { version = " 0.4" , features = [" std" ] }
1616tls_codec = { workspace = true }
1717thiserror = " ^1.0"
1818backtrace = " 0.3"
1919hex = " 0.4"
2020async-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" }
2323x509-cert = " 0.2"
2424subtle = " 2.5"
2525fluvio-wasm-timer = " 0.2"
@@ -30,7 +30,7 @@ getrandom = { version = "0.2", optional = true, features = ["js"] }
3030serde_json = { version = " 1.0" , optional = true }
3131# Crypto backends required for KAT and testing - "test-utils" feature
3232itertools = { 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 }
3434async-lock = { version = " 2.7" , optional = true }
3535rstest = { version = " ^0.16" , optional = true }
3636rstest_reuse = { version = " 0.4" , optional = true }
@@ -60,7 +60,7 @@ hex = { version = "0.4", features = ["serde"] }
6060itertools = " 0.10"
6161lazy_static = " 1.4"
6262openmls = { 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" ] }
6464pretty_env_logger = " 0.4"
6565rstest = " ^0.16"
6666rstest_reuse = " 0.4"
0 commit comments