You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
938 B

[package]
name = "transfer"
description="simple network file transfer"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ad-hoc-iter = "0.2.3"
async-compression = { version = "0.3.8", features = ["tokio", "brotli"] }
base64 = "0.13.0"
bytes = "1.1.0"
color-eyre = { version = "0.5.11", default-features = false }
cryptohelpers = { version = "1.8.2", features = ["sha256", "async", "rsa", "serde"] }
futures = "0.3.17"
getrandom = "0.2.3"
lazy_format = "1.9.0"
lazy_static = "1.4.0"
log = "0.4.14"
notify = "4.0.17"
openssl = "0.10.36"
pretty_env_logger = "0.4.0"
serde = { version = "1.0.130", features = ["derive"] }
serde_cbor = "0.11.2"
serde_json = "1.0.68"
smallvec = { version = "1.6.1", features = ["serde", "const_generics", "write"] }
stackalloc = "1.1.1"
tokio = { version = "1.12.0", features = ["full"] }
tokio-uring = "0.1.0"