-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 989 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 989 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
[package]
name = "shpool-vterm"
version = "0.1.0"
edition = "2021"
repository = "https://github.com/shell-pool/shpool-vterm"
readme = "README.md"
authors = ["Ethan Pailes <pailes@google.com>"]
description = '''
An in-memory terminal to support session restore in shpool.
'''
license = "Apache-2.0 AND MIT"
keywords = ["terminal", "tty", "shpool", "tmux", "shell"]
rust-version = "1.74"
[dependencies]
itoa = "1" # fast int -> string conversion
vte = "0.15" # terminal control code parsing
smallvec = "1" # heap fragmentation optimization
static_assertions = "1"
unicode-width = "0.2" # detecting zero width modifier codepoints
log = "0.4" # logging facade (not used directly, but required if we have tracing-log enabled)
tracing = "0.1" # logging and performance monitoring facade
anyhow = "1" # errors
[features]
# This opens up some visibility that we don't want in the main crate API.
internal-test = []
[dev-dependencies]
shpool-vterm = { path = ".", features = ["internal-test"] }