X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=Cargo.toml;h=14a3005e6cc5b1bb06fb879488535cb1d74ee38c;hb=179fadb7fda45cad53fe39d5844e073ca9c73b99;hp=f2a286f9ae575968b69142819c0661e37cfcf50d;hpb=861ece4475b823005c310d42725fe59e7b4876ea;p=PAKEs.git diff --git a/Cargo.toml b/Cargo.toml index f2a286f..14a3005 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,27 +1,6 @@ -[package] -name = "spake2" -version = "0.0.1" -authors = ["Brian Warner "] -description = "The SPAKE2 password-authenticated key-exchange algorithm, in Rust." -documentation = "https://docs.rs/spake2" -homepage = "https://github.com/warner/spake2.rs" -repository = "https://github.com/warner/spake2.rs" -license = "MIT" -categories = ["cryptography"] -exclude = [ - ".gitignore" +[workspace] +resolver = "2" +members = [ + "srp", + "spake2", ] - -[badges] -travis-ci = { repository = "warner/spake2.rs" } - -[dependencies] -curve25519-dalek = "0.11" -rand = "0.3" -sha2 = "0.6" -hkdf = "0.2" -num-bigint = "0.1" -hex = "0.2" - -[dev-dependencies] -hex = "0.2"