-
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.
- Add documentation for design considerations - Update dependencies - Update time library from chrono to time - Update dee error handling on HTTP remotes - Update tlock_age to v0.0.2 for improved performance - Fix Chain error handling on wrong URL string - Add coin_clip example for drand_core - Add `get_by_unix_time` method on drand HttpClient - Update dependencies - Update drand_core public API to expose HttpClient - Update bls12-381 library to arkworks/curves - Fix Chain error handling on wrong URL string - Remove Chain struct abstraction
- Loading branch information
Thibault
committed
Apr 10, 2023
1 parent
7e840a0
commit 362ef22
Showing
5 changed files
with
39 additions
and
5 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
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,7 +1,7 @@ | ||
[package] | ||
name = "dee" | ||
description = "An cli for drand, with support for timelock encryption." | ||
version = "0.0.6" | ||
version = "0.0.7" | ||
authors = ["Thibault Meunier <[email protected]>"] | ||
edition = "2021" | ||
readme = "../README.md" | ||
|
@@ -39,7 +39,7 @@ clap = { version = "4.2.1", features = ["derive"] } | |
clap-verbosity-flag = "2.0.1" | ||
colored = "2.0.0" | ||
confy = "0.5.1" | ||
drand_core = { path = "../drand_core", version = "0.0.6" } | ||
drand_core = { path = "../drand_core", version = "0.0.7" } | ||
env_logger = "0.10.0" | ||
hex = "0.4.3" | ||
log = "0.4.17" | ||
|
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,7 +1,7 @@ | ||
[package] | ||
name = "drand_core" | ||
description = "A drand client library." | ||
version = "0.0.6" | ||
version = "0.0.7" | ||
authors = ["Thibault Meunier <[email protected]>"] | ||
edition = "2021" | ||
readme = "./README.md" | ||
|