-
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.
drand_core - Change RFC 3339 datetime parsing to allow space and date - Fix clippy warning for wasm32-unknown-unknown target dee - Update dependencies - Fix error message when round cannot be parsed
- Loading branch information
Thibault
committed
Mar 9, 2024
1 parent
2725208
commit 30f07dc
Showing
5 changed files
with
9 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.15" | ||
version = "0.0.16" | ||
authors = ["Thibault Meunier <[email protected]>"] | ||
edition = "2021" | ||
readme = "../README.md" | ||
|
@@ -39,7 +39,7 @@ clap = { version = "4.5.2", features = ["derive"] } | |
clap-verbosity-flag = "2.2.0" | ||
colored = "2.1.0" | ||
confy = "0.6.1" | ||
drand_core = { path = "../drand_core", version = "0.0.15" } | ||
drand_core = { path = "../drand_core", version = "0.0.16" } | ||
env_logger = "0.10.2" | ||
hex = { workspace = true } | ||
log = "0.4.21" | ||
|
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.15" | ||
version = "0.0.16" | ||
authors = ["Thibault Meunier <[email protected]>"] | ||
edition = "2021" | ||
readme = "./README.md" | ||
|