-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathCargo.toml
42 lines (37 loc) · 973 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "russh-sftp"
version = "2.0.8"
edition = "2021"
description = "SFTP subsystem supported server and client for Russh"
readme = "README.md"
repository = "https://github.com/AspectUnk/russh-sftp"
license = "Apache-2.0"
keywords = ["russh", "sftp", "ssh2", "server", "client"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", default-features = false, features = [
"io-util",
"rt",
"sync",
"time",
"macros",
] }
tokio-util = "0.7"
serde = { version = "1.0", features = ["derive"] }
bitflags = { version = "2.8", features = ["serde"] }
async-trait = "0.1"
thiserror = "2.0"
chrono = "0.4"
bytes = "~1.9"
log = "0.4"
flurry = "0.5"
[dev-dependencies]
russh = "0.49"
russh-keys = "0.49"
env_logger = "0.11"
anyhow = "1.0"
criterion = { version = "0.5", features = ["async_tokio"] }
futures = "0.3"
[[bench]]
name = "upload_benchmark"
harness = false