2026-05-15 15:08:20 +02:00
|
|
|
[package]
|
|
|
|
|
name = "geth-node"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
|
|
|
|
license.workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-05-18 17:18:25 +02:00
|
|
|
base64.workspace = true
|
2026-05-18 18:29:45 +02:00
|
|
|
serde.workspace = true
|
2026-05-15 15:08:20 +02:00
|
|
|
serde_json.workspace = true
|
|
|
|
|
thiserror.workspace = true
|
|
|
|
|
tokio.workspace = true
|
|
|
|
|
tracing.workspace = true
|
|
|
|
|
geth-auth = { path = "../geth-auth" }
|
|
|
|
|
geth-cas = { path = "../geth-cas" }
|
|
|
|
|
geth-config = { path = "../geth-config" }
|
|
|
|
|
geth-control = { path = "../geth-control" }
|
|
|
|
|
geth-crypto = { path = "../geth-crypto" }
|
2026-05-16 21:13:33 +02:00
|
|
|
geth-db = { path = "../geth-db" }
|
2026-05-18 04:03:52 +02:00
|
|
|
geth-discovery = { path = "../geth-discovery" }
|
2026-05-16 22:15:18 +02:00
|
|
|
geth-document = { path = "../geth-document" }
|
2026-05-16 01:54:00 +02:00
|
|
|
geth-iroh = { path = "../geth-iroh" }
|
2026-05-16 16:34:20 +02:00
|
|
|
geth-keychain = { path = "../geth-keychain" }
|
2026-05-16 21:52:35 +02:00
|
|
|
geth-kv = { path = "../geth-kv" }
|
2026-05-17 20:17:26 +02:00
|
|
|
geth-pipe = { path = "../geth-pipe" }
|
2026-05-17 18:23:51 +02:00
|
|
|
geth-pubsub = { path = "../geth-pubsub" }
|
2026-05-15 15:08:20 +02:00
|
|
|
geth-resource = { path = "../geth-resource" }
|
2026-05-16 22:18:49 +02:00
|
|
|
geth-secrets = { path = "../geth-secrets" }
|
2026-05-16 00:17:08 +02:00
|
|
|
geth-ssh-identity = { path = "../geth-ssh-identity" }
|
2026-05-15 15:08:20 +02:00
|
|
|
geth-store = { path = "../geth-store" }
|
|
|
|
|
geth-types = { path = "../geth-types" }
|
2026-05-18 12:09:50 +02:00
|
|
|
iroh.workspace = true
|
2026-05-18 17:05:43 +02:00
|
|
|
swarm-discovery.workspace = true
|
2026-05-18 12:09:50 +02:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2026-05-18 22:11:57 +02:00
|
|
|
rusqlite.workspace = true
|
2026-05-18 12:09:50 +02:00
|
|
|
tempfile.workspace = true
|