├── .gitignore
├── icon.ico
├── .cargo
└── config.toml
├── documentation.txt
├── Cargo.toml
├── README.md
├── src
├── download_files.rs
├── helper.rs
└── main.rs
├── LICENSE.txt
└── Cargo.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | /target
2 |
--------------------------------------------------------------------------------
/icon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/death7654/Chromebook-Driver-Installer/HEAD/icon.ico
--------------------------------------------------------------------------------
/.cargo/config.toml:
--------------------------------------------------------------------------------
1 | [target.'cfg(all(windows, target_env = "msvc"))']
2 | rustflags = ["-C", "target-feature=+crt-static"]
--------------------------------------------------------------------------------
/documentation.txt:
--------------------------------------------------------------------------------
1 | build.rs forces the app to start as an admin as well as giving it an icon
2 |
3 | to build the app use
4 |
5 | cargo build --release --target=x86_64-pc-windows-msvc
6 |
7 |
--------------------------------------------------------------------------------
/Cargo.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "One_Click_Driver_Installer"
3 | build = "build.rs"
4 | version = "3.1.1"
5 | edition = "2021"
6 |
7 | [dependencies]
8 | tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
9 | exitfailure = "0.5.1"
10 | failure = "0.1.8"
11 | futures-util = "0.3.31"
12 | indicatif = "0.15.0"
13 | inquire = "0.7.5"
14 | reqwest = {version = "0.12.8", features=["stream"]}
15 | terminal-link = "0.1.0"
16 | serde_json = "1.0.133"
17 | serde = { version = "1.0.210", features = ["derive"] }
18 | zip-extensions = "0.8.1"
19 |
20 |
21 | [target.'cfg(windows)'.build-dependencies]
22 | winres = "0.1.12"
23 |
24 | [profile.release]
25 | opt-level = 3
26 | panic = "abort"
27 | strip = "symbols"
28 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # One Click Driver Installer
2 |
3 |
4 |
5 |
6 |
7 | ## An easy way to install all open-source drivers for your chromebook
8 |
9 |
10 |
11 | ### Windows
12 |
13 | - Download the latest version of the application
14 | - Open the application as an admin via terminal or by right clicking the executeable
15 | - Follow Instructions
16 | - Reboot your chromebook after the installation has completed
17 |
18 |
19 |
20 | ## Built Using
21 |
22 | - Rust 1.83
23 |
24 | ## Authors
25 |
26 | 👤 **Robinson Arysseril**
27 |
28 | - GitHub: [@death7654](https://github.com/death7654)
29 |
30 | ## 🤝 Contributing
31 |
32 | Contributions, issues and feature requests are welcome!
33 |
34 | ## Show your support
35 |
36 | Give a ⭐️ if this project helped you!
37 |
38 | ## 📝 License
39 |
40 | This project is [GPL-3.0](https://github.com/death7654/Chromebook-Driver-Installer?tab=GPL-3.0-1-ov-file#readme) licensed.
41 |
42 | ## Disclaimer
43 |
44 | THE SOFTWARE IS PROVIDED “AS IS” AND WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. MISUSE OF THIS SOFTWARE COULD CAUSE SYSTEM INSTABILITY OR MALFUNCTION.
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/src/download_files.rs:
--------------------------------------------------------------------------------
1 | use std::cmp::min;
2 | use std::fs::File;
3 | use std::io::Write;
4 |
5 | use futures_util::StreamExt;
6 | use indicatif::{ProgressBar, ProgressStyle};
7 | use reqwest::Client;
8 |
9 | pub async fn download(url: &str, path: &str) -> Result<(), String> {
10 | // Reqwest setup
11 | let url_copy = &url;
12 | let client = Client::new();
13 | let res = client
14 | .get(url)
15 | .send()
16 | .await
17 | .or(Err(format!("Failed to GET from '{}'", &url)))?;
18 | let total_size = res
19 | .content_length()
20 | .ok_or(format!("Failed to get content length from '{}'", &url))?;
21 |
22 | // Indicatif setup
23 | let pb = ProgressBar::new(total_size);
24 | pb.set_style(ProgressStyle::default_bar()
25 | .template("{msg}\n{spinner:.green} [{elapsed_precise}] [{wide_bar:.green/cyan}] {bytes}/{total_bytes} ({bytes_per_sec}, {eta})")
26 | .progress_chars("#>-"));
27 | pb.set_message(&format!("Downloading {}", url_copy));
28 |
29 | // download chunks
30 | let mut file = File::create(path).or(Err(format!("Failed to create file '{}'", path)))?;
31 | let mut downloaded: u64 = 0;
32 | let mut stream = res.bytes_stream();
33 |
34 | while let Some(item) = stream.next().await {
35 | let chunk = item.or(Err(format!("Error while downloading file")))?;
36 | file.write_all(&chunk)
37 | .or(Err(format!("Error while writing to file")))?;
38 | let new = min(downloaded + (chunk.len() as u64), total_size);
39 | downloaded = new;
40 | pb.set_position(new);
41 | }
42 |
43 | pb.finish_with_message(&format!("\nDownloaded {} to {}", url_copy, path));
44 | return Ok(());
45 | }
46 |
--------------------------------------------------------------------------------
/src/helper.rs:
--------------------------------------------------------------------------------
1 | pub fn to_vec_string(input: Vec<&str>) -> Vec {
2 | let strings: Vec = input.iter().map(|&s| s.into()).collect();
3 | return strings;
4 | }
5 | pub fn remove_quotes(input: String) -> String {
6 | input[1..(input.len() - 1)].to_string()
7 | }
8 | pub fn get_boardname() -> String {
9 | let cmd: Result = std::process::Command::new("wmic")
10 | .args(vec!["baseboard", "get", "product"])
11 | .output();
12 | let str = match cmd {
13 | Ok(output) => String::from_utf8_lossy(&output.stdout)
14 | .to_string()
15 | .split("\n")
16 | .map(|x| x.to_string())
17 | .collect::>()[1]
18 | .clone(),
19 |
20 | Err(e) => {
21 | let error = &e;
22 | println!("Error `{}`.", error);
23 | return "Error".to_string();
24 | }
25 | };
26 | str.trim().to_string()
27 | }
28 | pub fn get_hwid() -> Vec {
29 | let cmd: Result =
30 | std::process::Command::new("powershell.exe")
31 | .args(vec![
32 | "Get-WmiObject",
33 | "Win32_PNPEntity",
34 | "|",
35 | "Select",
36 | "DeviceID",
37 | ])
38 | .output();
39 | let str = match cmd {
40 | Ok(output) => String::from_utf8_lossy(&output.stdout).to_string(),
41 | Err(e) => {
42 | let error = &e;
43 | println!("Error `{}`.", error);
44 | return vec!["Error".to_string()];
45 | }
46 | };
47 | let mut hwid = str
48 | .trim()
49 | .to_string()
50 | .split("\n")
51 | .map(|x| x.trim().to_string())
52 | .collect::>()
53 | .clone();
54 | for string in &mut hwid {
55 | // Check if the word has at least 3 characters
56 | if string.len() >= 3 {
57 | string.truncate(string.len() - 2);
58 | }
59 | }
60 | return hwid;
61 | }
62 | pub fn run_chipset_ps1() {
63 | let _: Result =
64 | std::process::Command::new("powershell.exe")
65 | .args(vec![
66 | "-ExecutionPolicy",
67 | "bypass",
68 | "-file",
69 | "C:\\oneclickdriverinstalltemp\\zip\\autoinstall-intel.ps1",
70 | ])
71 | .output();
72 | }
73 |
--------------------------------------------------------------------------------
/src/main.rs:
--------------------------------------------------------------------------------
1 | mod download_files;
2 | mod helper;
3 |
4 | use inquire::{self, Confirm};
5 | use serde_json::Value;
6 | use std::fs::File;
7 | use std::io::Read;
8 | use std::path::{Path, PathBuf};
9 | use std::process::Command;
10 | use std::vec;
11 | use std::{fs, process::exit};
12 | use terminal_link::Link;
13 |
14 | use std::process::ExitStatus;
15 | use std::thread::sleep;
16 | use std::time::Duration;
17 |
18 | use zip_extensions::*;
19 |
20 | const DATABASE: &str =
21 | "https://github.com/death7654/ChromebookDatabase/releases/latest/download/database.json";
22 |
23 | const LINKS: &str =
24 | "https://github.com/death7654/Driver-Installer-Links/releases/latest/download/links.json";
25 | const DATABASE_FILE_PATH: &str = "C:/oneclickdriverinstalltemp/database/database.json";
26 |
27 | const LINKS_FILE_PATH: &str = "C:/oneclickdriverinstalltemp/database/links.json";
28 |
29 | const MAX989090HWID: [&str; 2] = ["ACPI\\VEN_193C&DEV_9890&REV_0002", "ACPI\\193C9890"];
30 | const TOUCHSCREENHWID: [&str; 4] = [
31 | "ACPI\\ATML0001",
32 | "ACPI\\MLFS0000",
33 | "ACPI\\RAYD0001",
34 | "ACPI\\ELAN0001",
35 | ];
36 |
37 | #[derive(serde::Serialize, serde::Deserialize, Debug)]
38 | struct Chromebook {
39 | cpu_codename: String,
40 | avaliable_drivers: String,
41 | cpu_brand: String,
42 | device_name: String,
43 | cpu_generation: String,
44 | board_name: String,
45 | touchscreen: bool,
46 | }
47 | #[derive(serde::Serialize, serde::Deserialize, Debug)]
48 | struct Links {
49 | vcredist: String,
50 | touchpad: String,
51 | touchscreen: String,
52 | ec: String,
53 | wilco_ec: String,
54 | cr50: String,
55 | maxim989090: String,
56 | ryzen3000audio: String,
57 | i2c_link: String,
58 | alc5645: String,
59 | cyan_audio: String,
60 | creative_audio: String,
61 | r11_audio: String,
62 | drallion_audio: String,
63 | ax211_wifi: String,
64 | broadwell_rapid_storage: String,
65 | cometlake_rapid_storage: String,
66 | xe_graphics: String,
67 | jasperlake_chipset: String,
68 | amd_chipset: String,
69 | amd_graphics: String,
70 | intel_chipset: String,
71 | chrultrabook_tools: String,
72 | purchase_driver_portal: String,
73 | }
74 |
75 | async fn download_relay(list: Vec) {
76 | let mut counter = 0;
77 | for i in list {
78 | if i != "https://raw.githubusercontent.com/coolstar/driverinstallers/master/autoinstall-intel.zip" {
79 | let path = "/oneclickdriverinstalltemp/drivers/".to_string()
80 | + (&counter.to_string())
81 | + &".exe";
82 | let _ = download_files::download(&i, &path).await;
83 | } else {
84 | let _ = download_files::download(&i, "/oneclickdriverinstalltemp/zip/intel.zip").await;
85 | }
86 | counter += 1;
87 | }
88 | }
89 |
90 | async fn setup_installation() -> Vec {
91 | //creates temporary download directory
92 | let _ = fs::create_dir_all("/oneclickdriverinstalltemp/drivers");
93 | let _ = fs::create_dir("/oneclickdriverinstalltemp/database");
94 |
95 | //downloads database
96 | let _ = download_files::download(&DATABASE, DATABASE_FILE_PATH).await;
97 | let _ = download_files::download(&LINKS, LINKS_FILE_PATH).await;
98 |
99 | //gets boardname
100 | let boardname: String = helper::get_boardname();
101 |
102 | //converts the .json file into a string
103 | let mut file = File::open("/oneclickdriverinstalltemp/database/database.json").unwrap();
104 | let mut contents = String::new();
105 | file.read_to_string(&mut contents).unwrap();
106 |
107 | //converts the string into json objects
108 | let mut v: Value = serde_json::from_str(&mut contents).unwrap();
109 |
110 | //empty object to store future detected values
111 | let mut chromebooks = Chromebook {
112 | cpu_codename: String::new(),
113 | avaliable_drivers: String::new(),
114 | cpu_brand: String::new(),
115 | device_name: String::new(),
116 | cpu_generation: String::new(),
117 | board_name: String::new(),
118 | touchscreen: false,
119 | };
120 | //converts json objects into an array so it can be iterated upon
121 | let mut objects = v.as_array().unwrap().clone();
122 | let mut counter = 0;
123 |
124 | //iterating through an array
125 | for _ in &objects {
126 | if objects[counter]["board_name"] == boardname {
127 | chromebooks.cpu_codename =
128 | helper::remove_quotes(objects[counter]["cpu_codename"].to_string());
129 | chromebooks.avaliable_drivers =
130 | helper::remove_quotes(objects[counter]["avaliable_drivers"].to_string());
131 | chromebooks.cpu_brand =
132 | helper::remove_quotes(objects[counter]["cpu_brand"].to_string());
133 | chromebooks.device_name =
134 | helper::remove_quotes(objects[counter]["device_name"].to_string());
135 | chromebooks.board_name =
136 | helper::remove_quotes(objects[counter]["board_name"].to_string());
137 | chromebooks.cpu_generation =
138 | helper::remove_quotes(objects[counter]["cpu_generation"].to_string());
139 | }
140 | counter += 1
141 | }
142 |
143 | file = File::open("/oneclickdriverinstalltemp/database/links.json").unwrap();
144 | contents = String::new();
145 | file.read_to_string(&mut contents).unwrap();
146 |
147 | v = serde_json::from_str(&mut contents).unwrap();
148 |
149 | let mut link = Links {
150 | vcredist: String::from(""),
151 | touchpad: String::from(""),
152 | touchscreen: String::from(""),
153 | ec: String::from(""),
154 | wilco_ec: String::from(""),
155 | cr50: String::from(""),
156 | maxim989090: String::from(""),
157 | ryzen3000audio: String::from(""),
158 | i2c_link: String::from(""),
159 | alc5645: String::from(""),
160 | cyan_audio: String::from(""),
161 | creative_audio: String::from(""),
162 | r11_audio: String::from(""),
163 | drallion_audio: String::from(""),
164 | ax211_wifi: String::from(""),
165 | broadwell_rapid_storage: String::from(""),
166 | cometlake_rapid_storage: String::from(""),
167 | xe_graphics: String::from(""),
168 | jasperlake_chipset: String::from(""),
169 | amd_chipset: String::from(""),
170 | amd_graphics: String::from(""),
171 | intel_chipset: String::from(""),
172 | chrultrabook_tools: String::from(""),
173 | purchase_driver_portal: String::from(""),
174 | };
175 | objects = v.as_array().unwrap().clone();
176 |
177 | link.vcredist = helper::remove_quotes(objects[0]["vcredist"].to_string());
178 | link.touchpad = helper::remove_quotes(objects[0]["touchpad"].to_string());
179 | link.touchscreen = helper::remove_quotes(objects[0]["touchscreen"].to_string());
180 | link.ec = helper::remove_quotes(objects[0]["EC"].to_string());
181 | link.wilco_ec = helper::remove_quotes(objects[0]["Wilco_EC"].to_string());
182 | link.cr50 = helper::remove_quotes(objects[0]["CR50"].to_string());
183 | link.maxim989090 = helper::remove_quotes(objects[0]["Maxim989090"].to_string());
184 | link.ryzen3000audio = helper::remove_quotes(objects[0]["Ryzen3000Audio"].to_string());
185 | link.i2c_link = helper::remove_quotes(objects[0]["I2C_Link"].to_string());
186 | link.alc5645 = helper::remove_quotes(objects[0]["ALC5645"].to_string());
187 | link.cyan_audio = helper::remove_quotes(objects[0]["Cyan_Audio"].to_string());
188 | link.creative_audio = helper::remove_quotes(objects[0]["Creative_Audio"].to_string());
189 | link.r11_audio = helper::remove_quotes(objects[0]["R11_Audio"].to_string());
190 | link.drallion_audio = helper::remove_quotes(objects[0]["Drallion_Audio"].to_string());
191 | link.ax211_wifi = helper::remove_quotes(objects[0]["AX211_Wifi"].to_string());
192 | link.broadwell_rapid_storage =
193 | helper::remove_quotes(objects[0]["Broadwell_Rapid_Storage"].to_string());
194 | link.cometlake_rapid_storage =
195 | helper::remove_quotes(objects[0]["Cometlake_Rapid_Storage"].to_string());
196 | link.xe_graphics = helper::remove_quotes(objects[0]["XE_Graphics"].to_string());
197 | link.jasperlake_chipset = helper::remove_quotes(objects[0]["Jasperlake_Chipset"].to_string());
198 | link.amd_chipset = helper::remove_quotes(objects[0]["AMD_Chipset"].to_string());
199 | link.amd_graphics = helper::remove_quotes(objects[0]["AMD_Graphics"].to_string());
200 | link.intel_chipset = helper::remove_quotes(objects[0]["Intel_Chipset_PS1"].to_string());
201 | link.chrultrabook_tools = helper::remove_quotes(objects[0]["Chrultrabook_Tools"].to_string());
202 | link.purchase_driver_portal =
203 | helper::remove_quotes(objects[0]["Purchase_Driver_Portal"].to_string());
204 |
205 | let hwid: Vec = helper::get_hwid(); //physical device hardware id (elan0001)
206 | counter = 0;
207 |
208 | while counter < TOUCHSCREENHWID.len() {
209 | if hwid.contains(&TOUCHSCREENHWID[counter].to_string()) {
210 | chromebooks.touchscreen = true;
211 | break;
212 | } else {
213 | counter += 1;
214 | }
215 | }
216 |
217 | if chromebooks.device_name.len() > 1 {
218 | println!(
219 | "\n\nYour device has been detected as \n\n {:#?}",
220 | chromebooks
221 | );
222 | } else {
223 | let option = Confirm::new(
224 | "Your device has not been properly detected or is not in the database. Continue?",
225 | )
226 | .with_default(true)
227 | .prompt();
228 | match option {
229 | Ok(true) => {}
230 | Ok(false) => exit(0),
231 | Err(_) => exit(0),
232 | }
233 | }
234 | if chromebooks.board_name == "Stout" {
235 | println!("Your Chromebook Has No Avaliable Drivers. The Program will now exit");
236 | exit(0);
237 | }
238 |
239 | let mut download_vector = vec![];
240 |
241 | let vcredist = Confirm::new("Download VC-Redist? (Required for all drivers)")
242 | .with_default(true)
243 | .prompt();
244 | match vcredist {
245 | Ok(true) => download_vector.push(&link.vcredist as &str),
246 | Ok(false) => {
247 | println!("Make sure VCREDIST is installed or in C:\\oneclickdriverinstalltemp before you install other drivers")
248 | }
249 | Err(_) => {
250 | println!("An Error has occured please try again");
251 | exit(0)
252 | }
253 | }
254 | let touchpad = Confirm::new("Download touchpad drivers?")
255 | .with_default(true)
256 | .prompt();
257 | match touchpad {
258 | Ok(true) => download_vector.push(&link.touchpad as &str),
259 | Ok(false) => {
260 | println!("")
261 | }
262 | Err(_) => {
263 | println!("An Error has occured please try again");
264 | exit(0)
265 | }
266 | }
267 | let ec = Confirm::new("Download ec driver?")
268 | .with_default(true)
269 | .prompt();
270 | match ec {
271 | Ok(true) => download_vector.push(&link.ec as &str),
272 | Ok(false) => {
273 | println!("")
274 | }
275 | Err(_) => {
276 | println!("An Error has occured please try again");
277 | exit(0)
278 | }
279 | }
280 |
281 | if chromebooks.touchscreen == true {
282 | let touchscreen = Confirm::new("Download touchscreen drivers?")
283 | .with_default(true)
284 | .prompt();
285 |
286 | match touchscreen {
287 | Ok(true) => download_vector.push(&link.touchscreen),
288 | Ok(false) => {}
289 | Err(_) => {
290 | println!("An Error has occured please try again");
291 | exit(0)
292 | }
293 | }
294 | }
295 | let mut max989090 = false;
296 | counter = 0;
297 | while counter < MAX989090HWID.len() {
298 | if hwid.contains(&MAX989090HWID[counter].to_string()) {
299 | max989090 = true;
300 | break;
301 | } else {
302 | counter += 1;
303 | }
304 | }
305 |
306 | if max989090 == true {
307 | let max = Confirm::new("Download Maxim989090 audio drivers?")
308 | .with_default(true)
309 | .prompt();
310 |
311 | match max {
312 | Ok(true) => download_vector.push(&link.maxim989090),
313 | Ok(false) => {}
314 | Err(_) => {
315 | println!("An Error has occured please try again");
316 | exit(0)
317 | }
318 | }
319 | }
320 |
321 | if chromebooks.board_name == "Link" {
322 | let i2c = Confirm::new("Download the i2c driver?")
323 | .with_default(true)
324 | .prompt();
325 |
326 | match i2c {
327 | Ok(true) => download_vector.push(&link.i2c_link),
328 | Ok(false) => {}
329 | Err(_) => {
330 | println!("An Error has occured please try again");
331 | exit(0)
332 | }
333 | }
334 | let creative_audio = Link::new("Creative Audio Driver download link", &link.creative_audio);
335 | println!("Due to Legal Constraints, Please download the Creative Audio Driver and move it to C:/oneclickdriverinstalltemp \n\n{}", creative_audio);
336 | }
337 |
338 | if chromebooks.avaliable_drivers.contains("alc5645-audio") {
339 | let alc5645 = Confirm::new("Download the ALC5465 audio driver?")
340 | .with_default(true)
341 | .prompt();
342 |
343 | match alc5645 {
344 | Ok(true) => download_vector.push(&link.alc5645),
345 | Ok(false) => {}
346 | Err(_) => {
347 | println!("An Error has occured please try again");
348 | exit(0)
349 | }
350 | }
351 | }
352 |
353 | if chromebooks.board_name == "Cyan" {
354 | let r11 = Confirm::new("Download the r11 audio driver?")
355 | .with_default(true)
356 | .prompt();
357 |
358 | match r11 {
359 | Ok(true) => download_vector.push(&link.r11_audio),
360 | Ok(false) => {}
361 | Err(_) => {
362 | println!("An Error has occured please try again");
363 | exit(0)
364 | }
365 | }
366 | }
367 |
368 | if chromebooks
369 | .avaliable_drivers
370 | .contains("rapid-storage-broadwell")
371 | {
372 | let broadwell_rapid_storage = Link::new(
373 | "Rapid Storage driver download link",
374 | &link.broadwell_rapid_storage,
375 | );
376 | println!("Due to Legal Constraints, Please download the Rapid Storage driver and move it to C:/oneclickdriverinstalltemp. Although not necessary, Intel's version is specialized and provides better battery life. \n\n{}", broadwell_rapid_storage);
377 | }
378 | if chromebooks.avaliable_drivers.contains("AX211-Wifi") {
379 | let ax211_wifi = Link::new("ax211 wifi download link", &link.ax211_wifi);
380 | println!("Due to Legal Constraints, Please download the Intel Wifi driver and move it to C:/oneclickdriverinstalltemp \n\n{}", ax211_wifi);
381 | }
382 | if chromebooks.avaliable_drivers.contains("XE-Graphics") {
383 | let xe = Link::new("graphics driver download link", &link.xe_graphics);
384 | println!("Due to Legal Constraints, Please download the graphics driver and move it to C:/oneclickdriverinstalltemp \n\n{}", xe);
385 | }
386 | if chromebooks.avaliable_drivers.contains("CezanneChipset")
387 | || chromebooks.avaliable_drivers.contains("MendocinoChipset")
388 | || chromebooks
389 | .avaliable_drivers
390 | .contains("picasso/dalichipset")
391 | {
392 | let amd = Link::new("AMD Chipset Drivers download link", &link.amd_chipset);
393 | println!("Due to Legal Constraints, Please download the AMD Chipset Drivers and move it to C:/oneclickdriverinstalltemp \n\n{}", amd);
394 | }
395 | if chromebooks.avaliable_drivers.contains("Radeon-Graphics")
396 | || chromebooks.avaliable_drivers.contains("Radeon-GPU")
397 | || chromebooks.avaliable_drivers.contains("vegagpu")
398 | {
399 | let graphics = Link::new("Amd Graphics Driver download link", &link.amd_chipset);
400 | println!("Due to Legal Constraints, Please download the AMD Graphics Drivers and move it to C:/oneclickdriverinstalltemp \n\n{}", graphics);
401 | }
402 | if chromebooks.avaliable_drivers.contains("hd-graphics") {
403 | let graphics = Link::new("Graphics Driver download link", &link.jasperlake_chipset);
404 | println!("Due to Legal Constraints, Please download the Graphics Drivers and move it to C:/oneclickdriverinstalltemp \n\n{}", graphics);
405 | }
406 | if chromebooks.avaliable_drivers.contains("CR50") {
407 | let cr50 = Confirm::new("Download the CR50 driver?")
408 | .with_default(true)
409 | .prompt();
410 |
411 | match cr50 {
412 | Ok(true) => download_vector.push(&link.cr50),
413 | Ok(false) => {}
414 | Err(_) => {
415 | println!("An Error has occured please try again");
416 | exit(0)
417 | }
418 | }
419 | }
420 | if chromebooks.avaliable_drivers.contains("ryzen3000-audio") {
421 | let ryzen3000 = Confirm::new("Download the Ryzen 3000 audio driver?")
422 | .with_default(true)
423 | .prompt();
424 |
425 | match ryzen3000 {
426 | Ok(true) => download_vector.push(&link.ryzen3000audio),
427 | Ok(false) => {}
428 | Err(_) => {
429 | println!("An Error has occured please try again");
430 | exit(0)
431 | }
432 | }
433 | }
434 | if chromebooks
435 | .avaliable_drivers
436 | .contains("rapid-storage-cometlake")
437 | {
438 | let graphics = Link::new("Rapid Storage download link", &link.cometlake_rapid_storage);
439 | println!("Due to Legal Constraints, Please download the Rapid Storage and move it to C:/oneclickdriverinstalltemp \n\n{}", graphics);
440 | }
441 | if chromebooks.avaliable_drivers.contains("AlderLakeChipset")
442 | || chromebooks.avaliable_drivers.contains("TigerLakeChipset")
443 | || chromebooks.avaliable_drivers.contains("jasperlakechipset")
444 | {
445 | let chipset = Confirm::new("Download the Intel chipset driver?")
446 | .with_default(true)
447 | .prompt();
448 |
449 | match chipset {
450 | Ok(true) => {
451 | download_vector.push(&link.intel_chipset);
452 | let _ = fs::create_dir_all("/oneclickdriverinstalltemp/zip");
453 | }
454 | Ok(false) => {}
455 | Err(_) => {
456 | println!("An Error has occured please try again");
457 | exit(0)
458 | }
459 | }
460 | }
461 | if chromebooks.board_name == "Drallion" {
462 | let audio = Confirm::new("Download the audio driver?")
463 | .with_default(true)
464 | .prompt();
465 |
466 | match audio {
467 | Ok(true) => {
468 | download_vector.push(&link.drallion_audio);
469 | }
470 | Ok(false) => {}
471 | Err(_) => {
472 | println!("An Error has occured please try again");
473 | exit(0)
474 | }
475 | }
476 | download_vector.retain(|f| *f != &link.ec);
477 | download_vector.push(&link.wilco_ec)
478 | }
479 | let tools = Confirm::new("Download Chrultrabook Tools?")
480 | .with_default(true)
481 | .prompt();
482 | match tools {
483 | Ok(true) => {
484 | download_vector.push(&link.chrultrabook_tools);
485 | }
486 | Ok(false) => {}
487 | Err(_) => {
488 | println!("An Error has occured please try again");
489 | exit(0)
490 | }
491 | }
492 |
493 | if chromebooks.avaliable_drivers.contains("cAVS")
494 | || chromebooks.avaliable_drivers.contains("cSOF")
495 | || chromebooks.avaliable_drivers.contains("sof")
496 | || chromebooks.avaliable_drivers.contains("Thunderbolt-4")
497 | || chromebooks.avaliable_drivers.contains("sof-amd")
498 | {
499 | let driver_purchase = Link::new("Store link", &link.purchase_driver_portal);
500 | println!(
501 | "Your chromebook has audio or thunderbolt drivers avaliable to be purchased. \n\n{}",
502 | driver_purchase
503 | );
504 | }
505 |
506 | //downloading section
507 | return helper::to_vec_string(download_vector);
508 | }
509 |
510 | fn start_and_wait(program: &str) -> std::io::Result {
511 | let mut child = Command::new(program).spawn()?;
512 | child.wait()
513 | }
514 | async fn install(length: u8) {
515 | let mut programs = Vec::new();
516 | for i in 0..length {
517 | programs
518 | .push("C:\\oneclickdriverinstalltemp\\drivers\\".to_owned() + &i.to_string() + ".exe");
519 | }
520 |
521 | for program in &programs {
522 | println!("\nStarting: {}", program);
523 | let status = start_and_wait(program);
524 | match status {
525 | Ok(exit) => println!("{} exited with status: {:?}", program, exit),
526 | Err(e) => eprintln!("Failed to start {}: {}", program, e),
527 | }
528 | sleep(Duration::from_secs(2)); // Delay between starting programs
529 | }
530 | if Path::new("C:\\oneclickdriverinstalltemp\\zip").exists() == true {
531 | let target = PathBuf::from("C:\\oneclickdriverinstalltemp\\zip");
532 | let archive = PathBuf::from("C:\\oneclickdriverinstalltemp\\zip\\autoinstall-intel.zip");
533 | zip_extract(&archive, &target).unwrap();
534 | helper::run_chipset_ps1();
535 | }
536 | }
537 | fn close() {
538 | let cleanup = Confirm::new("Cleanup Downloaded Data?")
539 | .with_default(true)
540 | .prompt();
541 | match cleanup {
542 | Ok(true) => {
543 | let _ = fs::remove_dir_all("/oneclickdriverinstalltemp");
544 | }
545 | Ok(false) => {
546 | println!("Downloaded data is avaliable at C:/oneclickdriverinstalltemp");
547 | exit(0)
548 | }
549 | Err(_) => {
550 | println!("An Error has occured. Downloaded data is avaliable at C:/oneclickdriverinstalltemp");
551 | exit(0);
552 | }
553 | }
554 | exit(0);
555 | }
556 |
557 | #[tokio::main]
558 | async fn main() {
559 | let agreement = Confirm::new("By using this application you agree to all terms and conditions in every driver you choose to install. Do you agree to these terms?").with_default(true).prompt();
560 | match agreement {
561 | Ok(true) => {
562 | let download_db = Confirm::new("To install your chromebook's drivers a database must be downloaded. Download Database?").with_default(true).prompt();
563 | match download_db {
564 | Ok(true) => {
565 | let vector = setup_installation().await;
566 | download_relay(vector.clone()).await;
567 | let start_install = Confirm::new("Start Installation?")
568 | .with_default(true)
569 | .prompt();
570 | match start_install {
571 | Ok(true) => {
572 | install(vector.len() as u8).await;
573 | println!("\nAll Drivers have been installed.");
574 | }
575 | Ok(false) => {
576 | println!("\nUser has denied the installation of drivers")
577 | }
578 | Err(_) => {
579 | println!("\nAn error has occured please try again.")
580 | }
581 | }
582 | close();
583 | }
584 | Ok(false) => {
585 | println!("User denied downloading database");
586 | close();
587 | }
588 | Err(_) => {
589 | println!("An Error has occured please try again");
590 | exit(0);
591 | }
592 | }
593 | }
594 | Ok(false) => println!("User has not accepted the agreement."),
595 | Err(_) => {
596 | println!("An Error has occured please try again")
597 | }
598 | }
599 | }
600 |
--------------------------------------------------------------------------------
/LICENSE.txt:
--------------------------------------------------------------------------------
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 = "One_Click_Driver_Installer"
7 | version = "3.1.1"
8 | dependencies = [
9 | "exitfailure",
10 | "failure",
11 | "futures-util",
12 | "indicatif",
13 | "inquire",
14 | "reqwest",
15 | "serde",
16 | "serde_json",
17 | "terminal-link",
18 | "tokio",
19 | "winres",
20 | "zip-extensions",
21 | ]
22 |
23 | [[package]]
24 | name = "addr2line"
25 | version = "0.24.2"
26 | source = "registry+https://github.com/rust-lang/crates.io-index"
27 | checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
28 | dependencies = [
29 | "gimli",
30 | ]
31 |
32 | [[package]]
33 | name = "adler2"
34 | version = "2.0.0"
35 | source = "registry+https://github.com/rust-lang/crates.io-index"
36 | checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
37 |
38 | [[package]]
39 | name = "aes"
40 | version = "0.8.4"
41 | source = "registry+https://github.com/rust-lang/crates.io-index"
42 | checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
43 | dependencies = [
44 | "cfg-if",
45 | "cipher",
46 | "cpufeatures",
47 | ]
48 |
49 | [[package]]
50 | name = "aho-corasick"
51 | version = "1.1.3"
52 | source = "registry+https://github.com/rust-lang/crates.io-index"
53 | checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
54 | dependencies = [
55 | "memchr",
56 | ]
57 |
58 | [[package]]
59 | name = "arbitrary"
60 | version = "1.4.1"
61 | source = "registry+https://github.com/rust-lang/crates.io-index"
62 | checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
63 | dependencies = [
64 | "derive_arbitrary",
65 | ]
66 |
67 | [[package]]
68 | name = "atomic-waker"
69 | version = "1.1.2"
70 | source = "registry+https://github.com/rust-lang/crates.io-index"
71 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
72 |
73 | [[package]]
74 | name = "autocfg"
75 | version = "1.4.0"
76 | source = "registry+https://github.com/rust-lang/crates.io-index"
77 | checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
78 |
79 | [[package]]
80 | name = "backtrace"
81 | version = "0.3.74"
82 | source = "registry+https://github.com/rust-lang/crates.io-index"
83 | checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
84 | dependencies = [
85 | "addr2line",
86 | "cfg-if",
87 | "libc",
88 | "miniz_oxide",
89 | "object",
90 | "rustc-demangle",
91 | "windows-targets 0.52.6",
92 | ]
93 |
94 | [[package]]
95 | name = "base64"
96 | version = "0.22.1"
97 | source = "registry+https://github.com/rust-lang/crates.io-index"
98 | checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
99 |
100 | [[package]]
101 | name = "bitflags"
102 | version = "1.3.2"
103 | source = "registry+https://github.com/rust-lang/crates.io-index"
104 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
105 |
106 | [[package]]
107 | name = "bitflags"
108 | version = "2.6.0"
109 | source = "registry+https://github.com/rust-lang/crates.io-index"
110 | checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
111 |
112 | [[package]]
113 | name = "block-buffer"
114 | version = "0.10.4"
115 | source = "registry+https://github.com/rust-lang/crates.io-index"
116 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
117 | dependencies = [
118 | "generic-array",
119 | ]
120 |
121 | [[package]]
122 | name = "bumpalo"
123 | version = "3.16.0"
124 | source = "registry+https://github.com/rust-lang/crates.io-index"
125 | checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
126 |
127 | [[package]]
128 | name = "byteorder"
129 | version = "1.5.0"
130 | source = "registry+https://github.com/rust-lang/crates.io-index"
131 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
132 |
133 | [[package]]
134 | name = "bytes"
135 | version = "1.8.0"
136 | source = "registry+https://github.com/rust-lang/crates.io-index"
137 | checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
138 |
139 | [[package]]
140 | name = "bzip2"
141 | version = "0.4.4"
142 | source = "registry+https://github.com/rust-lang/crates.io-index"
143 | checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
144 | dependencies = [
145 | "bzip2-sys",
146 | "libc",
147 | ]
148 |
149 | [[package]]
150 | name = "bzip2-sys"
151 | version = "0.1.11+1.0.8"
152 | source = "registry+https://github.com/rust-lang/crates.io-index"
153 | checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
154 | dependencies = [
155 | "cc",
156 | "libc",
157 | "pkg-config",
158 | ]
159 |
160 | [[package]]
161 | name = "cc"
162 | version = "1.1.31"
163 | source = "registry+https://github.com/rust-lang/crates.io-index"
164 | checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f"
165 | dependencies = [
166 | "jobserver",
167 | "libc",
168 | "shlex",
169 | ]
170 |
171 | [[package]]
172 | name = "cfg-if"
173 | version = "1.0.0"
174 | source = "registry+https://github.com/rust-lang/crates.io-index"
175 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
176 |
177 | [[package]]
178 | name = "cipher"
179 | version = "0.4.4"
180 | source = "registry+https://github.com/rust-lang/crates.io-index"
181 | checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
182 | dependencies = [
183 | "crypto-common",
184 | "inout",
185 | ]
186 |
187 | [[package]]
188 | name = "console"
189 | version = "0.15.8"
190 | source = "registry+https://github.com/rust-lang/crates.io-index"
191 | checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
192 | dependencies = [
193 | "encode_unicode",
194 | "lazy_static",
195 | "libc",
196 | "unicode-width",
197 | "windows-sys 0.52.0",
198 | ]
199 |
200 | [[package]]
201 | name = "constant_time_eq"
202 | version = "0.3.1"
203 | source = "registry+https://github.com/rust-lang/crates.io-index"
204 | checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
205 |
206 | [[package]]
207 | name = "core-foundation"
208 | version = "0.9.4"
209 | source = "registry+https://github.com/rust-lang/crates.io-index"
210 | checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
211 | dependencies = [
212 | "core-foundation-sys",
213 | "libc",
214 | ]
215 |
216 | [[package]]
217 | name = "core-foundation-sys"
218 | version = "0.8.7"
219 | source = "registry+https://github.com/rust-lang/crates.io-index"
220 | checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
221 |
222 | [[package]]
223 | name = "cpufeatures"
224 | version = "0.2.16"
225 | source = "registry+https://github.com/rust-lang/crates.io-index"
226 | checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
227 | dependencies = [
228 | "libc",
229 | ]
230 |
231 | [[package]]
232 | name = "crc"
233 | version = "3.2.1"
234 | source = "registry+https://github.com/rust-lang/crates.io-index"
235 | checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
236 | dependencies = [
237 | "crc-catalog",
238 | ]
239 |
240 | [[package]]
241 | name = "crc-catalog"
242 | version = "2.4.0"
243 | source = "registry+https://github.com/rust-lang/crates.io-index"
244 | checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
245 |
246 | [[package]]
247 | name = "crc32fast"
248 | version = "1.4.2"
249 | source = "registry+https://github.com/rust-lang/crates.io-index"
250 | checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
251 | dependencies = [
252 | "cfg-if",
253 | ]
254 |
255 | [[package]]
256 | name = "crossbeam-utils"
257 | version = "0.8.21"
258 | source = "registry+https://github.com/rust-lang/crates.io-index"
259 | checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
260 |
261 | [[package]]
262 | name = "crossterm"
263 | version = "0.25.0"
264 | source = "registry+https://github.com/rust-lang/crates.io-index"
265 | checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67"
266 | dependencies = [
267 | "bitflags 1.3.2",
268 | "crossterm_winapi",
269 | "libc",
270 | "mio 0.8.11",
271 | "parking_lot",
272 | "signal-hook",
273 | "signal-hook-mio",
274 | "winapi",
275 | ]
276 |
277 | [[package]]
278 | name = "crossterm_winapi"
279 | version = "0.9.1"
280 | source = "registry+https://github.com/rust-lang/crates.io-index"
281 | checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
282 | dependencies = [
283 | "winapi",
284 | ]
285 |
286 | [[package]]
287 | name = "crypto-common"
288 | version = "0.1.6"
289 | source = "registry+https://github.com/rust-lang/crates.io-index"
290 | checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
291 | dependencies = [
292 | "generic-array",
293 | "typenum",
294 | ]
295 |
296 | [[package]]
297 | name = "deflate64"
298 | version = "0.1.9"
299 | source = "registry+https://github.com/rust-lang/crates.io-index"
300 | checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
301 |
302 | [[package]]
303 | name = "deranged"
304 | version = "0.3.11"
305 | source = "registry+https://github.com/rust-lang/crates.io-index"
306 | checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
307 | dependencies = [
308 | "powerfmt",
309 | ]
310 |
311 | [[package]]
312 | name = "derive_arbitrary"
313 | version = "1.4.1"
314 | source = "registry+https://github.com/rust-lang/crates.io-index"
315 | checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800"
316 | dependencies = [
317 | "proc-macro2",
318 | "quote",
319 | "syn 2.0.90",
320 | ]
321 |
322 | [[package]]
323 | name = "digest"
324 | version = "0.10.7"
325 | source = "registry+https://github.com/rust-lang/crates.io-index"
326 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
327 | dependencies = [
328 | "block-buffer",
329 | "crypto-common",
330 | "subtle",
331 | ]
332 |
333 | [[package]]
334 | name = "displaydoc"
335 | version = "0.2.5"
336 | source = "registry+https://github.com/rust-lang/crates.io-index"
337 | checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
338 | dependencies = [
339 | "proc-macro2",
340 | "quote",
341 | "syn 2.0.90",
342 | ]
343 |
344 | [[package]]
345 | name = "dyn-clone"
346 | version = "1.0.17"
347 | source = "registry+https://github.com/rust-lang/crates.io-index"
348 | checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
349 |
350 | [[package]]
351 | name = "encode_unicode"
352 | version = "0.3.6"
353 | source = "registry+https://github.com/rust-lang/crates.io-index"
354 | checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
355 |
356 | [[package]]
357 | name = "encoding_rs"
358 | version = "0.8.34"
359 | source = "registry+https://github.com/rust-lang/crates.io-index"
360 | checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
361 | dependencies = [
362 | "cfg-if",
363 | ]
364 |
365 | [[package]]
366 | name = "equivalent"
367 | version = "1.0.1"
368 | source = "registry+https://github.com/rust-lang/crates.io-index"
369 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
370 |
371 | [[package]]
372 | name = "errno"
373 | version = "0.3.9"
374 | source = "registry+https://github.com/rust-lang/crates.io-index"
375 | checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
376 | dependencies = [
377 | "libc",
378 | "windows-sys 0.52.0",
379 | ]
380 |
381 | [[package]]
382 | name = "exitfailure"
383 | version = "0.5.1"
384 | source = "registry+https://github.com/rust-lang/crates.io-index"
385 | checksum = "2ff5bd832af37f366c6c194d813a11cd90ac484f124f079294f28e357ae40515"
386 | dependencies = [
387 | "failure",
388 | ]
389 |
390 | [[package]]
391 | name = "failure"
392 | version = "0.1.8"
393 | source = "registry+https://github.com/rust-lang/crates.io-index"
394 | checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
395 | dependencies = [
396 | "backtrace",
397 | "failure_derive",
398 | ]
399 |
400 | [[package]]
401 | name = "failure_derive"
402 | version = "0.1.8"
403 | source = "registry+https://github.com/rust-lang/crates.io-index"
404 | checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
405 | dependencies = [
406 | "proc-macro2",
407 | "quote",
408 | "syn 1.0.109",
409 | "synstructure",
410 | ]
411 |
412 | [[package]]
413 | name = "fastrand"
414 | version = "2.1.1"
415 | source = "registry+https://github.com/rust-lang/crates.io-index"
416 | checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
417 |
418 | [[package]]
419 | name = "flate2"
420 | version = "1.0.35"
421 | source = "registry+https://github.com/rust-lang/crates.io-index"
422 | checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
423 | dependencies = [
424 | "crc32fast",
425 | "miniz_oxide",
426 | ]
427 |
428 | [[package]]
429 | name = "fnv"
430 | version = "1.0.7"
431 | source = "registry+https://github.com/rust-lang/crates.io-index"
432 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
433 |
434 | [[package]]
435 | name = "foreign-types"
436 | version = "0.3.2"
437 | source = "registry+https://github.com/rust-lang/crates.io-index"
438 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
439 | dependencies = [
440 | "foreign-types-shared",
441 | ]
442 |
443 | [[package]]
444 | name = "foreign-types-shared"
445 | version = "0.1.1"
446 | source = "registry+https://github.com/rust-lang/crates.io-index"
447 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
448 |
449 | [[package]]
450 | name = "form_urlencoded"
451 | version = "1.2.1"
452 | source = "registry+https://github.com/rust-lang/crates.io-index"
453 | checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
454 | dependencies = [
455 | "percent-encoding",
456 | ]
457 |
458 | [[package]]
459 | name = "futures-channel"
460 | version = "0.3.31"
461 | source = "registry+https://github.com/rust-lang/crates.io-index"
462 | checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
463 | dependencies = [
464 | "futures-core",
465 | ]
466 |
467 | [[package]]
468 | name = "futures-core"
469 | version = "0.3.31"
470 | source = "registry+https://github.com/rust-lang/crates.io-index"
471 | checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
472 |
473 | [[package]]
474 | name = "futures-io"
475 | version = "0.3.31"
476 | source = "registry+https://github.com/rust-lang/crates.io-index"
477 | checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
478 |
479 | [[package]]
480 | name = "futures-macro"
481 | version = "0.3.31"
482 | source = "registry+https://github.com/rust-lang/crates.io-index"
483 | checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
484 | dependencies = [
485 | "proc-macro2",
486 | "quote",
487 | "syn 2.0.90",
488 | ]
489 |
490 | [[package]]
491 | name = "futures-sink"
492 | version = "0.3.31"
493 | source = "registry+https://github.com/rust-lang/crates.io-index"
494 | checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
495 |
496 | [[package]]
497 | name = "futures-task"
498 | version = "0.3.31"
499 | source = "registry+https://github.com/rust-lang/crates.io-index"
500 | checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
501 |
502 | [[package]]
503 | name = "futures-util"
504 | version = "0.3.31"
505 | source = "registry+https://github.com/rust-lang/crates.io-index"
506 | checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
507 | dependencies = [
508 | "futures-core",
509 | "futures-io",
510 | "futures-macro",
511 | "futures-sink",
512 | "futures-task",
513 | "memchr",
514 | "pin-project-lite",
515 | "pin-utils",
516 | "slab",
517 | ]
518 |
519 | [[package]]
520 | name = "fuzzy-matcher"
521 | version = "0.3.7"
522 | source = "registry+https://github.com/rust-lang/crates.io-index"
523 | checksum = "54614a3312934d066701a80f20f15fa3b56d67ac7722b39eea5b4c9dd1d66c94"
524 | dependencies = [
525 | "thread_local",
526 | ]
527 |
528 | [[package]]
529 | name = "fxhash"
530 | version = "0.2.1"
531 | source = "registry+https://github.com/rust-lang/crates.io-index"
532 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
533 | dependencies = [
534 | "byteorder",
535 | ]
536 |
537 | [[package]]
538 | name = "generic-array"
539 | version = "0.14.7"
540 | source = "registry+https://github.com/rust-lang/crates.io-index"
541 | checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
542 | dependencies = [
543 | "typenum",
544 | "version_check",
545 | ]
546 |
547 | [[package]]
548 | name = "getrandom"
549 | version = "0.2.15"
550 | source = "registry+https://github.com/rust-lang/crates.io-index"
551 | checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
552 | dependencies = [
553 | "cfg-if",
554 | "libc",
555 | "wasi",
556 | ]
557 |
558 | [[package]]
559 | name = "gimli"
560 | version = "0.31.1"
561 | source = "registry+https://github.com/rust-lang/crates.io-index"
562 | checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
563 |
564 | [[package]]
565 | name = "h2"
566 | version = "0.4.6"
567 | source = "registry+https://github.com/rust-lang/crates.io-index"
568 | checksum = "524e8ac6999421f49a846c2d4411f337e53497d8ec55d67753beffa43c5d9205"
569 | dependencies = [
570 | "atomic-waker",
571 | "bytes",
572 | "fnv",
573 | "futures-core",
574 | "futures-sink",
575 | "http",
576 | "indexmap",
577 | "slab",
578 | "tokio",
579 | "tokio-util",
580 | "tracing",
581 | ]
582 |
583 | [[package]]
584 | name = "hashbrown"
585 | version = "0.15.0"
586 | source = "registry+https://github.com/rust-lang/crates.io-index"
587 | checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
588 |
589 | [[package]]
590 | name = "hermit-abi"
591 | version = "0.3.9"
592 | source = "registry+https://github.com/rust-lang/crates.io-index"
593 | checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
594 |
595 | [[package]]
596 | name = "hmac"
597 | version = "0.12.1"
598 | source = "registry+https://github.com/rust-lang/crates.io-index"
599 | checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
600 | dependencies = [
601 | "digest",
602 | ]
603 |
604 | [[package]]
605 | name = "http"
606 | version = "1.1.0"
607 | source = "registry+https://github.com/rust-lang/crates.io-index"
608 | checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
609 | dependencies = [
610 | "bytes",
611 | "fnv",
612 | "itoa",
613 | ]
614 |
615 | [[package]]
616 | name = "http-body"
617 | version = "1.0.1"
618 | source = "registry+https://github.com/rust-lang/crates.io-index"
619 | checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
620 | dependencies = [
621 | "bytes",
622 | "http",
623 | ]
624 |
625 | [[package]]
626 | name = "http-body-util"
627 | version = "0.1.2"
628 | source = "registry+https://github.com/rust-lang/crates.io-index"
629 | checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
630 | dependencies = [
631 | "bytes",
632 | "futures-util",
633 | "http",
634 | "http-body",
635 | "pin-project-lite",
636 | ]
637 |
638 | [[package]]
639 | name = "httparse"
640 | version = "1.9.5"
641 | source = "registry+https://github.com/rust-lang/crates.io-index"
642 | checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
643 |
644 | [[package]]
645 | name = "hyper"
646 | version = "1.5.0"
647 | source = "registry+https://github.com/rust-lang/crates.io-index"
648 | checksum = "bbbff0a806a4728c99295b254c8838933b5b082d75e3cb70c8dab21fdfbcfa9a"
649 | dependencies = [
650 | "bytes",
651 | "futures-channel",
652 | "futures-util",
653 | "h2",
654 | "http",
655 | "http-body",
656 | "httparse",
657 | "itoa",
658 | "pin-project-lite",
659 | "smallvec",
660 | "tokio",
661 | "want",
662 | ]
663 |
664 | [[package]]
665 | name = "hyper-rustls"
666 | version = "0.27.3"
667 | source = "registry+https://github.com/rust-lang/crates.io-index"
668 | checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
669 | dependencies = [
670 | "futures-util",
671 | "http",
672 | "hyper",
673 | "hyper-util",
674 | "rustls",
675 | "rustls-pki-types",
676 | "tokio",
677 | "tokio-rustls",
678 | "tower-service",
679 | ]
680 |
681 | [[package]]
682 | name = "hyper-tls"
683 | version = "0.6.0"
684 | source = "registry+https://github.com/rust-lang/crates.io-index"
685 | checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
686 | dependencies = [
687 | "bytes",
688 | "http-body-util",
689 | "hyper",
690 | "hyper-util",
691 | "native-tls",
692 | "tokio",
693 | "tokio-native-tls",
694 | "tower-service",
695 | ]
696 |
697 | [[package]]
698 | name = "hyper-util"
699 | version = "0.1.9"
700 | source = "registry+https://github.com/rust-lang/crates.io-index"
701 | checksum = "41296eb09f183ac68eec06e03cdbea2e759633d4067b2f6552fc2e009bcad08b"
702 | dependencies = [
703 | "bytes",
704 | "futures-channel",
705 | "futures-util",
706 | "http",
707 | "http-body",
708 | "hyper",
709 | "pin-project-lite",
710 | "socket2",
711 | "tokio",
712 | "tower-service",
713 | "tracing",
714 | ]
715 |
716 | [[package]]
717 | name = "idna"
718 | version = "0.5.0"
719 | source = "registry+https://github.com/rust-lang/crates.io-index"
720 | checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
721 | dependencies = [
722 | "unicode-bidi",
723 | "unicode-normalization",
724 | ]
725 |
726 | [[package]]
727 | name = "indexmap"
728 | version = "2.6.0"
729 | source = "registry+https://github.com/rust-lang/crates.io-index"
730 | checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
731 | dependencies = [
732 | "equivalent",
733 | "hashbrown",
734 | ]
735 |
736 | [[package]]
737 | name = "indicatif"
738 | version = "0.15.0"
739 | source = "registry+https://github.com/rust-lang/crates.io-index"
740 | checksum = "7baab56125e25686df467fe470785512329883aab42696d661247aca2a2896e4"
741 | dependencies = [
742 | "console",
743 | "lazy_static",
744 | "number_prefix",
745 | "regex",
746 | ]
747 |
748 | [[package]]
749 | name = "inout"
750 | version = "0.1.3"
751 | source = "registry+https://github.com/rust-lang/crates.io-index"
752 | checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
753 | dependencies = [
754 | "generic-array",
755 | ]
756 |
757 | [[package]]
758 | name = "inquire"
759 | version = "0.7.5"
760 | source = "registry+https://github.com/rust-lang/crates.io-index"
761 | checksum = "0fddf93031af70e75410a2511ec04d49e758ed2f26dad3404a934e0fb45cc12a"
762 | dependencies = [
763 | "bitflags 2.6.0",
764 | "crossterm",
765 | "dyn-clone",
766 | "fuzzy-matcher",
767 | "fxhash",
768 | "newline-converter",
769 | "once_cell",
770 | "unicode-segmentation",
771 | "unicode-width",
772 | ]
773 |
774 | [[package]]
775 | name = "ipnet"
776 | version = "2.10.1"
777 | source = "registry+https://github.com/rust-lang/crates.io-index"
778 | checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
779 |
780 | [[package]]
781 | name = "itoa"
782 | version = "1.0.11"
783 | source = "registry+https://github.com/rust-lang/crates.io-index"
784 | checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
785 |
786 | [[package]]
787 | name = "jobserver"
788 | version = "0.1.32"
789 | source = "registry+https://github.com/rust-lang/crates.io-index"
790 | checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
791 | dependencies = [
792 | "libc",
793 | ]
794 |
795 | [[package]]
796 | name = "js-sys"
797 | version = "0.3.72"
798 | source = "registry+https://github.com/rust-lang/crates.io-index"
799 | checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
800 | dependencies = [
801 | "wasm-bindgen",
802 | ]
803 |
804 | [[package]]
805 | name = "lazy_static"
806 | version = "1.5.0"
807 | source = "registry+https://github.com/rust-lang/crates.io-index"
808 | checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
809 |
810 | [[package]]
811 | name = "libc"
812 | version = "0.2.169"
813 | source = "registry+https://github.com/rust-lang/crates.io-index"
814 | checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
815 |
816 | [[package]]
817 | name = "linux-raw-sys"
818 | version = "0.4.14"
819 | source = "registry+https://github.com/rust-lang/crates.io-index"
820 | checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
821 |
822 | [[package]]
823 | name = "lock_api"
824 | version = "0.4.12"
825 | source = "registry+https://github.com/rust-lang/crates.io-index"
826 | checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
827 | dependencies = [
828 | "autocfg",
829 | "scopeguard",
830 | ]
831 |
832 | [[package]]
833 | name = "lockfree-object-pool"
834 | version = "0.1.6"
835 | source = "registry+https://github.com/rust-lang/crates.io-index"
836 | checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
837 |
838 | [[package]]
839 | name = "log"
840 | version = "0.4.22"
841 | source = "registry+https://github.com/rust-lang/crates.io-index"
842 | checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
843 |
844 | [[package]]
845 | name = "lzma-rs"
846 | version = "0.3.0"
847 | source = "registry+https://github.com/rust-lang/crates.io-index"
848 | checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
849 | dependencies = [
850 | "byteorder",
851 | "crc",
852 | ]
853 |
854 | [[package]]
855 | name = "memchr"
856 | version = "2.7.4"
857 | source = "registry+https://github.com/rust-lang/crates.io-index"
858 | checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
859 |
860 | [[package]]
861 | name = "mime"
862 | version = "0.3.17"
863 | source = "registry+https://github.com/rust-lang/crates.io-index"
864 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
865 |
866 | [[package]]
867 | name = "miniz_oxide"
868 | version = "0.8.0"
869 | source = "registry+https://github.com/rust-lang/crates.io-index"
870 | checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
871 | dependencies = [
872 | "adler2",
873 | ]
874 |
875 | [[package]]
876 | name = "mio"
877 | version = "0.8.11"
878 | source = "registry+https://github.com/rust-lang/crates.io-index"
879 | checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
880 | dependencies = [
881 | "libc",
882 | "log",
883 | "wasi",
884 | "windows-sys 0.48.0",
885 | ]
886 |
887 | [[package]]
888 | name = "mio"
889 | version = "1.0.2"
890 | source = "registry+https://github.com/rust-lang/crates.io-index"
891 | checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
892 | dependencies = [
893 | "hermit-abi",
894 | "libc",
895 | "wasi",
896 | "windows-sys 0.52.0",
897 | ]
898 |
899 | [[package]]
900 | name = "native-tls"
901 | version = "0.2.12"
902 | source = "registry+https://github.com/rust-lang/crates.io-index"
903 | checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
904 | dependencies = [
905 | "libc",
906 | "log",
907 | "openssl",
908 | "openssl-probe",
909 | "openssl-sys",
910 | "schannel",
911 | "security-framework",
912 | "security-framework-sys",
913 | "tempfile",
914 | ]
915 |
916 | [[package]]
917 | name = "newline-converter"
918 | version = "0.3.0"
919 | source = "registry+https://github.com/rust-lang/crates.io-index"
920 | checksum = "47b6b097ecb1cbfed438542d16e84fd7ad9b0c76c8a65b7f9039212a3d14dc7f"
921 | dependencies = [
922 | "unicode-segmentation",
923 | ]
924 |
925 | [[package]]
926 | name = "num-conv"
927 | version = "0.1.0"
928 | source = "registry+https://github.com/rust-lang/crates.io-index"
929 | checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
930 |
931 | [[package]]
932 | name = "number_prefix"
933 | version = "0.3.0"
934 | source = "registry+https://github.com/rust-lang/crates.io-index"
935 | checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a"
936 |
937 | [[package]]
938 | name = "object"
939 | version = "0.36.5"
940 | source = "registry+https://github.com/rust-lang/crates.io-index"
941 | checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
942 | dependencies = [
943 | "memchr",
944 | ]
945 |
946 | [[package]]
947 | name = "once_cell"
948 | version = "1.20.2"
949 | source = "registry+https://github.com/rust-lang/crates.io-index"
950 | checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
951 |
952 | [[package]]
953 | name = "openssl"
954 | version = "0.10.68"
955 | source = "registry+https://github.com/rust-lang/crates.io-index"
956 | checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5"
957 | dependencies = [
958 | "bitflags 2.6.0",
959 | "cfg-if",
960 | "foreign-types",
961 | "libc",
962 | "once_cell",
963 | "openssl-macros",
964 | "openssl-sys",
965 | ]
966 |
967 | [[package]]
968 | name = "openssl-macros"
969 | version = "0.1.1"
970 | source = "registry+https://github.com/rust-lang/crates.io-index"
971 | checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
972 | dependencies = [
973 | "proc-macro2",
974 | "quote",
975 | "syn 2.0.90",
976 | ]
977 |
978 | [[package]]
979 | name = "openssl-probe"
980 | version = "0.1.5"
981 | source = "registry+https://github.com/rust-lang/crates.io-index"
982 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
983 |
984 | [[package]]
985 | name = "openssl-sys"
986 | version = "0.9.104"
987 | source = "registry+https://github.com/rust-lang/crates.io-index"
988 | checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
989 | dependencies = [
990 | "cc",
991 | "libc",
992 | "pkg-config",
993 | "vcpkg",
994 | ]
995 |
996 | [[package]]
997 | name = "parking_lot"
998 | version = "0.12.3"
999 | source = "registry+https://github.com/rust-lang/crates.io-index"
1000 | checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1001 | dependencies = [
1002 | "lock_api",
1003 | "parking_lot_core",
1004 | ]
1005 |
1006 | [[package]]
1007 | name = "parking_lot_core"
1008 | version = "0.9.10"
1009 | source = "registry+https://github.com/rust-lang/crates.io-index"
1010 | checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1011 | dependencies = [
1012 | "cfg-if",
1013 | "libc",
1014 | "redox_syscall",
1015 | "smallvec",
1016 | "windows-targets 0.52.6",
1017 | ]
1018 |
1019 | [[package]]
1020 | name = "pbkdf2"
1021 | version = "0.12.2"
1022 | source = "registry+https://github.com/rust-lang/crates.io-index"
1023 | checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
1024 | dependencies = [
1025 | "digest",
1026 | "hmac",
1027 | ]
1028 |
1029 | [[package]]
1030 | name = "percent-encoding"
1031 | version = "2.3.1"
1032 | source = "registry+https://github.com/rust-lang/crates.io-index"
1033 | checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1034 |
1035 | [[package]]
1036 | name = "pin-project-lite"
1037 | version = "0.2.14"
1038 | source = "registry+https://github.com/rust-lang/crates.io-index"
1039 | checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
1040 |
1041 | [[package]]
1042 | name = "pin-utils"
1043 | version = "0.1.0"
1044 | source = "registry+https://github.com/rust-lang/crates.io-index"
1045 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1046 |
1047 | [[package]]
1048 | name = "pkg-config"
1049 | version = "0.3.31"
1050 | source = "registry+https://github.com/rust-lang/crates.io-index"
1051 | checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
1052 |
1053 | [[package]]
1054 | name = "powerfmt"
1055 | version = "0.2.0"
1056 | source = "registry+https://github.com/rust-lang/crates.io-index"
1057 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1058 |
1059 | [[package]]
1060 | name = "ppv-lite86"
1061 | version = "0.2.20"
1062 | source = "registry+https://github.com/rust-lang/crates.io-index"
1063 | checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
1064 | dependencies = [
1065 | "zerocopy",
1066 | ]
1067 |
1068 | [[package]]
1069 | name = "proc-macro2"
1070 | version = "1.0.92"
1071 | source = "registry+https://github.com/rust-lang/crates.io-index"
1072 | checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
1073 | dependencies = [
1074 | "unicode-ident",
1075 | ]
1076 |
1077 | [[package]]
1078 | name = "quote"
1079 | version = "1.0.37"
1080 | source = "registry+https://github.com/rust-lang/crates.io-index"
1081 | checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
1082 | dependencies = [
1083 | "proc-macro2",
1084 | ]
1085 |
1086 | [[package]]
1087 | name = "rand"
1088 | version = "0.8.5"
1089 | source = "registry+https://github.com/rust-lang/crates.io-index"
1090 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1091 | dependencies = [
1092 | "libc",
1093 | "rand_chacha",
1094 | "rand_core",
1095 | ]
1096 |
1097 | [[package]]
1098 | name = "rand_chacha"
1099 | version = "0.3.1"
1100 | source = "registry+https://github.com/rust-lang/crates.io-index"
1101 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1102 | dependencies = [
1103 | "ppv-lite86",
1104 | "rand_core",
1105 | ]
1106 |
1107 | [[package]]
1108 | name = "rand_core"
1109 | version = "0.6.4"
1110 | source = "registry+https://github.com/rust-lang/crates.io-index"
1111 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1112 | dependencies = [
1113 | "getrandom",
1114 | ]
1115 |
1116 | [[package]]
1117 | name = "redox_syscall"
1118 | version = "0.5.7"
1119 | source = "registry+https://github.com/rust-lang/crates.io-index"
1120 | checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
1121 | dependencies = [
1122 | "bitflags 2.6.0",
1123 | ]
1124 |
1125 | [[package]]
1126 | name = "regex"
1127 | version = "1.11.1"
1128 | source = "registry+https://github.com/rust-lang/crates.io-index"
1129 | checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1130 | dependencies = [
1131 | "aho-corasick",
1132 | "memchr",
1133 | "regex-automata",
1134 | "regex-syntax",
1135 | ]
1136 |
1137 | [[package]]
1138 | name = "regex-automata"
1139 | version = "0.4.8"
1140 | source = "registry+https://github.com/rust-lang/crates.io-index"
1141 | checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
1142 | dependencies = [
1143 | "aho-corasick",
1144 | "memchr",
1145 | "regex-syntax",
1146 | ]
1147 |
1148 | [[package]]
1149 | name = "regex-syntax"
1150 | version = "0.8.5"
1151 | source = "registry+https://github.com/rust-lang/crates.io-index"
1152 | checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1153 |
1154 | [[package]]
1155 | name = "reqwest"
1156 | version = "0.12.8"
1157 | source = "registry+https://github.com/rust-lang/crates.io-index"
1158 | checksum = "f713147fbe92361e52392c73b8c9e48c04c6625bce969ef54dc901e58e042a7b"
1159 | dependencies = [
1160 | "base64",
1161 | "bytes",
1162 | "encoding_rs",
1163 | "futures-core",
1164 | "futures-util",
1165 | "h2",
1166 | "http",
1167 | "http-body",
1168 | "http-body-util",
1169 | "hyper",
1170 | "hyper-rustls",
1171 | "hyper-tls",
1172 | "hyper-util",
1173 | "ipnet",
1174 | "js-sys",
1175 | "log",
1176 | "mime",
1177 | "native-tls",
1178 | "once_cell",
1179 | "percent-encoding",
1180 | "pin-project-lite",
1181 | "rustls-pemfile",
1182 | "serde",
1183 | "serde_json",
1184 | "serde_urlencoded",
1185 | "sync_wrapper",
1186 | "system-configuration",
1187 | "tokio",
1188 | "tokio-native-tls",
1189 | "tokio-util",
1190 | "tower-service",
1191 | "url",
1192 | "wasm-bindgen",
1193 | "wasm-bindgen-futures",
1194 | "wasm-streams",
1195 | "web-sys",
1196 | "windows-registry",
1197 | ]
1198 |
1199 | [[package]]
1200 | name = "ring"
1201 | version = "0.17.8"
1202 | source = "registry+https://github.com/rust-lang/crates.io-index"
1203 | checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
1204 | dependencies = [
1205 | "cc",
1206 | "cfg-if",
1207 | "getrandom",
1208 | "libc",
1209 | "spin",
1210 | "untrusted",
1211 | "windows-sys 0.52.0",
1212 | ]
1213 |
1214 | [[package]]
1215 | name = "rustc-demangle"
1216 | version = "0.1.24"
1217 | source = "registry+https://github.com/rust-lang/crates.io-index"
1218 | checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1219 |
1220 | [[package]]
1221 | name = "rustix"
1222 | version = "0.38.37"
1223 | source = "registry+https://github.com/rust-lang/crates.io-index"
1224 | checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811"
1225 | dependencies = [
1226 | "bitflags 2.6.0",
1227 | "errno",
1228 | "libc",
1229 | "linux-raw-sys",
1230 | "windows-sys 0.52.0",
1231 | ]
1232 |
1233 | [[package]]
1234 | name = "rustls"
1235 | version = "0.23.14"
1236 | source = "registry+https://github.com/rust-lang/crates.io-index"
1237 | checksum = "415d9944693cb90382053259f89fbb077ea730ad7273047ec63b19bc9b160ba8"
1238 | dependencies = [
1239 | "once_cell",
1240 | "rustls-pki-types",
1241 | "rustls-webpki",
1242 | "subtle",
1243 | "zeroize",
1244 | ]
1245 |
1246 | [[package]]
1247 | name = "rustls-pemfile"
1248 | version = "2.2.0"
1249 | source = "registry+https://github.com/rust-lang/crates.io-index"
1250 | checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
1251 | dependencies = [
1252 | "rustls-pki-types",
1253 | ]
1254 |
1255 | [[package]]
1256 | name = "rustls-pki-types"
1257 | version = "1.10.0"
1258 | source = "registry+https://github.com/rust-lang/crates.io-index"
1259 | checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
1260 |
1261 | [[package]]
1262 | name = "rustls-webpki"
1263 | version = "0.102.8"
1264 | source = "registry+https://github.com/rust-lang/crates.io-index"
1265 | checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
1266 | dependencies = [
1267 | "ring",
1268 | "rustls-pki-types",
1269 | "untrusted",
1270 | ]
1271 |
1272 | [[package]]
1273 | name = "ryu"
1274 | version = "1.0.18"
1275 | source = "registry+https://github.com/rust-lang/crates.io-index"
1276 | checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
1277 |
1278 | [[package]]
1279 | name = "schannel"
1280 | version = "0.1.26"
1281 | source = "registry+https://github.com/rust-lang/crates.io-index"
1282 | checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1"
1283 | dependencies = [
1284 | "windows-sys 0.59.0",
1285 | ]
1286 |
1287 | [[package]]
1288 | name = "scopeguard"
1289 | version = "1.2.0"
1290 | source = "registry+https://github.com/rust-lang/crates.io-index"
1291 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1292 |
1293 | [[package]]
1294 | name = "security-framework"
1295 | version = "2.11.1"
1296 | source = "registry+https://github.com/rust-lang/crates.io-index"
1297 | checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1298 | dependencies = [
1299 | "bitflags 2.6.0",
1300 | "core-foundation",
1301 | "core-foundation-sys",
1302 | "libc",
1303 | "security-framework-sys",
1304 | ]
1305 |
1306 | [[package]]
1307 | name = "security-framework-sys"
1308 | version = "2.12.0"
1309 | source = "registry+https://github.com/rust-lang/crates.io-index"
1310 | checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6"
1311 | dependencies = [
1312 | "core-foundation-sys",
1313 | "libc",
1314 | ]
1315 |
1316 | [[package]]
1317 | name = "serde"
1318 | version = "1.0.210"
1319 | source = "registry+https://github.com/rust-lang/crates.io-index"
1320 | checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a"
1321 | dependencies = [
1322 | "serde_derive",
1323 | ]
1324 |
1325 | [[package]]
1326 | name = "serde_derive"
1327 | version = "1.0.210"
1328 | source = "registry+https://github.com/rust-lang/crates.io-index"
1329 | checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f"
1330 | dependencies = [
1331 | "proc-macro2",
1332 | "quote",
1333 | "syn 2.0.90",
1334 | ]
1335 |
1336 | [[package]]
1337 | name = "serde_json"
1338 | version = "1.0.133"
1339 | source = "registry+https://github.com/rust-lang/crates.io-index"
1340 | checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
1341 | dependencies = [
1342 | "itoa",
1343 | "memchr",
1344 | "ryu",
1345 | "serde",
1346 | ]
1347 |
1348 | [[package]]
1349 | name = "serde_urlencoded"
1350 | version = "0.7.1"
1351 | source = "registry+https://github.com/rust-lang/crates.io-index"
1352 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1353 | dependencies = [
1354 | "form_urlencoded",
1355 | "itoa",
1356 | "ryu",
1357 | "serde",
1358 | ]
1359 |
1360 | [[package]]
1361 | name = "sha1"
1362 | version = "0.10.6"
1363 | source = "registry+https://github.com/rust-lang/crates.io-index"
1364 | checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1365 | dependencies = [
1366 | "cfg-if",
1367 | "cpufeatures",
1368 | "digest",
1369 | ]
1370 |
1371 | [[package]]
1372 | name = "shlex"
1373 | version = "1.3.0"
1374 | source = "registry+https://github.com/rust-lang/crates.io-index"
1375 | checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1376 |
1377 | [[package]]
1378 | name = "signal-hook"
1379 | version = "0.3.17"
1380 | source = "registry+https://github.com/rust-lang/crates.io-index"
1381 | checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
1382 | dependencies = [
1383 | "libc",
1384 | "signal-hook-registry",
1385 | ]
1386 |
1387 | [[package]]
1388 | name = "signal-hook-mio"
1389 | version = "0.2.4"
1390 | source = "registry+https://github.com/rust-lang/crates.io-index"
1391 | checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
1392 | dependencies = [
1393 | "libc",
1394 | "mio 0.8.11",
1395 | "signal-hook",
1396 | ]
1397 |
1398 | [[package]]
1399 | name = "signal-hook-registry"
1400 | version = "1.4.2"
1401 | source = "registry+https://github.com/rust-lang/crates.io-index"
1402 | checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
1403 | dependencies = [
1404 | "libc",
1405 | ]
1406 |
1407 | [[package]]
1408 | name = "simd-adler32"
1409 | version = "0.3.7"
1410 | source = "registry+https://github.com/rust-lang/crates.io-index"
1411 | checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
1412 |
1413 | [[package]]
1414 | name = "slab"
1415 | version = "0.4.9"
1416 | source = "registry+https://github.com/rust-lang/crates.io-index"
1417 | checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1418 | dependencies = [
1419 | "autocfg",
1420 | ]
1421 |
1422 | [[package]]
1423 | name = "smallvec"
1424 | version = "1.13.2"
1425 | source = "registry+https://github.com/rust-lang/crates.io-index"
1426 | checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
1427 |
1428 | [[package]]
1429 | name = "socket2"
1430 | version = "0.5.7"
1431 | source = "registry+https://github.com/rust-lang/crates.io-index"
1432 | checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
1433 | dependencies = [
1434 | "libc",
1435 | "windows-sys 0.52.0",
1436 | ]
1437 |
1438 | [[package]]
1439 | name = "spin"
1440 | version = "0.9.8"
1441 | source = "registry+https://github.com/rust-lang/crates.io-index"
1442 | checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1443 |
1444 | [[package]]
1445 | name = "subtle"
1446 | version = "2.6.1"
1447 | source = "registry+https://github.com/rust-lang/crates.io-index"
1448 | checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1449 |
1450 | [[package]]
1451 | name = "syn"
1452 | version = "1.0.109"
1453 | source = "registry+https://github.com/rust-lang/crates.io-index"
1454 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1455 | dependencies = [
1456 | "proc-macro2",
1457 | "quote",
1458 | "unicode-ident",
1459 | ]
1460 |
1461 | [[package]]
1462 | name = "syn"
1463 | version = "2.0.90"
1464 | source = "registry+https://github.com/rust-lang/crates.io-index"
1465 | checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31"
1466 | dependencies = [
1467 | "proc-macro2",
1468 | "quote",
1469 | "unicode-ident",
1470 | ]
1471 |
1472 | [[package]]
1473 | name = "sync_wrapper"
1474 | version = "1.0.1"
1475 | source = "registry+https://github.com/rust-lang/crates.io-index"
1476 | checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
1477 | dependencies = [
1478 | "futures-core",
1479 | ]
1480 |
1481 | [[package]]
1482 | name = "synstructure"
1483 | version = "0.12.6"
1484 | source = "registry+https://github.com/rust-lang/crates.io-index"
1485 | checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
1486 | dependencies = [
1487 | "proc-macro2",
1488 | "quote",
1489 | "syn 1.0.109",
1490 | "unicode-xid",
1491 | ]
1492 |
1493 | [[package]]
1494 | name = "system-configuration"
1495 | version = "0.6.1"
1496 | source = "registry+https://github.com/rust-lang/crates.io-index"
1497 | checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
1498 | dependencies = [
1499 | "bitflags 2.6.0",
1500 | "core-foundation",
1501 | "system-configuration-sys",
1502 | ]
1503 |
1504 | [[package]]
1505 | name = "system-configuration-sys"
1506 | version = "0.6.0"
1507 | source = "registry+https://github.com/rust-lang/crates.io-index"
1508 | checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
1509 | dependencies = [
1510 | "core-foundation-sys",
1511 | "libc",
1512 | ]
1513 |
1514 | [[package]]
1515 | name = "tempfile"
1516 | version = "3.13.0"
1517 | source = "registry+https://github.com/rust-lang/crates.io-index"
1518 | checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
1519 | dependencies = [
1520 | "cfg-if",
1521 | "fastrand",
1522 | "once_cell",
1523 | "rustix",
1524 | "windows-sys 0.59.0",
1525 | ]
1526 |
1527 | [[package]]
1528 | name = "terminal-link"
1529 | version = "0.1.0"
1530 | source = "registry+https://github.com/rust-lang/crates.io-index"
1531 | checksum = "253bcead4f3aa96243b0f8fa46f9010e87ca23bd5d0c723d474ff1d2417bbdf8"
1532 |
1533 | [[package]]
1534 | name = "thiserror"
1535 | version = "2.0.8"
1536 | source = "registry+https://github.com/rust-lang/crates.io-index"
1537 | checksum = "08f5383f3e0071702bf93ab5ee99b52d26936be9dedd9413067cbdcddcb6141a"
1538 | dependencies = [
1539 | "thiserror-impl",
1540 | ]
1541 |
1542 | [[package]]
1543 | name = "thiserror-impl"
1544 | version = "2.0.8"
1545 | source = "registry+https://github.com/rust-lang/crates.io-index"
1546 | checksum = "f2f357fcec90b3caef6623a099691be676d033b40a058ac95d2a6ade6fa0c943"
1547 | dependencies = [
1548 | "proc-macro2",
1549 | "quote",
1550 | "syn 2.0.90",
1551 | ]
1552 |
1553 | [[package]]
1554 | name = "thread_local"
1555 | version = "1.1.8"
1556 | source = "registry+https://github.com/rust-lang/crates.io-index"
1557 | checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
1558 | dependencies = [
1559 | "cfg-if",
1560 | "once_cell",
1561 | ]
1562 |
1563 | [[package]]
1564 | name = "time"
1565 | version = "0.3.37"
1566 | source = "registry+https://github.com/rust-lang/crates.io-index"
1567 | checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
1568 | dependencies = [
1569 | "deranged",
1570 | "num-conv",
1571 | "powerfmt",
1572 | "serde",
1573 | "time-core",
1574 | ]
1575 |
1576 | [[package]]
1577 | name = "time-core"
1578 | version = "0.1.2"
1579 | source = "registry+https://github.com/rust-lang/crates.io-index"
1580 | checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
1581 |
1582 | [[package]]
1583 | name = "tinyvec"
1584 | version = "1.8.0"
1585 | source = "registry+https://github.com/rust-lang/crates.io-index"
1586 | checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
1587 | dependencies = [
1588 | "tinyvec_macros",
1589 | ]
1590 |
1591 | [[package]]
1592 | name = "tinyvec_macros"
1593 | version = "0.1.1"
1594 | source = "registry+https://github.com/rust-lang/crates.io-index"
1595 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1596 |
1597 | [[package]]
1598 | name = "tokio"
1599 | version = "1.40.0"
1600 | source = "registry+https://github.com/rust-lang/crates.io-index"
1601 | checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998"
1602 | dependencies = [
1603 | "backtrace",
1604 | "bytes",
1605 | "libc",
1606 | "mio 1.0.2",
1607 | "pin-project-lite",
1608 | "socket2",
1609 | "tokio-macros",
1610 | "windows-sys 0.52.0",
1611 | ]
1612 |
1613 | [[package]]
1614 | name = "tokio-macros"
1615 | version = "2.4.0"
1616 | source = "registry+https://github.com/rust-lang/crates.io-index"
1617 | checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
1618 | dependencies = [
1619 | "proc-macro2",
1620 | "quote",
1621 | "syn 2.0.90",
1622 | ]
1623 |
1624 | [[package]]
1625 | name = "tokio-native-tls"
1626 | version = "0.3.1"
1627 | source = "registry+https://github.com/rust-lang/crates.io-index"
1628 | checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1629 | dependencies = [
1630 | "native-tls",
1631 | "tokio",
1632 | ]
1633 |
1634 | [[package]]
1635 | name = "tokio-rustls"
1636 | version = "0.26.0"
1637 | source = "registry+https://github.com/rust-lang/crates.io-index"
1638 | checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
1639 | dependencies = [
1640 | "rustls",
1641 | "rustls-pki-types",
1642 | "tokio",
1643 | ]
1644 |
1645 | [[package]]
1646 | name = "tokio-util"
1647 | version = "0.7.12"
1648 | source = "registry+https://github.com/rust-lang/crates.io-index"
1649 | checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
1650 | dependencies = [
1651 | "bytes",
1652 | "futures-core",
1653 | "futures-sink",
1654 | "pin-project-lite",
1655 | "tokio",
1656 | ]
1657 |
1658 | [[package]]
1659 | name = "toml"
1660 | version = "0.5.11"
1661 | source = "registry+https://github.com/rust-lang/crates.io-index"
1662 | checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
1663 | dependencies = [
1664 | "serde",
1665 | ]
1666 |
1667 | [[package]]
1668 | name = "tower-service"
1669 | version = "0.3.3"
1670 | source = "registry+https://github.com/rust-lang/crates.io-index"
1671 | checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1672 |
1673 | [[package]]
1674 | name = "tracing"
1675 | version = "0.1.40"
1676 | source = "registry+https://github.com/rust-lang/crates.io-index"
1677 | checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
1678 | dependencies = [
1679 | "pin-project-lite",
1680 | "tracing-core",
1681 | ]
1682 |
1683 | [[package]]
1684 | name = "tracing-core"
1685 | version = "0.1.32"
1686 | source = "registry+https://github.com/rust-lang/crates.io-index"
1687 | checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
1688 | dependencies = [
1689 | "once_cell",
1690 | ]
1691 |
1692 | [[package]]
1693 | name = "try-lock"
1694 | version = "0.2.5"
1695 | source = "registry+https://github.com/rust-lang/crates.io-index"
1696 | checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1697 |
1698 | [[package]]
1699 | name = "typenum"
1700 | version = "1.17.0"
1701 | source = "registry+https://github.com/rust-lang/crates.io-index"
1702 | checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
1703 |
1704 | [[package]]
1705 | name = "unicode-bidi"
1706 | version = "0.3.17"
1707 | source = "registry+https://github.com/rust-lang/crates.io-index"
1708 | checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
1709 |
1710 | [[package]]
1711 | name = "unicode-ident"
1712 | version = "1.0.13"
1713 | source = "registry+https://github.com/rust-lang/crates.io-index"
1714 | checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
1715 |
1716 | [[package]]
1717 | name = "unicode-normalization"
1718 | version = "0.1.24"
1719 | source = "registry+https://github.com/rust-lang/crates.io-index"
1720 | checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
1721 | dependencies = [
1722 | "tinyvec",
1723 | ]
1724 |
1725 | [[package]]
1726 | name = "unicode-segmentation"
1727 | version = "1.12.0"
1728 | source = "registry+https://github.com/rust-lang/crates.io-index"
1729 | checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1730 |
1731 | [[package]]
1732 | name = "unicode-width"
1733 | version = "0.1.14"
1734 | source = "registry+https://github.com/rust-lang/crates.io-index"
1735 | checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1736 |
1737 | [[package]]
1738 | name = "unicode-xid"
1739 | version = "0.2.6"
1740 | source = "registry+https://github.com/rust-lang/crates.io-index"
1741 | checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1742 |
1743 | [[package]]
1744 | name = "untrusted"
1745 | version = "0.9.0"
1746 | source = "registry+https://github.com/rust-lang/crates.io-index"
1747 | checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1748 |
1749 | [[package]]
1750 | name = "url"
1751 | version = "2.5.2"
1752 | source = "registry+https://github.com/rust-lang/crates.io-index"
1753 | checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
1754 | dependencies = [
1755 | "form_urlencoded",
1756 | "idna",
1757 | "percent-encoding",
1758 | ]
1759 |
1760 | [[package]]
1761 | name = "vcpkg"
1762 | version = "0.2.15"
1763 | source = "registry+https://github.com/rust-lang/crates.io-index"
1764 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1765 |
1766 | [[package]]
1767 | name = "version_check"
1768 | version = "0.9.5"
1769 | source = "registry+https://github.com/rust-lang/crates.io-index"
1770 | checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1771 |
1772 | [[package]]
1773 | name = "want"
1774 | version = "0.3.1"
1775 | source = "registry+https://github.com/rust-lang/crates.io-index"
1776 | checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1777 | dependencies = [
1778 | "try-lock",
1779 | ]
1780 |
1781 | [[package]]
1782 | name = "wasi"
1783 | version = "0.11.0+wasi-snapshot-preview1"
1784 | source = "registry+https://github.com/rust-lang/crates.io-index"
1785 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1786 |
1787 | [[package]]
1788 | name = "wasm-bindgen"
1789 | version = "0.2.95"
1790 | source = "registry+https://github.com/rust-lang/crates.io-index"
1791 | checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
1792 | dependencies = [
1793 | "cfg-if",
1794 | "once_cell",
1795 | "wasm-bindgen-macro",
1796 | ]
1797 |
1798 | [[package]]
1799 | name = "wasm-bindgen-backend"
1800 | version = "0.2.95"
1801 | source = "registry+https://github.com/rust-lang/crates.io-index"
1802 | checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
1803 | dependencies = [
1804 | "bumpalo",
1805 | "log",
1806 | "once_cell",
1807 | "proc-macro2",
1808 | "quote",
1809 | "syn 2.0.90",
1810 | "wasm-bindgen-shared",
1811 | ]
1812 |
1813 | [[package]]
1814 | name = "wasm-bindgen-futures"
1815 | version = "0.4.45"
1816 | source = "registry+https://github.com/rust-lang/crates.io-index"
1817 | checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
1818 | dependencies = [
1819 | "cfg-if",
1820 | "js-sys",
1821 | "wasm-bindgen",
1822 | "web-sys",
1823 | ]
1824 |
1825 | [[package]]
1826 | name = "wasm-bindgen-macro"
1827 | version = "0.2.95"
1828 | source = "registry+https://github.com/rust-lang/crates.io-index"
1829 | checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
1830 | dependencies = [
1831 | "quote",
1832 | "wasm-bindgen-macro-support",
1833 | ]
1834 |
1835 | [[package]]
1836 | name = "wasm-bindgen-macro-support"
1837 | version = "0.2.95"
1838 | source = "registry+https://github.com/rust-lang/crates.io-index"
1839 | checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
1840 | dependencies = [
1841 | "proc-macro2",
1842 | "quote",
1843 | "syn 2.0.90",
1844 | "wasm-bindgen-backend",
1845 | "wasm-bindgen-shared",
1846 | ]
1847 |
1848 | [[package]]
1849 | name = "wasm-bindgen-shared"
1850 | version = "0.2.95"
1851 | source = "registry+https://github.com/rust-lang/crates.io-index"
1852 | checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
1853 |
1854 | [[package]]
1855 | name = "wasm-streams"
1856 | version = "0.4.1"
1857 | source = "registry+https://github.com/rust-lang/crates.io-index"
1858 | checksum = "4e072d4e72f700fb3443d8fe94a39315df013eef1104903cdb0a2abd322bbecd"
1859 | dependencies = [
1860 | "futures-util",
1861 | "js-sys",
1862 | "wasm-bindgen",
1863 | "wasm-bindgen-futures",
1864 | "web-sys",
1865 | ]
1866 |
1867 | [[package]]
1868 | name = "web-sys"
1869 | version = "0.3.72"
1870 | source = "registry+https://github.com/rust-lang/crates.io-index"
1871 | checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
1872 | dependencies = [
1873 | "js-sys",
1874 | "wasm-bindgen",
1875 | ]
1876 |
1877 | [[package]]
1878 | name = "winapi"
1879 | version = "0.3.9"
1880 | source = "registry+https://github.com/rust-lang/crates.io-index"
1881 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1882 | dependencies = [
1883 | "winapi-i686-pc-windows-gnu",
1884 | "winapi-x86_64-pc-windows-gnu",
1885 | ]
1886 |
1887 | [[package]]
1888 | name = "winapi-i686-pc-windows-gnu"
1889 | version = "0.4.0"
1890 | source = "registry+https://github.com/rust-lang/crates.io-index"
1891 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1892 |
1893 | [[package]]
1894 | name = "winapi-x86_64-pc-windows-gnu"
1895 | version = "0.4.0"
1896 | source = "registry+https://github.com/rust-lang/crates.io-index"
1897 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1898 |
1899 | [[package]]
1900 | name = "windows-registry"
1901 | version = "0.2.0"
1902 | source = "registry+https://github.com/rust-lang/crates.io-index"
1903 | checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
1904 | dependencies = [
1905 | "windows-result",
1906 | "windows-strings",
1907 | "windows-targets 0.52.6",
1908 | ]
1909 |
1910 | [[package]]
1911 | name = "windows-result"
1912 | version = "0.2.0"
1913 | source = "registry+https://github.com/rust-lang/crates.io-index"
1914 | checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
1915 | dependencies = [
1916 | "windows-targets 0.52.6",
1917 | ]
1918 |
1919 | [[package]]
1920 | name = "windows-strings"
1921 | version = "0.1.0"
1922 | source = "registry+https://github.com/rust-lang/crates.io-index"
1923 | checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
1924 | dependencies = [
1925 | "windows-result",
1926 | "windows-targets 0.52.6",
1927 | ]
1928 |
1929 | [[package]]
1930 | name = "windows-sys"
1931 | version = "0.48.0"
1932 | source = "registry+https://github.com/rust-lang/crates.io-index"
1933 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1934 | dependencies = [
1935 | "windows-targets 0.48.5",
1936 | ]
1937 |
1938 | [[package]]
1939 | name = "windows-sys"
1940 | version = "0.52.0"
1941 | source = "registry+https://github.com/rust-lang/crates.io-index"
1942 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1943 | dependencies = [
1944 | "windows-targets 0.52.6",
1945 | ]
1946 |
1947 | [[package]]
1948 | name = "windows-sys"
1949 | version = "0.59.0"
1950 | source = "registry+https://github.com/rust-lang/crates.io-index"
1951 | checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1952 | dependencies = [
1953 | "windows-targets 0.52.6",
1954 | ]
1955 |
1956 | [[package]]
1957 | name = "windows-targets"
1958 | version = "0.48.5"
1959 | source = "registry+https://github.com/rust-lang/crates.io-index"
1960 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1961 | dependencies = [
1962 | "windows_aarch64_gnullvm 0.48.5",
1963 | "windows_aarch64_msvc 0.48.5",
1964 | "windows_i686_gnu 0.48.5",
1965 | "windows_i686_msvc 0.48.5",
1966 | "windows_x86_64_gnu 0.48.5",
1967 | "windows_x86_64_gnullvm 0.48.5",
1968 | "windows_x86_64_msvc 0.48.5",
1969 | ]
1970 |
1971 | [[package]]
1972 | name = "windows-targets"
1973 | version = "0.52.6"
1974 | source = "registry+https://github.com/rust-lang/crates.io-index"
1975 | checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1976 | dependencies = [
1977 | "windows_aarch64_gnullvm 0.52.6",
1978 | "windows_aarch64_msvc 0.52.6",
1979 | "windows_i686_gnu 0.52.6",
1980 | "windows_i686_gnullvm",
1981 | "windows_i686_msvc 0.52.6",
1982 | "windows_x86_64_gnu 0.52.6",
1983 | "windows_x86_64_gnullvm 0.52.6",
1984 | "windows_x86_64_msvc 0.52.6",
1985 | ]
1986 |
1987 | [[package]]
1988 | name = "windows_aarch64_gnullvm"
1989 | version = "0.48.5"
1990 | source = "registry+https://github.com/rust-lang/crates.io-index"
1991 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1992 |
1993 | [[package]]
1994 | name = "windows_aarch64_gnullvm"
1995 | version = "0.52.6"
1996 | source = "registry+https://github.com/rust-lang/crates.io-index"
1997 | checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1998 |
1999 | [[package]]
2000 | name = "windows_aarch64_msvc"
2001 | version = "0.48.5"
2002 | source = "registry+https://github.com/rust-lang/crates.io-index"
2003 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2004 |
2005 | [[package]]
2006 | name = "windows_aarch64_msvc"
2007 | version = "0.52.6"
2008 | source = "registry+https://github.com/rust-lang/crates.io-index"
2009 | checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2010 |
2011 | [[package]]
2012 | name = "windows_i686_gnu"
2013 | version = "0.48.5"
2014 | source = "registry+https://github.com/rust-lang/crates.io-index"
2015 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2016 |
2017 | [[package]]
2018 | name = "windows_i686_gnu"
2019 | version = "0.52.6"
2020 | source = "registry+https://github.com/rust-lang/crates.io-index"
2021 | checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2022 |
2023 | [[package]]
2024 | name = "windows_i686_gnullvm"
2025 | version = "0.52.6"
2026 | source = "registry+https://github.com/rust-lang/crates.io-index"
2027 | checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2028 |
2029 | [[package]]
2030 | name = "windows_i686_msvc"
2031 | version = "0.48.5"
2032 | source = "registry+https://github.com/rust-lang/crates.io-index"
2033 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2034 |
2035 | [[package]]
2036 | name = "windows_i686_msvc"
2037 | version = "0.52.6"
2038 | source = "registry+https://github.com/rust-lang/crates.io-index"
2039 | checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2040 |
2041 | [[package]]
2042 | name = "windows_x86_64_gnu"
2043 | version = "0.48.5"
2044 | source = "registry+https://github.com/rust-lang/crates.io-index"
2045 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2046 |
2047 | [[package]]
2048 | name = "windows_x86_64_gnu"
2049 | version = "0.52.6"
2050 | source = "registry+https://github.com/rust-lang/crates.io-index"
2051 | checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2052 |
2053 | [[package]]
2054 | name = "windows_x86_64_gnullvm"
2055 | version = "0.48.5"
2056 | source = "registry+https://github.com/rust-lang/crates.io-index"
2057 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2058 |
2059 | [[package]]
2060 | name = "windows_x86_64_gnullvm"
2061 | version = "0.52.6"
2062 | source = "registry+https://github.com/rust-lang/crates.io-index"
2063 | checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2064 |
2065 | [[package]]
2066 | name = "windows_x86_64_msvc"
2067 | version = "0.48.5"
2068 | source = "registry+https://github.com/rust-lang/crates.io-index"
2069 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2070 |
2071 | [[package]]
2072 | name = "windows_x86_64_msvc"
2073 | version = "0.52.6"
2074 | source = "registry+https://github.com/rust-lang/crates.io-index"
2075 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2076 |
2077 | [[package]]
2078 | name = "winres"
2079 | version = "0.1.12"
2080 | source = "registry+https://github.com/rust-lang/crates.io-index"
2081 | checksum = "b68db261ef59e9e52806f688020631e987592bd83619edccda9c47d42cde4f6c"
2082 | dependencies = [
2083 | "toml",
2084 | ]
2085 |
2086 | [[package]]
2087 | name = "zerocopy"
2088 | version = "0.7.35"
2089 | source = "registry+https://github.com/rust-lang/crates.io-index"
2090 | checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
2091 | dependencies = [
2092 | "byteorder",
2093 | "zerocopy-derive",
2094 | ]
2095 |
2096 | [[package]]
2097 | name = "zerocopy-derive"
2098 | version = "0.7.35"
2099 | source = "registry+https://github.com/rust-lang/crates.io-index"
2100 | checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
2101 | dependencies = [
2102 | "proc-macro2",
2103 | "quote",
2104 | "syn 2.0.90",
2105 | ]
2106 |
2107 | [[package]]
2108 | name = "zeroize"
2109 | version = "1.8.1"
2110 | source = "registry+https://github.com/rust-lang/crates.io-index"
2111 | checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2112 | dependencies = [
2113 | "zeroize_derive",
2114 | ]
2115 |
2116 | [[package]]
2117 | name = "zeroize_derive"
2118 | version = "1.4.2"
2119 | source = "registry+https://github.com/rust-lang/crates.io-index"
2120 | checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
2121 | dependencies = [
2122 | "proc-macro2",
2123 | "quote",
2124 | "syn 2.0.90",
2125 | ]
2126 |
2127 | [[package]]
2128 | name = "zip"
2129 | version = "2.2.2"
2130 | source = "registry+https://github.com/rust-lang/crates.io-index"
2131 | checksum = "ae9c1ea7b3a5e1f4b922ff856a129881167511563dc219869afe3787fc0c1a45"
2132 | dependencies = [
2133 | "aes",
2134 | "arbitrary",
2135 | "bzip2",
2136 | "constant_time_eq",
2137 | "crc32fast",
2138 | "crossbeam-utils",
2139 | "deflate64",
2140 | "displaydoc",
2141 | "flate2",
2142 | "hmac",
2143 | "indexmap",
2144 | "lzma-rs",
2145 | "memchr",
2146 | "pbkdf2",
2147 | "rand",
2148 | "sha1",
2149 | "thiserror",
2150 | "time",
2151 | "zeroize",
2152 | "zopfli",
2153 | "zstd",
2154 | ]
2155 |
2156 | [[package]]
2157 | name = "zip-extensions"
2158 | version = "0.8.1"
2159 | source = "registry+https://github.com/rust-lang/crates.io-index"
2160 | checksum = "386508a00aae1d8218b9252a41f59bba739ccee3f8e420bb90bcb1c30d960d4a"
2161 | dependencies = [
2162 | "zip",
2163 | ]
2164 |
2165 | [[package]]
2166 | name = "zopfli"
2167 | version = "0.8.1"
2168 | source = "registry+https://github.com/rust-lang/crates.io-index"
2169 | checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946"
2170 | dependencies = [
2171 | "bumpalo",
2172 | "crc32fast",
2173 | "lockfree-object-pool",
2174 | "log",
2175 | "once_cell",
2176 | "simd-adler32",
2177 | ]
2178 |
2179 | [[package]]
2180 | name = "zstd"
2181 | version = "0.13.2"
2182 | source = "registry+https://github.com/rust-lang/crates.io-index"
2183 | checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
2184 | dependencies = [
2185 | "zstd-safe",
2186 | ]
2187 |
2188 | [[package]]
2189 | name = "zstd-safe"
2190 | version = "7.2.1"
2191 | source = "registry+https://github.com/rust-lang/crates.io-index"
2192 | checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
2193 | dependencies = [
2194 | "zstd-sys",
2195 | ]
2196 |
2197 | [[package]]
2198 | name = "zstd-sys"
2199 | version = "2.0.13+zstd.1.5.6"
2200 | source = "registry+https://github.com/rust-lang/crates.io-index"
2201 | checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
2202 | dependencies = [
2203 | "cc",
2204 | "pkg-config",
2205 | ]
2206 |
--------------------------------------------------------------------------------