-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (23 loc) · 770 Bytes
/
Copy pathCargo.toml
File metadata and controls
28 lines (23 loc) · 770 Bytes
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
[package]
name = "sshproxy-rust"
version = "2.1.0"
edition = "2021"
documentation = "https://aryabhatt.github.io/sshproxy-rust/"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
tokio = { version = "1.41", features = ["full"] }
reqwest = { version = "0.12", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
dirs = "5.0"
rpassword = "7.3"
whoami = "1.5"
totp-lite = "2.0"
data-encoding = "2.5"
[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "3.5.1"
[target.'cfg(target_os = "linux")'.dependencies]
keyring = { version = "3.3", features = ["linux-native"] }
[target.'cfg(target_os = "windows")'.dependencies]
keyring = { version = "3.3", features = ["windows-native"] }