Skip to content

Commit

Permalink
set hpke-rs-crypto version
Browse files Browse the repository at this point in the history
  • Loading branch information
franziskuskiefer committed Nov 10, 2021
1 parent 04c2979 commit 4a803a8
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ Cargo.lock
.vscode/
evercrypt_provider/target
rust_crypto_provider/target
traits/target/
2 changes: 1 addition & 1 deletion evercrypt_provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "Readme.md"
repository = "https://github.com/franziskuskiefer/hpke-rs"

[dependencies]
hpke-rs-crypto = { path = "../traits" }
hpke-rs-crypto = { version = "0.1", path = "../traits" }
# Evercrypt
evercrypt = { version = "0.0.10", features = ["serialization"] }
# Randomness
Expand Down
3 changes: 3 additions & 0 deletions evercrypt_provider/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@

This crate provides an implementation of the [HpkeCrypto] trait using [Evercrypt].

Please see [hpke-rs] for more details.

[evercrypt]: https://crates.io/crates/evercrypt
[hpkecrypto]: https://github.com/franziskuskiefer/hpke-rs/tree/main/traits
[rustc-image]: https://img.shields.io/badge/rustc-1.56+-blue.svg?style=for-the-badge
[docs-badge]: https://img.shields.io/badge/docs-rs-blue.svg?style=for-the-badge
[docs-link]: https://docs.rs/hpke-rs-evercrypt
[crate-badge]: https://img.shields.io/crates/v/hpke-rs-evercrypt.svg?style=for-the-badge
[crate-link]: https://crates.io/crates/hpke-rs-evercrypt
[hpke-rs]: https://github.com/franziskuskiefer/hpke-rs
2 changes: 1 addition & 1 deletion rust_crypto_provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ readme = "Readme.md"
repository = "https://github.com/franziskuskiefer/hpke-rs"

[dependencies]
hpke-rs-crypto = { path = "../traits" }
hpke-rs-crypto = { version = "0.1", path = "../traits" }
# Rust crypto
hkdf = { version = "0.11" }
sha2 = { version = "0.9" }
Expand Down
3 changes: 3 additions & 0 deletions rust_crypto_provider/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
This crate provides an implementation of the [HpkeCrypto] trait using native Rust crypto implementations
([hkdf], [sha2], [p256], [p384], [x25519-dalek-ng], [chacha20poly1305], [aes-gcm]).

Please see [hpke-rs] for more details.

[hkdf]: https://docs.rs/hkdf/
[sha2]: https://docs.rs/sha2
[p256]: https://docs.rs/p256
Expand All @@ -20,3 +22,4 @@ This crate provides an implementation of the [HpkeCrypto] trait using native Rus
[docs-link]: https://docs.rs/hpke-rs-rust-crypto
[crate-badge]: https://img.shields.io/crates/v/hpke-rs-rust-crypto.svg?style=for-the-badge
[crate-link]: https://crates.io/crates/hpke-rs-rust-crypto
[hpke-rs]: https://github.com/franziskuskiefer/hpke-rs
3 changes: 3 additions & 0 deletions traits/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ The [hpke-rs] crate can be used with different cryptography backends to perform
This crate defines the HpkeCrypto trait that is required to instantiate [hpke-rs].
It further defines necessary types and errors.

Please see [hpke-rs] for more details.

[hpke-rs]: https://crates.io/crates/hpke-rs
[rustc-image]: https://img.shields.io/badge/rustc-1.56+-blue.svg?style=for-the-badge
[docs-badge]: https://img.shields.io/badge/docs-rs-blue.svg?style=for-the-badge
[docs-link]: https://docs.rs/hpke-rs-crypto
[crate-badge]: https://img.shields.io/crates/v/hpke-rs-crypto.svg?style=for-the-badge
[crate-link]: https://crates.io/crates/hpke-rs-crypto
[hpke-rs]: https://github.com/franziskuskiefer/hpke-rs

0 comments on commit 4a803a8

Please sign in to comment.