-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (24 loc) · 887 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
[package]
name = "sshield"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.72"
async-trait = "0.1.72"
chrono = "0.4.31"
clap = { version = "4.3.17", features = [ "derive" ] }
dialog = "0.3.0"
dirs = "5.0.1"
extrasafe = "0.3.0"
futures = "0.3.28"
keyring = { version = "2.3.2", features = ["linux-secret-service"] }
rusqlite = { version = "0.29.0", features = ["sqlcipher"] }
russh = { version = "0.40.2", features = ["openssl"] }
russh-keys = { version = "0.40.1", features = ["openssl"] }
# russh = { git = "https://github.com/warp-tech/russh" , features = ["openssl"] }
# russh-keys = { git = "https://github.com/warp-tech/russh" , features = ["openssl"] }
ssh2-config = "0.2.0"
tokio = { version = "1.29.1", features = ["full"] }
tokio-stream = "0.1.14"
toml = "0.7.6"