-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (36 loc) · 854 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
[package]
name = "tester"
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-or-later" # We used GPL lib
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "tester"
crate-type = ["cdylib", "staticlib", "rlib"]
[dependencies]
pyo3 = "0.22.0"
asciicast = "0.2.2"
rand = "0.8.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.125"
serialport = "4.5.0"
ssh2 = "0.9.4"
toml = "0.8.19"
colored = "2.1.0"
nix = { version = "0.29.0", features = ["fs", "process", "signal", "term"] }
vte = "0.13.0"
image = "0.25.2"
xcap = "0.0.13"
enigo = "0.2.1"
portable-pty = "0.8.1"
inventory = "0.3.15"
eframe = "0.28.1"
egui_extras = "0.28.1"
termwiz = "0.22.0"
interprocess = "2.2.1"
[toolchain]
channel = "nightly"
[[test]]
name = "ui_test"
path = "tests/ui_test.rs"
harness = false