-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
57 lines (51 loc) · 1.38 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
52
53
54
55
56
57
[package]
name = "virterm"
description = "Run and control a process in a virtual terminal"
version = "0.0.1"
edition = "2021"
repository = "https://github.com/pvolok/virterm"
authors = ["Pavel Volokitin <[email protected]>"]
license = "MIT"
categories = [
"command-line-interface",
"command-line-utilities",
"development-tools"
]
keywords = [
"cli",
"terminal",
"test",
"testing",
"tui",
"utility"
]
include = ["/src"]
[profile.release]
strip = "symbols"
opt-level = "z" # optimize for binary size
lto = true # link time optimization
panic = "abort"
codegen-units = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "virterm"
path = "src/main.rs"
[dependencies]
ab_glyph = "0.2.15"
ansi_colours = "1.1.1"
anyhow = "1.0.44"
assert_matches = "1.5.0"
clap = { version = "3.1.8", features = ["cargo"] }
crossterm = "0.23.2"
env_logger = "0.9.0"
flexi_logger = { version = "0.22.3", default-features = false, features = ["colors"] }
image = "0.24.2"
libc = "0.2.120"
log = "0.4.14"
mlua = { version = "0.8.3", features = ["async", "lua52", "serialize", "vendored"] }
phf = { version = "0.10.1", features = ["macros"] }
portable-pty = { package = "mprocs-pty", version = "0.1.0" }
serde = { version = "1.0.136", features = ["derive"] }
serde_yaml = "0.8.24"
tokio = { version = "1", features = ["full"] }
vt100 = "0.15.1"