30 lines
781 B
TOML
30 lines
781 B
TOML
[package]
|
|
name = "geth"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "geth"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
geth-cli = { path = "../geth-cli" }
|
|
|
|
[dev-dependencies]
|
|
geth-cas = { path = "../geth-cas" }
|
|
geth-config = { path = "../geth-config" }
|
|
geth-control = { path = "../geth-control" }
|
|
geth-discovery = { path = "../geth-discovery" }
|
|
geth-iroh = { path = "../geth-iroh" }
|
|
geth-node = { path = "../geth-node" }
|
|
geth-ssh-identity = { path = "../geth-ssh-identity" }
|
|
geth-store = { path = "../geth-store" }
|
|
geth-types = { path = "../geth-types" }
|
|
rusqlite.workspace = true
|
|
serde_json.workspace = true
|
|
tempfile.workspace = true
|