-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
51 lines (45 loc) · 1.12 KB
/
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
43
44
45
46
47
48
49
50
51
[package]
name = "sisterm"
version = "3.0.2"
authors = ["kumavale"]
edition = "2018"
description = "A simple terminal with syntax highlighting"
license = "MIT"
repository = "https://github.com/kumavale/sisterm"
readme = "README.md"
keywords = ["serial", "terminal", "cli", "color"]
categories = ["command-line-utilities"]
build = "build.rs"
[[bin]]
name = "sist"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serialport = "4.0.1"
regex = "1.5.4"
chrono = "0.4.19"
serde = { version = "1.0.132", features = ["derive"] }
toml = "0.8.12"
lazy_static = "1.4.0"
rustyline = "14.0.0"
tokio = { version = "1.20", features = ["full"] }
ssh2 = "0.9"
rpassword = "7.0"
getch-rs = "0.2"
clap = { version = "4.5.4", features = ["derive", "cargo"] }
[build-dependencies]
lazy_static = "1.4.0"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = [
"consoleapi",
"handleapi",
"processenv",
"winbase",
"wincon",
"winuser",
]
[target.'cfg(windows)'.dependencies.libc]
version = "0.2"
[target.'cfg(unix)'.dependencies]
nix = "0.28"