forked from starcoinorg/starcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[cleanup] Do some rename and cleanup (starcoinorg#2319)
* [cleanup] Rename sync2 to sync. * [cleanup] fix typo Refiled to Prefilled * [cleanup] move core/accumulator to commons * [cleanup] cleanup jellyfish merkle dep * [cleanup] move forkable-jellyfish-merkle to commons. * [cleanup] remove core/traits crate. * [cleanup] move core/genesis to genesis. * [cleanup] move account/lib to account
- Loading branch information
1 parent
1c45b26
commit b78a95a
Showing
126 changed files
with
220 additions
and
306 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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[package] | ||
name = "starcoin-account" | ||
version = "1.0.0-alpha.1" | ||
authors = ["Starcoin Core Dev <dev@starcoin.org>"] | ||
license = "Apache-2.0" | ||
publish = false | ||
edition = "2018" | ||
|
||
[dependencies] | ||
anyhow = "1.0.39" | ||
futures = "0.3.12" | ||
async-trait = "0.1" | ||
rand = "0.8.3" | ||
parking_lot = "0.11" | ||
serde = "1.0.125" | ||
rand_core = { version = "0.6.2", default-features = false } | ||
starcoin-account-api = {path = "./api"} | ||
bcs-ext ={package= "bcs-ext", path = "../commons/bcs_ext" } | ||
starcoin-types = { path = "../types"} | ||
starcoin-config = { path = "../config"} | ||
starcoin-crypto = { path = "../commons/crypto"} | ||
starcoin-decrypt = {path = "../commons/decrypt"} | ||
starcoin-storage = {path = "../storage"} | ||
starcoin-logger = {path = "../commons/logger"} | ||
|
||
[dev-dependencies] | ||
hex= "0.4.3" | ||
tempfile="3" |
This file was deleted.
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
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.