[package]
name = "vflight"
version = "0.9.2"
edition = "2021"
description = "Share files over the Veilid distributed network with content-addressable storage"
license = "MIT"
authors = ["danzbyrd <danzbyrd@gmail.com>"]
repository = "https://github.com/danzbyrd/vflight"
homepage = "https://github.com/danzbyrd/vflight"
documentation = "https://docs.rs/vflight"
readme = "README.md"
keywords = ["veilid", "file-sharing", "p2p", "network", "distributed"]
categories = ["network-programming", "command-line-utilities"]
[lib]
name = "vflight"
path = "src/lib.rs"
[[bin]]
name = "vflight"
path = "src/main.rs"
[dependencies]
veilid-core = "0.5"
tokio = { version = "1", features = ["full"] }
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
blake3 = "1"
base64 = "0.22"
anyhow = "1"
tracing = { version = "0.1", features = ["attributes"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
chacha20poly1305 = "0.10"
argon2 = "0.5"
rand = "0.8"
futures = "0.3"
zstd = "0.13"
[dev-dependencies]
tempfile = "3"
[package.metadata.docs.rs]
all-features = true