[package]
edition = "2021"
name = "ringdrop"
version = "0.17.0"
authors = ["Enrico Fusto"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "P2P streamed file transfer with ring-based access control, built on iroh and bao protocols"
readme = "README.md"
keywords = [
"p2p",
"cli",
"file-transfer",
"ring-authorization",
"holepunching",
]
license = "MIT"
repository = "https://github.com/rikettsie/ringdrop"
[package.metadata.docs.rs]
all-features = true
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/rdrop-{ version }-{ target }.{ archive-format }"
bin-dir = "rdrop{ binary-ext }"
pkg-fmt = "tgz"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
[lib]
name = "ringdrop"
path = "src/lib.rs"
[[bin]]
name = "rdrop"
path = "src/main.rs"
[[test]]
name = "blob_management"
path = "tests/blob_management.rs"
[[test]]
name = "daemon"
path = "tests/daemon.rs"
[[test]]
name = "ring_gate"
path = "tests/ring_gate.rs"
[[test]]
name = "server_ipc"
path = "tests/server_ipc.rs"
[[test]]
name = "transfer"
path = "tests/transfer.rs"
[dependencies.anyhow]
version = "1"
[dependencies.bao-tree]
version = "0.16"
[dependencies.bytes]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.data-encoding]
version = "2"
[dependencies.dirs-next]
version = "2"
[dependencies.futures-lite]
version = "2"
[dependencies.hex]
version = "0.4"
[dependencies.indicatif]
version = "0.18"
[dependencies.iroh]
version = "1.0.0"
[dependencies.iroh-blobs]
version = "0.103"
features = ["fs-store"]
[dependencies.iroh-io]
version = "0.6"
[dependencies.iroh-rings]
version = "0.7.0"
features = [
"redb",
"fs",
"mem",
]
[dependencies.redb]
version = "4"
[dependencies.reqwest]
version = "0.13"
features = ["rustls"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_millis]
version = "0.1.1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dependencies.walkdir]
version = "2"
[dev-dependencies.tempfile]
version = "3"