forked from psmux/psmux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
113 lines (95 loc) 路 2.56 KB
/
Copy pathCargo.toml
File metadata and controls
113 lines (95 loc) 路 2.56 KB
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
103
104
105
106
107
108
109
110
111
112
113
[package]
name = "psmux"
version = "3.3.7"
edition = "2021"
description = "Terminal multiplexer for Windows - tmux alternative for PowerShell and Windows Terminal"
license = "MIT"
repository = "https://github.com/psmux/psmux"
readme = "README.md"
keywords = ["terminal", "multiplexer", "tmux", "windows", "powershell"]
categories = ["command-line-utilities"]
[workspace]
members = [".", "crates/portable-pty-psmux", "crates/vt100-psmux"]
exclude = [
"target/",
"release/",
"tests/",
"tests-rs/",
"packages/",
"psmux-windows-x86_64/",
".github/",
"scripts/",
"scoop/",
"examples/",
"*.txt",
]
# Disable auto-discovery of integration tests from tests/ directory
[[test]]
name = "test_vt100_mouse"
path = "tests-rs/test_vt100_mouse.rs"
[[test]]
name = "test_issue155_sgr_attrs"
path = "tests-rs/test_issue155_sgr_attrs.rs"
[[test]]
name = "test_issue155_rendering"
path = "tests-rs/test_issue155_rendering.rs"
[[test]]
name = "test_issue201_rename_dialog"
path = "tests-rs/test_issue201_rename_dialog.rs"
[[test]]
name = "test_issue269_osc94_dropped"
path = "tests-rs/test_issue269_osc94_dropped.rs"
[[test]]
name = "test_h1_osc52_clipboard_capture"
path = "tests-rs/test_h1_osc52_clipboard_capture.rs"
[[test]]
name = "test_h1_osc52_end_to_end"
path = "tests-rs/test_h1_osc52_end_to_end.rs"
[[test]]
name = "test_issue299_osc_command_state"
path = "tests-rs/test_issue299_osc_command_state.rs"
[[test]]
name = "test_issue299_pwsh_snippet_integration"
path = "tests-rs/test_issue299_pwsh_snippet_integration.rs"
[[test]]
name = "test_pr469_osc_command_safety"
path = "tests-rs/test_pr469_osc_command_safety.rs"
[[test]]
name = "test_issue494_copymode_freeze"
path = "tests-rs/test_issue494_copymode_freeze.rs"
# Windows only
[target.'cfg(not(windows))'.dependencies]
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61", features = [
"Win32_Foundation",
"Win32_System_Memory",
"Win32_System_DataExchange",
] }
[[bin]]
name = "psmux"
path = "src/main.rs"
[[bin]]
name = "pmux"
path = "src/main.rs"
[[bin]]
name = "tmux"
path = "src/main.rs"
[dependencies]
ratatui = "0.30"
crossterm = "0.29"
portable-pty = { version = "0.9.6", path = "crates/portable-pty-psmux", package = "portable-pty-psmux" }
which = "8"
chrono = "0.4"
vt100 = { version = "0.16.9", path = "crates/vt100-psmux", package = "vt100-psmux" }
unicode-width = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
regex = "1"
glob = "0.3"
anyhow = "1"
base64 = "0.23"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = "symbols"