-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (31 loc) · 700 Bytes
/
Cargo.toml
File metadata and controls
32 lines (31 loc) · 700 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
29
30
31
32
[package]
name = "robotssh"
license = "MIT"
description = "A modern rewrite of autossh"
version = "0.1.2"
edition = "2024"
repository = "https://github.com/CordlessCoder/robotssh"
[dependencies]
clap = { version = "4.5.57", default-features = false, features = [
"derive",
"color",
"wrap_help",
"std",
"help",
"error-context",
"suggestions",
"env",
"cargo",
"usage",
] }
clap_complete = "4.5.65"
color-eyre = { version = "0.6.5", default-features = false }
humantime = "2.3.0"
mio = { version = "1.1.1", features = [
"net",
"os-poll",
], default-features = false }
rand = { version = "0.9.2", default-features = false, features = [
"thread_rng",
] }
shared_child = "1.1.1"