Skip to content
Merged
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
8,029 changes: 5,893 additions & 2,136 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
resolver = "2"
members = [
"forc-crypto",
"forc-node",
"forc-tracing",
"forc-wallet",
]
Expand All @@ -14,8 +15,14 @@ repository = "https://github.com/FuelLabs/forc"


[workspace.dependencies]
# Internal dependencies
forc-tracing = { version = "0.71.1", path = "forc-tracing" }

# External Fuel dependencies
fuel-core = { version = "0.47", default-features = false }
fuel-core-chain-config = { version = "0.47", default-features = false }
fuel-core-types = { version = "0.47", default-features = false }
fuel-crypto = "0.65"
forc-util = "0.70.2"

# External dependencies
Expand All @@ -24,18 +31,24 @@ anyhow = "1.0"
async-trait = "0.1"
clap = "4.5"
criterion = "0.5"
dialoguer = "0.11"
eth-keystore = "0.5"
futures = { version = "0.3", default-features = false }
hex = "0.4"
home = "0.5"
libc = "0.2"
libp2p-identity = "0.2"
portpicker = "0.1"
rand = "0.8"
rayon = "1.7"
regex = "1.10"
reqwest = "0.12"
rpassword = "7.2"
semver = "1.0"
serde = "1.0"
serde_json = "1.0"
serde_yaml = "0.9"
sha1 = "0.10"
sha3 = "0.10"
tempfile = "3"
termion = "4.0"
Expand All @@ -45,6 +58,7 @@ tracing-subscriber = "0.3.19"
tracing-test = "0.2"
serial_test = "3"
url = "2.5"
wiremock = "0.6"

[workspace.lints.rust]
missing_docs = "allow"
Expand Down
49 changes: 49 additions & 0 deletions forc-node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
[package]
name = "forc-node"
version = "0.71.0"
description = "a wrapper around fuel-core to bootstrap nodes"
edition = "2021"
authors.workspace = true
homepage.workspace = true
license.workspace = true
repository.workspace = true

[lib]
path = "src/lib.rs"

[[bin]]
name = "forc-node"
path = "src/main.rs"

[dependencies]
anyhow.workspace = true
clap = { workspace = true, features = ["derive", "string"] }
dialoguer.workspace = true
forc-tracing.workspace = true
forc-util.workspace = true
fuel-core = { workspace = true, features = ["relayer", "rocksdb", "test-helpers"] }
fuel-core-chain-config.workspace = true
fuel-core-types.workspace = true
fuel-crypto = { workspace = true, features = ["random"] }
libc.workspace = true
libp2p-identity = { workspace = true, features = ["secp256k1", "peerid"] }
reqwest = { workspace = true, features = ["json"] }
semver.workspace = true
serde.workspace = true
serde_json.workspace = true
sha1.workspace = true
termion.workspace = true
tokio = { workspace = true, features = ["macros", "signal", "rt-multi-thread"] }
tracing.workspace = true
tracing-subscriber.workspace = true

[dev-dependencies]
portpicker.workspace = true
reqwest = { workspace = true, features = ["json"] }
serde_json.workspace = true
tempfile.workspace = true
tokio = { workspace = true, features = ["full"] }
wiremock.workspace = true

[lints]
workspace = true
Loading
Loading