-
-
Notifications
You must be signed in to change notification settings - Fork 344
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 #173 from snshn/sha2-integrity
Add asset integrity validation
- Loading branch information
Showing
14 changed files
with
911 additions
and
569 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[package] | ||
name = "monolith" | ||
version = "2.2.4" | ||
version = "2.2.5" | ||
edition = "2018" | ||
authors = [ | ||
"Sunshine <[email protected]>", | ||
|
@@ -16,12 +16,10 @@ base64 = "0.12.0" | |
clap = "2.33.0" | ||
cssparser = "0.27.2" | ||
html5ever = "0.24.1" | ||
sha2 = "0.8.1" # Used in calculating checksums during integrity checks | ||
time = "0.1.42" # Used to render comments indicating the time the page was saved | ||
url = "2.1.1" | ||
|
||
# Used to render comments indicating the time the page was saved | ||
# also required by reqwest as of v0.10.0 | ||
time = "0.1.42" | ||
|
||
[dependencies.reqwest] | ||
version = "0.10.*" | ||
default-features = false | ||
|
Oops, something went wrong.