From: newpavlov Date: Wed, 17 Oct 2018 17:04:59 +0000 (+0300) Subject: replaced / with OR in license fields X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=fe349eaa4eb0c9d7c33d985e080fd4bb827b5743;p=PAKEs.git replaced / with OR in license fields --- diff --git a/spake2/Cargo.toml b/spake2/Cargo.toml index 1c43ba8..fa59070 100644 --- a/spake2/Cargo.toml +++ b/spake2/Cargo.toml @@ -6,7 +6,7 @@ description = "The SPAKE2 password-authenticated key-exchange algorithm." documentation = "https://docs.rs/spake2" homepage = "https://github.com/RustCrypto/PAKEs" repository = "https://github.com/RustCrypto/PAKEs" -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" keywords = ["crypto", "pake", "authentication"] categories = ["cryptography", "authentication"] exclude = [ diff --git a/srp/Cargo.toml b/srp/Cargo.toml index 3708d1c..8916317 100644 --- a/srp/Cargo.toml +++ b/srp/Cargo.toml @@ -2,7 +2,7 @@ name = "srp" version = "0.2.5" authors = ["RustCrypto Developers"] -license = "MIT/Apache-2.0" +license = "MIT OR Apache-2.0" description = "Secure Remote Password (SRP) protocol implementation" documentation = "https://docs.rs/srp" repository = "https://github.com/RustCrypto/PAKEs"