23 lines
665 B
TOML
23 lines
665 B
TOML
[package]
|
|
name = "yama_wormfile_sftp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
yama_wormfile = { version = "0.1.0", path = "../yama_wormfile" }
|
|
|
|
ouroboros = "0.15.6"
|
|
openssh = "0.9.9"
|
|
# Need >=0.13.6 which includes a fix for massive memory leak (infinite buffering): https://github.com/openssh-rust/openssh-sftp-client/issues/89
|
|
openssh-sftp-client = "0.13.9"
|
|
async-trait = "0.1.68"
|
|
tokio = { version = "1.27.0", features = ["io-std"] }
|
|
tokio-stream = "0.1.14"
|
|
rand = "0.8.5"
|
|
thiserror = "1.0.40"
|
|
eyre = "0.6.8"
|
|
tracing = "0.1.37"
|
|
async-backtrace = "0.2.6"
|