drop unused tracing and anyhow deps
shop-pty, shop-wayland and shop-render declared tracing without a single
call site, and shop-wayland also carried anyhow unused.
- Co-Authored-By
- Claude Opus 5 (1M context) <noreply@anthropic.com>
4 files changed,
+0 insertions,
-8 deletions
| 1158 |
1158 |
|
dependencies = [
|
| 1159 |
1159 |
|
"anyhow",
|
| 1160 |
1160 |
|
"nix",
|
| 1161 |
|
- |
"tracing",
|
| 1162 |
1161 |
|
]
|
| 1163 |
1162 |
|
|
| 1164 |
1163 |
|
[[package]]
|
| 1169 |
1168 |
|
"bytemuck",
|
| 1170 |
1169 |
|
"guillotiere",
|
| 1171 |
1170 |
|
"swash",
|
| 1172 |
|
- |
"tracing",
|
| 1173 |
1171 |
|
"wgpu",
|
| 1174 |
1172 |
|
]
|
| 1175 |
1173 |
|
|
| 1181 |
1179 |
|
name = "shop-wayland"
|
| 1182 |
1180 |
|
version = "0.0.0"
|
| 1183 |
1181 |
|
dependencies = [
|
| 1184 |
|
- |
"anyhow",
|
| 1185 |
1182 |
|
"raw-window-handle",
|
| 1186 |
1183 |
|
"smithay-client-toolkit",
|
| 1187 |
|
- |
"tracing",
|
| 1188 |
1184 |
|
"wayland-client",
|
| 1189 |
1185 |
|
]
|
| 1190 |
1186 |
|
|
| 15 |
15 |
|
[dependencies]
|
| 16 |
16 |
|
nix.workspace = true
|
| 17 |
17 |
|
anyhow.workspace = true
|
| 18 |
|
- |
tracing.workspace = true
|
| 18 |
18 |
|
guillotiere.workspace = true
|
| 19 |
19 |
|
bytemuck.workspace = true
|
| 20 |
20 |
|
anyhow.workspace = true
|
| 21 |
|
- |
tracing.workspace = true
|
| 16 |
16 |
|
smithay-client-toolkit.workspace = true
|
| 17 |
17 |
|
wayland-client.workspace = true
|
| 18 |
18 |
|
raw-window-handle.workspace = true
|
| 19 |
|
- |
anyhow.workspace = true
|
| 20 |
|
- |
tracing.workspace = true
|