aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-08-25Cargo.lock: bump dependencies (#64)Tony Arcieri
2021-08-25spake2: bump `hkdf` dependency to v0.11 (#63)Tony Arcieri
2021-07-24Fix typo over -> other (#60)Sosthene-Guedon
2021-07-19Bump sha-1 from 0.9.6 to 0.9.7 (#59)dependabot[bot]
Bumps [sha-1](https://github.com/RustCrypto/hashes) from 0.9.6 to 0.9.7. - [Release notes](https://github.com/RustCrypto/hashes/releases) - [Commits](https://github.com/RustCrypto/hashes/compare/sha-1-v0.9.6...sha-1-v0.9.7) --- updated-dependencies: - dependency-name: sha-1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-06-21srp: fix typos in docstrings (#58)Luca Bruno
This fixes a few minor typos in docstrings.
2021-05-12Bump sha-1 from 0.9.4 to 0.9.6 (#56)dependabot[bot]
Bumps [sha-1](https://github.com/RustCrypto/hashes) from 0.9.4 to 0.9.6. - [Release notes](https://github.com/RustCrypto/hashes/releases) - [Commits](https://github.com/RustCrypto/hashes/compare/sha-1-v0.9.4...sha-1-v0.9.6) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-04-30Cargo.lock: bump dependencies (#52)Tony Arcieri
2021-04-30Bump num-bigint from 0.2.6 to 0.4.0 (#46)dependabot[bot]
Bumps [num-bigint](https://github.com/rust-num/num-bigint) from 0.2.6 to 0.4.0. - [Release notes](https://github.com/rust-num/num-bigint/releases) - [Changelog](https://github.com/rust-num/num-bigint/blob/master/RELEASES.md) - [Commits](https://github.com/rust-num/num-bigint/compare/num-bigint-0.2.6...num-bigint-0.4.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-04-30Bump generic-array from 0.12.3 to 0.14.4 (#45)dependabot[bot]
Bumps [generic-array](https://github.com/fizyk20/generic-array) from 0.12.3 to 0.14.4. - [Release notes](https://github.com/fizyk20/generic-array/releases) - [Changelog](https://github.com/fizyk20/generic-array/blob/master/CHANGELOG.md) - [Commits](https://github.com/fizyk20/generic-array/compare/0.12.3...0.14.4) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-04-30Add Dependabot config (#43)Tony Arcieri
2021-04-30Migrate to GitHub Actions (#42)Tony Arcieri
Uses the standard boilerplate we've been using for other projects
2021-02-12Edit badgesArtyom Pavlov
2020-10-07srp v0.5.0 (#38)Tony Arcieri
2020-10-07Bump digest, sha-1, and sha2 dependencies to v0.9 (#37)Masih Yeganeh
2020-10-07Bump MSRV to 1.41.0 (#36)Tony Arcieri
2019-11-07srp v0.4.3newpavlov
2019-11-07remove num_traits depnewpavlov
2019-11-06spake2: update to hex-0.4Brian Warner
2019-11-06Switch from num to num-traits and num-bigint (#31)est31
2019-08-28Merge branch 'pr28'Brian Warner
2019-08-13Fix spelling errors.Brenden Matthews
2019-08-07spake2: tighten the curve25519-dalek dependency to 1.2.xBrian Warner
This was just "1", which allowed our MSRV to be accidentally raised from 1.31 to 1.32 without a deliberate spake2 minor-version bump (dalek-1.0.x compiles with rustc-1.31, but dalek-1.1.x required 1.32). Hopefully by making it "1.2", our MSRV will remain at 1.32 until we explicitly decide to take on a dependency that needs something newer. refs #21
2019-08-07travis: use rust 'stable' for rustfmt checkBrian Warner
This was previously locked down at a specific version (1.31.0, much older than the current 1.36), so we'd get consistent behavior over time. But since we allow the rustfmt build to fail (it's in allow_failures), we don't need this consistency so much. PR authors are expected to format their code against the current stable rustfmt, but test it against the MSRV (currently 1.32.0). refs #21
2019-08-07Merge branch '21-pin-travis'Brian Warner
refs #21
2019-08-07document MSRV, remove 1.31.1 from travisBrian Warner
2019-08-07oops, be more specific about the rust version: 1.32.0Brian Warner
2019-08-07travis: exercise 1.31.1 and 1.32Brian Warner
1.31.1 is our intended MSRV (Minimum Supported Rust Version), but we probably don't actually work there because of an insufficiently-constrained dependency that requires 1.32. 1.32 is probably our actual MSRV, and will be the one we aim for going forward. refs #21
2019-08-07Merge branch '21-update-hkdf'Brian Warner
refs #21
2019-08-06update spake2 to current hkdf-0.8Brian Warner
2019-07-18spake2/Cargo.toml: num-bigint is merely a dev-dependencyBrian Warner
We only use it in unit tests. This might help with no-std, so refs #15
2019-04-07srp doc fix. closes #16Артём Павлов [Artyom Pavlov]
2018-12-20(cargo-release) start next development iteration spake2-v0.2.1-alpha.0Brian Warner
2018-12-20(cargo-release) spake2-v0.2.0Brian Warner
2018-12-20srp: release srp-0.4.0Brian Warner
2018-12-20Merge branch 'edition-2018'Brian Warner
2018-12-20srp/Cargo.toml: remember to bump minor version for next releaseBrian Warner
Since edition=2018 means we'll require rust-1.31
2018-12-13Use curve25519-dalek v1Henry de Valence
2018-12-06update srp to idioms of edition-2018Brian Warner
2018-12-06srp: fix to work with edition-2018Brian Warner
2018-12-06srp: fix some low-hanging clippy warningsBrian Warner
2018-12-06update spake2 to edition-2018Brian Warner
2018-12-06reformat using rustfmt from latest 1.31.0Brian Warner
2018-12-06spake2: Merge PR11: better Debug implBrian Warner
2018-12-06add group name to SPAKE2 Debug implBrian Warner
2018-12-03More idiomatic Debug implRicho Healey
2018-11-29travis: update RUSTFMT to use rust-1.30 instead of 1.29Brian Warner
2018-11-29Merge PR10: update-depsBrian Warner
2018-11-29fix rustfmtBrian Warner
2018-11-28deps: update srp to lazy_static-1.2Brian Warner
2018-11-27deps: update to rand-0.6Brian Warner