-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (68 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
71 lines (68 loc) · 1.47 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
[workspace]
resolver = "2"
members = [
"crates/alacritty_terminal",
"crates/egui-term",
"crates/egui-toast",
"nxshell",
]
[workspace.package]
edition = "2021"
version = "0.1.0"
license = "MIT OR Apache-2.0"
authors = ["iamazy <iamazy.me@outlook.com>"]
documentation = "https://github.com/iamazy/nxshell"
homepage = "https://github.com/iamazy/nxshell"
repository = "https://github.com/iamazy/nxshell"
categories = ["terminal", "egui"]
keywords = ["terminal", "egui"]
[workspace.dependencies]
anyhow = "1"
base64 = "0.22"
bitflags = "2"
catppuccin-egui = { version = "5.6", default-features = false }
chrono = "0.4"
copypasta = "0.10"
eframe = "0.32"
egui = "0.32"
egui_dock = "0.17"
egui_extras = "0.32"
egui_form = "0.6"
egui-phosphor = "0.10"
egui-theme-switch = "0.4"
garde = "0.22"
home = "0.5"
homedir = "0.3"
indexmap = "2"
libc = "0.2"
log = "0.4"
miow = "0.6"
open = "5"
orion = "0.17"
parking_lot = "0.12"
piper = "0.2"
polling = "3"
regex = "1"
regex-automata = "0.4"
rusqlite = "0.33"
rustix = { version = "1", default-features = false }
rustix-openpty = "0.2"
serde = "1"
serde_json = "1"
signal-hook = "0.3"
smol = "2"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = "0.3"
unicode-width = "0.2"
vte = { version = "0.15", default-features = false }
wezterm-ssh = { git = "https://github.com/iamazy/wezterm.git", branch = "nxssh" }
windows = "0.59"
windows-sys = "0.59"
wgpu = "25"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"