2026-05-15 15:08:20 +02:00
|
|
|
[package]
|
|
|
|
|
name = "geth-cli"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow.workspace = true
|
2026-05-20 13:57:14 +02:00
|
|
|
base64.workspace = true
|
2026-05-15 15:08:20 +02:00
|
|
|
clap.workspace = true
|
2026-05-23 02:40:03 +02:00
|
|
|
clap_complete.workspace = true
|
2026-05-15 15:08:20 +02:00
|
|
|
serde_json.workspace = true
|
2026-07-18 15:23:20 +02:00
|
|
|
tempfile.workspace = true
|
2026-05-15 15:08:20 +02:00
|
|
|
tokio.workspace = true
|
|
|
|
|
geth-config = { path = "../geth-config" }
|
|
|
|
|
geth-control = { path = "../geth-control" }
|
2026-05-27 00:59:52 +02:00
|
|
|
geth-keychain = { path = "../geth-keychain" }
|
2026-05-18 03:57:26 +02:00
|
|
|
geth-cas = { path = "../geth-cas" }
|
2026-05-15 15:08:20 +02:00
|
|
|
geth-node = { path = "../geth-node" }
|
2026-05-20 13:57:14 +02:00
|
|
|
geth-pipe = { path = "../geth-pipe" }
|