forked from a-kenji/tui-term
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
102 lines (81 loc) · 1.98 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "tui-term"
description = "A pseudoterminal widget for ratatui"
version = "0.1.2"
authors = ["Alexander Kenji Berthold <[email protected]>"]
edition = "2021"
include = [
"src/**/*",
"examples/*",
"benches/*",
"LICENSE",
"README.md",
"CHANGELOG.md",
]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/tui-term/latest/tui-term/"
repository = "https://github.com/a-kenji/tui-term"
autoexamples = true
rust-version = "1.66.0"
keywords = ["tui", "terminal", "ratatui", "tty", "multiplexer"]
categories = ["command-line-interface", "command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# [workspace]
# members = [
# "bench",
# ]
[dependencies]
bytes = "1.4.0"
portable-pty = "0.8.1"
ratatui = "0.22.0"
vt100 = "0.15.2"
crossterm = "0.27.0"
[dev-dependencies]
bytes = "1.4.0"
criterion = "0.5.1"
#TODO: go back to release version, once it is fixed
# iai = "0.1.1"
iai = { git = "https://github.com/sigaloid/iai", rev = "6c83e942" }
insta = "1.29.0"
once_cell = "1.17.1"
# for examples
crossterm = "0.27"
portable-pty = "0.8.1"
tokio = { version = "1", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3
[profile.bench]
lto = "thin"
[[bench]]
name = "benches"
harness = false
[[bench]]
name = "iai"
harness = false
[[example]]
name = "simple_ls_chan"
doc-scrape-examples = true
[[example]]
name = "simple_ls_rw"
doc-scrape-examples = true
[[example]]
name = "long_running"
doc-scrape-examples = true
[[example]]
name = "nested_shell"
doc-scrape-examples = true
[[example]]
name = "nested_shell_async"
doc-scrape-examples = true
[[example]]
name = "smux"
doc-scrape-examples = true
[package.metadata.docs.rs]
all-features = true
# see https://doc.rust-lang.org/nightly/rustdoc/scraped-examples.html
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]