-
-
Notifications
You must be signed in to change notification settings - Fork 343
Expand file tree
/
Copy pathCargo.toml
More file actions
111 lines (105 loc) · 3.17 KB
/
Copy pathCargo.toml
File metadata and controls
111 lines (105 loc) · 3.17 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
[workspace]
members = [
"sugarloaf",
"teletypewriter",
"corcovado",
"rio-graphics",
"rio-fonts",
"rio-vt",
"rio-backend",
"rio-grapheme-width",
"rio-unicode",
"rio-window",
"rio-notifier",
"rio-grid",
"frontends/rioterm",
"librio",
"librio-wasm",
"libsugarloaf",
]
resolver = "2"
[workspace.package]
version = "0.5.27"
authors = ["Raphael Amorim <rapha850@gmail.com>"]
edition = "2021"
license = "MIT"
keywords = ["graphics", "terminal", "application"]
rust-version = "1.96.1"
repository = "https://github.com/raphamorim/rio"
homepage = "https://rioterm.com"
documentation = "https://github.com/raphamorim/rio#readme"
readme = "README.md"
[workspace.dependencies]
teletypewriter = { path = "teletypewriter", version = "0.5.27" }
rio-backend = { path = "rio-backend", version = "0.5.27" }
rio-window = { path = "rio-window", version = "0.5.27", default-features = false }
rio-notifier = { path = "rio-notifier", version = "0.5.27" }
rio-grapheme-width = { path = "rio-grapheme-width", version = "0.5.27" }
sugarloaf = { path = "sugarloaf", version = "0.5.27" }
corcovado = { path = "corcovado", version = "0.5.27" }
rio-graphics = { path = "rio-graphics", version = "0.5.27" }
rio-fonts = { path = "rio-fonts", version = "0.5.27" }
rio-vt = { path = "rio-vt", version = "0.5.27" }
rio-grid = { path = "rio-grid", version = "0.5.27" }
rio-unicode = { path = "rio-unicode", version = "0.5.27" }
raw-window-handle = { version = "0.6.2", features = ["std"] }
parking_lot = { version = "0.12.5", features = [
"nightly",
"hardware-lock-elision",
] }
rustc-hash = "2.1.3"
smallvec = { version = "1.15.2", default-features = false }
simdutf = "0.7.0"
base64 = "0.23.0"
image_rs = { package = "image", version = "0.25.10", default-features = false, features = [
"gif",
"jpeg",
"ico",
"png",
"pnm",
"webp",
"bmp",
"tiff",
] }
regex = "1.12.3"
onig = { version = "6.5.3", default-features = false }
onig_sys = { version = "69.9.3", default-features = false }
bytemuck = { version = "1.25.2", features = ["derive"] }
serde = { version = "1.0.229", features = ["derive"] }
wgpu = "30.0.1"
libc = "0.2.189"
smol_str = "0.3.2"
futures = "0.3.31"
zbus = "4.4.0"
wasm-bindgen = "0.2.87"
wasm-bindgen-futures = "0.4.34"
wasm-bindgen-test = "0.3.42"
env_logger = "0.11.8"
console_log = "0.2.2"
bitflags = "2.9.0"
console_error_panic_hook = "0.1.7"
tracing = "0.1.41"
objc = { package = "objc-rs", version = "0.3.2" }
memmap2 = "0.9.11"
url = "2.5.4"
criterion = { version = "0.6.0", features = ["html_reports"] }
dashmap = "6.2.1"
flate2 = "1.1.9"
[profile.release]
strip = "symbols" # See split-debuginfo - allows us to drop the size by ~65%
debug = "full" # No one needs an undebuggable release binary
split-debuginfo = "packed" # generates a separate *.dwp/*.dSYM so the binary can get stripped
lto = true
panic = "abort" # reduces binary size by ~50% in combination with -Zbuild-std-features=panic_immediate_abort
codegen-units = 1
incremental = false
[profile.librio]
inherits = "release"
strip = "none"
debug = false
lto = false
[profile.dev]
split-debuginfo = "unpacked"
lto = false
opt-level = 0
incremental = true