-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from franziskuskiefer/0.0.6
0.0.6
- Loading branch information
Showing
8 changed files
with
55 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Deploy Docs | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
rustdoc: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: hecrj/setup-rust-action@master | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: Build docs | ||
run: | | ||
cargo doc --all-features --no-deps | ||
touch target/doc/.nojekyll | ||
cat > target/doc/index.html <<EOF | ||
<!doctype html> | ||
<html><head> | ||
<meta http-equiv="refresh" content="0; URL='evercrypt/index.html'" /> | ||
</head></html> | ||
EOF | ||
- name: Deploy to Github Pages | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: target/doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "evercrypt" | ||
version = "0.0.5" | ||
version = "0.0.6" | ||
authors = ["Franziskus Kiefer <[email protected]>"] | ||
edition = "2018" | ||
license = "MPL-2.0" | ||
documentation = "https://docs.rs/evercrypt" | ||
documentation = "https://www.franziskuskiefer.de/evercrypt" | ||
description = "Crypto library using formally verified code from HACL/Evercrypt" | ||
readme = "README.md" | ||
repository = "https://github.com/franziskuskiefer/evercrypt-rust/" | ||
|
@@ -22,7 +22,7 @@ random = ["rand", "rand_core"] | |
serialization = ["serde", "serde_json"] | ||
|
||
[dependencies] | ||
evercrypt-sys = { version = "0.0.5" } | ||
evercrypt-sys = { version = "0.0.6" } | ||
aes-gcm = { version = "0.8", optional = true } | ||
rand = { version = "0.7", optional = true } | ||
rand_core = { version = "0.5", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "evercrypt-sys" | ||
version = "0.0.5" | ||
version = "0.0.6" | ||
authors = ["Franziskus Kiefer <[email protected]>"] | ||
edition = "2018" | ||
build = "build.rs" | ||
categories = ["cryptography", "api-bindings"] | ||
links = "evercrypt" | ||
license = "MPL-2.0" | ||
documentation = "https://docs.rs/evercrypt-sys" | ||
documentation = "https://www.franziskuskiefer.de/evercrypt" | ||
description = "FFI binding to HACL/Evercrypt" | ||
readme = "README.md" | ||
repository = "https://github.com/franziskuskiefer/evercrypt-rust/" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters