Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add forc-node command for easily bootstrapping a node #6473

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,631 changes: 794 additions & 837 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ members = [
"forc-plugins/forc-doc",
"forc-plugins/forc-fmt",
"forc-plugins/forc-lsp",
"forc-plugins/forc-node",
"forc-plugins/forc-tx",
"forc-test",
"forc-tracing",
Expand Down Expand Up @@ -200,6 +201,7 @@ serde_json = "1.0"
serde_with = "3.3"
serde_yaml = "0.9"
serial_test = "3.0"
sha1 = "0.10"
sha2 = "0.10"
sha3 = "0.10"
shellfish = "0.9"
Expand Down
27 changes: 27 additions & 0 deletions forc-plugins/forc-node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[package]
name = "forc-node"
version = "0.66.4"
edition.workspace = true
authors.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true

[dependencies]
anyhow.workspace = true
clap = { workspace = true, features = ["derive", "string"] }
dialoguer.workspace = true
forc-tracing.workspace = true
forc-util.workspace = true
include_dir.workspace = true
reqwest = { workspace = true, features = ["json"] }
semver.workspace = true
serde.workspace = true
serde_json.workspace = true
sha1.workspace = true
tokio = { workspace = true, features = ["macros", "signal", "rt-multi-thread"] }

[dev-dependencies]
tempfile.workspace = true
tokio = { workspace = true, features = ["full"] }
wiremock = "0.5"
Loading
Loading