-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into v2.0-stable-merge
- Loading branch information
Showing
188 changed files
with
3,421 additions
and
2,955 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,19 +1,20 @@ | ||
[package] | ||
description = "Parity Ethereum Keys Generator CLI" | ||
description = "Conflux Core Space Keys Generator CLI" | ||
name = "ctxkey-cli" | ||
version = "0.1.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
docopt = "1.0" | ||
env_logger = "0.5" | ||
docopt = { workspace = true } | ||
env_logger = { workspace = true } | ||
cfxkey = { workspace = true } | ||
panic_hook = { git = "https://github.com/Conflux-Chain/conflux-parity-deps.git", rev = "1597a9cab02343eb2322ca0ac58d39b64e3f42d1" } | ||
parity-wordlist="1.2" | ||
rustc-hex = "2.1" | ||
serde = "1.0" | ||
serde_derive = "1.0" | ||
threadpool = "1.7" | ||
panic_hook = { workspace = true } | ||
parity-wordlist= { workspace = true } | ||
rustc-hex = { workspace = true } | ||
serde = { workspace = true } | ||
serde_derive = { workspace = true } | ||
threadpool = { workspace = true } | ||
|
||
[[bin]] | ||
name = "cfxkey" | ||
|
File renamed without changes.
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
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,17 @@ | ||
[package] | ||
name = "cfx-addr" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
license = "GPL-3.0" | ||
description = "Conflux Address Encoder/Decoder" | ||
description = "Conflux Base32 Address Encoder/Decoder" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
cfx-types = { workspace = true } | ||
lazy_static = "1.4" | ||
rustc-hex = "2.1" | ||
lazy_static = { workspace = true } | ||
|
||
[dev-dependencies] | ||
rustc-hex = { workspace = true } | ||
|
||
[features] | ||
default = ["std"] | ||
std = [] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.