forked from massalabs/massa
-
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.
* Add script Signed-off-by: Litchi Pi <[email protected]> * update script Signed-off-by: Litchi Pi <[email protected]> * Update Cargo.toml Signed-off-by: Litchi Pi <[email protected]> * Remove script Signed-off-by: Litchi Pi <[email protected]> --------- Signed-off-by: Litchi Pi <[email protected]>
- Loading branch information
Showing
42 changed files
with
855 additions
and
936 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 |
---|---|---|
|
@@ -4,30 +4,27 @@ version = "0.24.0" | |
authors = ["Massa Labs <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
paginate = "1.1.11" | ||
displaydoc = "0.2" | ||
thiserror = "1.0" | ||
jsonrpsee = { version = "0.18.2", features = ["jsonrpsee-core", "jsonrpsee-types"] } | ||
serde = { version = "1.0", features = ["derive"] } | ||
strum = { version = "0.24", features = ["derive"] } | ||
|
||
# custom modules | ||
massa_signature = { path = "../massa-signature" } | ||
massa_time = { path = "../massa-time" } | ||
massa_models = { path = "../massa-models" } | ||
massa_final_state = { path = "../massa-final-state" } | ||
massa_consensus_exports = { path = "../massa-consensus-exports" } | ||
massa_hash = { path = "../massa-hash" } | ||
massa_protocol_exports = { path = "../massa-protocol-exports" } | ||
massa_execution_exports = { path = "../massa-execution-exports" } | ||
massa_wallet = { path = "../massa-wallet" } | ||
massa_versioning = { path = "../massa-versioning" } | ||
|
||
[dev-dependencies] | ||
serial_test = "1.0.0" | ||
|
||
# for more information on what are the following features used for, see the cargo.toml at workspace level | ||
[features] | ||
sandbox = [] | ||
testing = [] | ||
|
||
[dependencies] | ||
paginate = {workspace = true} | ||
displaydoc = {workspace = true} | ||
thiserror = {workspace = true} | ||
jsonrpsee = {workspace = true, "features" = ["jsonrpsee-core", "jsonrpsee-types"]} | ||
serde = {workspace = true, "features" = ["derive"]} | ||
strum = {workspace = true, "features" = ["derive"]} # BOM UPGRADE Revert to {"version": "0.24", "features": ["derive"]} if problem | ||
massa_signature = {workspace = true} | ||
massa_time = {workspace = true} | ||
massa_models = {workspace = true} | ||
massa_final_state = {workspace = true} | ||
massa_consensus_exports = {workspace = true} | ||
massa_hash = {workspace = true} | ||
massa_protocol_exports = {workspace = true} | ||
massa_execution_exports = {workspace = true} | ||
massa_wallet = {workspace = true} | ||
massa_versioning = {workspace = true} | ||
|
||
[dev-dependencies] | ||
serial_test = {workspace = 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
Oops, something went wrong.