57 releases (37 breaking)

new 0.42.0-alpha.2 Apr 26, 2024
0.40.0 Apr 16, 2024
0.38.0 Feb 28, 2024
0.36.0 Dec 22, 2023
0.7.2 Nov 23, 2022

#77 in Cryptography

Download history 76/week @ 2024-01-04 56/week @ 2024-01-11 34/week @ 2024-01-18 28/week @ 2024-01-25 139/week @ 2024-02-15 158/week @ 2024-02-22 158/week @ 2024-02-29 259/week @ 2024-03-07 185/week @ 2024-03-14 66/week @ 2024-03-21 57/week @ 2024-03-28 165/week @ 2024-04-04 842/week @ 2024-04-11 225/week @ 2024-04-18

1,289 downloads per month
Used in 5 crates (4 directly)

GPL-2.0 license

620KB
13K SLoC

twenty-first

GitHub CI crates.io Coverage Status

A collection of cryptography primitives written in Rust.

Content of this library

This library contains primarily the following cryptographic primitives:

Release protocol

While twenty-first's version is 0.x.y, releasing a new version:

  1. Is the release backwards-compatible? Then the new version is 0.x.y+1. Otherwise the new version is 0.x+1.0.
  2. Checkout the last commit on Mjolnir, and run make bench-publish. Save the benchmark's result and verify that there is no performance degredation.
  3. Create a commit that increases version = "0.x.y" in twenty-first/Cargo.toml. The commit message should give a one-line summary of each release change. Include the benchmark result at the bottom.
  4. Have a v0.x.y git tag on this commit created. (git tag v0.x.y [sha], git push upstream --tags)
  5. Have this commit cargo published on crates.io and in GitHub tags.

If you do not have the privilege to create git tags or run cargo publish, submit a PR and the merger will take care of these.

Building

This crate depends on the rs-leveldb crate which wraps the C++ implementation of leveldb. As such, snappy and leveldb must be installed. Eg, on Ubuntu:

sudo apt-get install libleveldb-dev libsnappy-dev

For more detailed buildings instructions, see the description in HACKING.md.

Dependencies

~9.5MB
~179K SLoC