geth/Cargo.toml

75 lines
1.9 KiB
TOML
Raw Normal View History

2026-05-15 15:08:20 +02:00
[workspace]
members = [
"crates/geth",
"crates/geth-cli",
"crates/geth-node",
"crates/geth-control",
"crates/geth-types",
"crates/geth-codec",
"crates/geth-config",
"crates/geth-store",
"crates/geth-crypto",
"crates/geth-ssh-identity",
"crates/geth-keychain",
"crates/geth-auth",
"crates/geth-secrets",
"crates/geth-resource",
"crates/geth-iroh",
"crates/geth-discovery",
"crates/geth-db",
"crates/geth-kv",
"crates/geth-pipe",
"crates/geth-document",
"crates/geth-pubsub",
2026-05-23 01:17:30 +02:00
"crates/geth-overlay",
2026-05-15 15:08:20 +02:00
"crates/geth-cas",
"crates/geth-ssh-proxy",
"crates/geth-testkit",
]
resolver = "3"
[workspace.package]
edition = "2024"
license = "MIT OR Apache-2.0"
repository = "https://forge.tionis.dev/eric/geth"
2026-06-16 02:53:35 +02:00
rust-version = "1.91"
2026-05-15 15:08:20 +02:00
[workspace.dependencies]
2026-07-05 23:02:59 +02:00
aes-gcm = "0.10"
2026-05-15 15:08:20 +02:00
anyhow = "1"
async-trait = "0.1"
2026-05-22 14:54:00 +02:00
automerge = "0.7"
2026-05-15 15:08:20 +02:00
base64 = "0.22"
blake3 = "1"
bytes = "1"
clap = { version = "4", features = ["derive", "env"] }
2026-05-23 02:40:03 +02:00
clap_complete = "4"
2026-05-15 15:08:20 +02:00
directories = "5"
ed25519-dalek = { version = "2", features = ["rand_core"] }
futures = "0.3"
hex = "0.4"
2026-05-22 14:54:00 +02:00
hexane = "=0.1.5"
2026-06-16 02:53:35 +02:00
iroh = "1.0.0"
iroh-blobs = "0.103.0"
iroh-docs = "0.101.0"
iroh-gossip = "0.101.0"
iroh-mdns-address-lookup = "0.4.0"
2026-05-15 15:08:20 +02:00
postcard = { version = "1", features = ["alloc"] }
2026-05-22 15:28:52 +02:00
rand = "0.9"
2026-05-15 15:08:20 +02:00
rand_core = { version = "0.6", features = ["getrandom"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
2026-06-16 02:53:35 +02:00
swarm-discovery = "0.6.0"
2026-05-15 15:08:20 +02:00
tempfile = "3"
thiserror = "2"
time = { version = "0.3", features = ["formatting", "serde"] }
tokio = { version = "1", features = ["fs", "io-util", "macros", "net", "rt-multi-thread", "signal", "time"] }
2026-05-16 03:17:45 +02:00
toml_edit = "0.25.11"
2026-05-15 15:08:20 +02:00
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
2026-05-23 02:08:51 +02:00
tun-rs = { version = "2.7.7", features = ["async"] }
2026-05-16 14:28:38 +02:00
url = "2"
2026-05-15 15:08:20 +02:00
[workspace.lints.rust]
unsafe_code = "forbid"