This repository has been archived by the owner on Jun 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump everything on the planet * bumpre more crap * general progress * port this file * port another module * cargo fmt * pretty sure this must be a result * cargo fmt * I think these need to be results * bring these back * progress * type fixes * more progress * cargo fmt * cargo update futures-await * Try this... * progress... * uptake ring/rustls and friends * attempted travis fixes * dep bump * the lib portion now compiles! * switch from Box to references with lifetimes * remove more box * cargo fmt * forward progress on compiling * more progress * more * enough progress to get more errors * Port submit * Progress * Comment this out so that we can make progress on compilation * knock out a TODO * this looks way saner * bump future-await * progress * oops, this needs a fucntion * format this differently * more progress * fixes * TODO * fix a warning with this silliness * this isnt for anything * fix * less code * reorganize code * move this around * cargo update * cargo fmt * cargo update * cargo update * cargo update * some comments, and a cleanup * fix * some progress on these errors * one left! * IT COMPILES! * cargo fmt * fix submission * style * port the whole check to be stream based * Parallelism! * there's a pool by default * bump serde * bumped futures-await * cargo update gcc * cargo update * cargo update futures * cargo update * cargo update serde * cargo update * cargo update libc * cargo update * cargo update * This got fixed apparently * clippy fixes (requires the very latest nightly) * more clippy fixes! * Do what clippy tells me * Do what clippy tells me * more aggressive fmting * Fixed #15 -- added a --all-logs instead of --log-urls * Added a timeout to submits * obey clippy * Drop tokio-proto and do everything myself... seems to work * Don't double borrow * cargo update * Simplify * Simplify! * Order things in check, and don't print the sct in submit * Fixed formatting certs
- Loading branch information
Showing
10 changed files
with
930 additions
and
373 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
Large diffs are not rendered by default.
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 |
---|---|---|
|
@@ -4,6 +4,15 @@ version = "0.1.0" | |
authors = ["Alex Gaynor <[email protected]>"] | ||
|
||
[dependencies] | ||
futures = "*" | ||
futures-await = { git = "https://github.com/alexcrichton/futures-await" } | ||
tokio-core = "*" | ||
tokio-io = "*" | ||
tokio-process = "*" | ||
tokio-rustls = "*" | ||
tokio-service = "*" | ||
net2 = "*" | ||
|
||
acme-client = "*" | ||
|
||
base64 = "*" | ||
|
@@ -16,16 +25,14 @@ clap = "*" | |
|
||
hex = "*" | ||
|
||
hyper = "< 0.11" | ||
hyper-rustls = ">=0.6" | ||
hyper = ">=0.11" | ||
hyper-rustls = ">=0.11" | ||
|
||
openssl = "*" | ||
|
||
rayon = "*" | ||
|
||
ring = "*" | ||
ring = ">=0.12" | ||
|
||
rustls = { version = ">=0.8", features = ["dangerous_configuration"] } | ||
rustls = { version = ">=0.11", features = ["dangerous_configuration"] } | ||
|
||
serde = "*" | ||
serde_derive = "*" | ||
|
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,4 +1,5 @@ | ||
reorder_imports = true | ||
reorder_imported_names = true | ||
reorder_imports_in_group = true | ||
normalize_imports = true | ||
normalize_comments = false | ||
normalize_comments = 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
Oops, something went wrong.