This repository was archived by the owner on Nov 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
46 lines (42 loc) · 1.06 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
[workspace]
members = ["crates/vui", "crates/vterm", "crates/vshell", "crates/vtty"]
default-members = ["crates/vterm"]
resolver = "2"
[workspace.package]
version = "0.1.0"
authors = ["nuii <contact@viable.gg>"]
edition = "2021"
license = "MPL-2.0"
readme = "README.md"
keywords = ["graphics", "terminal"]
repository = "https://github.com/viablegg/vterm"
homepage = "https://viable.gg/vterm"
documentation = "https://github.com/viablegg/vterm#readme"
[workspace.dependencies]
vui = { path = "crates/vui" }
vshell = { path = "crates/vshell" }
vtty = { path = "crates/vtty" }
ab_glyph = "0.2.26"
winit = { version = "0.30.2", default-features = false, features = ["rwh_06"] }
anyhow = "1.0.44"
log = "0.4.13"
ash = { version = "0.38.0", features = ["linked"] }
ash-window = "0.13.0"
nalgebra = "*"
memoffset = "*"
thiserror = "1.0.29"
image = "0.25.1"
bitflags = "2.5.0"
fs_extra = "1.3.0"
libc = "0.2.155"
dirs = "5.0.1"
mio = "1.0.0"
signal-hook = "0.3.10"
iovec = "0.1.1"
[profile.release]
opt-level = "z"
lto = "thin"
debug = 1
codegen-units = 1
panic = "abort"
strip = true