-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (61 loc) · 1.47 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
58
59
60
61
62
63
64
65
66
67
68
69
[workspace]
members = ["libs", "cli", "platform", "mosh", "terminal", "emulator", "asset"]
[lib]
name = "termio"
path = "src/lib.rs"
[[bin]]
name = "termio"
path = "src/main.rs"
[package]
name = "termio"
version = "0.1.0"
edition = "2021"
[features]
default = []
x11 = ["cli/x11", "emulator/x11", "platform/x11", "tmui/x11"]
[workspace.dependencies]
log = "0.4"
log4rs = "1.1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
lazy_static = "1.4.0"
ssh2 = "0.9.3"
parking_lot = "0.12.1"
encoding = "0.2.33"
pem = "1.1.0"
hex_color = "2.0.0"
page_size = "0.5.0"
libc = "0.2.138"
wchar = "0.11.0"
widestring = "1.0.2"
bitvec = "1.0.1"
regex = "1.7.0"
hex = "0.4.3"
derivative = "2.2.0"
once_cell = "1.17.0"
unicode-width = "0.1.10"
rust-embed = { version = "8.3.0", features = [
"debug-embed",
"include-exclude",
] }
aes = "0.8.2"
cipher = { version = "0.4.3", features = ["block-padding"] }
base64 = "0.13.1"
rand = "0.8.5"
protobuf = "3.2.0"
flate2 = { version = "1.0.34", features = ["zlib-ng"] }
local_ipaddress = "0.1.3"
terminal_size = "0.2.3"
chrono = "0.4"
ahash = "0.8.11"
getset = "0.1.5"
strip-ansi-escapes = "0.2.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tmui = { git = "https://github.com/toocol/tmui" }
libs = { path = "libs/" }
cli = { path = "cli/" }
emulator = { path = "emulator/" }
platform = { path = "platform/" }
log = { workspace = true }
log4rs = { workspace = true }