├── .gitignore
├── resources.rc
├── assets
└── icon.ico
├── .cargo
└── config.toml
├── src
├── main.rs
├── app.rs
├── ui.rs
└── window_manager.rs
├── rustfmt.toml
├── Cargo.toml
├── .github
└── workflows
│ └── release.yml
├── README.md
├── LICENSE
└── Cargo.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | /target
2 |
--------------------------------------------------------------------------------
/resources.rc:
--------------------------------------------------------------------------------
1 | 1 ICON "assets/icon.ico"
2 |
--------------------------------------------------------------------------------
/assets/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Z1xus/ihateborders/HEAD/assets/icon.ico
--------------------------------------------------------------------------------
/.cargo/config.toml:
--------------------------------------------------------------------------------
1 | [build]
2 | rustflags = [
3 | "-C", "target-cpu=native",
4 | ]
5 |
6 | [target.x86_64-pc-windows-msvc]
7 | rustflags = [
8 | "-C", "target-cpu=native",
9 | ]
10 |
--------------------------------------------------------------------------------
/src/main.rs:
--------------------------------------------------------------------------------
1 | #![windows_subsystem = "windows"]
2 |
3 | mod app;
4 | mod ui;
5 | mod window_manager;
6 |
7 | use app::{BorderlessApp, create_app_options};
8 |
9 | fn main() -> Result<(), eframe::Error>
10 | {
11 | eframe::run_native(
12 | "ihateborders",
13 | create_app_options(),
14 | Box::new(|cc| Ok(Box::new(BorderlessApp::new(cc)))),
15 | )
16 | }
17 |
--------------------------------------------------------------------------------
/rustfmt.toml:
--------------------------------------------------------------------------------
1 | edition = "2024"
2 | use_small_heuristics = "Max"
3 | wrap_comments = true
4 | format_code_in_doc_comments = true
5 | normalize_doc_attributes = true
6 | imports_granularity = "Crate"
7 | group_imports = "One"
8 | reorder_impl_items = true
9 | format_macro_matchers = true
10 | format_macro_bodies = true
11 | match_block_trailing_comma = true
12 | unstable_features = true
13 | comment_width = 100
14 | hard_tabs = false
15 | newline_style = "Unix"
16 | brace_style = "AlwaysNextLine"
17 |
--------------------------------------------------------------------------------
/Cargo.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "ihateborders"
3 | version = "1.1.1"
4 | edition = "2024"
5 |
6 | [dependencies]
7 | eframe = { version = "0.32.1", default-features = false, features = [
8 | "default_fonts",
9 | "glow",
10 | ] }
11 | egui = { version = "0.32.1", default-features = false, features = [
12 | "default_fonts",
13 | ] }
14 | windows = { version = "0.61", features = [
15 | "Win32_Foundation",
16 | "Win32_UI_WindowsAndMessaging",
17 | "Win32_System_Diagnostics_ToolHelp",
18 | "Win32_Graphics_Gdi",
19 | "Win32_UI_Shell",
20 | ] }
21 | anyhow = { version = "1.0", default-features = false }
22 | image = { version = "0.25", default-features = false, features = ["ico", "png"] }
23 |
24 | [build-dependencies]
25 | embed-resource = { version = "3.0", default-features = false }
26 |
27 | [profile.release]
28 | opt-level = "z"
29 | lto = true
30 | codegen-units = 1
31 | panic = "abort"
32 | strip = true
33 |
34 | [profile.dev]
35 | opt-level = 1
36 |
--------------------------------------------------------------------------------
/.github/workflows/release.yml:
--------------------------------------------------------------------------------
1 | name: Release
2 |
3 | on:
4 | push:
5 | tags:
6 | - 'v*'
7 |
8 | permissions:
9 | contents: write
10 |
11 | jobs:
12 | release-windows:
13 | runs-on: windows-latest
14 | steps:
15 | - uses: actions/checkout@v4
16 |
17 | - uses: dtolnay/rust-toolchain@stable
18 |
19 | - uses: swatinem/rust-cache@v2
20 |
21 | - name: Build release
22 | run: cargo build --release --locked
23 |
24 | - name: UPX compress executable
25 | uses: crazy-max/ghaction-upx@v3
26 | with:
27 | files: |
28 | target/release/ihateborders.exe
29 | args: --best --lzma
30 |
31 | - name: Generate SHA256SUMS.txt
32 | run: |
33 | $exe = "target/release/ihateborders.exe"
34 | $hash = (Get-FileHash -Algorithm SHA256 $exe).Hash.ToLower()
35 | "$hash ihateborders.exe" | Out-File -Encoding ascii SHA256SUMS.txt
36 |
37 | - name: Create GitHub Release
38 | uses: softprops/action-gh-release@v2
39 | with:
40 | tag_name: ${{ github.ref_name }}
41 | files: |
42 | target/release/ihateborders.exe
43 | SHA256SUMS.txt
44 | draft: true
45 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## ihateborders
2 | 
3 | [](https://github.com/z1xus/ihateborders/releases)
4 | [](https://github.com/z1xus/ihateborders/issues)
5 | [](https://github.com/z1xus/ihateborders/pulls)
6 |
7 | A lightweight Windows utility that allows you to toggle window borders on/off for any application window, creating a borderless fullscreen experience.
8 |
9 | ### Why ihateborders?
10 | This project was created as a free and open-source alternative to [Borderless Gaming](https://github.com/Codeusa/Borderless-Gaming) by Codeusa, which became a paid application on Steam and had all free release binaries removed from GitHub.
11 |
12 | ### Usage
13 | 1. Download the latest release from the [Releases](https://github.com/z1xus/ihateborders/releases) page.
14 | 2. Run the executable.
15 | 3. Select a window from the dropdown list.
16 | 4. Optionally check "Resize to screen" to make the window fullscreen when removing borders.
17 | 5. Click "Make Borderless" or "Restore Borders" to toggle the window's border state.
18 |
19 | ### Interface
20 | - **[B]** indicates a borderless window
21 | - **[W]** indicates a windowed (with borders) window
22 | - Windows are automatically filtered to exclude system windows
23 | - The window list refreshes automatically every 5 seconds
24 |
25 | ### Keyboard Shortcuts
26 | - `F5`: Manually refresh the window list
27 |
28 | ### Building
29 | 1. Clone the repository
30 | ```bash
31 | git clone https://github.com/Z1xus/ihateborders
32 | ```
33 | 2. Build a release binary
34 | ```bash
35 | cargo build --release
36 | ```
37 | 3. The binary will be located in the `target/release` directory
38 |
39 | ### Requirements
40 | - Windows 10/11
41 | - Administrator privileges may be required for some applications
42 |
43 | ### License
44 | This project is licensed under the GPL-3.0 License - see the [LICENSE](LICENSE) file for details.
45 |
46 | ### Contributing
47 | Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
48 |
--------------------------------------------------------------------------------
/src/app.rs:
--------------------------------------------------------------------------------
1 | use crate::{
2 | ui::{self, IconCacheInterface},
3 | window_manager::{DisplayInfo, WindowManager},
4 | };
5 | use eframe::egui;
6 | use std::{
7 | collections::HashMap,
8 | sync::mpsc::Receiver,
9 | time::{Duration, Instant},
10 | };
11 |
12 | struct IconCache
13 | {
14 | cache: HashMap,
15 | max_size: usize,
16 | ttl: Duration,
17 | }
18 |
19 | impl IconCache
20 | {
21 | fn new() -> Self
22 | {
23 | Self { cache: HashMap::new(), max_size: 100, ttl: Duration::from_secs(300) }
24 | }
25 |
26 | fn cleanup_expired(&mut self)
27 | {
28 | let now = Instant::now();
29 | self.cache.retain(|_, (_, last_used)| now.duration_since(*last_used) < self.ttl);
30 | }
31 |
32 | fn remove_oldest(&mut self)
33 | {
34 | if let Some(oldest_key) = self
35 | .cache
36 | .iter()
37 | .min_by_key(|(_, (_, last_used))| *last_used)
38 | .map(|(key, _)| key.clone())
39 | {
40 | self.cache.remove(&oldest_key);
41 | }
42 | }
43 | }
44 |
45 | impl IconCacheInterface for IconCache
46 | {
47 | fn get(&mut self, key: &str) -> Option<&egui::TextureHandle>
48 | {
49 | let now = Instant::now();
50 | if let Some((_, last_used)) = self.cache.get(key) {
51 | if now.duration_since(*last_used) >= self.ttl {
52 | self.cache.remove(key);
53 | return None;
54 | }
55 | }
56 |
57 | if let Some((texture, last_used)) = self.cache.get_mut(key) {
58 | *last_used = now;
59 | Some(texture)
60 | } else {
61 | None
62 | }
63 | }
64 |
65 | fn insert(&mut self, key: String, texture: egui::TextureHandle)
66 | {
67 | self.cleanup_expired();
68 |
69 | if self.cache.len() >= self.max_size {
70 | self.remove_oldest();
71 | }
72 |
73 | self.cache.insert(key, (texture, Instant::now()));
74 | }
75 |
76 | fn contains_key(&self, key: &str) -> bool
77 | {
78 | if let Some((_, last_used)) = self.cache.get(key) {
79 | last_used.elapsed() < self.ttl
80 | } else {
81 | false
82 | }
83 | }
84 | }
85 |
86 | pub struct BorderlessApp
87 | {
88 | window_manager: WindowManager,
89 | selected_window: Option,
90 | last_refresh: std::time::Instant,
91 | icon_cache: IconCache,
92 | resize_to_screen: bool,
93 | selected_display: Option,
94 | displays: Vec,
95 | needs_repaint: bool,
96 | refresh_receiver: Option>>,
97 | }
98 |
99 | impl BorderlessApp
100 | {
101 | pub fn new(cc: &eframe::CreationContext<'_>) -> Self
102 | {
103 | ui::setup_dark_theme(&cc.egui_ctx);
104 |
105 | let window_manager = WindowManager::new();
106 | let displays = window_manager.get_displays();
107 |
108 | let mut app = Self {
109 | window_manager,
110 | selected_window: None,
111 | last_refresh: std::time::Instant::now(),
112 | icon_cache: IconCache::new(),
113 | resize_to_screen: true,
114 | selected_display: if !displays.is_empty() { Some(0) } else { None },
115 | displays,
116 | needs_repaint: false,
117 | refresh_receiver: None,
118 | };
119 |
120 | app.start_async_refresh();
121 |
122 | app
123 | }
124 |
125 | fn start_async_refresh(&mut self)
126 | {
127 | if self.refresh_receiver.is_none() && !self.window_manager.is_refresh_in_progress() {
128 | let receiver = self.window_manager.refresh_windows_async();
129 | self.refresh_receiver = Some(receiver);
130 | }
131 | }
132 |
133 | fn handle_refresh(&mut self)
134 | {
135 | if let Some(receiver) = &self.refresh_receiver {
136 | if let Ok(windows) = receiver.try_recv() {
137 | if !windows.is_empty() {
138 | self.window_manager.set_windows(windows);
139 | self.last_refresh = std::time::Instant::now();
140 | self.needs_repaint = true;
141 |
142 | if let Some(selected) = self.selected_window {
143 | if selected >= self.window_manager.get_windows().len() {
144 | self.selected_window = None;
145 | }
146 | }
147 | }
148 | self.refresh_receiver = None;
149 | }
150 | }
151 |
152 | let should_refresh = self.last_refresh.elapsed().as_secs() >= 5;
153 | if should_refresh && self.refresh_receiver.is_none() {
154 | self.start_async_refresh();
155 | }
156 | }
157 |
158 | fn handle_keyboard_input(&mut self, ctx: &egui::Context)
159 | {
160 | if ctx.input(|i| i.key_pressed(egui::Key::F5)) {
161 | self.refresh_receiver = None;
162 | self.start_async_refresh();
163 | self.needs_repaint = true;
164 | }
165 |
166 | if ctx.input(|i| i.key_pressed(egui::Key::Escape)) {
167 | self.selected_window = None;
168 | self.needs_repaint = true;
169 | }
170 | }
171 |
172 | fn handle_window_action(&mut self, window_index: usize)
173 | {
174 | let windows = self.window_manager.get_windows();
175 | if let Some(window) = windows.get(window_index) {
176 | let selected_display = if self.resize_to_screen {
177 | self.selected_display.and_then(|idx| self.displays.get(idx))
178 | } else {
179 | None
180 | };
181 |
182 | if let Err(e) = self.window_manager.toggle_borderless(
183 | window.hwnd,
184 | self.resize_to_screen,
185 | selected_display,
186 | ) {
187 | eprintln!("Failed to toggle borderless for window '{}': {}", window.title, e);
188 | } else {
189 | self.refresh_receiver = None;
190 | self.start_async_refresh();
191 | self.needs_repaint = true;
192 | }
193 | }
194 | }
195 | }
196 |
197 | impl eframe::App for BorderlessApp
198 | {
199 | fn update(&mut self, ctx: &egui::Context, _frame: &mut eframe::Frame)
200 | {
201 | self.handle_refresh();
202 | self.handle_keyboard_input(ctx);
203 |
204 | self.icon_cache.cleanup_expired();
205 |
206 | egui::CentralPanel::default().show(ctx, |ui| {
207 | let windows = self.window_manager.get_windows();
208 |
209 | ui::render_header(ui, windows.len());
210 |
211 | ui::render_window_selector(
212 | ui,
213 | windows,
214 | &mut self.selected_window,
215 | &mut self.icon_cache,
216 | );
217 |
218 | ui::render_position_checkbox(ui, &mut self.resize_to_screen);
219 |
220 | if self.resize_to_screen {
221 | ui::render_display_selector(ui, &self.displays, &mut self.selected_display);
222 | }
223 |
224 | if let Some(window_index) = ui::render_action_button(ui, windows, self.selected_window)
225 | {
226 | self.handle_window_action(window_index);
227 | }
228 | });
229 |
230 | if self.needs_repaint {
231 | self.needs_repaint = false;
232 | ctx.request_repaint_after(Duration::from_millis(16));
233 | } else {
234 | ctx.request_repaint_after(Duration::from_secs(5));
235 | }
236 | }
237 | }
238 |
239 | pub fn create_app_options() -> eframe::NativeOptions
240 | {
241 | let icon_data = load_icon();
242 |
243 | eframe::NativeOptions {
244 | viewport: egui::ViewportBuilder::default()
245 | .with_title("ihateborders")
246 | .with_inner_size([350.0, 320.0])
247 | .with_min_inner_size([350.0, 320.0])
248 | .with_max_inner_size([350.0, 320.0])
249 | .with_resizable(false)
250 | .with_maximize_button(false)
251 | .with_icon(icon_data),
252 | ..Default::default()
253 | }
254 | }
255 |
256 | fn load_icon() -> egui::IconData
257 | {
258 | let icon_bytes = include_bytes!("../assets/icon.ico");
259 |
260 | let image = image::load_from_memory(icon_bytes).expect("Failed to load icon").into_rgba8();
261 |
262 | let (width, height) = image.dimensions();
263 | let rgba = image.into_raw();
264 |
265 | egui::IconData { rgba, width: width as u32, height: height as u32 }
266 | }
267 |
--------------------------------------------------------------------------------
/src/ui.rs:
--------------------------------------------------------------------------------
1 | use crate::window_manager::{DisplayInfo, WindowInfo};
2 | use egui::{
3 | Align, Align2, Color32, ColorImage, FontId, Layout, RichText, Sense, Stroke, Style, Visuals,
4 | };
5 |
6 | pub trait IconCacheInterface
7 | {
8 | fn get(&mut self, key: &str) -> Option<&egui::TextureHandle>;
9 | fn insert(&mut self, key: String, texture: egui::TextureHandle);
10 | fn contains_key(&self, key: &str) -> bool;
11 | }
12 |
13 | pub fn setup_dark_theme(ctx: &egui::Context)
14 | {
15 | let mut style = Style::default();
16 |
17 | style.visuals = Visuals {
18 | dark_mode: true,
19 | override_text_color: Some(Color32::from_rgb(230, 224, 233)),
20 | widgets: egui::style::Widgets {
21 | noninteractive: egui::style::WidgetVisuals {
22 | bg_fill: Color32::from_rgb(28, 27, 31),
23 | weak_bg_fill: Color32::from_rgb(16, 16, 20),
24 | bg_stroke: Stroke::new(1.0, Color32::from_rgb(73, 69, 79)),
25 | fg_stroke: Stroke::new(1.0, Color32::from_rgb(202, 196, 208)),
26 | corner_radius: egui::CornerRadius::same(4),
27 | expansion: 0.0,
28 | },
29 | inactive: egui::style::WidgetVisuals {
30 | bg_fill: Color32::from_rgb(73, 69, 79),
31 | weak_bg_fill: Color32::from_rgb(28, 27, 31),
32 | bg_stroke: Stroke::new(1.0, Color32::from_rgb(147, 143, 153)),
33 | fg_stroke: Stroke::new(1.0, Color32::from_rgb(202, 196, 208)),
34 | corner_radius: egui::CornerRadius::same(4),
35 | expansion: 0.0,
36 | },
37 | hovered: egui::style::WidgetVisuals {
38 | bg_fill: Color32::from_rgb(103, 80, 164),
39 | weak_bg_fill: Color32::from_rgb(73, 69, 79),
40 | bg_stroke: Stroke::new(1.0, Color32::from_rgb(103, 80, 164)),
41 | fg_stroke: Stroke::new(1.0, Color32::from_rgb(230, 224, 233)),
42 | corner_radius: egui::CornerRadius::same(4),
43 | expansion: 1.0,
44 | },
45 | active: egui::style::WidgetVisuals {
46 | bg_fill: Color32::from_rgb(79, 55, 139),
47 | weak_bg_fill: Color32::from_rgb(73, 69, 79),
48 | bg_stroke: Stroke::new(1.0, Color32::from_rgb(79, 55, 139)),
49 | fg_stroke: Stroke::new(1.0, Color32::from_rgb(230, 224, 233)),
50 | corner_radius: egui::CornerRadius::same(4),
51 | expansion: 1.0,
52 | },
53 | open: egui::style::WidgetVisuals {
54 | bg_fill: Color32::from_rgb(73, 69, 79),
55 | weak_bg_fill: Color32::from_rgb(28, 27, 31),
56 | bg_stroke: Stroke::new(1.0, Color32::from_rgb(147, 143, 153)),
57 | fg_stroke: Stroke::new(1.0, Color32::from_rgb(202, 196, 208)),
58 | corner_radius: egui::CornerRadius::same(4),
59 | expansion: 0.0,
60 | },
61 | },
62 | selection: egui::style::Selection {
63 | bg_fill: Color32::from_rgb(79, 55, 139),
64 | stroke: Stroke::new(1.0, Color32::from_rgb(103, 80, 164)),
65 | },
66 | window_fill: Color32::from_rgb(16, 16, 20),
67 | panel_fill: Color32::from_rgb(16, 16, 20),
68 | ..Default::default()
69 | };
70 |
71 | ctx.set_style(style);
72 | }
73 |
74 | pub fn render_header(ui: &mut egui::Ui, window_count: usize)
75 | {
76 | ui.add_space(10.0);
77 |
78 | ui.with_layout(Layout::top_down(Align::Center), |ui| {
79 | ui.label(
80 | RichText::new("ihateborders")
81 | .font(FontId::proportional(20.0))
82 | .color(Color32::from_gray(240)),
83 | );
84 |
85 | ui.add_space(15.0);
86 |
87 | let counter_text = if window_count == 1 {
88 | format!("{} window found", window_count)
89 | } else {
90 | format!("{} windows found", window_count)
91 | };
92 |
93 | ui.label(
94 | RichText::new(counter_text)
95 | .font(FontId::proportional(12.0))
96 | .color(Color32::from_gray(180)),
97 | );
98 | });
99 |
100 | ui.add_space(10.0);
101 | }
102 |
103 | pub fn render_window_selector(
104 | ui: &mut egui::Ui,
105 | windows: &[WindowInfo],
106 | selected_window: &mut Option,
107 | icon_cache: &mut dyn IconCacheInterface,
108 | )
109 | {
110 | ui.horizontal(|ui| {
111 | ui.label(
112 | RichText::new("Select Window:")
113 | .font(FontId::proportional(13.0))
114 | .color(Color32::from_gray(200)),
115 | );
116 | });
117 |
118 | ui.add_space(5.0);
119 |
120 | let selected_text = if let Some(index) = selected_window {
121 | if let Some(window) = windows.get(*index) {
122 | window.display_text()
123 | } else {
124 | "Select a window...".to_string()
125 | }
126 | } else {
127 | "Select a window...".to_string()
128 | };
129 |
130 | egui::ComboBox::from_id_salt("window_selector")
131 | .selected_text(selected_text)
132 | .width(ui.available_width())
133 | .height(150.0)
134 | .show_ui(ui, |ui| {
135 | ui.style_mut().wrap_mode = Some(egui::TextWrapMode::Extend);
136 |
137 | for (index, window) in windows.iter().enumerate() {
138 | ui.horizontal(|ui| {
139 | ui.set_min_width(ui.available_width());
140 | if let Some(icon_data) = &window.icon_data {
141 | let cache_key = format!("icon_{}", window.hwnd);
142 |
143 | if !icon_cache.contains_key(&cache_key) {
144 | let color_image =
145 | ColorImage::from_rgba_unmultiplied([16, 16], icon_data);
146 | let texture = ui.ctx().load_texture(
147 | &cache_key,
148 | color_image,
149 | egui::TextureOptions::LINEAR,
150 | );
151 | icon_cache.insert(cache_key.clone(), texture);
152 | }
153 |
154 | if let Some(texture) = icon_cache.get(&cache_key) {
155 | ui.image((texture.id(), egui::vec2(16.0, 16.0)));
156 | }
157 | } else {
158 | let (rect, _response) =
159 | ui.allocate_exact_size(egui::vec2(16.0, 16.0), Sense::hover());
160 |
161 | let status_icon = "○";
162 | let status_color = if window.is_borderless {
163 | Color32::from_rgb(100, 200, 100)
164 | } else {
165 | Color32::from_rgb(180, 180, 180)
166 | };
167 |
168 | ui.painter().text(
169 | rect.center(),
170 | Align2::CENTER_CENTER,
171 | status_icon,
172 | FontId::proportional(12.0),
173 | status_color,
174 | );
175 | }
176 |
177 | let status_text = if window.is_borderless { "[B]" } else { "[W]" };
178 | let status_color = if window.is_borderless {
179 | Color32::from_rgb(100, 200, 100)
180 | } else {
181 | Color32::from_rgb(150, 150, 150)
182 | };
183 |
184 | ui.label(
185 | RichText::new(status_text)
186 | .color(status_color)
187 | .font(FontId::proportional(10.0)),
188 | );
189 |
190 | ui.allocate_ui_with_layout(
191 | egui::vec2(ui.available_width(), ui.spacing().interact_size.y),
192 | Layout::left_to_right(Align::Center),
193 | |ui| {
194 | let response = ui.selectable_label(
195 | *selected_window == Some(index),
196 | window.display_text(),
197 | );
198 | if response.clicked() {
199 | *selected_window = Some(index);
200 | }
201 | },
202 | );
203 | });
204 | }
205 | });
206 | }
207 |
208 | pub fn render_position_checkbox(ui: &mut egui::Ui, resize_to_screen: &mut bool)
209 | {
210 | ui.add_space(10.0);
211 |
212 | ui.horizontal(|ui| {
213 | ui.add_space(5.0);
214 |
215 | let checkbox = egui::Checkbox::new(resize_to_screen, "");
216 |
217 | ui.add(checkbox);
218 |
219 | ui.label(
220 | RichText::new("Resize to screen")
221 | .font(FontId::proportional(12.0))
222 | .color(Color32::from_gray(180)),
223 | );
224 | });
225 | }
226 |
227 | pub fn render_display_selector(
228 | ui: &mut egui::Ui,
229 | displays: &[DisplayInfo],
230 | selected_display: &mut Option,
231 | )
232 | {
233 | ui.add_space(5.0);
234 |
235 | ui.horizontal(|ui| {
236 | ui.add_space(5.0);
237 |
238 | ui.label(
239 | RichText::new("Display:")
240 | .font(FontId::proportional(12.0))
241 | .color(Color32::from_gray(180)),
242 | );
243 | });
244 |
245 | ui.add_space(3.0);
246 |
247 | let selected_text = if let Some(index) = selected_display {
248 | if let Some(display) = displays.get(*index) {
249 | display.display_text()
250 | } else {
251 | "Select a display...".to_string()
252 | }
253 | } else {
254 | "Select a display...".to_string()
255 | };
256 |
257 | ui.horizontal(|ui| {
258 | ui.add_space(5.0);
259 |
260 | egui::ComboBox::from_id_salt("display_selector")
261 | .selected_text(selected_text)
262 | .width(ui.available_width() - 10.0)
263 | .show_ui(ui, |ui| {
264 | for (index, display) in displays.iter().enumerate() {
265 | let response = ui
266 | .selectable_label(*selected_display == Some(index), display.display_text());
267 | if response.clicked() {
268 | *selected_display = Some(index);
269 | }
270 | }
271 | });
272 | });
273 | }
274 |
275 | pub fn render_action_button(
276 | ui: &mut egui::Ui,
277 | windows: &[WindowInfo],
278 | selected_window: Option,
279 | ) -> Option
280 | {
281 | ui.add_space(15.0);
282 |
283 | let mut clicked_window = None;
284 |
285 | let button_enabled = selected_window.is_some();
286 | let button_text = if let Some(index) = selected_window {
287 | if let Some(window) = windows.get(index) {
288 | if window.is_borderless { "Restore Borders" } else { "Make Borderless" }
289 | } else {
290 | "Make Borderless"
291 | }
292 | } else {
293 | "Make Borderless"
294 | };
295 |
296 | ui.with_layout(Layout::top_down(Align::Center), |ui| {
297 | ui.add_enabled_ui(button_enabled, |ui| {
298 | let button = egui::Button::new(
299 | RichText::new(button_text).font(FontId::proportional(14.0)).color(
300 | if button_enabled { Color32::from_gray(255) } else { Color32::from_gray(120) },
301 | ),
302 | )
303 | .min_size(egui::vec2(180.0, 35.0));
304 |
305 | if ui.add(button).clicked() && button_enabled {
306 | clicked_window = selected_window;
307 | }
308 | });
309 | });
310 |
311 | clicked_window
312 | }
313 |
--------------------------------------------------------------------------------
/src/window_manager.rs:
--------------------------------------------------------------------------------
1 | use std::sync::{Arc, Mutex};
2 | use windows::Win32::{
3 | Foundation::{HWND, LPARAM, RECT},
4 | Graphics::Gdi::{
5 | BI_RGB, BITMAPINFO, BITMAPINFOHEADER, CreateCompatibleBitmap, CreateCompatibleDC,
6 | DIB_RGB_COLORS, DeleteDC, DeleteObject, EnumDisplayMonitors, GetDC, GetDIBits,
7 | GetMonitorInfoW, HBITMAP, HDC, HGDIOBJ, HMONITOR, MONITORINFO, ReleaseDC, SelectObject,
8 | },
9 | System::Diagnostics::ToolHelp::{
10 | CreateToolhelp32Snapshot, PROCESSENTRY32W, Process32FirstW, Process32NextW,
11 | TH32CS_SNAPPROCESS,
12 | },
13 | UI::WindowsAndMessaging::{
14 | DrawIconEx, EnumWindows, GCLP_HICON, GWL_STYLE, GetClassLongPtrW, GetSystemMetrics,
15 | GetWindowLongW, GetWindowTextW, GetWindowThreadProcessId, HWND_TOP, ICON_SMALL,
16 | IsWindowVisible, SM_CXSCREEN, SM_CYSCREEN, SWP_FRAMECHANGED, SWP_NOMOVE, SWP_NOSIZE,
17 | SWP_NOZORDER, SendMessageW, SetWindowLongW, SetWindowPos, WM_GETICON, WS_BORDER,
18 | WS_CAPTION, WS_DLGFRAME, WS_THICKFRAME,
19 | },
20 | };
21 |
22 | #[derive(Debug, Clone)]
23 | pub struct WindowInfo
24 | {
25 | pub hwnd: isize,
26 | pub title: String,
27 | pub process_name: String,
28 | pub is_borderless: bool,
29 | pub icon_data: Option>,
30 | }
31 |
32 | #[derive(Debug, Clone)]
33 | pub struct DisplayInfo
34 | {
35 | pub name: String,
36 | pub x: i32,
37 | pub y: i32,
38 | pub width: i32,
39 | pub height: i32,
40 | pub is_primary: bool,
41 | }
42 |
43 | impl WindowInfo
44 | {
45 | pub fn display_text(&self) -> String
46 | {
47 | let max_title_len = 30;
48 | let max_process_len = 15;
49 |
50 | let truncated_title = if self.title.chars().count() > max_title_len {
51 | let truncated: String = self.title.chars().take(max_title_len - 3).collect();
52 | format!("{}...", truncated)
53 | } else {
54 | self.title.clone()
55 | };
56 |
57 | let truncated_process = if self.process_name.chars().count() > max_process_len {
58 | let truncated: String = self.process_name.chars().take(max_process_len - 3).collect();
59 | format!("{}...", truncated)
60 | } else {
61 | self.process_name.clone()
62 | };
63 |
64 | format!("{} ({})", truncated_title, truncated_process)
65 | }
66 | }
67 |
68 | impl DisplayInfo
69 | {
70 | pub fn display_text(&self) -> String
71 | {
72 | let primary_indicator = if self.is_primary { " (Primary)" } else { "" };
73 | format!("{} - {}x{}{}", self.name, self.width, self.height, primary_indicator)
74 | }
75 | }
76 |
77 | pub struct WindowManager
78 | {
79 | windows: Vec,
80 | refresh_in_progress: Arc>,
81 | }
82 |
83 | impl WindowManager
84 | {
85 | pub fn new() -> Self
86 | {
87 | Self { windows: Vec::new(), refresh_in_progress: Arc::new(Mutex::new(false)) }
88 | }
89 |
90 | pub fn refresh_windows_async(&self) -> std::sync::mpsc::Receiver>
91 | {
92 | let (sender, receiver) = std::sync::mpsc::channel();
93 | let refresh_flag = Arc::clone(&self.refresh_in_progress);
94 |
95 | std::thread::spawn(move || {
96 | {
97 | let mut in_progress = refresh_flag.lock().unwrap();
98 | if *in_progress {
99 | let _ = sender.send(Vec::new());
100 | return;
101 | }
102 | *in_progress = true;
103 | }
104 |
105 | let mut windows = Vec::new();
106 |
107 | unsafe {
108 | if EnumWindows(
109 | Some(enum_windows_proc),
110 | LPARAM(&mut windows as *mut Vec as isize),
111 | )
112 | .is_ok()
113 | {
114 | windows.sort_by(|a: &WindowInfo, b: &WindowInfo| a.title.cmp(&b.title));
115 | }
116 | }
117 |
118 | *refresh_flag.lock().unwrap() = false;
119 |
120 | let _ = sender.send(windows);
121 | });
122 |
123 | receiver
124 | }
125 |
126 | pub fn get_windows(&self) -> &[WindowInfo]
127 | {
128 | &self.windows
129 | }
130 |
131 | pub fn set_windows(&mut self, windows: Vec)
132 | {
133 | self.windows = windows;
134 | }
135 |
136 | pub fn get_displays(&self) -> Vec
137 | {
138 | let mut displays = Vec::new();
139 |
140 | unsafe {
141 | let _ = EnumDisplayMonitors(
142 | Some(HDC::default()),
143 | None,
144 | Some(enum_monitors_proc),
145 | LPARAM(&mut displays as *mut Vec as isize),
146 | );
147 | }
148 |
149 | displays.sort_by(|a: &DisplayInfo, b: &DisplayInfo| {
150 | if a.is_primary && !b.is_primary {
151 | std::cmp::Ordering::Less
152 | } else if !a.is_primary && b.is_primary {
153 | std::cmp::Ordering::Greater
154 | } else {
155 | a.name.cmp(&b.name)
156 | }
157 | });
158 |
159 | displays
160 | }
161 |
162 | pub fn toggle_borderless(
163 | &self,
164 | hwnd: isize,
165 | resize_to_screen: bool,
166 | selected_display: Option<&DisplayInfo>,
167 | ) -> anyhow::Result<()>
168 | {
169 | let hwnd = HWND(hwnd as *mut std::ffi::c_void);
170 |
171 | unsafe {
172 | let current_style = GetWindowLongW(hwnd, GWL_STYLE) as u32;
173 |
174 | let border_styles = WS_BORDER.0 | WS_CAPTION.0 | WS_THICKFRAME.0 | WS_DLGFRAME.0;
175 |
176 | let new_style = if (current_style & border_styles) != 0 {
177 | current_style & !border_styles
178 | } else {
179 | current_style | WS_CAPTION.0 | WS_THICKFRAME.0
180 | };
181 |
182 | SetWindowLongW(hwnd, GWL_STYLE, new_style as i32);
183 |
184 | if resize_to_screen && (current_style & border_styles) != 0 {
185 | let (x, y, width, height) = if let Some(display) = selected_display {
186 | (display.x, display.y, display.width, display.height)
187 | } else {
188 | let screen_width = GetSystemMetrics(SM_CXSCREEN);
189 | let screen_height = GetSystemMetrics(SM_CYSCREEN);
190 | (0, 0, screen_width, screen_height)
191 | };
192 |
193 | SetWindowPos(
194 | hwnd,
195 | Some(HWND_TOP),
196 | x,
197 | y,
198 | width,
199 | height,
200 | SWP_FRAMECHANGED | SWP_NOZORDER,
201 | )?;
202 | } else {
203 | SetWindowPos(
204 | hwnd,
205 | Some(HWND_TOP),
206 | 0,
207 | 0,
208 | 0,
209 | 0,
210 | SWP_FRAMECHANGED | SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER,
211 | )?;
212 | }
213 | }
214 |
215 | Ok(())
216 | }
217 |
218 | pub fn is_refresh_in_progress(&self) -> bool
219 | {
220 | *self.refresh_in_progress.lock().unwrap()
221 | }
222 | }
223 |
224 | unsafe extern "system" fn enum_windows_proc(hwnd: HWND, lparam: LPARAM) -> windows::core::BOOL
225 | {
226 | unsafe {
227 | let windows = &mut *(lparam.0 as *mut Vec);
228 |
229 | if !IsWindowVisible(hwnd).as_bool() {
230 | return true.into();
231 | }
232 |
233 | let mut title_buffer = [0u16; 256];
234 | let title_len = GetWindowTextW(hwnd, &mut title_buffer);
235 | if title_len == 0 {
236 | return true.into();
237 | }
238 |
239 | let title = String::from_utf16_lossy(&title_buffer[..title_len as usize]);
240 |
241 | if title.trim().is_empty()
242 | || title.starts_with("Program Manager")
243 | || title == "ihateborders"
244 | {
245 | return true.into();
246 | }
247 |
248 | let mut process_id = 0u32;
249 | GetWindowThreadProcessId(hwnd, Some(&mut process_id));
250 |
251 | let process_name = get_process_name(process_id).unwrap_or_else(|| "Unknown".to_string());
252 |
253 | if process_name.to_lowercase() == "ihateborders" {
254 | return true.into();
255 | }
256 |
257 | let current_style = GetWindowLongW(hwnd, GWL_STYLE) as u32;
258 | let border_styles = WS_BORDER.0 | WS_CAPTION.0 | WS_THICKFRAME.0 | WS_DLGFRAME.0;
259 | let is_borderless = (current_style & border_styles) == 0;
260 |
261 | let icon_data = extract_window_icon(hwnd);
262 |
263 | windows.push(WindowInfo {
264 | hwnd: hwnd.0 as isize,
265 | title,
266 | process_name,
267 | is_borderless,
268 | icon_data,
269 | });
270 |
271 | true.into()
272 | }
273 | }
274 |
275 | fn get_process_name(process_id: u32) -> Option
276 | {
277 | unsafe {
278 | let snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0).ok()?;
279 |
280 | let mut entry = PROCESSENTRY32W {
281 | dwSize: std::mem::size_of::() as u32,
282 | ..Default::default()
283 | };
284 |
285 | if Process32FirstW(snapshot, &mut entry).is_ok() {
286 | loop {
287 | if entry.th32ProcessID == process_id {
288 | let name = String::from_utf16_lossy(&entry.szExeFile);
289 | let name = name.trim_end_matches('\0');
290 | if let Some(pos) = name.rfind('.') {
291 | return Some(name[..pos].to_string());
292 | }
293 | return Some(name.to_string());
294 | }
295 |
296 | if Process32NextW(snapshot, &mut entry).is_err() {
297 | break;
298 | }
299 | }
300 | }
301 | }
302 |
303 | None
304 | }
305 |
306 | unsafe extern "system" fn enum_monitors_proc(
307 | hmonitor: HMONITOR,
308 | _hdc: HDC,
309 | _rect: *mut RECT,
310 | lparam: LPARAM,
311 | ) -> windows::core::BOOL
312 | {
313 | unsafe {
314 | let displays_ptr = lparam.0 as *mut Vec;
315 | let displays = &mut *displays_ptr;
316 |
317 | let mut monitor_info =
318 | MONITORINFO { cbSize: std::mem::size_of::() as u32, ..Default::default() };
319 |
320 | if GetMonitorInfoW(hmonitor, &mut monitor_info).as_bool() {
321 | let width = monitor_info.rcMonitor.right - monitor_info.rcMonitor.left;
322 | let height = monitor_info.rcMonitor.bottom - monitor_info.rcMonitor.top;
323 | let is_primary = monitor_info.dwFlags == 1;
324 |
325 | let name = format!("Display {}", displays.len() + 1);
326 |
327 | displays.push(DisplayInfo {
328 | name,
329 | x: monitor_info.rcMonitor.left,
330 | y: monitor_info.rcMonitor.top,
331 | width,
332 | height,
333 | is_primary,
334 | });
335 | }
336 |
337 | true.into()
338 | }
339 | }
340 |
341 | struct GdiResources
342 | {
343 | hdc_screen: HDC,
344 | hdc_mem: HDC,
345 | hbitmap: HBITMAP,
346 | old_bitmap: HGDIOBJ,
347 | }
348 |
349 | impl GdiResources
350 | {
351 | fn new(size: i32) -> Option
352 | {
353 | unsafe {
354 | let hdc_screen = GetDC(Some(HWND::default()));
355 | if hdc_screen.is_invalid() {
356 | return None;
357 | }
358 |
359 | let hdc_mem = CreateCompatibleDC(Some(hdc_screen));
360 | if hdc_mem.is_invalid() {
361 | ReleaseDC(Some(HWND::default()), hdc_screen);
362 | return None;
363 | }
364 |
365 | let hbitmap = CreateCompatibleBitmap(hdc_screen, size, size);
366 | if hbitmap.is_invalid() {
367 | let _ = DeleteDC(hdc_mem);
368 | ReleaseDC(Some(HWND::default()), hdc_screen);
369 | return None;
370 | }
371 |
372 | let old_bitmap = SelectObject(hdc_mem, hbitmap.into());
373 |
374 | Some(Self { hdc_screen, hdc_mem, hbitmap, old_bitmap })
375 | }
376 | }
377 |
378 | fn draw_icon(
379 | &self,
380 | icon_handle: windows::Win32::UI::WindowsAndMessaging::HICON,
381 | size: i32,
382 | ) -> windows::core::Result<()>
383 | {
384 | unsafe {
385 | DrawIconEx(
386 | self.hdc_mem,
387 | 0,
388 | 0,
389 | icon_handle,
390 | size,
391 | size,
392 | 0,
393 | Some(windows::Win32::Graphics::Gdi::HBRUSH::default()),
394 | windows::Win32::UI::WindowsAndMessaging::DI_NORMAL,
395 | )
396 | }
397 | }
398 |
399 | fn get_bitmap_data(&self, size: i32) -> Option>
400 | {
401 | unsafe {
402 | let mut bmi = BITMAPINFO {
403 | bmiHeader: BITMAPINFOHEADER {
404 | biSize: std::mem::size_of::() as u32,
405 | biWidth: size,
406 | biHeight: -size,
407 | biPlanes: 1,
408 | biBitCount: 32,
409 | biCompression: BI_RGB.0,
410 | biSizeImage: 0,
411 | biXPelsPerMeter: 0,
412 | biYPelsPerMeter: 0,
413 | biClrUsed: 0,
414 | biClrImportant: 0,
415 | },
416 | bmiColors: [windows::Win32::Graphics::Gdi::RGBQUAD::default(); 1],
417 | };
418 |
419 | let mut rgba_data = vec![0u8; (size * size * 4) as usize];
420 | let result = GetDIBits(
421 | self.hdc_mem,
422 | self.hbitmap,
423 | 0,
424 | size as u32,
425 | Some(rgba_data.as_mut_ptr() as *mut _),
426 | &mut bmi,
427 | DIB_RGB_COLORS,
428 | );
429 |
430 | if result == 0 {
431 | return None;
432 | }
433 |
434 | for chunk in rgba_data.chunks_exact_mut(4) {
435 | chunk.swap(0, 2);
436 | }
437 |
438 | Some(rgba_data)
439 | }
440 | }
441 | }
442 |
443 | impl Drop for GdiResources
444 | {
445 | fn drop(&mut self)
446 | {
447 | unsafe {
448 | SelectObject(self.hdc_mem, self.old_bitmap);
449 | let _ = DeleteObject(self.hbitmap.into());
450 | let _ = DeleteDC(self.hdc_mem);
451 | ReleaseDC(Some(HWND::default()), self.hdc_screen);
452 | }
453 | }
454 | }
455 |
456 | fn extract_window_icon(hwnd: HWND) -> Option>
457 | {
458 | unsafe {
459 | let icon = SendMessageW(
460 | hwnd,
461 | WM_GETICON,
462 | Some(windows::Win32::Foundation::WPARAM(ICON_SMALL as usize)),
463 | Some(windows::Win32::Foundation::LPARAM(0)),
464 | );
465 |
466 | let icon_handle = if icon.0 != 0 {
467 | windows::Win32::UI::WindowsAndMessaging::HICON(icon.0 as *mut std::ffi::c_void)
468 | } else {
469 | let class_icon = GetClassLongPtrW(hwnd, GCLP_HICON);
470 | if class_icon != 0 {
471 | windows::Win32::UI::WindowsAndMessaging::HICON(class_icon as *mut std::ffi::c_void)
472 | } else {
473 | return None;
474 | }
475 | };
476 |
477 | let size = 16;
478 |
479 | let gdi_resources = GdiResources::new(size)?;
480 |
481 | if gdi_resources.draw_icon(icon_handle, size).is_err() {
482 | return None;
483 | }
484 |
485 | gdi_resources.get_bitmap_data(size)
486 | }
487 | }
488 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/Cargo.lock:
--------------------------------------------------------------------------------
1 | # This file is automatically @generated by Cargo.
2 | # It is not intended for manual editing.
3 | version = 4
4 |
5 | [[package]]
6 | name = "ab_glyph"
7 | version = "0.2.31"
8 | source = "registry+https://github.com/rust-lang/crates.io-index"
9 | checksum = "e074464580a518d16a7126262fffaaa47af89d4099d4cb403f8ed938ba12ee7d"
10 | dependencies = [
11 | "ab_glyph_rasterizer",
12 | "owned_ttf_parser",
13 | ]
14 |
15 | [[package]]
16 | name = "ab_glyph_rasterizer"
17 | version = "0.1.10"
18 | source = "registry+https://github.com/rust-lang/crates.io-index"
19 | checksum = "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618"
20 |
21 | [[package]]
22 | name = "adler2"
23 | version = "2.0.1"
24 | source = "registry+https://github.com/rust-lang/crates.io-index"
25 | checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
26 |
27 | [[package]]
28 | name = "ahash"
29 | version = "0.8.12"
30 | source = "registry+https://github.com/rust-lang/crates.io-index"
31 | checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
32 | dependencies = [
33 | "cfg-if",
34 | "once_cell",
35 | "version_check",
36 | "zerocopy",
37 | ]
38 |
39 | [[package]]
40 | name = "android-activity"
41 | version = "0.6.0"
42 | source = "registry+https://github.com/rust-lang/crates.io-index"
43 | checksum = "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046"
44 | dependencies = [
45 | "android-properties",
46 | "bitflags 2.9.3",
47 | "cc",
48 | "cesu8",
49 | "jni",
50 | "jni-sys",
51 | "libc",
52 | "log",
53 | "ndk",
54 | "ndk-context",
55 | "ndk-sys",
56 | "num_enum",
57 | "thiserror",
58 | ]
59 |
60 | [[package]]
61 | name = "android-properties"
62 | version = "0.2.2"
63 | source = "registry+https://github.com/rust-lang/crates.io-index"
64 | checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
65 |
66 | [[package]]
67 | name = "anyhow"
68 | version = "1.0.99"
69 | source = "registry+https://github.com/rust-lang/crates.io-index"
70 | checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
71 |
72 | [[package]]
73 | name = "arboard"
74 | version = "3.6.1"
75 | source = "registry+https://github.com/rust-lang/crates.io-index"
76 | checksum = "0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf"
77 | dependencies = [
78 | "clipboard-win",
79 | "image",
80 | "log",
81 | "objc2 0.6.2",
82 | "objc2-app-kit 0.3.1",
83 | "objc2-core-foundation",
84 | "objc2-core-graphics",
85 | "objc2-foundation 0.3.1",
86 | "parking_lot",
87 | "percent-encoding",
88 | "windows-sys 0.60.2",
89 | "x11rb",
90 | ]
91 |
92 | [[package]]
93 | name = "atomic-waker"
94 | version = "1.1.2"
95 | source = "registry+https://github.com/rust-lang/crates.io-index"
96 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
97 |
98 | [[package]]
99 | name = "autocfg"
100 | version = "1.5.0"
101 | source = "registry+https://github.com/rust-lang/crates.io-index"
102 | checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
103 |
104 | [[package]]
105 | name = "bitflags"
106 | version = "1.3.2"
107 | source = "registry+https://github.com/rust-lang/crates.io-index"
108 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
109 |
110 | [[package]]
111 | name = "bitflags"
112 | version = "2.9.3"
113 | source = "registry+https://github.com/rust-lang/crates.io-index"
114 | checksum = "34efbcccd345379ca2868b2b2c9d3782e9cc58ba87bc7d79d5b53d9c9ae6f25d"
115 |
116 | [[package]]
117 | name = "block2"
118 | version = "0.5.1"
119 | source = "registry+https://github.com/rust-lang/crates.io-index"
120 | checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
121 | dependencies = [
122 | "objc2 0.5.2",
123 | ]
124 |
125 | [[package]]
126 | name = "bumpalo"
127 | version = "3.19.0"
128 | source = "registry+https://github.com/rust-lang/crates.io-index"
129 | checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
130 |
131 | [[package]]
132 | name = "bytemuck"
133 | version = "1.23.2"
134 | source = "registry+https://github.com/rust-lang/crates.io-index"
135 | checksum = "3995eaeebcdf32f91f980d360f78732ddc061097ab4e39991ae7a6ace9194677"
136 | dependencies = [
137 | "bytemuck_derive",
138 | ]
139 |
140 | [[package]]
141 | name = "bytemuck_derive"
142 | version = "1.10.1"
143 | source = "registry+https://github.com/rust-lang/crates.io-index"
144 | checksum = "4f154e572231cb6ba2bd1176980827e3d5dc04cc183a75dea38109fbdd672d29"
145 | dependencies = [
146 | "proc-macro2",
147 | "quote",
148 | "syn",
149 | ]
150 |
151 | [[package]]
152 | name = "byteorder-lite"
153 | version = "0.1.0"
154 | source = "registry+https://github.com/rust-lang/crates.io-index"
155 | checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
156 |
157 | [[package]]
158 | name = "bytes"
159 | version = "1.10.1"
160 | source = "registry+https://github.com/rust-lang/crates.io-index"
161 | checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
162 |
163 | [[package]]
164 | name = "calloop"
165 | version = "0.13.0"
166 | source = "registry+https://github.com/rust-lang/crates.io-index"
167 | checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec"
168 | dependencies = [
169 | "bitflags 2.9.3",
170 | "log",
171 | "polling",
172 | "rustix 0.38.44",
173 | "slab",
174 | "thiserror",
175 | ]
176 |
177 | [[package]]
178 | name = "calloop-wayland-source"
179 | version = "0.3.0"
180 | source = "registry+https://github.com/rust-lang/crates.io-index"
181 | checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20"
182 | dependencies = [
183 | "calloop",
184 | "rustix 0.38.44",
185 | "wayland-backend",
186 | "wayland-client",
187 | ]
188 |
189 | [[package]]
190 | name = "cc"
191 | version = "1.2.34"
192 | source = "registry+https://github.com/rust-lang/crates.io-index"
193 | checksum = "42bc4aea80032b7bf409b0bc7ccad88853858911b7713a8062fdc0623867bedc"
194 | dependencies = [
195 | "jobserver",
196 | "libc",
197 | "shlex",
198 | ]
199 |
200 | [[package]]
201 | name = "cesu8"
202 | version = "1.1.0"
203 | source = "registry+https://github.com/rust-lang/crates.io-index"
204 | checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
205 |
206 | [[package]]
207 | name = "cfg-if"
208 | version = "1.0.3"
209 | source = "registry+https://github.com/rust-lang/crates.io-index"
210 | checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
211 |
212 | [[package]]
213 | name = "cfg_aliases"
214 | version = "0.2.1"
215 | source = "registry+https://github.com/rust-lang/crates.io-index"
216 | checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
217 |
218 | [[package]]
219 | name = "cgl"
220 | version = "0.3.2"
221 | source = "registry+https://github.com/rust-lang/crates.io-index"
222 | checksum = "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff"
223 | dependencies = [
224 | "libc",
225 | ]
226 |
227 | [[package]]
228 | name = "clipboard-win"
229 | version = "5.4.1"
230 | source = "registry+https://github.com/rust-lang/crates.io-index"
231 | checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
232 | dependencies = [
233 | "error-code",
234 | ]
235 |
236 | [[package]]
237 | name = "combine"
238 | version = "4.6.7"
239 | source = "registry+https://github.com/rust-lang/crates.io-index"
240 | checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
241 | dependencies = [
242 | "bytes",
243 | "memchr",
244 | ]
245 |
246 | [[package]]
247 | name = "concurrent-queue"
248 | version = "2.5.0"
249 | source = "registry+https://github.com/rust-lang/crates.io-index"
250 | checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
251 | dependencies = [
252 | "crossbeam-utils",
253 | ]
254 |
255 | [[package]]
256 | name = "core-foundation"
257 | version = "0.9.4"
258 | source = "registry+https://github.com/rust-lang/crates.io-index"
259 | checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
260 | dependencies = [
261 | "core-foundation-sys",
262 | "libc",
263 | ]
264 |
265 | [[package]]
266 | name = "core-foundation"
267 | version = "0.10.1"
268 | source = "registry+https://github.com/rust-lang/crates.io-index"
269 | checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
270 | dependencies = [
271 | "core-foundation-sys",
272 | "libc",
273 | ]
274 |
275 | [[package]]
276 | name = "core-foundation-sys"
277 | version = "0.8.7"
278 | source = "registry+https://github.com/rust-lang/crates.io-index"
279 | checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
280 |
281 | [[package]]
282 | name = "core-graphics"
283 | version = "0.23.2"
284 | source = "registry+https://github.com/rust-lang/crates.io-index"
285 | checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
286 | dependencies = [
287 | "bitflags 1.3.2",
288 | "core-foundation 0.9.4",
289 | "core-graphics-types",
290 | "foreign-types",
291 | "libc",
292 | ]
293 |
294 | [[package]]
295 | name = "core-graphics-types"
296 | version = "0.1.3"
297 | source = "registry+https://github.com/rust-lang/crates.io-index"
298 | checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
299 | dependencies = [
300 | "bitflags 1.3.2",
301 | "core-foundation 0.9.4",
302 | "libc",
303 | ]
304 |
305 | [[package]]
306 | name = "crc32fast"
307 | version = "1.5.0"
308 | source = "registry+https://github.com/rust-lang/crates.io-index"
309 | checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
310 | dependencies = [
311 | "cfg-if",
312 | ]
313 |
314 | [[package]]
315 | name = "crossbeam-utils"
316 | version = "0.8.21"
317 | source = "registry+https://github.com/rust-lang/crates.io-index"
318 | checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
319 |
320 | [[package]]
321 | name = "cursor-icon"
322 | version = "1.2.0"
323 | source = "registry+https://github.com/rust-lang/crates.io-index"
324 | checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
325 |
326 | [[package]]
327 | name = "dispatch"
328 | version = "0.2.0"
329 | source = "registry+https://github.com/rust-lang/crates.io-index"
330 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
331 |
332 | [[package]]
333 | name = "dispatch2"
334 | version = "0.3.0"
335 | source = "registry+https://github.com/rust-lang/crates.io-index"
336 | checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
337 | dependencies = [
338 | "bitflags 2.9.3",
339 | "objc2 0.6.2",
340 | ]
341 |
342 | [[package]]
343 | name = "displaydoc"
344 | version = "0.2.5"
345 | source = "registry+https://github.com/rust-lang/crates.io-index"
346 | checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
347 | dependencies = [
348 | "proc-macro2",
349 | "quote",
350 | "syn",
351 | ]
352 |
353 | [[package]]
354 | name = "dlib"
355 | version = "0.5.2"
356 | source = "registry+https://github.com/rust-lang/crates.io-index"
357 | checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
358 | dependencies = [
359 | "libloading",
360 | ]
361 |
362 | [[package]]
363 | name = "document-features"
364 | version = "0.2.11"
365 | source = "registry+https://github.com/rust-lang/crates.io-index"
366 | checksum = "95249b50c6c185bee49034bcb378a49dc2b5dff0be90ff6616d31d64febab05d"
367 | dependencies = [
368 | "litrs",
369 | ]
370 |
371 | [[package]]
372 | name = "downcast-rs"
373 | version = "1.2.1"
374 | source = "registry+https://github.com/rust-lang/crates.io-index"
375 | checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
376 |
377 | [[package]]
378 | name = "dpi"
379 | version = "0.1.2"
380 | source = "registry+https://github.com/rust-lang/crates.io-index"
381 | checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
382 |
383 | [[package]]
384 | name = "ecolor"
385 | version = "0.32.1"
386 | source = "registry+https://github.com/rust-lang/crates.io-index"
387 | checksum = "b6a7fc3172c2ef56966b2ce4f84177e159804c40b9a84de8861558ce4a59f422"
388 | dependencies = [
389 | "bytemuck",
390 | "emath",
391 | ]
392 |
393 | [[package]]
394 | name = "eframe"
395 | version = "0.32.1"
396 | source = "registry+https://github.com/rust-lang/crates.io-index"
397 | checksum = "34037a80dc03a4147e1684bff4e4fdab2b1408d715d7b78470cd3179258964b9"
398 | dependencies = [
399 | "ahash",
400 | "bytemuck",
401 | "document-features",
402 | "egui",
403 | "egui-winit",
404 | "egui_glow",
405 | "glow",
406 | "glutin",
407 | "glutin-winit",
408 | "image",
409 | "js-sys",
410 | "log",
411 | "objc2 0.5.2",
412 | "objc2-app-kit 0.2.2",
413 | "objc2-foundation 0.2.2",
414 | "parking_lot",
415 | "percent-encoding",
416 | "profiling",
417 | "raw-window-handle",
418 | "static_assertions",
419 | "wasm-bindgen",
420 | "wasm-bindgen-futures",
421 | "web-sys",
422 | "web-time",
423 | "winapi",
424 | "windows-sys 0.59.0",
425 | "winit",
426 | ]
427 |
428 | [[package]]
429 | name = "egui"
430 | version = "0.32.1"
431 | source = "registry+https://github.com/rust-lang/crates.io-index"
432 | checksum = "49e2be082f77715496b4a39fdc6f5dc7491fefe2833111781b8697ea6ee919a7"
433 | dependencies = [
434 | "ahash",
435 | "bitflags 2.9.3",
436 | "emath",
437 | "epaint",
438 | "log",
439 | "nohash-hasher",
440 | "profiling",
441 | "smallvec",
442 | "unicode-segmentation",
443 | ]
444 |
445 | [[package]]
446 | name = "egui-winit"
447 | version = "0.32.1"
448 | source = "registry+https://github.com/rust-lang/crates.io-index"
449 | checksum = "fe6d8b0f8d6de4d43e794e343f03bacc3908aada931f0ed6fd7041871388a590"
450 | dependencies = [
451 | "ahash",
452 | "arboard",
453 | "bytemuck",
454 | "egui",
455 | "log",
456 | "profiling",
457 | "raw-window-handle",
458 | "smithay-clipboard",
459 | "web-time",
460 | "webbrowser",
461 | "winit",
462 | ]
463 |
464 | [[package]]
465 | name = "egui_glow"
466 | version = "0.32.1"
467 | source = "registry+https://github.com/rust-lang/crates.io-index"
468 | checksum = "0ab645760288e42eab70283a5cccf44509a6f43b554351855d3c73594bfe3c23"
469 | dependencies = [
470 | "ahash",
471 | "bytemuck",
472 | "egui",
473 | "glow",
474 | "log",
475 | "memoffset",
476 | "profiling",
477 | "wasm-bindgen",
478 | "web-sys",
479 | ]
480 |
481 | [[package]]
482 | name = "emath"
483 | version = "0.32.1"
484 | source = "registry+https://github.com/rust-lang/crates.io-index"
485 | checksum = "935df67dc48fdeef132f2f7ada156ddc79e021344dd42c17f066b956bb88dde3"
486 | dependencies = [
487 | "bytemuck",
488 | ]
489 |
490 | [[package]]
491 | name = "embed-resource"
492 | version = "3.0.5"
493 | source = "registry+https://github.com/rust-lang/crates.io-index"
494 | checksum = "4c6d81016d6c977deefb2ef8d8290da019e27cc26167e102185da528e6c0ab38"
495 | dependencies = [
496 | "cc",
497 | "memchr",
498 | "rustc_version",
499 | "toml",
500 | "vswhom",
501 | "winreg",
502 | ]
503 |
504 | [[package]]
505 | name = "epaint"
506 | version = "0.32.1"
507 | source = "registry+https://github.com/rust-lang/crates.io-index"
508 | checksum = "b66fc0a5a9d322917de9bd3ac7d426ca8aa3127fbf1e76fae5b6b25e051e06a3"
509 | dependencies = [
510 | "ab_glyph",
511 | "ahash",
512 | "bytemuck",
513 | "ecolor",
514 | "emath",
515 | "epaint_default_fonts",
516 | "log",
517 | "nohash-hasher",
518 | "parking_lot",
519 | "profiling",
520 | ]
521 |
522 | [[package]]
523 | name = "epaint_default_fonts"
524 | version = "0.32.1"
525 | source = "registry+https://github.com/rust-lang/crates.io-index"
526 | checksum = "4f6cf8ce0fb817000aa24f5e630bda904a353536bd430b83ebc1dceee95b4a3a"
527 |
528 | [[package]]
529 | name = "equivalent"
530 | version = "1.0.2"
531 | source = "registry+https://github.com/rust-lang/crates.io-index"
532 | checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
533 |
534 | [[package]]
535 | name = "errno"
536 | version = "0.3.13"
537 | source = "registry+https://github.com/rust-lang/crates.io-index"
538 | checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
539 | dependencies = [
540 | "libc",
541 | "windows-sys 0.60.2",
542 | ]
543 |
544 | [[package]]
545 | name = "error-code"
546 | version = "3.3.2"
547 | source = "registry+https://github.com/rust-lang/crates.io-index"
548 | checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
549 |
550 | [[package]]
551 | name = "fdeflate"
552 | version = "0.3.7"
553 | source = "registry+https://github.com/rust-lang/crates.io-index"
554 | checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
555 | dependencies = [
556 | "simd-adler32",
557 | ]
558 |
559 | [[package]]
560 | name = "flate2"
561 | version = "1.1.2"
562 | source = "registry+https://github.com/rust-lang/crates.io-index"
563 | checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
564 | dependencies = [
565 | "crc32fast",
566 | "miniz_oxide",
567 | ]
568 |
569 | [[package]]
570 | name = "foreign-types"
571 | version = "0.5.0"
572 | source = "registry+https://github.com/rust-lang/crates.io-index"
573 | checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
574 | dependencies = [
575 | "foreign-types-macros",
576 | "foreign-types-shared",
577 | ]
578 |
579 | [[package]]
580 | name = "foreign-types-macros"
581 | version = "0.2.3"
582 | source = "registry+https://github.com/rust-lang/crates.io-index"
583 | checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
584 | dependencies = [
585 | "proc-macro2",
586 | "quote",
587 | "syn",
588 | ]
589 |
590 | [[package]]
591 | name = "foreign-types-shared"
592 | version = "0.3.1"
593 | source = "registry+https://github.com/rust-lang/crates.io-index"
594 | checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
595 |
596 | [[package]]
597 | name = "form_urlencoded"
598 | version = "1.2.2"
599 | source = "registry+https://github.com/rust-lang/crates.io-index"
600 | checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
601 | dependencies = [
602 | "percent-encoding",
603 | ]
604 |
605 | [[package]]
606 | name = "gethostname"
607 | version = "1.0.2"
608 | source = "registry+https://github.com/rust-lang/crates.io-index"
609 | checksum = "fc257fdb4038301ce4b9cd1b3b51704509692bb3ff716a410cbd07925d9dae55"
610 | dependencies = [
611 | "rustix 1.0.8",
612 | "windows-targets 0.52.6",
613 | ]
614 |
615 | [[package]]
616 | name = "getrandom"
617 | version = "0.3.3"
618 | source = "registry+https://github.com/rust-lang/crates.io-index"
619 | checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
620 | dependencies = [
621 | "cfg-if",
622 | "libc",
623 | "r-efi",
624 | "wasi",
625 | ]
626 |
627 | [[package]]
628 | name = "gl_generator"
629 | version = "0.14.0"
630 | source = "registry+https://github.com/rust-lang/crates.io-index"
631 | checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
632 | dependencies = [
633 | "khronos_api",
634 | "log",
635 | "xml-rs",
636 | ]
637 |
638 | [[package]]
639 | name = "glow"
640 | version = "0.16.0"
641 | source = "registry+https://github.com/rust-lang/crates.io-index"
642 | checksum = "c5e5ea60d70410161c8bf5da3fdfeaa1c72ed2c15f8bbb9d19fe3a4fad085f08"
643 | dependencies = [
644 | "js-sys",
645 | "slotmap",
646 | "wasm-bindgen",
647 | "web-sys",
648 | ]
649 |
650 | [[package]]
651 | name = "glutin"
652 | version = "0.32.3"
653 | source = "registry+https://github.com/rust-lang/crates.io-index"
654 | checksum = "12124de845cacfebedff80e877bb37b5b75c34c5a4c89e47e1cdd67fb6041325"
655 | dependencies = [
656 | "bitflags 2.9.3",
657 | "cfg_aliases",
658 | "cgl",
659 | "dispatch2",
660 | "glutin_egl_sys",
661 | "glutin_wgl_sys",
662 | "libloading",
663 | "objc2 0.6.2",
664 | "objc2-app-kit 0.3.1",
665 | "objc2-core-foundation",
666 | "objc2-foundation 0.3.1",
667 | "once_cell",
668 | "raw-window-handle",
669 | "windows-sys 0.52.0",
670 | ]
671 |
672 | [[package]]
673 | name = "glutin-winit"
674 | version = "0.5.0"
675 | source = "registry+https://github.com/rust-lang/crates.io-index"
676 | checksum = "85edca7075f8fc728f28cb8fbb111a96c3b89e930574369e3e9c27eb75d3788f"
677 | dependencies = [
678 | "cfg_aliases",
679 | "glutin",
680 | "raw-window-handle",
681 | "winit",
682 | ]
683 |
684 | [[package]]
685 | name = "glutin_egl_sys"
686 | version = "0.7.1"
687 | source = "registry+https://github.com/rust-lang/crates.io-index"
688 | checksum = "4c4680ba6195f424febdc3ba46e7a42a0e58743f2edb115297b86d7f8ecc02d2"
689 | dependencies = [
690 | "gl_generator",
691 | "windows-sys 0.52.0",
692 | ]
693 |
694 | [[package]]
695 | name = "glutin_wgl_sys"
696 | version = "0.6.1"
697 | source = "registry+https://github.com/rust-lang/crates.io-index"
698 | checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
699 | dependencies = [
700 | "gl_generator",
701 | ]
702 |
703 | [[package]]
704 | name = "hashbrown"
705 | version = "0.15.5"
706 | source = "registry+https://github.com/rust-lang/crates.io-index"
707 | checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
708 |
709 | [[package]]
710 | name = "hermit-abi"
711 | version = "0.5.2"
712 | source = "registry+https://github.com/rust-lang/crates.io-index"
713 | checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
714 |
715 | [[package]]
716 | name = "icu_collections"
717 | version = "2.0.0"
718 | source = "registry+https://github.com/rust-lang/crates.io-index"
719 | checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
720 | dependencies = [
721 | "displaydoc",
722 | "potential_utf",
723 | "yoke",
724 | "zerofrom",
725 | "zerovec",
726 | ]
727 |
728 | [[package]]
729 | name = "icu_locale_core"
730 | version = "2.0.0"
731 | source = "registry+https://github.com/rust-lang/crates.io-index"
732 | checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
733 | dependencies = [
734 | "displaydoc",
735 | "litemap",
736 | "tinystr",
737 | "writeable",
738 | "zerovec",
739 | ]
740 |
741 | [[package]]
742 | name = "icu_normalizer"
743 | version = "2.0.0"
744 | source = "registry+https://github.com/rust-lang/crates.io-index"
745 | checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
746 | dependencies = [
747 | "displaydoc",
748 | "icu_collections",
749 | "icu_normalizer_data",
750 | "icu_properties",
751 | "icu_provider",
752 | "smallvec",
753 | "zerovec",
754 | ]
755 |
756 | [[package]]
757 | name = "icu_normalizer_data"
758 | version = "2.0.0"
759 | source = "registry+https://github.com/rust-lang/crates.io-index"
760 | checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
761 |
762 | [[package]]
763 | name = "icu_properties"
764 | version = "2.0.1"
765 | source = "registry+https://github.com/rust-lang/crates.io-index"
766 | checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
767 | dependencies = [
768 | "displaydoc",
769 | "icu_collections",
770 | "icu_locale_core",
771 | "icu_properties_data",
772 | "icu_provider",
773 | "potential_utf",
774 | "zerotrie",
775 | "zerovec",
776 | ]
777 |
778 | [[package]]
779 | name = "icu_properties_data"
780 | version = "2.0.1"
781 | source = "registry+https://github.com/rust-lang/crates.io-index"
782 | checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
783 |
784 | [[package]]
785 | name = "icu_provider"
786 | version = "2.0.0"
787 | source = "registry+https://github.com/rust-lang/crates.io-index"
788 | checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
789 | dependencies = [
790 | "displaydoc",
791 | "icu_locale_core",
792 | "stable_deref_trait",
793 | "tinystr",
794 | "writeable",
795 | "yoke",
796 | "zerofrom",
797 | "zerotrie",
798 | "zerovec",
799 | ]
800 |
801 | [[package]]
802 | name = "idna"
803 | version = "1.1.0"
804 | source = "registry+https://github.com/rust-lang/crates.io-index"
805 | checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
806 | dependencies = [
807 | "idna_adapter",
808 | "smallvec",
809 | "utf8_iter",
810 | ]
811 |
812 | [[package]]
813 | name = "idna_adapter"
814 | version = "1.2.1"
815 | source = "registry+https://github.com/rust-lang/crates.io-index"
816 | checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
817 | dependencies = [
818 | "icu_normalizer",
819 | "icu_properties",
820 | ]
821 |
822 | [[package]]
823 | name = "ihateborders"
824 | version = "1.1.1"
825 | dependencies = [
826 | "anyhow",
827 | "eframe",
828 | "egui",
829 | "embed-resource",
830 | "image",
831 | "windows",
832 | ]
833 |
834 | [[package]]
835 | name = "image"
836 | version = "0.25.6"
837 | source = "registry+https://github.com/rust-lang/crates.io-index"
838 | checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a"
839 | dependencies = [
840 | "bytemuck",
841 | "byteorder-lite",
842 | "num-traits",
843 | "png",
844 | "tiff",
845 | ]
846 |
847 | [[package]]
848 | name = "indexmap"
849 | version = "2.11.0"
850 | source = "registry+https://github.com/rust-lang/crates.io-index"
851 | checksum = "f2481980430f9f78649238835720ddccc57e52df14ffce1c6f37391d61b563e9"
852 | dependencies = [
853 | "equivalent",
854 | "hashbrown",
855 | ]
856 |
857 | [[package]]
858 | name = "jni"
859 | version = "0.21.1"
860 | source = "registry+https://github.com/rust-lang/crates.io-index"
861 | checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
862 | dependencies = [
863 | "cesu8",
864 | "cfg-if",
865 | "combine",
866 | "jni-sys",
867 | "log",
868 | "thiserror",
869 | "walkdir",
870 | "windows-sys 0.45.0",
871 | ]
872 |
873 | [[package]]
874 | name = "jni-sys"
875 | version = "0.3.0"
876 | source = "registry+https://github.com/rust-lang/crates.io-index"
877 | checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
878 |
879 | [[package]]
880 | name = "jobserver"
881 | version = "0.1.34"
882 | source = "registry+https://github.com/rust-lang/crates.io-index"
883 | checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
884 | dependencies = [
885 | "getrandom",
886 | "libc",
887 | ]
888 |
889 | [[package]]
890 | name = "jpeg-decoder"
891 | version = "0.3.2"
892 | source = "registry+https://github.com/rust-lang/crates.io-index"
893 | checksum = "00810f1d8b74be64b13dbf3db89ac67740615d6c891f0e7b6179326533011a07"
894 |
895 | [[package]]
896 | name = "js-sys"
897 | version = "0.3.77"
898 | source = "registry+https://github.com/rust-lang/crates.io-index"
899 | checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
900 | dependencies = [
901 | "once_cell",
902 | "wasm-bindgen",
903 | ]
904 |
905 | [[package]]
906 | name = "khronos_api"
907 | version = "3.1.0"
908 | source = "registry+https://github.com/rust-lang/crates.io-index"
909 | checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
910 |
911 | [[package]]
912 | name = "libc"
913 | version = "0.2.175"
914 | source = "registry+https://github.com/rust-lang/crates.io-index"
915 | checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
916 |
917 | [[package]]
918 | name = "libloading"
919 | version = "0.8.8"
920 | source = "registry+https://github.com/rust-lang/crates.io-index"
921 | checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
922 | dependencies = [
923 | "cfg-if",
924 | "windows-targets 0.53.3",
925 | ]
926 |
927 | [[package]]
928 | name = "libredox"
929 | version = "0.1.9"
930 | source = "registry+https://github.com/rust-lang/crates.io-index"
931 | checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3"
932 | dependencies = [
933 | "bitflags 2.9.3",
934 | "libc",
935 | "redox_syscall 0.5.17",
936 | ]
937 |
938 | [[package]]
939 | name = "linux-raw-sys"
940 | version = "0.4.15"
941 | source = "registry+https://github.com/rust-lang/crates.io-index"
942 | checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
943 |
944 | [[package]]
945 | name = "linux-raw-sys"
946 | version = "0.9.4"
947 | source = "registry+https://github.com/rust-lang/crates.io-index"
948 | checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
949 |
950 | [[package]]
951 | name = "litemap"
952 | version = "0.8.0"
953 | source = "registry+https://github.com/rust-lang/crates.io-index"
954 | checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
955 |
956 | [[package]]
957 | name = "litrs"
958 | version = "0.4.2"
959 | source = "registry+https://github.com/rust-lang/crates.io-index"
960 | checksum = "f5e54036fe321fd421e10d732f155734c4e4afd610dd556d9a82833ab3ee0bed"
961 |
962 | [[package]]
963 | name = "lock_api"
964 | version = "0.4.13"
965 | source = "registry+https://github.com/rust-lang/crates.io-index"
966 | checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
967 | dependencies = [
968 | "autocfg",
969 | "scopeguard",
970 | ]
971 |
972 | [[package]]
973 | name = "log"
974 | version = "0.4.27"
975 | source = "registry+https://github.com/rust-lang/crates.io-index"
976 | checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
977 |
978 | [[package]]
979 | name = "memchr"
980 | version = "2.7.5"
981 | source = "registry+https://github.com/rust-lang/crates.io-index"
982 | checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
983 |
984 | [[package]]
985 | name = "memmap2"
986 | version = "0.9.8"
987 | source = "registry+https://github.com/rust-lang/crates.io-index"
988 | checksum = "843a98750cd611cc2965a8213b53b43e715f13c37a9e096c6408e69990961db7"
989 | dependencies = [
990 | "libc",
991 | ]
992 |
993 | [[package]]
994 | name = "memoffset"
995 | version = "0.9.1"
996 | source = "registry+https://github.com/rust-lang/crates.io-index"
997 | checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
998 | dependencies = [
999 | "autocfg",
1000 | ]
1001 |
1002 | [[package]]
1003 | name = "miniz_oxide"
1004 | version = "0.8.9"
1005 | source = "registry+https://github.com/rust-lang/crates.io-index"
1006 | checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1007 | dependencies = [
1008 | "adler2",
1009 | "simd-adler32",
1010 | ]
1011 |
1012 | [[package]]
1013 | name = "ndk"
1014 | version = "0.9.0"
1015 | source = "registry+https://github.com/rust-lang/crates.io-index"
1016 | checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
1017 | dependencies = [
1018 | "bitflags 2.9.3",
1019 | "jni-sys",
1020 | "log",
1021 | "ndk-sys",
1022 | "num_enum",
1023 | "raw-window-handle",
1024 | "thiserror",
1025 | ]
1026 |
1027 | [[package]]
1028 | name = "ndk-context"
1029 | version = "0.1.1"
1030 | source = "registry+https://github.com/rust-lang/crates.io-index"
1031 | checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1032 |
1033 | [[package]]
1034 | name = "ndk-sys"
1035 | version = "0.6.0+11769913"
1036 | source = "registry+https://github.com/rust-lang/crates.io-index"
1037 | checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
1038 | dependencies = [
1039 | "jni-sys",
1040 | ]
1041 |
1042 | [[package]]
1043 | name = "nohash-hasher"
1044 | version = "0.2.0"
1045 | source = "registry+https://github.com/rust-lang/crates.io-index"
1046 | checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1047 |
1048 | [[package]]
1049 | name = "num-traits"
1050 | version = "0.2.19"
1051 | source = "registry+https://github.com/rust-lang/crates.io-index"
1052 | checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1053 | dependencies = [
1054 | "autocfg",
1055 | ]
1056 |
1057 | [[package]]
1058 | name = "num_enum"
1059 | version = "0.7.4"
1060 | source = "registry+https://github.com/rust-lang/crates.io-index"
1061 | checksum = "a973b4e44ce6cad84ce69d797acf9a044532e4184c4f267913d1b546a0727b7a"
1062 | dependencies = [
1063 | "num_enum_derive",
1064 | "rustversion",
1065 | ]
1066 |
1067 | [[package]]
1068 | name = "num_enum_derive"
1069 | version = "0.7.4"
1070 | source = "registry+https://github.com/rust-lang/crates.io-index"
1071 | checksum = "77e878c846a8abae00dd069496dbe8751b16ac1c3d6bd2a7283a938e8228f90d"
1072 | dependencies = [
1073 | "proc-macro-crate",
1074 | "proc-macro2",
1075 | "quote",
1076 | "syn",
1077 | ]
1078 |
1079 | [[package]]
1080 | name = "objc-sys"
1081 | version = "0.3.5"
1082 | source = "registry+https://github.com/rust-lang/crates.io-index"
1083 | checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
1084 |
1085 | [[package]]
1086 | name = "objc2"
1087 | version = "0.5.2"
1088 | source = "registry+https://github.com/rust-lang/crates.io-index"
1089 | checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
1090 | dependencies = [
1091 | "objc-sys",
1092 | "objc2-encode",
1093 | ]
1094 |
1095 | [[package]]
1096 | name = "objc2"
1097 | version = "0.6.2"
1098 | source = "registry+https://github.com/rust-lang/crates.io-index"
1099 | checksum = "561f357ba7f3a2a61563a186a163d0a3a5247e1089524a3981d49adb775078bc"
1100 | dependencies = [
1101 | "objc2-encode",
1102 | ]
1103 |
1104 | [[package]]
1105 | name = "objc2-app-kit"
1106 | version = "0.2.2"
1107 | source = "registry+https://github.com/rust-lang/crates.io-index"
1108 | checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
1109 | dependencies = [
1110 | "bitflags 2.9.3",
1111 | "block2",
1112 | "libc",
1113 | "objc2 0.5.2",
1114 | "objc2-core-data",
1115 | "objc2-core-image",
1116 | "objc2-foundation 0.2.2",
1117 | "objc2-quartz-core",
1118 | ]
1119 |
1120 | [[package]]
1121 | name = "objc2-app-kit"
1122 | version = "0.3.1"
1123 | source = "registry+https://github.com/rust-lang/crates.io-index"
1124 | checksum = "e6f29f568bec459b0ddff777cec4fe3fd8666d82d5a40ebd0ff7e66134f89bcc"
1125 | dependencies = [
1126 | "bitflags 2.9.3",
1127 | "objc2 0.6.2",
1128 | "objc2-core-foundation",
1129 | "objc2-core-graphics",
1130 | "objc2-foundation 0.3.1",
1131 | ]
1132 |
1133 | [[package]]
1134 | name = "objc2-cloud-kit"
1135 | version = "0.2.2"
1136 | source = "registry+https://github.com/rust-lang/crates.io-index"
1137 | checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009"
1138 | dependencies = [
1139 | "bitflags 2.9.3",
1140 | "block2",
1141 | "objc2 0.5.2",
1142 | "objc2-core-location",
1143 | "objc2-foundation 0.2.2",
1144 | ]
1145 |
1146 | [[package]]
1147 | name = "objc2-contacts"
1148 | version = "0.2.2"
1149 | source = "registry+https://github.com/rust-lang/crates.io-index"
1150 | checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889"
1151 | dependencies = [
1152 | "block2",
1153 | "objc2 0.5.2",
1154 | "objc2-foundation 0.2.2",
1155 | ]
1156 |
1157 | [[package]]
1158 | name = "objc2-core-data"
1159 | version = "0.2.2"
1160 | source = "registry+https://github.com/rust-lang/crates.io-index"
1161 | checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
1162 | dependencies = [
1163 | "bitflags 2.9.3",
1164 | "block2",
1165 | "objc2 0.5.2",
1166 | "objc2-foundation 0.2.2",
1167 | ]
1168 |
1169 | [[package]]
1170 | name = "objc2-core-foundation"
1171 | version = "0.3.1"
1172 | source = "registry+https://github.com/rust-lang/crates.io-index"
1173 | checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166"
1174 | dependencies = [
1175 | "bitflags 2.9.3",
1176 | "dispatch2",
1177 | "objc2 0.6.2",
1178 | ]
1179 |
1180 | [[package]]
1181 | name = "objc2-core-graphics"
1182 | version = "0.3.1"
1183 | source = "registry+https://github.com/rust-lang/crates.io-index"
1184 | checksum = "989c6c68c13021b5c2d6b71456ebb0f9dc78d752e86a98da7c716f4f9470f5a4"
1185 | dependencies = [
1186 | "bitflags 2.9.3",
1187 | "dispatch2",
1188 | "objc2 0.6.2",
1189 | "objc2-core-foundation",
1190 | "objc2-io-surface",
1191 | ]
1192 |
1193 | [[package]]
1194 | name = "objc2-core-image"
1195 | version = "0.2.2"
1196 | source = "registry+https://github.com/rust-lang/crates.io-index"
1197 | checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
1198 | dependencies = [
1199 | "block2",
1200 | "objc2 0.5.2",
1201 | "objc2-foundation 0.2.2",
1202 | "objc2-metal",
1203 | ]
1204 |
1205 | [[package]]
1206 | name = "objc2-core-location"
1207 | version = "0.2.2"
1208 | source = "registry+https://github.com/rust-lang/crates.io-index"
1209 | checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781"
1210 | dependencies = [
1211 | "block2",
1212 | "objc2 0.5.2",
1213 | "objc2-contacts",
1214 | "objc2-foundation 0.2.2",
1215 | ]
1216 |
1217 | [[package]]
1218 | name = "objc2-encode"
1219 | version = "4.1.0"
1220 | source = "registry+https://github.com/rust-lang/crates.io-index"
1221 | checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
1222 |
1223 | [[package]]
1224 | name = "objc2-foundation"
1225 | version = "0.2.2"
1226 | source = "registry+https://github.com/rust-lang/crates.io-index"
1227 | checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
1228 | dependencies = [
1229 | "bitflags 2.9.3",
1230 | "block2",
1231 | "dispatch",
1232 | "libc",
1233 | "objc2 0.5.2",
1234 | ]
1235 |
1236 | [[package]]
1237 | name = "objc2-foundation"
1238 | version = "0.3.1"
1239 | source = "registry+https://github.com/rust-lang/crates.io-index"
1240 | checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c"
1241 | dependencies = [
1242 | "bitflags 2.9.3",
1243 | "objc2 0.6.2",
1244 | "objc2-core-foundation",
1245 | ]
1246 |
1247 | [[package]]
1248 | name = "objc2-io-surface"
1249 | version = "0.3.1"
1250 | source = "registry+https://github.com/rust-lang/crates.io-index"
1251 | checksum = "7282e9ac92529fa3457ce90ebb15f4ecbc383e8338060960760fa2cf75420c3c"
1252 | dependencies = [
1253 | "bitflags 2.9.3",
1254 | "objc2 0.6.2",
1255 | "objc2-core-foundation",
1256 | ]
1257 |
1258 | [[package]]
1259 | name = "objc2-link-presentation"
1260 | version = "0.2.2"
1261 | source = "registry+https://github.com/rust-lang/crates.io-index"
1262 | checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398"
1263 | dependencies = [
1264 | "block2",
1265 | "objc2 0.5.2",
1266 | "objc2-app-kit 0.2.2",
1267 | "objc2-foundation 0.2.2",
1268 | ]
1269 |
1270 | [[package]]
1271 | name = "objc2-metal"
1272 | version = "0.2.2"
1273 | source = "registry+https://github.com/rust-lang/crates.io-index"
1274 | checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
1275 | dependencies = [
1276 | "bitflags 2.9.3",
1277 | "block2",
1278 | "objc2 0.5.2",
1279 | "objc2-foundation 0.2.2",
1280 | ]
1281 |
1282 | [[package]]
1283 | name = "objc2-quartz-core"
1284 | version = "0.2.2"
1285 | source = "registry+https://github.com/rust-lang/crates.io-index"
1286 | checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
1287 | dependencies = [
1288 | "bitflags 2.9.3",
1289 | "block2",
1290 | "objc2 0.5.2",
1291 | "objc2-foundation 0.2.2",
1292 | "objc2-metal",
1293 | ]
1294 |
1295 | [[package]]
1296 | name = "objc2-symbols"
1297 | version = "0.2.2"
1298 | source = "registry+https://github.com/rust-lang/crates.io-index"
1299 | checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc"
1300 | dependencies = [
1301 | "objc2 0.5.2",
1302 | "objc2-foundation 0.2.2",
1303 | ]
1304 |
1305 | [[package]]
1306 | name = "objc2-ui-kit"
1307 | version = "0.2.2"
1308 | source = "registry+https://github.com/rust-lang/crates.io-index"
1309 | checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f"
1310 | dependencies = [
1311 | "bitflags 2.9.3",
1312 | "block2",
1313 | "objc2 0.5.2",
1314 | "objc2-cloud-kit",
1315 | "objc2-core-data",
1316 | "objc2-core-image",
1317 | "objc2-core-location",
1318 | "objc2-foundation 0.2.2",
1319 | "objc2-link-presentation",
1320 | "objc2-quartz-core",
1321 | "objc2-symbols",
1322 | "objc2-uniform-type-identifiers",
1323 | "objc2-user-notifications",
1324 | ]
1325 |
1326 | [[package]]
1327 | name = "objc2-uniform-type-identifiers"
1328 | version = "0.2.2"
1329 | source = "registry+https://github.com/rust-lang/crates.io-index"
1330 | checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe"
1331 | dependencies = [
1332 | "block2",
1333 | "objc2 0.5.2",
1334 | "objc2-foundation 0.2.2",
1335 | ]
1336 |
1337 | [[package]]
1338 | name = "objc2-user-notifications"
1339 | version = "0.2.2"
1340 | source = "registry+https://github.com/rust-lang/crates.io-index"
1341 | checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3"
1342 | dependencies = [
1343 | "bitflags 2.9.3",
1344 | "block2",
1345 | "objc2 0.5.2",
1346 | "objc2-core-location",
1347 | "objc2-foundation 0.2.2",
1348 | ]
1349 |
1350 | [[package]]
1351 | name = "once_cell"
1352 | version = "1.21.3"
1353 | source = "registry+https://github.com/rust-lang/crates.io-index"
1354 | checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1355 |
1356 | [[package]]
1357 | name = "orbclient"
1358 | version = "0.3.48"
1359 | source = "registry+https://github.com/rust-lang/crates.io-index"
1360 | checksum = "ba0b26cec2e24f08ed8bb31519a9333140a6599b867dac464bb150bdb796fd43"
1361 | dependencies = [
1362 | "libredox",
1363 | ]
1364 |
1365 | [[package]]
1366 | name = "owned_ttf_parser"
1367 | version = "0.25.1"
1368 | source = "registry+https://github.com/rust-lang/crates.io-index"
1369 | checksum = "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b"
1370 | dependencies = [
1371 | "ttf-parser",
1372 | ]
1373 |
1374 | [[package]]
1375 | name = "parking_lot"
1376 | version = "0.12.4"
1377 | source = "registry+https://github.com/rust-lang/crates.io-index"
1378 | checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1379 | dependencies = [
1380 | "lock_api",
1381 | "parking_lot_core",
1382 | ]
1383 |
1384 | [[package]]
1385 | name = "parking_lot_core"
1386 | version = "0.9.11"
1387 | source = "registry+https://github.com/rust-lang/crates.io-index"
1388 | checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1389 | dependencies = [
1390 | "cfg-if",
1391 | "libc",
1392 | "redox_syscall 0.5.17",
1393 | "smallvec",
1394 | "windows-targets 0.52.6",
1395 | ]
1396 |
1397 | [[package]]
1398 | name = "percent-encoding"
1399 | version = "2.3.2"
1400 | source = "registry+https://github.com/rust-lang/crates.io-index"
1401 | checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1402 |
1403 | [[package]]
1404 | name = "pin-project"
1405 | version = "1.1.10"
1406 | source = "registry+https://github.com/rust-lang/crates.io-index"
1407 | checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1408 | dependencies = [
1409 | "pin-project-internal",
1410 | ]
1411 |
1412 | [[package]]
1413 | name = "pin-project-internal"
1414 | version = "1.1.10"
1415 | source = "registry+https://github.com/rust-lang/crates.io-index"
1416 | checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1417 | dependencies = [
1418 | "proc-macro2",
1419 | "quote",
1420 | "syn",
1421 | ]
1422 |
1423 | [[package]]
1424 | name = "pin-project-lite"
1425 | version = "0.2.16"
1426 | source = "registry+https://github.com/rust-lang/crates.io-index"
1427 | checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1428 |
1429 | [[package]]
1430 | name = "pkg-config"
1431 | version = "0.3.32"
1432 | source = "registry+https://github.com/rust-lang/crates.io-index"
1433 | checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1434 |
1435 | [[package]]
1436 | name = "png"
1437 | version = "0.17.16"
1438 | source = "registry+https://github.com/rust-lang/crates.io-index"
1439 | checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
1440 | dependencies = [
1441 | "bitflags 1.3.2",
1442 | "crc32fast",
1443 | "fdeflate",
1444 | "flate2",
1445 | "miniz_oxide",
1446 | ]
1447 |
1448 | [[package]]
1449 | name = "polling"
1450 | version = "3.10.0"
1451 | source = "registry+https://github.com/rust-lang/crates.io-index"
1452 | checksum = "b5bd19146350fe804f7cb2669c851c03d69da628803dab0d98018142aaa5d829"
1453 | dependencies = [
1454 | "cfg-if",
1455 | "concurrent-queue",
1456 | "hermit-abi",
1457 | "pin-project-lite",
1458 | "rustix 1.0.8",
1459 | "windows-sys 0.60.2",
1460 | ]
1461 |
1462 | [[package]]
1463 | name = "potential_utf"
1464 | version = "0.1.3"
1465 | source = "registry+https://github.com/rust-lang/crates.io-index"
1466 | checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
1467 | dependencies = [
1468 | "zerovec",
1469 | ]
1470 |
1471 | [[package]]
1472 | name = "proc-macro-crate"
1473 | version = "3.3.0"
1474 | source = "registry+https://github.com/rust-lang/crates.io-index"
1475 | checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
1476 | dependencies = [
1477 | "toml_edit",
1478 | ]
1479 |
1480 | [[package]]
1481 | name = "proc-macro2"
1482 | version = "1.0.101"
1483 | source = "registry+https://github.com/rust-lang/crates.io-index"
1484 | checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
1485 | dependencies = [
1486 | "unicode-ident",
1487 | ]
1488 |
1489 | [[package]]
1490 | name = "profiling"
1491 | version = "1.0.17"
1492 | source = "registry+https://github.com/rust-lang/crates.io-index"
1493 | checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
1494 |
1495 | [[package]]
1496 | name = "quick-xml"
1497 | version = "0.37.5"
1498 | source = "registry+https://github.com/rust-lang/crates.io-index"
1499 | checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
1500 | dependencies = [
1501 | "memchr",
1502 | ]
1503 |
1504 | [[package]]
1505 | name = "quote"
1506 | version = "1.0.40"
1507 | source = "registry+https://github.com/rust-lang/crates.io-index"
1508 | checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1509 | dependencies = [
1510 | "proc-macro2",
1511 | ]
1512 |
1513 | [[package]]
1514 | name = "r-efi"
1515 | version = "5.3.0"
1516 | source = "registry+https://github.com/rust-lang/crates.io-index"
1517 | checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1518 |
1519 | [[package]]
1520 | name = "raw-window-handle"
1521 | version = "0.6.2"
1522 | source = "registry+https://github.com/rust-lang/crates.io-index"
1523 | checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
1524 |
1525 | [[package]]
1526 | name = "redox_syscall"
1527 | version = "0.4.1"
1528 | source = "registry+https://github.com/rust-lang/crates.io-index"
1529 | checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
1530 | dependencies = [
1531 | "bitflags 1.3.2",
1532 | ]
1533 |
1534 | [[package]]
1535 | name = "redox_syscall"
1536 | version = "0.5.17"
1537 | source = "registry+https://github.com/rust-lang/crates.io-index"
1538 | checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
1539 | dependencies = [
1540 | "bitflags 2.9.3",
1541 | ]
1542 |
1543 | [[package]]
1544 | name = "rustc_version"
1545 | version = "0.4.1"
1546 | source = "registry+https://github.com/rust-lang/crates.io-index"
1547 | checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1548 | dependencies = [
1549 | "semver",
1550 | ]
1551 |
1552 | [[package]]
1553 | name = "rustix"
1554 | version = "0.38.44"
1555 | source = "registry+https://github.com/rust-lang/crates.io-index"
1556 | checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
1557 | dependencies = [
1558 | "bitflags 2.9.3",
1559 | "errno",
1560 | "libc",
1561 | "linux-raw-sys 0.4.15",
1562 | "windows-sys 0.59.0",
1563 | ]
1564 |
1565 | [[package]]
1566 | name = "rustix"
1567 | version = "1.0.8"
1568 | source = "registry+https://github.com/rust-lang/crates.io-index"
1569 | checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
1570 | dependencies = [
1571 | "bitflags 2.9.3",
1572 | "errno",
1573 | "libc",
1574 | "linux-raw-sys 0.9.4",
1575 | "windows-sys 0.60.2",
1576 | ]
1577 |
1578 | [[package]]
1579 | name = "rustversion"
1580 | version = "1.0.22"
1581 | source = "registry+https://github.com/rust-lang/crates.io-index"
1582 | checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1583 |
1584 | [[package]]
1585 | name = "same-file"
1586 | version = "1.0.6"
1587 | source = "registry+https://github.com/rust-lang/crates.io-index"
1588 | checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1589 | dependencies = [
1590 | "winapi-util",
1591 | ]
1592 |
1593 | [[package]]
1594 | name = "scoped-tls"
1595 | version = "1.0.1"
1596 | source = "registry+https://github.com/rust-lang/crates.io-index"
1597 | checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
1598 |
1599 | [[package]]
1600 | name = "scopeguard"
1601 | version = "1.2.0"
1602 | source = "registry+https://github.com/rust-lang/crates.io-index"
1603 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1604 |
1605 | [[package]]
1606 | name = "semver"
1607 | version = "1.0.26"
1608 | source = "registry+https://github.com/rust-lang/crates.io-index"
1609 | checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0"
1610 |
1611 | [[package]]
1612 | name = "serde"
1613 | version = "1.0.219"
1614 | source = "registry+https://github.com/rust-lang/crates.io-index"
1615 | checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1616 | dependencies = [
1617 | "serde_derive",
1618 | ]
1619 |
1620 | [[package]]
1621 | name = "serde_derive"
1622 | version = "1.0.219"
1623 | source = "registry+https://github.com/rust-lang/crates.io-index"
1624 | checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1625 | dependencies = [
1626 | "proc-macro2",
1627 | "quote",
1628 | "syn",
1629 | ]
1630 |
1631 | [[package]]
1632 | name = "serde_spanned"
1633 | version = "1.0.0"
1634 | source = "registry+https://github.com/rust-lang/crates.io-index"
1635 | checksum = "40734c41988f7306bb04f0ecf60ec0f3f1caa34290e4e8ea471dcd3346483b83"
1636 | dependencies = [
1637 | "serde",
1638 | ]
1639 |
1640 | [[package]]
1641 | name = "shlex"
1642 | version = "1.3.0"
1643 | source = "registry+https://github.com/rust-lang/crates.io-index"
1644 | checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1645 |
1646 | [[package]]
1647 | name = "simd-adler32"
1648 | version = "0.3.7"
1649 | source = "registry+https://github.com/rust-lang/crates.io-index"
1650 | checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
1651 |
1652 | [[package]]
1653 | name = "slab"
1654 | version = "0.4.11"
1655 | source = "registry+https://github.com/rust-lang/crates.io-index"
1656 | checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1657 |
1658 | [[package]]
1659 | name = "slotmap"
1660 | version = "1.0.7"
1661 | source = "registry+https://github.com/rust-lang/crates.io-index"
1662 | checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
1663 | dependencies = [
1664 | "version_check",
1665 | ]
1666 |
1667 | [[package]]
1668 | name = "smallvec"
1669 | version = "1.15.1"
1670 | source = "registry+https://github.com/rust-lang/crates.io-index"
1671 | checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1672 |
1673 | [[package]]
1674 | name = "smithay-client-toolkit"
1675 | version = "0.19.2"
1676 | source = "registry+https://github.com/rust-lang/crates.io-index"
1677 | checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016"
1678 | dependencies = [
1679 | "bitflags 2.9.3",
1680 | "calloop",
1681 | "calloop-wayland-source",
1682 | "cursor-icon",
1683 | "libc",
1684 | "log",
1685 | "memmap2",
1686 | "rustix 0.38.44",
1687 | "thiserror",
1688 | "wayland-backend",
1689 | "wayland-client",
1690 | "wayland-csd-frame",
1691 | "wayland-cursor",
1692 | "wayland-protocols",
1693 | "wayland-protocols-wlr",
1694 | "wayland-scanner",
1695 | "xkeysym",
1696 | ]
1697 |
1698 | [[package]]
1699 | name = "smithay-clipboard"
1700 | version = "0.7.2"
1701 | source = "registry+https://github.com/rust-lang/crates.io-index"
1702 | checksum = "cc8216eec463674a0e90f29e0ae41a4db573ec5b56b1c6c1c71615d249b6d846"
1703 | dependencies = [
1704 | "libc",
1705 | "smithay-client-toolkit",
1706 | "wayland-backend",
1707 | ]
1708 |
1709 | [[package]]
1710 | name = "smol_str"
1711 | version = "0.2.2"
1712 | source = "registry+https://github.com/rust-lang/crates.io-index"
1713 | checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
1714 | dependencies = [
1715 | "serde",
1716 | ]
1717 |
1718 | [[package]]
1719 | name = "stable_deref_trait"
1720 | version = "1.2.0"
1721 | source = "registry+https://github.com/rust-lang/crates.io-index"
1722 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1723 |
1724 | [[package]]
1725 | name = "static_assertions"
1726 | version = "1.1.0"
1727 | source = "registry+https://github.com/rust-lang/crates.io-index"
1728 | checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1729 |
1730 | [[package]]
1731 | name = "syn"
1732 | version = "2.0.106"
1733 | source = "registry+https://github.com/rust-lang/crates.io-index"
1734 | checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
1735 | dependencies = [
1736 | "proc-macro2",
1737 | "quote",
1738 | "unicode-ident",
1739 | ]
1740 |
1741 | [[package]]
1742 | name = "synstructure"
1743 | version = "0.13.2"
1744 | source = "registry+https://github.com/rust-lang/crates.io-index"
1745 | checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1746 | dependencies = [
1747 | "proc-macro2",
1748 | "quote",
1749 | "syn",
1750 | ]
1751 |
1752 | [[package]]
1753 | name = "thiserror"
1754 | version = "1.0.69"
1755 | source = "registry+https://github.com/rust-lang/crates.io-index"
1756 | checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1757 | dependencies = [
1758 | "thiserror-impl",
1759 | ]
1760 |
1761 | [[package]]
1762 | name = "thiserror-impl"
1763 | version = "1.0.69"
1764 | source = "registry+https://github.com/rust-lang/crates.io-index"
1765 | checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1766 | dependencies = [
1767 | "proc-macro2",
1768 | "quote",
1769 | "syn",
1770 | ]
1771 |
1772 | [[package]]
1773 | name = "tiff"
1774 | version = "0.9.1"
1775 | source = "registry+https://github.com/rust-lang/crates.io-index"
1776 | checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
1777 | dependencies = [
1778 | "flate2",
1779 | "jpeg-decoder",
1780 | "weezl",
1781 | ]
1782 |
1783 | [[package]]
1784 | name = "tinystr"
1785 | version = "0.8.1"
1786 | source = "registry+https://github.com/rust-lang/crates.io-index"
1787 | checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
1788 | dependencies = [
1789 | "displaydoc",
1790 | "zerovec",
1791 | ]
1792 |
1793 | [[package]]
1794 | name = "toml"
1795 | version = "0.9.5"
1796 | source = "registry+https://github.com/rust-lang/crates.io-index"
1797 | checksum = "75129e1dc5000bfbaa9fee9d1b21f974f9fbad9daec557a521ee6e080825f6e8"
1798 | dependencies = [
1799 | "indexmap",
1800 | "serde",
1801 | "serde_spanned",
1802 | "toml_datetime 0.7.0",
1803 | "toml_parser",
1804 | "toml_writer",
1805 | "winnow",
1806 | ]
1807 |
1808 | [[package]]
1809 | name = "toml_datetime"
1810 | version = "0.6.11"
1811 | source = "registry+https://github.com/rust-lang/crates.io-index"
1812 | checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1813 |
1814 | [[package]]
1815 | name = "toml_datetime"
1816 | version = "0.7.0"
1817 | source = "registry+https://github.com/rust-lang/crates.io-index"
1818 | checksum = "bade1c3e902f58d73d3f294cd7f20391c1cb2fbcb643b73566bc773971df91e3"
1819 | dependencies = [
1820 | "serde",
1821 | ]
1822 |
1823 | [[package]]
1824 | name = "toml_edit"
1825 | version = "0.22.27"
1826 | source = "registry+https://github.com/rust-lang/crates.io-index"
1827 | checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1828 | dependencies = [
1829 | "indexmap",
1830 | "toml_datetime 0.6.11",
1831 | "winnow",
1832 | ]
1833 |
1834 | [[package]]
1835 | name = "toml_parser"
1836 | version = "1.0.2"
1837 | source = "registry+https://github.com/rust-lang/crates.io-index"
1838 | checksum = "b551886f449aa90d4fe2bdaa9f4a2577ad2dde302c61ecf262d80b116db95c10"
1839 | dependencies = [
1840 | "winnow",
1841 | ]
1842 |
1843 | [[package]]
1844 | name = "toml_writer"
1845 | version = "1.0.2"
1846 | source = "registry+https://github.com/rust-lang/crates.io-index"
1847 | checksum = "fcc842091f2def52017664b53082ecbbeb5c7731092bad69d2c63050401dfd64"
1848 |
1849 | [[package]]
1850 | name = "tracing"
1851 | version = "0.1.41"
1852 | source = "registry+https://github.com/rust-lang/crates.io-index"
1853 | checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
1854 | dependencies = [
1855 | "pin-project-lite",
1856 | "tracing-core",
1857 | ]
1858 |
1859 | [[package]]
1860 | name = "tracing-core"
1861 | version = "0.1.34"
1862 | source = "registry+https://github.com/rust-lang/crates.io-index"
1863 | checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
1864 |
1865 | [[package]]
1866 | name = "ttf-parser"
1867 | version = "0.25.1"
1868 | source = "registry+https://github.com/rust-lang/crates.io-index"
1869 | checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
1870 |
1871 | [[package]]
1872 | name = "unicode-ident"
1873 | version = "1.0.18"
1874 | source = "registry+https://github.com/rust-lang/crates.io-index"
1875 | checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1876 |
1877 | [[package]]
1878 | name = "unicode-segmentation"
1879 | version = "1.12.0"
1880 | source = "registry+https://github.com/rust-lang/crates.io-index"
1881 | checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1882 |
1883 | [[package]]
1884 | name = "url"
1885 | version = "2.5.7"
1886 | source = "registry+https://github.com/rust-lang/crates.io-index"
1887 | checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
1888 | dependencies = [
1889 | "form_urlencoded",
1890 | "idna",
1891 | "percent-encoding",
1892 | "serde",
1893 | ]
1894 |
1895 | [[package]]
1896 | name = "utf8_iter"
1897 | version = "1.0.4"
1898 | source = "registry+https://github.com/rust-lang/crates.io-index"
1899 | checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1900 |
1901 | [[package]]
1902 | name = "version_check"
1903 | version = "0.9.5"
1904 | source = "registry+https://github.com/rust-lang/crates.io-index"
1905 | checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1906 |
1907 | [[package]]
1908 | name = "vswhom"
1909 | version = "0.1.0"
1910 | source = "registry+https://github.com/rust-lang/crates.io-index"
1911 | checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b"
1912 | dependencies = [
1913 | "libc",
1914 | "vswhom-sys",
1915 | ]
1916 |
1917 | [[package]]
1918 | name = "vswhom-sys"
1919 | version = "0.1.3"
1920 | source = "registry+https://github.com/rust-lang/crates.io-index"
1921 | checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150"
1922 | dependencies = [
1923 | "cc",
1924 | "libc",
1925 | ]
1926 |
1927 | [[package]]
1928 | name = "walkdir"
1929 | version = "2.5.0"
1930 | source = "registry+https://github.com/rust-lang/crates.io-index"
1931 | checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1932 | dependencies = [
1933 | "same-file",
1934 | "winapi-util",
1935 | ]
1936 |
1937 | [[package]]
1938 | name = "wasi"
1939 | version = "0.14.3+wasi-0.2.4"
1940 | source = "registry+https://github.com/rust-lang/crates.io-index"
1941 | checksum = "6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95"
1942 | dependencies = [
1943 | "wit-bindgen",
1944 | ]
1945 |
1946 | [[package]]
1947 | name = "wasm-bindgen"
1948 | version = "0.2.100"
1949 | source = "registry+https://github.com/rust-lang/crates.io-index"
1950 | checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
1951 | dependencies = [
1952 | "cfg-if",
1953 | "once_cell",
1954 | "rustversion",
1955 | "wasm-bindgen-macro",
1956 | ]
1957 |
1958 | [[package]]
1959 | name = "wasm-bindgen-backend"
1960 | version = "0.2.100"
1961 | source = "registry+https://github.com/rust-lang/crates.io-index"
1962 | checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
1963 | dependencies = [
1964 | "bumpalo",
1965 | "log",
1966 | "proc-macro2",
1967 | "quote",
1968 | "syn",
1969 | "wasm-bindgen-shared",
1970 | ]
1971 |
1972 | [[package]]
1973 | name = "wasm-bindgen-futures"
1974 | version = "0.4.50"
1975 | source = "registry+https://github.com/rust-lang/crates.io-index"
1976 | checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
1977 | dependencies = [
1978 | "cfg-if",
1979 | "js-sys",
1980 | "once_cell",
1981 | "wasm-bindgen",
1982 | "web-sys",
1983 | ]
1984 |
1985 | [[package]]
1986 | name = "wasm-bindgen-macro"
1987 | version = "0.2.100"
1988 | source = "registry+https://github.com/rust-lang/crates.io-index"
1989 | checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
1990 | dependencies = [
1991 | "quote",
1992 | "wasm-bindgen-macro-support",
1993 | ]
1994 |
1995 | [[package]]
1996 | name = "wasm-bindgen-macro-support"
1997 | version = "0.2.100"
1998 | source = "registry+https://github.com/rust-lang/crates.io-index"
1999 | checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2000 | dependencies = [
2001 | "proc-macro2",
2002 | "quote",
2003 | "syn",
2004 | "wasm-bindgen-backend",
2005 | "wasm-bindgen-shared",
2006 | ]
2007 |
2008 | [[package]]
2009 | name = "wasm-bindgen-shared"
2010 | version = "0.2.100"
2011 | source = "registry+https://github.com/rust-lang/crates.io-index"
2012 | checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2013 | dependencies = [
2014 | "unicode-ident",
2015 | ]
2016 |
2017 | [[package]]
2018 | name = "wayland-backend"
2019 | version = "0.3.11"
2020 | source = "registry+https://github.com/rust-lang/crates.io-index"
2021 | checksum = "673a33c33048a5ade91a6b139580fa174e19fb0d23f396dca9fa15f2e1e49b35"
2022 | dependencies = [
2023 | "cc",
2024 | "downcast-rs",
2025 | "rustix 1.0.8",
2026 | "scoped-tls",
2027 | "smallvec",
2028 | "wayland-sys",
2029 | ]
2030 |
2031 | [[package]]
2032 | name = "wayland-client"
2033 | version = "0.31.11"
2034 | source = "registry+https://github.com/rust-lang/crates.io-index"
2035 | checksum = "c66a47e840dc20793f2264eb4b3e4ecb4b75d91c0dd4af04b456128e0bdd449d"
2036 | dependencies = [
2037 | "bitflags 2.9.3",
2038 | "rustix 1.0.8",
2039 | "wayland-backend",
2040 | "wayland-scanner",
2041 | ]
2042 |
2043 | [[package]]
2044 | name = "wayland-csd-frame"
2045 | version = "0.3.0"
2046 | source = "registry+https://github.com/rust-lang/crates.io-index"
2047 | checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e"
2048 | dependencies = [
2049 | "bitflags 2.9.3",
2050 | "cursor-icon",
2051 | "wayland-backend",
2052 | ]
2053 |
2054 | [[package]]
2055 | name = "wayland-cursor"
2056 | version = "0.31.11"
2057 | source = "registry+https://github.com/rust-lang/crates.io-index"
2058 | checksum = "447ccc440a881271b19e9989f75726d60faa09b95b0200a9b7eb5cc47c3eeb29"
2059 | dependencies = [
2060 | "rustix 1.0.8",
2061 | "wayland-client",
2062 | "xcursor",
2063 | ]
2064 |
2065 | [[package]]
2066 | name = "wayland-protocols"
2067 | version = "0.32.9"
2068 | source = "registry+https://github.com/rust-lang/crates.io-index"
2069 | checksum = "efa790ed75fbfd71283bd2521a1cfdc022aabcc28bdcff00851f9e4ae88d9901"
2070 | dependencies = [
2071 | "bitflags 2.9.3",
2072 | "wayland-backend",
2073 | "wayland-client",
2074 | "wayland-scanner",
2075 | ]
2076 |
2077 | [[package]]
2078 | name = "wayland-protocols-wlr"
2079 | version = "0.3.9"
2080 | source = "registry+https://github.com/rust-lang/crates.io-index"
2081 | checksum = "efd94963ed43cf9938a090ca4f7da58eb55325ec8200c3848963e98dc25b78ec"
2082 | dependencies = [
2083 | "bitflags 2.9.3",
2084 | "wayland-backend",
2085 | "wayland-client",
2086 | "wayland-protocols",
2087 | "wayland-scanner",
2088 | ]
2089 |
2090 | [[package]]
2091 | name = "wayland-scanner"
2092 | version = "0.31.7"
2093 | source = "registry+https://github.com/rust-lang/crates.io-index"
2094 | checksum = "54cb1e9dc49da91950bdfd8b848c49330536d9d1fb03d4bfec8cae50caa50ae3"
2095 | dependencies = [
2096 | "proc-macro2",
2097 | "quick-xml",
2098 | "quote",
2099 | ]
2100 |
2101 | [[package]]
2102 | name = "wayland-sys"
2103 | version = "0.31.7"
2104 | source = "registry+https://github.com/rust-lang/crates.io-index"
2105 | checksum = "34949b42822155826b41db8e5d0c1be3a2bd296c747577a43a3e6daefc296142"
2106 | dependencies = [
2107 | "dlib",
2108 | "log",
2109 | "once_cell",
2110 | "pkg-config",
2111 | ]
2112 |
2113 | [[package]]
2114 | name = "web-sys"
2115 | version = "0.3.77"
2116 | source = "registry+https://github.com/rust-lang/crates.io-index"
2117 | checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
2118 | dependencies = [
2119 | "js-sys",
2120 | "wasm-bindgen",
2121 | ]
2122 |
2123 | [[package]]
2124 | name = "web-time"
2125 | version = "1.1.0"
2126 | source = "registry+https://github.com/rust-lang/crates.io-index"
2127 | checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2128 | dependencies = [
2129 | "js-sys",
2130 | "wasm-bindgen",
2131 | ]
2132 |
2133 | [[package]]
2134 | name = "webbrowser"
2135 | version = "1.0.5"
2136 | source = "registry+https://github.com/rust-lang/crates.io-index"
2137 | checksum = "aaf4f3c0ba838e82b4e5ccc4157003fb8c324ee24c058470ffb82820becbde98"
2138 | dependencies = [
2139 | "core-foundation 0.10.1",
2140 | "jni",
2141 | "log",
2142 | "ndk-context",
2143 | "objc2 0.6.2",
2144 | "objc2-foundation 0.3.1",
2145 | "url",
2146 | "web-sys",
2147 | ]
2148 |
2149 | [[package]]
2150 | name = "weezl"
2151 | version = "0.1.10"
2152 | source = "registry+https://github.com/rust-lang/crates.io-index"
2153 | checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3"
2154 |
2155 | [[package]]
2156 | name = "winapi"
2157 | version = "0.3.9"
2158 | source = "registry+https://github.com/rust-lang/crates.io-index"
2159 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2160 | dependencies = [
2161 | "winapi-i686-pc-windows-gnu",
2162 | "winapi-x86_64-pc-windows-gnu",
2163 | ]
2164 |
2165 | [[package]]
2166 | name = "winapi-i686-pc-windows-gnu"
2167 | version = "0.4.0"
2168 | source = "registry+https://github.com/rust-lang/crates.io-index"
2169 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2170 |
2171 | [[package]]
2172 | name = "winapi-util"
2173 | version = "0.1.10"
2174 | source = "registry+https://github.com/rust-lang/crates.io-index"
2175 | checksum = "0978bf7171b3d90bac376700cb56d606feb40f251a475a5d6634613564460b22"
2176 | dependencies = [
2177 | "windows-sys 0.60.2",
2178 | ]
2179 |
2180 | [[package]]
2181 | name = "winapi-x86_64-pc-windows-gnu"
2182 | version = "0.4.0"
2183 | source = "registry+https://github.com/rust-lang/crates.io-index"
2184 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2185 |
2186 | [[package]]
2187 | name = "windows"
2188 | version = "0.61.3"
2189 | source = "registry+https://github.com/rust-lang/crates.io-index"
2190 | checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
2191 | dependencies = [
2192 | "windows-collections",
2193 | "windows-core",
2194 | "windows-future",
2195 | "windows-link",
2196 | "windows-numerics",
2197 | ]
2198 |
2199 | [[package]]
2200 | name = "windows-collections"
2201 | version = "0.2.0"
2202 | source = "registry+https://github.com/rust-lang/crates.io-index"
2203 | checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
2204 | dependencies = [
2205 | "windows-core",
2206 | ]
2207 |
2208 | [[package]]
2209 | name = "windows-core"
2210 | version = "0.61.2"
2211 | source = "registry+https://github.com/rust-lang/crates.io-index"
2212 | checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
2213 | dependencies = [
2214 | "windows-implement",
2215 | "windows-interface",
2216 | "windows-link",
2217 | "windows-result",
2218 | "windows-strings",
2219 | ]
2220 |
2221 | [[package]]
2222 | name = "windows-future"
2223 | version = "0.2.1"
2224 | source = "registry+https://github.com/rust-lang/crates.io-index"
2225 | checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
2226 | dependencies = [
2227 | "windows-core",
2228 | "windows-link",
2229 | "windows-threading",
2230 | ]
2231 |
2232 | [[package]]
2233 | name = "windows-implement"
2234 | version = "0.60.0"
2235 | source = "registry+https://github.com/rust-lang/crates.io-index"
2236 | checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
2237 | dependencies = [
2238 | "proc-macro2",
2239 | "quote",
2240 | "syn",
2241 | ]
2242 |
2243 | [[package]]
2244 | name = "windows-interface"
2245 | version = "0.59.1"
2246 | source = "registry+https://github.com/rust-lang/crates.io-index"
2247 | checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
2248 | dependencies = [
2249 | "proc-macro2",
2250 | "quote",
2251 | "syn",
2252 | ]
2253 |
2254 | [[package]]
2255 | name = "windows-link"
2256 | version = "0.1.3"
2257 | source = "registry+https://github.com/rust-lang/crates.io-index"
2258 | checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2259 |
2260 | [[package]]
2261 | name = "windows-numerics"
2262 | version = "0.2.0"
2263 | source = "registry+https://github.com/rust-lang/crates.io-index"
2264 | checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
2265 | dependencies = [
2266 | "windows-core",
2267 | "windows-link",
2268 | ]
2269 |
2270 | [[package]]
2271 | name = "windows-result"
2272 | version = "0.3.4"
2273 | source = "registry+https://github.com/rust-lang/crates.io-index"
2274 | checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2275 | dependencies = [
2276 | "windows-link",
2277 | ]
2278 |
2279 | [[package]]
2280 | name = "windows-strings"
2281 | version = "0.4.2"
2282 | source = "registry+https://github.com/rust-lang/crates.io-index"
2283 | checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2284 | dependencies = [
2285 | "windows-link",
2286 | ]
2287 |
2288 | [[package]]
2289 | name = "windows-sys"
2290 | version = "0.45.0"
2291 | source = "registry+https://github.com/rust-lang/crates.io-index"
2292 | checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2293 | dependencies = [
2294 | "windows-targets 0.42.2",
2295 | ]
2296 |
2297 | [[package]]
2298 | name = "windows-sys"
2299 | version = "0.52.0"
2300 | source = "registry+https://github.com/rust-lang/crates.io-index"
2301 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2302 | dependencies = [
2303 | "windows-targets 0.52.6",
2304 | ]
2305 |
2306 | [[package]]
2307 | name = "windows-sys"
2308 | version = "0.59.0"
2309 | source = "registry+https://github.com/rust-lang/crates.io-index"
2310 | checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2311 | dependencies = [
2312 | "windows-targets 0.52.6",
2313 | ]
2314 |
2315 | [[package]]
2316 | name = "windows-sys"
2317 | version = "0.60.2"
2318 | source = "registry+https://github.com/rust-lang/crates.io-index"
2319 | checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2320 | dependencies = [
2321 | "windows-targets 0.53.3",
2322 | ]
2323 |
2324 | [[package]]
2325 | name = "windows-targets"
2326 | version = "0.42.2"
2327 | source = "registry+https://github.com/rust-lang/crates.io-index"
2328 | checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2329 | dependencies = [
2330 | "windows_aarch64_gnullvm 0.42.2",
2331 | "windows_aarch64_msvc 0.42.2",
2332 | "windows_i686_gnu 0.42.2",
2333 | "windows_i686_msvc 0.42.2",
2334 | "windows_x86_64_gnu 0.42.2",
2335 | "windows_x86_64_gnullvm 0.42.2",
2336 | "windows_x86_64_msvc 0.42.2",
2337 | ]
2338 |
2339 | [[package]]
2340 | name = "windows-targets"
2341 | version = "0.52.6"
2342 | source = "registry+https://github.com/rust-lang/crates.io-index"
2343 | checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2344 | dependencies = [
2345 | "windows_aarch64_gnullvm 0.52.6",
2346 | "windows_aarch64_msvc 0.52.6",
2347 | "windows_i686_gnu 0.52.6",
2348 | "windows_i686_gnullvm 0.52.6",
2349 | "windows_i686_msvc 0.52.6",
2350 | "windows_x86_64_gnu 0.52.6",
2351 | "windows_x86_64_gnullvm 0.52.6",
2352 | "windows_x86_64_msvc 0.52.6",
2353 | ]
2354 |
2355 | [[package]]
2356 | name = "windows-targets"
2357 | version = "0.53.3"
2358 | source = "registry+https://github.com/rust-lang/crates.io-index"
2359 | checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
2360 | dependencies = [
2361 | "windows-link",
2362 | "windows_aarch64_gnullvm 0.53.0",
2363 | "windows_aarch64_msvc 0.53.0",
2364 | "windows_i686_gnu 0.53.0",
2365 | "windows_i686_gnullvm 0.53.0",
2366 | "windows_i686_msvc 0.53.0",
2367 | "windows_x86_64_gnu 0.53.0",
2368 | "windows_x86_64_gnullvm 0.53.0",
2369 | "windows_x86_64_msvc 0.53.0",
2370 | ]
2371 |
2372 | [[package]]
2373 | name = "windows-threading"
2374 | version = "0.1.0"
2375 | source = "registry+https://github.com/rust-lang/crates.io-index"
2376 | checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
2377 | dependencies = [
2378 | "windows-link",
2379 | ]
2380 |
2381 | [[package]]
2382 | name = "windows_aarch64_gnullvm"
2383 | version = "0.42.2"
2384 | source = "registry+https://github.com/rust-lang/crates.io-index"
2385 | checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2386 |
2387 | [[package]]
2388 | name = "windows_aarch64_gnullvm"
2389 | version = "0.52.6"
2390 | source = "registry+https://github.com/rust-lang/crates.io-index"
2391 | checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2392 |
2393 | [[package]]
2394 | name = "windows_aarch64_gnullvm"
2395 | version = "0.53.0"
2396 | source = "registry+https://github.com/rust-lang/crates.io-index"
2397 | checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
2398 |
2399 | [[package]]
2400 | name = "windows_aarch64_msvc"
2401 | version = "0.42.2"
2402 | source = "registry+https://github.com/rust-lang/crates.io-index"
2403 | checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2404 |
2405 | [[package]]
2406 | name = "windows_aarch64_msvc"
2407 | version = "0.52.6"
2408 | source = "registry+https://github.com/rust-lang/crates.io-index"
2409 | checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2410 |
2411 | [[package]]
2412 | name = "windows_aarch64_msvc"
2413 | version = "0.53.0"
2414 | source = "registry+https://github.com/rust-lang/crates.io-index"
2415 | checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
2416 |
2417 | [[package]]
2418 | name = "windows_i686_gnu"
2419 | version = "0.42.2"
2420 | source = "registry+https://github.com/rust-lang/crates.io-index"
2421 | checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2422 |
2423 | [[package]]
2424 | name = "windows_i686_gnu"
2425 | version = "0.52.6"
2426 | source = "registry+https://github.com/rust-lang/crates.io-index"
2427 | checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2428 |
2429 | [[package]]
2430 | name = "windows_i686_gnu"
2431 | version = "0.53.0"
2432 | source = "registry+https://github.com/rust-lang/crates.io-index"
2433 | checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
2434 |
2435 | [[package]]
2436 | name = "windows_i686_gnullvm"
2437 | version = "0.52.6"
2438 | source = "registry+https://github.com/rust-lang/crates.io-index"
2439 | checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2440 |
2441 | [[package]]
2442 | name = "windows_i686_gnullvm"
2443 | version = "0.53.0"
2444 | source = "registry+https://github.com/rust-lang/crates.io-index"
2445 | checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
2446 |
2447 | [[package]]
2448 | name = "windows_i686_msvc"
2449 | version = "0.42.2"
2450 | source = "registry+https://github.com/rust-lang/crates.io-index"
2451 | checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2452 |
2453 | [[package]]
2454 | name = "windows_i686_msvc"
2455 | version = "0.52.6"
2456 | source = "registry+https://github.com/rust-lang/crates.io-index"
2457 | checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2458 |
2459 | [[package]]
2460 | name = "windows_i686_msvc"
2461 | version = "0.53.0"
2462 | source = "registry+https://github.com/rust-lang/crates.io-index"
2463 | checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2464 |
2465 | [[package]]
2466 | name = "windows_x86_64_gnu"
2467 | version = "0.42.2"
2468 | source = "registry+https://github.com/rust-lang/crates.io-index"
2469 | checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2470 |
2471 | [[package]]
2472 | name = "windows_x86_64_gnu"
2473 | version = "0.52.6"
2474 | source = "registry+https://github.com/rust-lang/crates.io-index"
2475 | checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2476 |
2477 | [[package]]
2478 | name = "windows_x86_64_gnu"
2479 | version = "0.53.0"
2480 | source = "registry+https://github.com/rust-lang/crates.io-index"
2481 | checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2482 |
2483 | [[package]]
2484 | name = "windows_x86_64_gnullvm"
2485 | version = "0.42.2"
2486 | source = "registry+https://github.com/rust-lang/crates.io-index"
2487 | checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2488 |
2489 | [[package]]
2490 | name = "windows_x86_64_gnullvm"
2491 | version = "0.52.6"
2492 | source = "registry+https://github.com/rust-lang/crates.io-index"
2493 | checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2494 |
2495 | [[package]]
2496 | name = "windows_x86_64_gnullvm"
2497 | version = "0.53.0"
2498 | source = "registry+https://github.com/rust-lang/crates.io-index"
2499 | checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2500 |
2501 | [[package]]
2502 | name = "windows_x86_64_msvc"
2503 | version = "0.42.2"
2504 | source = "registry+https://github.com/rust-lang/crates.io-index"
2505 | checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2506 |
2507 | [[package]]
2508 | name = "windows_x86_64_msvc"
2509 | version = "0.52.6"
2510 | source = "registry+https://github.com/rust-lang/crates.io-index"
2511 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2512 |
2513 | [[package]]
2514 | name = "windows_x86_64_msvc"
2515 | version = "0.53.0"
2516 | source = "registry+https://github.com/rust-lang/crates.io-index"
2517 | checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2518 |
2519 | [[package]]
2520 | name = "winit"
2521 | version = "0.30.12"
2522 | source = "registry+https://github.com/rust-lang/crates.io-index"
2523 | checksum = "c66d4b9ed69c4009f6321f762d6e61ad8a2389cd431b97cb1e146812e9e6c732"
2524 | dependencies = [
2525 | "android-activity",
2526 | "atomic-waker",
2527 | "bitflags 2.9.3",
2528 | "block2",
2529 | "calloop",
2530 | "cfg_aliases",
2531 | "concurrent-queue",
2532 | "core-foundation 0.9.4",
2533 | "core-graphics",
2534 | "cursor-icon",
2535 | "dpi",
2536 | "js-sys",
2537 | "libc",
2538 | "ndk",
2539 | "objc2 0.5.2",
2540 | "objc2-app-kit 0.2.2",
2541 | "objc2-foundation 0.2.2",
2542 | "objc2-ui-kit",
2543 | "orbclient",
2544 | "pin-project",
2545 | "raw-window-handle",
2546 | "redox_syscall 0.4.1",
2547 | "rustix 0.38.44",
2548 | "smol_str",
2549 | "tracing",
2550 | "unicode-segmentation",
2551 | "wasm-bindgen",
2552 | "wasm-bindgen-futures",
2553 | "web-sys",
2554 | "web-time",
2555 | "windows-sys 0.52.0",
2556 | "xkbcommon-dl",
2557 | ]
2558 |
2559 | [[package]]
2560 | name = "winnow"
2561 | version = "0.7.13"
2562 | source = "registry+https://github.com/rust-lang/crates.io-index"
2563 | checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
2564 | dependencies = [
2565 | "memchr",
2566 | ]
2567 |
2568 | [[package]]
2569 | name = "winreg"
2570 | version = "0.55.0"
2571 | source = "registry+https://github.com/rust-lang/crates.io-index"
2572 | checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97"
2573 | dependencies = [
2574 | "cfg-if",
2575 | "windows-sys 0.59.0",
2576 | ]
2577 |
2578 | [[package]]
2579 | name = "wit-bindgen"
2580 | version = "0.45.0"
2581 | source = "registry+https://github.com/rust-lang/crates.io-index"
2582 | checksum = "052283831dbae3d879dc7f51f3d92703a316ca49f91540417d38591826127814"
2583 |
2584 | [[package]]
2585 | name = "writeable"
2586 | version = "0.6.1"
2587 | source = "registry+https://github.com/rust-lang/crates.io-index"
2588 | checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
2589 |
2590 | [[package]]
2591 | name = "x11rb"
2592 | version = "0.13.2"
2593 | source = "registry+https://github.com/rust-lang/crates.io-index"
2594 | checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
2595 | dependencies = [
2596 | "gethostname",
2597 | "rustix 1.0.8",
2598 | "x11rb-protocol",
2599 | ]
2600 |
2601 | [[package]]
2602 | name = "x11rb-protocol"
2603 | version = "0.13.2"
2604 | source = "registry+https://github.com/rust-lang/crates.io-index"
2605 | checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
2606 |
2607 | [[package]]
2608 | name = "xcursor"
2609 | version = "0.3.10"
2610 | source = "registry+https://github.com/rust-lang/crates.io-index"
2611 | checksum = "bec9e4a500ca8864c5b47b8b482a73d62e4237670e5b5f1d6b9e3cae50f28f2b"
2612 |
2613 | [[package]]
2614 | name = "xkbcommon-dl"
2615 | version = "0.4.2"
2616 | source = "registry+https://github.com/rust-lang/crates.io-index"
2617 | checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
2618 | dependencies = [
2619 | "bitflags 2.9.3",
2620 | "dlib",
2621 | "log",
2622 | "once_cell",
2623 | "xkeysym",
2624 | ]
2625 |
2626 | [[package]]
2627 | name = "xkeysym"
2628 | version = "0.2.1"
2629 | source = "registry+https://github.com/rust-lang/crates.io-index"
2630 | checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
2631 |
2632 | [[package]]
2633 | name = "xml-rs"
2634 | version = "0.8.27"
2635 | source = "registry+https://github.com/rust-lang/crates.io-index"
2636 | checksum = "6fd8403733700263c6eb89f192880191f1b83e332f7a20371ddcf421c4a337c7"
2637 |
2638 | [[package]]
2639 | name = "yoke"
2640 | version = "0.8.0"
2641 | source = "registry+https://github.com/rust-lang/crates.io-index"
2642 | checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
2643 | dependencies = [
2644 | "serde",
2645 | "stable_deref_trait",
2646 | "yoke-derive",
2647 | "zerofrom",
2648 | ]
2649 |
2650 | [[package]]
2651 | name = "yoke-derive"
2652 | version = "0.8.0"
2653 | source = "registry+https://github.com/rust-lang/crates.io-index"
2654 | checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
2655 | dependencies = [
2656 | "proc-macro2",
2657 | "quote",
2658 | "syn",
2659 | "synstructure",
2660 | ]
2661 |
2662 | [[package]]
2663 | name = "zerocopy"
2664 | version = "0.8.26"
2665 | source = "registry+https://github.com/rust-lang/crates.io-index"
2666 | checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
2667 | dependencies = [
2668 | "zerocopy-derive",
2669 | ]
2670 |
2671 | [[package]]
2672 | name = "zerocopy-derive"
2673 | version = "0.8.26"
2674 | source = "registry+https://github.com/rust-lang/crates.io-index"
2675 | checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
2676 | dependencies = [
2677 | "proc-macro2",
2678 | "quote",
2679 | "syn",
2680 | ]
2681 |
2682 | [[package]]
2683 | name = "zerofrom"
2684 | version = "0.1.6"
2685 | source = "registry+https://github.com/rust-lang/crates.io-index"
2686 | checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2687 | dependencies = [
2688 | "zerofrom-derive",
2689 | ]
2690 |
2691 | [[package]]
2692 | name = "zerofrom-derive"
2693 | version = "0.1.6"
2694 | source = "registry+https://github.com/rust-lang/crates.io-index"
2695 | checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2696 | dependencies = [
2697 | "proc-macro2",
2698 | "quote",
2699 | "syn",
2700 | "synstructure",
2701 | ]
2702 |
2703 | [[package]]
2704 | name = "zerotrie"
2705 | version = "0.2.2"
2706 | source = "registry+https://github.com/rust-lang/crates.io-index"
2707 | checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
2708 | dependencies = [
2709 | "displaydoc",
2710 | "yoke",
2711 | "zerofrom",
2712 | ]
2713 |
2714 | [[package]]
2715 | name = "zerovec"
2716 | version = "0.11.4"
2717 | source = "registry+https://github.com/rust-lang/crates.io-index"
2718 | checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
2719 | dependencies = [
2720 | "yoke",
2721 | "zerofrom",
2722 | "zerovec-derive",
2723 | ]
2724 |
2725 | [[package]]
2726 | name = "zerovec-derive"
2727 | version = "0.11.1"
2728 | source = "registry+https://github.com/rust-lang/crates.io-index"
2729 | checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
2730 | dependencies = [
2731 | "proc-macro2",
2732 | "quote",
2733 | "syn",
2734 | ]
2735 |
--------------------------------------------------------------------------------