[package]
name = "iroh-docs"
version = "0.96.0"
edition = "2021"
readme = "README.md"
description = "Iroh sync"
license = "MIT/Apache-2.0"
authors = ["n0 team"]
repository = "https://github.com/n0-computer/iroh-docs"
# Sadly this also needs to be updated in .github/workflows/ci.yml
rust-version = "1.89"
[dependencies]
anyhow = "1"
async-channel = "2.3.1"
hemera = { package = "cyber-hemera", path = "../../hemera/rs" }
bytes = { version = "1.7", features = ["serde"] }
derive_more = { version = "2.0.1", features = [
"debug",
"deref",
"display",
"from",
"from_str",
"try_into",
"into",
"as_ref",
] }
ed25519-dalek = { version = "3.0.0-pre.1", features = ["serde", "rand_core"] }
futures-buffered = "0.2.4"
futures-lite = "2.3.0"
futures-util = { version = "0.3.25" }
hex = "0.4"
iroh = { version = "0.96" }
iroh-tickets = { version = "0.2"}
iroh-blobs = { version = "0.98" }
iroh-gossip = { version = "0.96", features = ["net"] }
iroh-metrics = { version = "0.38", default-features = false }
irpc = { version = "0.12.0" }
n0-future = "0.3"
num_enum = "0.7"
postcard = { version = "1", default-features = false, features = [
"alloc",
"use-std",
"experimental-derive",
] }
quinn = { package = "iroh-quinn", version = "0.16.0" }
rand = "0.9.2"
redb = { version = "2.6.3" }
self_cell = "1.0.3"
serde = { version = "1.0.164", features = ["derive"] }
serde-error = "0.1.3"
strum = { version = "0.26", features = ["derive"] }
tempfile = { version = "3.4" }
thiserror = "2"
tokio = { version = "1", features = ["sync", "rt", "time", "io-util"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-util = { version = "0.7.12", features = ["codec", "io-util", "io", "rt"] }
tracing = "0.1"
n0-error = "0.1.0"
[dev-dependencies]
data-encoding = "2.6.0"
iroh = { version = "0.96", features = ["test-utils"] }
nested_enum_utils = "0.2"
parking_lot = "0.12.3"
proptest = "1.2.0"
rand_chacha = "0.9"
tempfile = "3.4"
test-strategy = "0.4"
testdir = "0.7"
testresult = "0.4.1"
tokio = { version = "1", features = ["sync", "macros"] }
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
tracing-test = "0.2.5"
[features]
default = ["metrics"]
metrics = ["iroh-metrics/metrics", "iroh/metrics"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "iroh_docsrs"]
[lints]
workspace = true