-
Notifications
You must be signed in to change notification settings - Fork 5.4k
/
Copy pathCargo.toml
40 lines (36 loc) · 1.1 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "forc-node"
description = "a wrapper around fuel-core to bootstrap nodes"
version.workspace = true
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
fuel-crypto = { workspace = true, features = ["random"] }
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"] }
[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
[lib]
path = "src/lib.rs"
[[bin]]
name = "forc-node"
path = "src/main.rs"