Skip to content

Commit

Permalink
Upgrade all crates to 2021 edition (openmls#1394)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelrobert authored May 30, 2023
1 parent 5060487 commit c6ae5dc
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cli"
version = "0.1.0"
authors = ["OpenMLS Authors"]
edition = "2018"
edition = "2021"

[dependencies]
url = "2.2"
Expand Down
2 changes: 1 addition & 1 deletion delivery-service/ds-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "ds-lib"
version = "0.1.0"
authors = ["OpenMLS Authors"]
edition = "2018"
edition = "2021"
description = "Types to interact with the OpenMLS DS."

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "openmls-fuzz"
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
edition = "2021"

[package.metadata]
cargo-fuzz = true
Expand Down
2 changes: 1 addition & 1 deletion memory_keystore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "openmls_memory_keystore"
authors = ["OpenMLS Authors"]
version = "0.1.0"
edition = "2018"
edition = "2021"
description = "A very basic key store for OpenMLS implementing openmls_traits."
license = "MIT"
documentation = "https://docs.rs/openmls_memory_keystore"
Expand Down
2 changes: 1 addition & 1 deletion openmls_rust_crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "openmls_rust_crypto"
authors = ["OpenMLS Authors"]
version = "0.1.0"
edition = "2018"
edition = "2021"
description = "A crypto backend for OpenMLS implementing openmls_traits using RustCrypto primitives."
license = "MIT"
documentation = "https://docs.rs/openmls_rust_crypto"
Expand Down
2 changes: 1 addition & 1 deletion rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
wrap_comments = true
edition = "2018"
edition = "2021"
format_code_in_doc_comments = true
2 changes: 1 addition & 1 deletion traits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "openmls_traits"
version = "0.1.0"
authors = ["OpenMLS Authors"]
edition = "2018"
edition = "2021"
description = "Traits used by OpenMLS"
license = "MIT"
documentation = "https://docs.rs/openmls_traits"
Expand Down

0 comments on commit c6ae5dc

Please sign in to comment.