-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
41 lines (38 loc) · 1.22 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
[package]
name = "egui-term"
edition.workspace = true
version.workspace = true
license.workspace = true
authors = ["Harzu <ilia@shvyrialkin.ru>", "iamazy <iamazy.me@outlook.com>"]
documentation.workspace = true
homepage.workspace = true
repository.workspace = true
categories.workspace = true
keywords.workspace = true
[dependencies]
alacritty_terminal.workspace = true
anyhow.workspace = true
bytesize.workspace = true
camino.workspace = true
copypasta.workspace = true
egui.workspace = true
egui_extras.workspace = true
file-format.workspace = true
homedir.workspace = true
open.workspace = true
parking_lot.workspace = true
polling.workspace = true
smol.workspace = true
thiserror.workspace = true
time.workspace = true
tracing.workspace = true
wezterm-ssh = { workspace = true, features = ["vendored-openssl"] }
[target.'cfg(unix)'.dependencies]
signal-hook.workspace = true
[dev-dependencies]
eframe = { workspace = true, features = [
"accesskit", # Make egui compatible with screen readers. NOTE: adds a lot of dependencies.
"default_fonts", # Embed the default egui fonts.
"wgpu", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
] }