-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp-run.log
More file actions
267 lines (256 loc) · 11 KB
/
app-run.log
File metadata and controls
267 lines (256 loc) · 11 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
warning: field `password` is never read
--> rusty-app/src/container/converter.rs:10:5
|
8 | struct ContainerCredentials {
| -------------------- field in this struct
9 | username: &'static str,
10 | password: &'static str,
| ^^^^^^^^
|
= note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
warning: hiding a lifetime that's elided elsewhere is confusing
--> rusty-app/src/components/mod.rs:131:13
|
131 | fn view(&self, theme: ThemeColors) -> Element<ComponentAction>;
| ^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
= note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
help: use `'_` for type paths
|
131 | fn view(&self, theme: ThemeColors) -> Element<'_, ComponentAction>;
| +++
warning: hiding a lifetime that's elided elsewhere is confusing
--> rusty-app/src/components/connection_form.rs:222:13
|
222 | fn view(&self, theme: ThemeColors) -> Element<ComponentAction> {
| ^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
222 | fn view(&self, theme: ThemeColors) -> Element<'_, ComponentAction> {
| +++
warning: hiding a lifetime that's elided elsewhere is confusing
--> rusty-app/src/components/editor.rs:148:13
|
148 | fn view(&self, theme: ThemeColors) -> Element<ComponentAction> {
| ^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
148 | fn view(&self, theme: ThemeColors) -> Element<'_, ComponentAction> {
| +++
warning: hiding a lifetime that's elided elsewhere is confusing
--> rusty-app/src/components/properties.rs:97:13
|
97 | fn view(&self, theme: ThemeColors) -> Element<ComponentAction> {
| ^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
97 | fn view(&self, theme: ThemeColors) -> Element<'_, ComponentAction> {
| +++
warning: hiding a lifetime that's elided elsewhere is confusing
--> rusty-app/src/components/server_list.rs:76:13
|
76 | fn view(&self, theme: ThemeColors) -> Element<ComponentAction> {
| ^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
76 | fn view(&self, theme: ThemeColors) -> Element<'_, ComponentAction> {
| +++
warning: hiding a lifetime that's elided elsewhere is confusing
--> rusty-app/src/components/table_list.rs:86:13
|
86 | fn view(&self, theme: ThemeColors) -> Element<ComponentAction> {
| ^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
86 | fn view(&self, theme: ThemeColors) -> Element<'_, ComponentAction> {
| +++
warning: hiding a lifetime that's elided elsewhere is confusing
--> rusty-app/src/query_editor.rs:67:17
|
67 | pub fn view(&self) -> Element<QueryEditorMessage> {
| ^^^^^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^ the same lifetime is hidden here
| |
| the lifetime is elided here
|
= help: the same lifetime is referred to in inconsistent ways, making the signature confusing
help: use `'_` for type paths
|
67 | pub fn view(&self) -> Element<'_, QueryEditorMessage> {
| +++
warning: `rusty-app` (lib) generated 8 warnings (run `cargo fix --lib -p rusty-app` to apply 7 suggestions)
warning: unused variable: `query_text`
--> rusty-app/src/main.rs:1806:13
|
1806 | let query_text = match self.main_panel.get_query_text(tab_id) {
| ^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_query_text`
|
= note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
warning: fields `config_manager` and `container_manager` are never read
--> rusty-app/src/main.rs:65:5
|
53 | struct DatabaseIDE {
| ----------- fields in this struct
...
65 | config_manager: ConfigManager,
| ^^^^^^^^^^^^^^
66 | container_manager: ContainerManager,
| ^^^^^^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
warning: variants `NewConnection`, `DisconnectFromDatabase`, `ReconnectToDatabase`, and `ShowSettings` are never constructed
--> rusty-app/src/main.rs:331:5
|
318 | enum Message {
| ------- variants in this enum
...
331 | NewConnection,
| ^^^^^^^^^^^^^
332 | ConnectToDatabase(ConnectionConfig, Option<String>), // config, password
333 | DisconnectFromDatabase(String), // connection ID
| ^^^^^^^^^^^^^^^^^^^^^^
334 | ReconnectToDatabase(String), // connection ID
| ^^^^^^^^^^^^^^^^^^^
...
339 | ShowSettings,
| ^^^^^^^^^^^^
|
= note: `Message` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
warning: `rusty-app` (bin "rusty-app") generated 3 warnings
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.17s
warning: the following packages contain code that will be rejected by a future version of Rust: sqlx-postgres v0.7.4
note: to see what the problems were, use the option `--future-incompat-report`, or run `cargo report future-incompatibilities --id 1`
Running `target/debug/rusty-app`
[2m2026-02-19T01:35:36.613879Z[0m [32m INFO[0m [2mrusty_app[0m[2m:[0m rusty-app starting [3mversion[0m[2m=[0m"0.0.1"
[2m2026-02-19T01:35:36.712154Z[0m [33m WARN[0m [2mcosmic_text::font::system[0m[2m:[0m failed to load font 'GB18030Bitmap'
[2m2026-02-19T01:35:36.712692Z[0m [33m WARN[0m [2mcosmic_text::font::system[0m[2m:[0m failed to load font 'GB18030Bitmap'
[2m2026-02-19T01:35:36.713089Z[0m [32m INFO[0m [2mrusty_app[0m[2m:[0m Loaded saved connections from settings [3mcount[0m[2m=[0m0
[2m2026-02-19T01:35:36.809755Z[0m [32m INFO[0m [2mrusty_app[0m[2m:[0m Found running containers [3mcount[0m[2m=[0m0
[2m2026-02-19T01:35:36.810334Z[0m [32m INFO[0m [2mrusty_app::settings[0m[2m:[0m Settings saved successfully
[2m2026-02-19T01:35:36.810357Z[0m [32m INFO[0m [2mrusty_app[0m[2m:[0m Synced connections with container state [3mcount[0m[2m=[0m0
[2m2026-02-19T01:35:36.859514Z[0m [32m INFO[0m [2miced_wgpu::window::compositor[0m[2m:[0m Settings {
present_mode: AutoVsync,
backends: Backends(
VULKAN | GL | METAL | DX12 | BROWSER_WEBGPU,
),
default_font: Font {
family: SansSerif,
weight: Normal,
stretch: Normal,
style: Normal,
},
default_text_size: Pixels(
16.0,
),
antialiasing: None,
}
[2m2026-02-19T01:35:36.859956Z[0m [32m INFO[0m [2mwgpu_core::instance[0m[2m:[0m Adapter Metal AdapterInfo { name: "Apple M4 Max", vendor: 0, device: 0, device_type: IntegratedGpu, driver: "", driver_info: "", backend: Metal }
[2m2026-02-19T01:35:36.860291Z[0m [32m INFO[0m [2miced_wgpu::window::compositor[0m[2m:[0m Available adapters: [
AdapterInfo {
name: "Apple M4 Max",
vendor: 0,
device: 0,
device_type: IntegratedGpu,
driver: "",
driver_info: "",
backend: Metal,
},
]
[2m2026-02-19T01:35:36.860932Z[0m [32m INFO[0m [2mwgpu_core::instance[0m[2m:[0m Adapter Metal AdapterInfo { name: "Apple M4 Max", vendor: 0, device: 0, device_type: IntegratedGpu, driver: "", driver_info: "", backend: Metal }
[2m2026-02-19T01:35:36.860993Z[0m [32m INFO[0m [2miced_wgpu::window::compositor[0m[2m:[0m Selected: AdapterInfo {
name: "Apple M4 Max",
vendor: 0,
device: 0,
device_type: IntegratedGpu,
driver: "",
driver_info: "",
backend: Metal,
}
[2m2026-02-19T01:35:36.861069Z[0m [32m INFO[0m [2miced_wgpu::window::compositor[0m[2m:[0m Available formats: Copied {
it: Iter(
[
Bgra8UnormSrgb,
Bgra8Unorm,
Rgba16Float,
Rgb10a2Unorm,
],
),
}
[2m2026-02-19T01:35:36.861090Z[0m [32m INFO[0m [2miced_wgpu::window::compositor[0m[2m:[0m Available alpha modes: [
Opaque,
PostMultiplied,
]
[2m2026-02-19T01:35:36.861117Z[0m [32m INFO[0m [2miced_wgpu::window::compositor[0m[2m:[0m Selected format: Bgra8UnormSrgb with alpha mode: PostMultiplied
[2m2026-02-19T01:35:36.885901Z[0m [32m INFO[0m [2miced_winit::program[0m[2m:[0m Window attributes for id `Id(
1,
)`: WindowAttributes {
inner_size: Some(
Logical(
LogicalSize {
width: 1280.0,
height: 800.0,
},
),
),
min_inner_size: None,
max_inner_size: None,
position: None,
resizable: true,
enabled_buttons: WindowButtons(
CLOSE | MINIMIZE | MAXIMIZE,
),
title: "rusty-app: the ide",
maximized: false,
visible: false,
transparent: false,
blur: false,
decorations: true,
window_icon: None,
preferred_theme: None,
resize_increments: None,
content_protected: false,
window_level: Normal,
active: true,
cursor: Icon(
Default,
),
parent_window: None,
fullscreen: None,
platform_specific: PlatformSpecificWindowAttributes {
movable_by_window_background: false,
titlebar_transparent: false,
title_hidden: false,
titlebar_hidden: false,
titlebar_buttons_hidden: false,
fullsize_content_view: false,
disallow_hidpi: false,
has_shadow: true,
accepts_first_mouse: true,
tabbing_identifier: None,
option_as_alt: None,
borderless_game: false,
},
}
Menu action: Tools(Preferences)