├── .gitignore
├── src
├── mod.rs
├── archarchive
│ ├── menu.rs
│ ├── parser.rs
│ └── mod.rs
└── main.rs
├── video.mp4
├── Cargo.toml
├── README.md
├── LICENSE
└── Cargo.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | /target
2 | .idea
--------------------------------------------------------------------------------
/src/mod.rs:
--------------------------------------------------------------------------------
1 | pub mod archarchive;
2 | pub mod prompts;
--------------------------------------------------------------------------------
/video.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/progzone122/archarchive/HEAD/video.mp4
--------------------------------------------------------------------------------
/Cargo.toml:
--------------------------------------------------------------------------------
1 | [package]
2 | name = "archarchive"
3 | version = "1.3.0"
4 | edition = "2024"
5 |
6 | [dependencies]
7 | anyhow = "1.0.98"
8 | inquire = "0.7.5"
9 | reqwest = "0.12.15"
10 | scraper = "0.23.1"
11 | tokio = { version = "1.45.0", features = ["full"] }
12 |
13 | [workspace.package.release]
14 | opt-level = "z"
15 | lto = "fat"
16 | debug = true
17 | codegen-units = 1
18 | panic = 'abort'
19 | strip = true
20 | debug-assertions = false
21 | overflow-checks = false
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # archarchive
2 | A utility to quickly rollback an arch linux system using ALA (a.k.a Arch Linux Archive).
3 |
4 | https://github.com/user-attachments/assets/24ff6cc1-23ab-41a1-8055-e3d8e790b6a9
5 |
6 | ## Install
7 | Just install from AUR, dammit!
8 | ```shell
9 | paru -S archarchive
10 | ```
11 |
12 | ## Using
13 | ```shell
14 | archarchive
15 | ```
16 | Add the coolest aliases to your shell and express your thoughts properly!
17 | ```
18 | alias pizdec="sudo archarchive"
19 | alias suka="sudo archarchive"
20 | alias blyat="sudo archarchive"
21 | alias otkat="sudo archarchive"
22 | alias nazad="sudo archarchive"
23 | ```
24 |
25 |
26 |
27 | ```
28 | _ ____ ____ _ _
29 | U /"\ uU | _"\ u U /"___| |'| |'|
30 | \/ _ \/ \| |_) |/ \| | u /| |_| |\
31 | / ___ \ | _ < | |/__ U| _ |u
32 | /_/ \_\ |_| \_\ \____| |_| |_|
33 | \\ >> // \\_ _// \\ // \\
34 | (__) (__)(__) (__)(__)(__)(_") ("_)
35 | _ ____ ____ _ _ __ __ U _____ u
36 | U /"\ uU | _"\ u U /"___| |'| |'| ___ \ \ /"/u\| ___"|/
37 | \/ _ \/ \| |_) |/ \| | u /| |_| |\ |_"_| \ \ / // | _|"
38 | / ___ \ | _ < | |/__ U| _ |u | | /\ V /_,-.| |___
39 | /_/ \_\ |_| \_\ \____| |_| |_| U/| |\u U \_/-(_/ |_____|
40 | \\ >> // \\_ _// \\ // \\.-,_|___|_,-.// << >>
41 | (__) (__)(__) (__)(__)(__)(_") ("_)\_)-' '-(_/(__) (__) (__)
42 | ```
43 |
44 |
--------------------------------------------------------------------------------
/src/archarchive/menu.rs:
--------------------------------------------------------------------------------
1 | use inquire::error::InquireResult;
2 | use inquire::{InquireError, Select};
3 | use std::fmt::Display;
4 | use std::{env, process};
5 |
6 | fn create_prompt(items: Vec, message: &str) -> InquireResult {
7 | Select::new(message, items).prompt()
8 | }
9 |
10 | pub fn detect_language() -> String {
11 | let lang = env::var("LC_ALL")
12 | .or_else(|_| env::var("LANG"))
13 | .unwrap_or_else(|_| "en".to_string()); // fallback
14 |
15 | lang.split('.')
16 | .next()
17 | .unwrap_or("en")
18 | .split('_')
19 | .next()
20 | .unwrap_or("en")
21 | .to_string()
22 | }
23 |
24 | pub fn ask(items: Vec, message: &str) -> T {
25 | let lang = detect_language();
26 | loop {
27 | match create_prompt(items.clone(), message) {
28 | Ok(choice) => return choice,
29 | Err(err) => match err {
30 | InquireError::OperationCanceled | InquireError::OperationInterrupted => {
31 | match lang.as_str() {
32 | "ru" => eprintln!("\nВыход..."),
33 | _ => eprintln!("\nExiting..."),
34 | }
35 | process::exit(0);
36 | }
37 | _ => match lang.as_str() {
38 | "ru" => eprintln!(
39 | "Ошибка: {}. Попробуйте снова или нажмите Ctrl+C для выхода.",
40 | err
41 | ),
42 | _ => eprintln!("Error: {}. Try again or press Ctrl+C to exit.", err),
43 | },
44 | },
45 | }
46 | }
47 | }
48 |
--------------------------------------------------------------------------------
/src/main.rs:
--------------------------------------------------------------------------------
1 | mod archarchive;
2 |
3 | use crate::archarchive::menu::detect_language;
4 | use anyhow::Result;
5 | use archarchive::ArchArchive;
6 | use std::fs;
7 | use std::io::Write;
8 | use tokio::process::Command;
9 |
10 | #[tokio::main]
11 | async fn main() -> Result<()> {
12 | let lang = detect_language();
13 | let mut aa = ArchArchive::init();
14 | match aa.menu_run().await {
15 | Ok(url) => {
16 | println!("URL: {}", url);
17 |
18 | println!(
19 | "{}",
20 | match lang.as_str() {
21 | "ru" => "Создаю резервную копию mirrorlist...",
22 | _ => "Creating a mirrorlist backup...",
23 | }
24 | );
25 | fs::rename("/etc/pacman.d/mirrorlist", "/etc/pacman.d/mirrorlist.bak")?;
26 |
27 | println!(
28 | "{}",
29 | match lang.as_str() {
30 | "ru" => "Записываю зеркало archarchive в mirrorlist...",
31 | _ => "Writing an archarchive mirror to mirrorlist...",
32 | }
33 | );
34 | let mut file = fs::File::create("/etc/pacman.d/mirrorlist")?;
35 | file.write_all(format!("Server = {url}").as_bytes())?;
36 |
37 | println!(
38 | "{}",
39 | match lang.as_str() {
40 | "ru" => "Обновляю пакеты через pacman...",
41 | _ => "Updating packages via pacman...",
42 | }
43 | );
44 |
45 | Command::new("sudo")
46 | .args(["pacman", "-Syyuu"])
47 | .status()
48 | .await?;
49 |
50 | println!(
51 | "{}",
52 | match lang.as_str() {
53 | "ru" => "Восстанавливаю mirrorlist из резервной копии...",
54 | _ => "Restoring a mirrorlist backup...",
55 | }
56 | );
57 | fs::remove_file("/etc/pacman.d/mirrorlist")?;
58 | fs::rename("/etc/pacman.d/mirrorlist.bak", "/etc/pacman.d/mirrorlist")?;
59 | }
60 | Err(e) => {
61 | println!("Error: {}", e);
62 | }
63 | };
64 |
65 | Ok(())
66 | }
67 |
--------------------------------------------------------------------------------
/src/archarchive/parser.rs:
--------------------------------------------------------------------------------
1 | use anyhow::{anyhow};
2 | use scraper::{Html, Selector};
3 | use crate::archarchive::ENDPOINT;
4 |
5 |
6 | fn get_elements(fragment: &scraper::Html) -> anyhow::Result> {
7 | let mut elements: Vec = vec![];
8 |
9 | let selector = Selector::parse("pre a")
10 | .map_err(|_e| anyhow!("Invalid element format."))?;
11 |
12 | for element in fragment.select(&selector) {
13 | if let Some(href) = element.attr("href") {
14 | if href.ends_with('/') && href != "../" {
15 | let element = href.trim_end_matches('/');
16 | if element != ".." {
17 | elements.push(element.to_string());
18 | }
19 | }
20 | }
21 | }
22 |
23 | Ok(elements)
24 | }
25 | fn build_url(year: &str, month: Option<&str>, day: Option<&str>) -> String {
26 | match (month, day) {
27 | (Some(m), Some(d)) => format!("{}/{}/{}/{}", ENDPOINT, year, m, d),
28 | (Some(m), None) => format!("{}/{}/{}", ENDPOINT, year, m),
29 | (None, None) => format!("{}/{}", ENDPOINT, year),
30 | (None, Some(_)) => panic!("Cannot specify day without month")
31 | }
32 | }
33 |
34 | pub async fn parse_years() -> anyhow::Result> {
35 | let html: String = reqwest::get(ENDPOINT)
36 | .await?
37 | .text()
38 | .await?;
39 |
40 | let fragment = Html::parse_fragment(&html);
41 | let mut years: Vec = get_elements(&fragment)?;
42 |
43 | const FOOTER_LINKS_COUNT: usize = 3;
44 | for _ in 0..FOOTER_LINKS_COUNT {
45 | years.pop();
46 | }
47 |
48 | Ok(years)
49 | }
50 | pub async fn parse_months(year: &str) -> anyhow::Result> {
51 | let html: String = reqwest::get(&build_url(year, None, None))
52 | .await?
53 | .text()
54 | .await?;
55 |
56 | let fragment = Html::parse_fragment(&html);
57 | let months: Vec = get_elements(&fragment)?;
58 |
59 | Ok(months)
60 | }
61 | pub async fn parse_days(year: &str, month: &str) -> anyhow::Result> {
62 | let html: String = reqwest::get(&build_url(year, Some(month), None))
63 | .await?
64 | .text()
65 | .await?;
66 |
67 | let fragment = Html::parse_fragment(&html);
68 | let days: Vec = get_elements(&fragment)?;
69 |
70 | Ok(days)
71 | }
--------------------------------------------------------------------------------
/src/archarchive/mod.rs:
--------------------------------------------------------------------------------
1 | pub mod parser;
2 | pub mod menu;
3 | use crate::archarchive::menu::detect_language;
4 | use anyhow::{Result, anyhow};
5 |
6 | pub const ENDPOINT: &str = "https://archive.archlinux.org/repos";
7 | pub struct ArchArchive {
8 | year: String,
9 | month: String,
10 | day: String
11 | }
12 | impl ArchArchive {
13 | pub fn init() -> ArchArchive {
14 | Self {
15 | year: String::new(),
16 | month: String::new(),
17 | day: String::new()
18 | }
19 | }
20 | fn get_link(&self) -> String {
21 | format!("{}/{}/{}/{}/$repo/os/$arch", ENDPOINT, self.year, self.month, self.day)
22 | }
23 | async fn select_date(&mut self) -> Result<()> {
24 | let lang = detect_language();
25 |
26 | let mut years = parser::parse_years().await?;
27 | years.reverse();
28 | if years.is_empty() {
29 | let msg = match lang.as_str() {
30 | "ru" => "Нет доступных годов",
31 | _ => "No available years found",
32 | };
33 | return Err(anyhow!(msg));
34 | }
35 |
36 | let prompt = match lang.as_str() {
37 | "ru" => "Выберите год: ",
38 | _ => "Select year: ",
39 | };
40 | self.year = menu::ask(years, prompt);
41 |
42 | let mut months = parser::parse_months(&self.year).await?;
43 | months.reverse();
44 | if months.is_empty() {
45 | let msg = match lang.as_str() {
46 | "ru" => "Нет доступных месяцев",
47 | _ => "No available months found",
48 | };
49 | return Err(anyhow!(msg));
50 | }
51 |
52 | let prompt = match lang.as_str() {
53 | "ru" => "Выберите месяц: ",
54 | _ => "Select month: ",
55 | };
56 | self.month = menu::ask(months, prompt);
57 |
58 | let mut days = parser::parse_days(&self.year, &self.month).await?;
59 | days.reverse();
60 | if days.is_empty() {
61 | let msg = match lang.as_str() {
62 | "ru" => "Нет доступных дней",
63 | _ => "No available days found",
64 | };
65 | return Err(anyhow!(msg));
66 | }
67 |
68 | let prompt = match lang.as_str() {
69 | "ru" => "Выберите день: ",
70 | _ => "Select day: ",
71 | };
72 | self.day = menu::ask(days, prompt);
73 |
74 | Ok(())
75 | }
76 | pub async fn menu_run(&mut self) -> Result {
77 | self.select_date().await?;
78 | Ok(self.get_link())
79 | }
80 | }
81 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 | A utility to quickly rollback an arch linux system using ALA (a.k.a Arch Linux Archive)
635 | Copyright (C) 2025 DiabloSat
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 | archarchive Copyright (C) 2025 DiabloSat
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 = "addr2line"
7 | version = "0.24.2"
8 | source = "registry+https://github.com/rust-lang/crates.io-index"
9 | checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10 | dependencies = [
11 | "gimli",
12 | ]
13 |
14 | [[package]]
15 | name = "adler2"
16 | version = "2.0.0"
17 | source = "registry+https://github.com/rust-lang/crates.io-index"
18 | checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
19 |
20 | [[package]]
21 | name = "anyhow"
22 | version = "1.0.98"
23 | source = "registry+https://github.com/rust-lang/crates.io-index"
24 | checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
25 |
26 | [[package]]
27 | name = "archarchive"
28 | version = "0.1.0"
29 | dependencies = [
30 | "anyhow",
31 | "inquire",
32 | "reqwest",
33 | "scraper",
34 | "tokio",
35 | ]
36 |
37 | [[package]]
38 | name = "atomic-waker"
39 | version = "1.1.2"
40 | source = "registry+https://github.com/rust-lang/crates.io-index"
41 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
42 |
43 | [[package]]
44 | name = "autocfg"
45 | version = "1.4.0"
46 | source = "registry+https://github.com/rust-lang/crates.io-index"
47 | checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
48 |
49 | [[package]]
50 | name = "backtrace"
51 | version = "0.3.75"
52 | source = "registry+https://github.com/rust-lang/crates.io-index"
53 | checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
54 | dependencies = [
55 | "addr2line",
56 | "cfg-if",
57 | "libc",
58 | "miniz_oxide",
59 | "object",
60 | "rustc-demangle",
61 | "windows-targets 0.52.6",
62 | ]
63 |
64 | [[package]]
65 | name = "base64"
66 | version = "0.22.1"
67 | source = "registry+https://github.com/rust-lang/crates.io-index"
68 | checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
69 |
70 | [[package]]
71 | name = "bitflags"
72 | version = "1.3.2"
73 | source = "registry+https://github.com/rust-lang/crates.io-index"
74 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
75 |
76 | [[package]]
77 | name = "bitflags"
78 | version = "2.9.1"
79 | source = "registry+https://github.com/rust-lang/crates.io-index"
80 | checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
81 |
82 | [[package]]
83 | name = "bumpalo"
84 | version = "3.17.0"
85 | source = "registry+https://github.com/rust-lang/crates.io-index"
86 | checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
87 |
88 | [[package]]
89 | name = "byteorder"
90 | version = "1.5.0"
91 | source = "registry+https://github.com/rust-lang/crates.io-index"
92 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
93 |
94 | [[package]]
95 | name = "bytes"
96 | version = "1.10.1"
97 | source = "registry+https://github.com/rust-lang/crates.io-index"
98 | checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
99 |
100 | [[package]]
101 | name = "cc"
102 | version = "1.2.22"
103 | source = "registry+https://github.com/rust-lang/crates.io-index"
104 | checksum = "32db95edf998450acc7881c932f94cd9b05c87b4b2599e8bab064753da4acfd1"
105 | dependencies = [
106 | "shlex",
107 | ]
108 |
109 | [[package]]
110 | name = "cfg-if"
111 | version = "1.0.0"
112 | source = "registry+https://github.com/rust-lang/crates.io-index"
113 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
114 |
115 | [[package]]
116 | name = "core-foundation"
117 | version = "0.9.4"
118 | source = "registry+https://github.com/rust-lang/crates.io-index"
119 | checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
120 | dependencies = [
121 | "core-foundation-sys",
122 | "libc",
123 | ]
124 |
125 | [[package]]
126 | name = "core-foundation-sys"
127 | version = "0.8.7"
128 | source = "registry+https://github.com/rust-lang/crates.io-index"
129 | checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
130 |
131 | [[package]]
132 | name = "crossterm"
133 | version = "0.25.0"
134 | source = "registry+https://github.com/rust-lang/crates.io-index"
135 | checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67"
136 | dependencies = [
137 | "bitflags 1.3.2",
138 | "crossterm_winapi",
139 | "libc",
140 | "mio 0.8.11",
141 | "parking_lot",
142 | "signal-hook",
143 | "signal-hook-mio",
144 | "winapi",
145 | ]
146 |
147 | [[package]]
148 | name = "crossterm_winapi"
149 | version = "0.9.1"
150 | source = "registry+https://github.com/rust-lang/crates.io-index"
151 | checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
152 | dependencies = [
153 | "winapi",
154 | ]
155 |
156 | [[package]]
157 | name = "cssparser"
158 | version = "0.34.0"
159 | source = "registry+https://github.com/rust-lang/crates.io-index"
160 | checksum = "b7c66d1cd8ed61bf80b38432613a7a2f09401ab8d0501110655f8b341484a3e3"
161 | dependencies = [
162 | "cssparser-macros",
163 | "dtoa-short",
164 | "itoa",
165 | "phf",
166 | "smallvec",
167 | ]
168 |
169 | [[package]]
170 | name = "cssparser-macros"
171 | version = "0.6.1"
172 | source = "registry+https://github.com/rust-lang/crates.io-index"
173 | checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
174 | dependencies = [
175 | "quote",
176 | "syn",
177 | ]
178 |
179 | [[package]]
180 | name = "derive_more"
181 | version = "0.99.20"
182 | source = "registry+https://github.com/rust-lang/crates.io-index"
183 | checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
184 | dependencies = [
185 | "proc-macro2",
186 | "quote",
187 | "syn",
188 | ]
189 |
190 | [[package]]
191 | name = "displaydoc"
192 | version = "0.2.5"
193 | source = "registry+https://github.com/rust-lang/crates.io-index"
194 | checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
195 | dependencies = [
196 | "proc-macro2",
197 | "quote",
198 | "syn",
199 | ]
200 |
201 | [[package]]
202 | name = "dtoa"
203 | version = "1.0.10"
204 | source = "registry+https://github.com/rust-lang/crates.io-index"
205 | checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04"
206 |
207 | [[package]]
208 | name = "dtoa-short"
209 | version = "0.3.5"
210 | source = "registry+https://github.com/rust-lang/crates.io-index"
211 | checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
212 | dependencies = [
213 | "dtoa",
214 | ]
215 |
216 | [[package]]
217 | name = "dyn-clone"
218 | version = "1.0.19"
219 | source = "registry+https://github.com/rust-lang/crates.io-index"
220 | checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005"
221 |
222 | [[package]]
223 | name = "ego-tree"
224 | version = "0.10.0"
225 | source = "registry+https://github.com/rust-lang/crates.io-index"
226 | checksum = "b2972feb8dffe7bc8c5463b1dacda1b0dfbed3710e50f977d965429692d74cd8"
227 |
228 | [[package]]
229 | name = "encoding_rs"
230 | version = "0.8.35"
231 | source = "registry+https://github.com/rust-lang/crates.io-index"
232 | checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
233 | dependencies = [
234 | "cfg-if",
235 | ]
236 |
237 | [[package]]
238 | name = "equivalent"
239 | version = "1.0.2"
240 | source = "registry+https://github.com/rust-lang/crates.io-index"
241 | checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
242 |
243 | [[package]]
244 | name = "errno"
245 | version = "0.3.12"
246 | source = "registry+https://github.com/rust-lang/crates.io-index"
247 | checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
248 | dependencies = [
249 | "libc",
250 | "windows-sys 0.59.0",
251 | ]
252 |
253 | [[package]]
254 | name = "fastrand"
255 | version = "2.3.0"
256 | source = "registry+https://github.com/rust-lang/crates.io-index"
257 | checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
258 |
259 | [[package]]
260 | name = "fnv"
261 | version = "1.0.7"
262 | source = "registry+https://github.com/rust-lang/crates.io-index"
263 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
264 |
265 | [[package]]
266 | name = "foreign-types"
267 | version = "0.3.2"
268 | source = "registry+https://github.com/rust-lang/crates.io-index"
269 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
270 | dependencies = [
271 | "foreign-types-shared",
272 | ]
273 |
274 | [[package]]
275 | name = "foreign-types-shared"
276 | version = "0.1.1"
277 | source = "registry+https://github.com/rust-lang/crates.io-index"
278 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
279 |
280 | [[package]]
281 | name = "form_urlencoded"
282 | version = "1.2.1"
283 | source = "registry+https://github.com/rust-lang/crates.io-index"
284 | checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
285 | dependencies = [
286 | "percent-encoding",
287 | ]
288 |
289 | [[package]]
290 | name = "futf"
291 | version = "0.1.5"
292 | source = "registry+https://github.com/rust-lang/crates.io-index"
293 | checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
294 | dependencies = [
295 | "mac",
296 | "new_debug_unreachable",
297 | ]
298 |
299 | [[package]]
300 | name = "futures-channel"
301 | version = "0.3.31"
302 | source = "registry+https://github.com/rust-lang/crates.io-index"
303 | checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
304 | dependencies = [
305 | "futures-core",
306 | ]
307 |
308 | [[package]]
309 | name = "futures-core"
310 | version = "0.3.31"
311 | source = "registry+https://github.com/rust-lang/crates.io-index"
312 | checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
313 |
314 | [[package]]
315 | name = "futures-sink"
316 | version = "0.3.31"
317 | source = "registry+https://github.com/rust-lang/crates.io-index"
318 | checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
319 |
320 | [[package]]
321 | name = "futures-task"
322 | version = "0.3.31"
323 | source = "registry+https://github.com/rust-lang/crates.io-index"
324 | checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
325 |
326 | [[package]]
327 | name = "futures-util"
328 | version = "0.3.31"
329 | source = "registry+https://github.com/rust-lang/crates.io-index"
330 | checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
331 | dependencies = [
332 | "futures-core",
333 | "futures-task",
334 | "pin-project-lite",
335 | "pin-utils",
336 | ]
337 |
338 | [[package]]
339 | name = "fuzzy-matcher"
340 | version = "0.3.7"
341 | source = "registry+https://github.com/rust-lang/crates.io-index"
342 | checksum = "54614a3312934d066701a80f20f15fa3b56d67ac7722b39eea5b4c9dd1d66c94"
343 | dependencies = [
344 | "thread_local",
345 | ]
346 |
347 | [[package]]
348 | name = "fxhash"
349 | version = "0.2.1"
350 | source = "registry+https://github.com/rust-lang/crates.io-index"
351 | checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
352 | dependencies = [
353 | "byteorder",
354 | ]
355 |
356 | [[package]]
357 | name = "getopts"
358 | version = "0.2.21"
359 | source = "registry+https://github.com/rust-lang/crates.io-index"
360 | checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
361 | dependencies = [
362 | "unicode-width",
363 | ]
364 |
365 | [[package]]
366 | name = "getrandom"
367 | version = "0.2.16"
368 | source = "registry+https://github.com/rust-lang/crates.io-index"
369 | checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
370 | dependencies = [
371 | "cfg-if",
372 | "libc",
373 | "wasi 0.11.0+wasi-snapshot-preview1",
374 | ]
375 |
376 | [[package]]
377 | name = "getrandom"
378 | version = "0.3.3"
379 | source = "registry+https://github.com/rust-lang/crates.io-index"
380 | checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
381 | dependencies = [
382 | "cfg-if",
383 | "libc",
384 | "r-efi",
385 | "wasi 0.14.2+wasi-0.2.4",
386 | ]
387 |
388 | [[package]]
389 | name = "gimli"
390 | version = "0.31.1"
391 | source = "registry+https://github.com/rust-lang/crates.io-index"
392 | checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
393 |
394 | [[package]]
395 | name = "h2"
396 | version = "0.4.10"
397 | source = "registry+https://github.com/rust-lang/crates.io-index"
398 | checksum = "a9421a676d1b147b16b82c9225157dc629087ef8ec4d5e2960f9437a90dac0a5"
399 | dependencies = [
400 | "atomic-waker",
401 | "bytes",
402 | "fnv",
403 | "futures-core",
404 | "futures-sink",
405 | "http",
406 | "indexmap",
407 | "slab",
408 | "tokio",
409 | "tokio-util",
410 | "tracing",
411 | ]
412 |
413 | [[package]]
414 | name = "hashbrown"
415 | version = "0.15.3"
416 | source = "registry+https://github.com/rust-lang/crates.io-index"
417 | checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3"
418 |
419 | [[package]]
420 | name = "html5ever"
421 | version = "0.29.1"
422 | source = "registry+https://github.com/rust-lang/crates.io-index"
423 | checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c"
424 | dependencies = [
425 | "log",
426 | "mac",
427 | "markup5ever",
428 | "match_token",
429 | ]
430 |
431 | [[package]]
432 | name = "http"
433 | version = "1.3.1"
434 | source = "registry+https://github.com/rust-lang/crates.io-index"
435 | checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
436 | dependencies = [
437 | "bytes",
438 | "fnv",
439 | "itoa",
440 | ]
441 |
442 | [[package]]
443 | name = "http-body"
444 | version = "1.0.1"
445 | source = "registry+https://github.com/rust-lang/crates.io-index"
446 | checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
447 | dependencies = [
448 | "bytes",
449 | "http",
450 | ]
451 |
452 | [[package]]
453 | name = "http-body-util"
454 | version = "0.1.3"
455 | source = "registry+https://github.com/rust-lang/crates.io-index"
456 | checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
457 | dependencies = [
458 | "bytes",
459 | "futures-core",
460 | "http",
461 | "http-body",
462 | "pin-project-lite",
463 | ]
464 |
465 | [[package]]
466 | name = "httparse"
467 | version = "1.10.1"
468 | source = "registry+https://github.com/rust-lang/crates.io-index"
469 | checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
470 |
471 | [[package]]
472 | name = "hyper"
473 | version = "1.6.0"
474 | source = "registry+https://github.com/rust-lang/crates.io-index"
475 | checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
476 | dependencies = [
477 | "bytes",
478 | "futures-channel",
479 | "futures-util",
480 | "h2",
481 | "http",
482 | "http-body",
483 | "httparse",
484 | "itoa",
485 | "pin-project-lite",
486 | "smallvec",
487 | "tokio",
488 | "want",
489 | ]
490 |
491 | [[package]]
492 | name = "hyper-rustls"
493 | version = "0.27.5"
494 | source = "registry+https://github.com/rust-lang/crates.io-index"
495 | checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
496 | dependencies = [
497 | "futures-util",
498 | "http",
499 | "hyper",
500 | "hyper-util",
501 | "rustls",
502 | "rustls-pki-types",
503 | "tokio",
504 | "tokio-rustls",
505 | "tower-service",
506 | ]
507 |
508 | [[package]]
509 | name = "hyper-tls"
510 | version = "0.6.0"
511 | source = "registry+https://github.com/rust-lang/crates.io-index"
512 | checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
513 | dependencies = [
514 | "bytes",
515 | "http-body-util",
516 | "hyper",
517 | "hyper-util",
518 | "native-tls",
519 | "tokio",
520 | "tokio-native-tls",
521 | "tower-service",
522 | ]
523 |
524 | [[package]]
525 | name = "hyper-util"
526 | version = "0.1.11"
527 | source = "registry+https://github.com/rust-lang/crates.io-index"
528 | checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2"
529 | dependencies = [
530 | "bytes",
531 | "futures-channel",
532 | "futures-util",
533 | "http",
534 | "http-body",
535 | "hyper",
536 | "libc",
537 | "pin-project-lite",
538 | "socket2",
539 | "tokio",
540 | "tower-service",
541 | "tracing",
542 | ]
543 |
544 | [[package]]
545 | name = "icu_collections"
546 | version = "2.0.0"
547 | source = "registry+https://github.com/rust-lang/crates.io-index"
548 | checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
549 | dependencies = [
550 | "displaydoc",
551 | "potential_utf",
552 | "yoke",
553 | "zerofrom",
554 | "zerovec",
555 | ]
556 |
557 | [[package]]
558 | name = "icu_locale_core"
559 | version = "2.0.0"
560 | source = "registry+https://github.com/rust-lang/crates.io-index"
561 | checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
562 | dependencies = [
563 | "displaydoc",
564 | "litemap",
565 | "tinystr",
566 | "writeable",
567 | "zerovec",
568 | ]
569 |
570 | [[package]]
571 | name = "icu_normalizer"
572 | version = "2.0.0"
573 | source = "registry+https://github.com/rust-lang/crates.io-index"
574 | checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
575 | dependencies = [
576 | "displaydoc",
577 | "icu_collections",
578 | "icu_normalizer_data",
579 | "icu_properties",
580 | "icu_provider",
581 | "smallvec",
582 | "zerovec",
583 | ]
584 |
585 | [[package]]
586 | name = "icu_normalizer_data"
587 | version = "2.0.0"
588 | source = "registry+https://github.com/rust-lang/crates.io-index"
589 | checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
590 |
591 | [[package]]
592 | name = "icu_properties"
593 | version = "2.0.0"
594 | source = "registry+https://github.com/rust-lang/crates.io-index"
595 | checksum = "2549ca8c7241c82f59c80ba2a6f415d931c5b58d24fb8412caa1a1f02c49139a"
596 | dependencies = [
597 | "displaydoc",
598 | "icu_collections",
599 | "icu_locale_core",
600 | "icu_properties_data",
601 | "icu_provider",
602 | "potential_utf",
603 | "zerotrie",
604 | "zerovec",
605 | ]
606 |
607 | [[package]]
608 | name = "icu_properties_data"
609 | version = "2.0.0"
610 | source = "registry+https://github.com/rust-lang/crates.io-index"
611 | checksum = "8197e866e47b68f8f7d95249e172903bec06004b18b2937f1095d40a0c57de04"
612 |
613 | [[package]]
614 | name = "icu_provider"
615 | version = "2.0.0"
616 | source = "registry+https://github.com/rust-lang/crates.io-index"
617 | checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
618 | dependencies = [
619 | "displaydoc",
620 | "icu_locale_core",
621 | "stable_deref_trait",
622 | "tinystr",
623 | "writeable",
624 | "yoke",
625 | "zerofrom",
626 | "zerotrie",
627 | "zerovec",
628 | ]
629 |
630 | [[package]]
631 | name = "idna"
632 | version = "1.0.3"
633 | source = "registry+https://github.com/rust-lang/crates.io-index"
634 | checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
635 | dependencies = [
636 | "idna_adapter",
637 | "smallvec",
638 | "utf8_iter",
639 | ]
640 |
641 | [[package]]
642 | name = "idna_adapter"
643 | version = "1.2.1"
644 | source = "registry+https://github.com/rust-lang/crates.io-index"
645 | checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
646 | dependencies = [
647 | "icu_normalizer",
648 | "icu_properties",
649 | ]
650 |
651 | [[package]]
652 | name = "indexmap"
653 | version = "2.9.0"
654 | source = "registry+https://github.com/rust-lang/crates.io-index"
655 | checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
656 | dependencies = [
657 | "equivalent",
658 | "hashbrown",
659 | ]
660 |
661 | [[package]]
662 | name = "inquire"
663 | version = "0.7.5"
664 | source = "registry+https://github.com/rust-lang/crates.io-index"
665 | checksum = "0fddf93031af70e75410a2511ec04d49e758ed2f26dad3404a934e0fb45cc12a"
666 | dependencies = [
667 | "bitflags 2.9.1",
668 | "crossterm",
669 | "dyn-clone",
670 | "fuzzy-matcher",
671 | "fxhash",
672 | "newline-converter",
673 | "once_cell",
674 | "unicode-segmentation",
675 | "unicode-width",
676 | ]
677 |
678 | [[package]]
679 | name = "ipnet"
680 | version = "2.11.0"
681 | source = "registry+https://github.com/rust-lang/crates.io-index"
682 | checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
683 |
684 | [[package]]
685 | name = "itoa"
686 | version = "1.0.15"
687 | source = "registry+https://github.com/rust-lang/crates.io-index"
688 | checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
689 |
690 | [[package]]
691 | name = "js-sys"
692 | version = "0.3.77"
693 | source = "registry+https://github.com/rust-lang/crates.io-index"
694 | checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
695 | dependencies = [
696 | "once_cell",
697 | "wasm-bindgen",
698 | ]
699 |
700 | [[package]]
701 | name = "libc"
702 | version = "0.2.172"
703 | source = "registry+https://github.com/rust-lang/crates.io-index"
704 | checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
705 |
706 | [[package]]
707 | name = "linux-raw-sys"
708 | version = "0.9.4"
709 | source = "registry+https://github.com/rust-lang/crates.io-index"
710 | checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
711 |
712 | [[package]]
713 | name = "litemap"
714 | version = "0.8.0"
715 | source = "registry+https://github.com/rust-lang/crates.io-index"
716 | checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
717 |
718 | [[package]]
719 | name = "lock_api"
720 | version = "0.4.12"
721 | source = "registry+https://github.com/rust-lang/crates.io-index"
722 | checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
723 | dependencies = [
724 | "autocfg",
725 | "scopeguard",
726 | ]
727 |
728 | [[package]]
729 | name = "log"
730 | version = "0.4.27"
731 | source = "registry+https://github.com/rust-lang/crates.io-index"
732 | checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
733 |
734 | [[package]]
735 | name = "mac"
736 | version = "0.1.1"
737 | source = "registry+https://github.com/rust-lang/crates.io-index"
738 | checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
739 |
740 | [[package]]
741 | name = "markup5ever"
742 | version = "0.14.1"
743 | source = "registry+https://github.com/rust-lang/crates.io-index"
744 | checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18"
745 | dependencies = [
746 | "log",
747 | "phf",
748 | "phf_codegen",
749 | "string_cache",
750 | "string_cache_codegen",
751 | "tendril",
752 | ]
753 |
754 | [[package]]
755 | name = "match_token"
756 | version = "0.1.0"
757 | source = "registry+https://github.com/rust-lang/crates.io-index"
758 | checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b"
759 | dependencies = [
760 | "proc-macro2",
761 | "quote",
762 | "syn",
763 | ]
764 |
765 | [[package]]
766 | name = "memchr"
767 | version = "2.7.4"
768 | source = "registry+https://github.com/rust-lang/crates.io-index"
769 | checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
770 |
771 | [[package]]
772 | name = "mime"
773 | version = "0.3.17"
774 | source = "registry+https://github.com/rust-lang/crates.io-index"
775 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
776 |
777 | [[package]]
778 | name = "miniz_oxide"
779 | version = "0.8.8"
780 | source = "registry+https://github.com/rust-lang/crates.io-index"
781 | checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
782 | dependencies = [
783 | "adler2",
784 | ]
785 |
786 | [[package]]
787 | name = "mio"
788 | version = "0.8.11"
789 | source = "registry+https://github.com/rust-lang/crates.io-index"
790 | checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
791 | dependencies = [
792 | "libc",
793 | "log",
794 | "wasi 0.11.0+wasi-snapshot-preview1",
795 | "windows-sys 0.48.0",
796 | ]
797 |
798 | [[package]]
799 | name = "mio"
800 | version = "1.0.3"
801 | source = "registry+https://github.com/rust-lang/crates.io-index"
802 | checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
803 | dependencies = [
804 | "libc",
805 | "wasi 0.11.0+wasi-snapshot-preview1",
806 | "windows-sys 0.52.0",
807 | ]
808 |
809 | [[package]]
810 | name = "native-tls"
811 | version = "0.2.14"
812 | source = "registry+https://github.com/rust-lang/crates.io-index"
813 | checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
814 | dependencies = [
815 | "libc",
816 | "log",
817 | "openssl",
818 | "openssl-probe",
819 | "openssl-sys",
820 | "schannel",
821 | "security-framework",
822 | "security-framework-sys",
823 | "tempfile",
824 | ]
825 |
826 | [[package]]
827 | name = "new_debug_unreachable"
828 | version = "1.0.6"
829 | source = "registry+https://github.com/rust-lang/crates.io-index"
830 | checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
831 |
832 | [[package]]
833 | name = "newline-converter"
834 | version = "0.3.0"
835 | source = "registry+https://github.com/rust-lang/crates.io-index"
836 | checksum = "47b6b097ecb1cbfed438542d16e84fd7ad9b0c76c8a65b7f9039212a3d14dc7f"
837 | dependencies = [
838 | "unicode-segmentation",
839 | ]
840 |
841 | [[package]]
842 | name = "object"
843 | version = "0.36.7"
844 | source = "registry+https://github.com/rust-lang/crates.io-index"
845 | checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
846 | dependencies = [
847 | "memchr",
848 | ]
849 |
850 | [[package]]
851 | name = "once_cell"
852 | version = "1.21.3"
853 | source = "registry+https://github.com/rust-lang/crates.io-index"
854 | checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
855 |
856 | [[package]]
857 | name = "openssl"
858 | version = "0.10.72"
859 | source = "registry+https://github.com/rust-lang/crates.io-index"
860 | checksum = "fedfea7d58a1f73118430a55da6a286e7b044961736ce96a16a17068ea25e5da"
861 | dependencies = [
862 | "bitflags 2.9.1",
863 | "cfg-if",
864 | "foreign-types",
865 | "libc",
866 | "once_cell",
867 | "openssl-macros",
868 | "openssl-sys",
869 | ]
870 |
871 | [[package]]
872 | name = "openssl-macros"
873 | version = "0.1.1"
874 | source = "registry+https://github.com/rust-lang/crates.io-index"
875 | checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
876 | dependencies = [
877 | "proc-macro2",
878 | "quote",
879 | "syn",
880 | ]
881 |
882 | [[package]]
883 | name = "openssl-probe"
884 | version = "0.1.6"
885 | source = "registry+https://github.com/rust-lang/crates.io-index"
886 | checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
887 |
888 | [[package]]
889 | name = "openssl-sys"
890 | version = "0.9.108"
891 | source = "registry+https://github.com/rust-lang/crates.io-index"
892 | checksum = "e145e1651e858e820e4860f7b9c5e169bc1d8ce1c86043be79fa7b7634821847"
893 | dependencies = [
894 | "cc",
895 | "libc",
896 | "pkg-config",
897 | "vcpkg",
898 | ]
899 |
900 | [[package]]
901 | name = "parking_lot"
902 | version = "0.12.3"
903 | source = "registry+https://github.com/rust-lang/crates.io-index"
904 | checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
905 | dependencies = [
906 | "lock_api",
907 | "parking_lot_core",
908 | ]
909 |
910 | [[package]]
911 | name = "parking_lot_core"
912 | version = "0.9.10"
913 | source = "registry+https://github.com/rust-lang/crates.io-index"
914 | checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
915 | dependencies = [
916 | "cfg-if",
917 | "libc",
918 | "redox_syscall",
919 | "smallvec",
920 | "windows-targets 0.52.6",
921 | ]
922 |
923 | [[package]]
924 | name = "percent-encoding"
925 | version = "2.3.1"
926 | source = "registry+https://github.com/rust-lang/crates.io-index"
927 | checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
928 |
929 | [[package]]
930 | name = "phf"
931 | version = "0.11.3"
932 | source = "registry+https://github.com/rust-lang/crates.io-index"
933 | checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
934 | dependencies = [
935 | "phf_macros",
936 | "phf_shared",
937 | ]
938 |
939 | [[package]]
940 | name = "phf_codegen"
941 | version = "0.11.3"
942 | source = "registry+https://github.com/rust-lang/crates.io-index"
943 | checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
944 | dependencies = [
945 | "phf_generator",
946 | "phf_shared",
947 | ]
948 |
949 | [[package]]
950 | name = "phf_generator"
951 | version = "0.11.3"
952 | source = "registry+https://github.com/rust-lang/crates.io-index"
953 | checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
954 | dependencies = [
955 | "phf_shared",
956 | "rand",
957 | ]
958 |
959 | [[package]]
960 | name = "phf_macros"
961 | version = "0.11.3"
962 | source = "registry+https://github.com/rust-lang/crates.io-index"
963 | checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
964 | dependencies = [
965 | "phf_generator",
966 | "phf_shared",
967 | "proc-macro2",
968 | "quote",
969 | "syn",
970 | ]
971 |
972 | [[package]]
973 | name = "phf_shared"
974 | version = "0.11.3"
975 | source = "registry+https://github.com/rust-lang/crates.io-index"
976 | checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
977 | dependencies = [
978 | "siphasher",
979 | ]
980 |
981 | [[package]]
982 | name = "pin-project-lite"
983 | version = "0.2.16"
984 | source = "registry+https://github.com/rust-lang/crates.io-index"
985 | checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
986 |
987 | [[package]]
988 | name = "pin-utils"
989 | version = "0.1.0"
990 | source = "registry+https://github.com/rust-lang/crates.io-index"
991 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
992 |
993 | [[package]]
994 | name = "pkg-config"
995 | version = "0.3.32"
996 | source = "registry+https://github.com/rust-lang/crates.io-index"
997 | checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
998 |
999 | [[package]]
1000 | name = "potential_utf"
1001 | version = "0.1.2"
1002 | source = "registry+https://github.com/rust-lang/crates.io-index"
1003 | checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
1004 | dependencies = [
1005 | "zerovec",
1006 | ]
1007 |
1008 | [[package]]
1009 | name = "precomputed-hash"
1010 | version = "0.1.1"
1011 | source = "registry+https://github.com/rust-lang/crates.io-index"
1012 | checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1013 |
1014 | [[package]]
1015 | name = "proc-macro2"
1016 | version = "1.0.95"
1017 | source = "registry+https://github.com/rust-lang/crates.io-index"
1018 | checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1019 | dependencies = [
1020 | "unicode-ident",
1021 | ]
1022 |
1023 | [[package]]
1024 | name = "quote"
1025 | version = "1.0.40"
1026 | source = "registry+https://github.com/rust-lang/crates.io-index"
1027 | checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1028 | dependencies = [
1029 | "proc-macro2",
1030 | ]
1031 |
1032 | [[package]]
1033 | name = "r-efi"
1034 | version = "5.2.0"
1035 | source = "registry+https://github.com/rust-lang/crates.io-index"
1036 | checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
1037 |
1038 | [[package]]
1039 | name = "rand"
1040 | version = "0.8.5"
1041 | source = "registry+https://github.com/rust-lang/crates.io-index"
1042 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1043 | dependencies = [
1044 | "rand_core",
1045 | ]
1046 |
1047 | [[package]]
1048 | name = "rand_core"
1049 | version = "0.6.4"
1050 | source = "registry+https://github.com/rust-lang/crates.io-index"
1051 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1052 |
1053 | [[package]]
1054 | name = "redox_syscall"
1055 | version = "0.5.12"
1056 | source = "registry+https://github.com/rust-lang/crates.io-index"
1057 | checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
1058 | dependencies = [
1059 | "bitflags 2.9.1",
1060 | ]
1061 |
1062 | [[package]]
1063 | name = "reqwest"
1064 | version = "0.12.15"
1065 | source = "registry+https://github.com/rust-lang/crates.io-index"
1066 | checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb"
1067 | dependencies = [
1068 | "base64",
1069 | "bytes",
1070 | "encoding_rs",
1071 | "futures-core",
1072 | "futures-util",
1073 | "h2",
1074 | "http",
1075 | "http-body",
1076 | "http-body-util",
1077 | "hyper",
1078 | "hyper-rustls",
1079 | "hyper-tls",
1080 | "hyper-util",
1081 | "ipnet",
1082 | "js-sys",
1083 | "log",
1084 | "mime",
1085 | "native-tls",
1086 | "once_cell",
1087 | "percent-encoding",
1088 | "pin-project-lite",
1089 | "rustls-pemfile",
1090 | "serde",
1091 | "serde_json",
1092 | "serde_urlencoded",
1093 | "sync_wrapper",
1094 | "system-configuration",
1095 | "tokio",
1096 | "tokio-native-tls",
1097 | "tower",
1098 | "tower-service",
1099 | "url",
1100 | "wasm-bindgen",
1101 | "wasm-bindgen-futures",
1102 | "web-sys",
1103 | "windows-registry",
1104 | ]
1105 |
1106 | [[package]]
1107 | name = "ring"
1108 | version = "0.17.14"
1109 | source = "registry+https://github.com/rust-lang/crates.io-index"
1110 | checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1111 | dependencies = [
1112 | "cc",
1113 | "cfg-if",
1114 | "getrandom 0.2.16",
1115 | "libc",
1116 | "untrusted",
1117 | "windows-sys 0.52.0",
1118 | ]
1119 |
1120 | [[package]]
1121 | name = "rustc-demangle"
1122 | version = "0.1.24"
1123 | source = "registry+https://github.com/rust-lang/crates.io-index"
1124 | checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1125 |
1126 | [[package]]
1127 | name = "rustix"
1128 | version = "1.0.7"
1129 | source = "registry+https://github.com/rust-lang/crates.io-index"
1130 | checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
1131 | dependencies = [
1132 | "bitflags 2.9.1",
1133 | "errno",
1134 | "libc",
1135 | "linux-raw-sys",
1136 | "windows-sys 0.59.0",
1137 | ]
1138 |
1139 | [[package]]
1140 | name = "rustls"
1141 | version = "0.23.27"
1142 | source = "registry+https://github.com/rust-lang/crates.io-index"
1143 | checksum = "730944ca083c1c233a75c09f199e973ca499344a2b7ba9e755c457e86fb4a321"
1144 | dependencies = [
1145 | "once_cell",
1146 | "rustls-pki-types",
1147 | "rustls-webpki",
1148 | "subtle",
1149 | "zeroize",
1150 | ]
1151 |
1152 | [[package]]
1153 | name = "rustls-pemfile"
1154 | version = "2.2.0"
1155 | source = "registry+https://github.com/rust-lang/crates.io-index"
1156 | checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
1157 | dependencies = [
1158 | "rustls-pki-types",
1159 | ]
1160 |
1161 | [[package]]
1162 | name = "rustls-pki-types"
1163 | version = "1.12.0"
1164 | source = "registry+https://github.com/rust-lang/crates.io-index"
1165 | checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
1166 | dependencies = [
1167 | "zeroize",
1168 | ]
1169 |
1170 | [[package]]
1171 | name = "rustls-webpki"
1172 | version = "0.103.3"
1173 | source = "registry+https://github.com/rust-lang/crates.io-index"
1174 | checksum = "e4a72fe2bcf7a6ac6fd7d0b9e5cb68aeb7d4c0a0271730218b3e92d43b4eb435"
1175 | dependencies = [
1176 | "ring",
1177 | "rustls-pki-types",
1178 | "untrusted",
1179 | ]
1180 |
1181 | [[package]]
1182 | name = "rustversion"
1183 | version = "1.0.20"
1184 | source = "registry+https://github.com/rust-lang/crates.io-index"
1185 | checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
1186 |
1187 | [[package]]
1188 | name = "ryu"
1189 | version = "1.0.20"
1190 | source = "registry+https://github.com/rust-lang/crates.io-index"
1191 | checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1192 |
1193 | [[package]]
1194 | name = "schannel"
1195 | version = "0.1.27"
1196 | source = "registry+https://github.com/rust-lang/crates.io-index"
1197 | checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
1198 | dependencies = [
1199 | "windows-sys 0.59.0",
1200 | ]
1201 |
1202 | [[package]]
1203 | name = "scopeguard"
1204 | version = "1.2.0"
1205 | source = "registry+https://github.com/rust-lang/crates.io-index"
1206 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1207 |
1208 | [[package]]
1209 | name = "scraper"
1210 | version = "0.23.1"
1211 | source = "registry+https://github.com/rust-lang/crates.io-index"
1212 | checksum = "527e65d9d888567588db4c12da1087598d0f6f8b346cc2c5abc91f05fc2dffe2"
1213 | dependencies = [
1214 | "cssparser",
1215 | "ego-tree",
1216 | "getopts",
1217 | "html5ever",
1218 | "precomputed-hash",
1219 | "selectors",
1220 | "tendril",
1221 | ]
1222 |
1223 | [[package]]
1224 | name = "security-framework"
1225 | version = "2.11.1"
1226 | source = "registry+https://github.com/rust-lang/crates.io-index"
1227 | checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1228 | dependencies = [
1229 | "bitflags 2.9.1",
1230 | "core-foundation",
1231 | "core-foundation-sys",
1232 | "libc",
1233 | "security-framework-sys",
1234 | ]
1235 |
1236 | [[package]]
1237 | name = "security-framework-sys"
1238 | version = "2.14.0"
1239 | source = "registry+https://github.com/rust-lang/crates.io-index"
1240 | checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
1241 | dependencies = [
1242 | "core-foundation-sys",
1243 | "libc",
1244 | ]
1245 |
1246 | [[package]]
1247 | name = "selectors"
1248 | version = "0.26.0"
1249 | source = "registry+https://github.com/rust-lang/crates.io-index"
1250 | checksum = "fd568a4c9bb598e291a08244a5c1f5a8a6650bee243b5b0f8dbb3d9cc1d87fe8"
1251 | dependencies = [
1252 | "bitflags 2.9.1",
1253 | "cssparser",
1254 | "derive_more",
1255 | "fxhash",
1256 | "log",
1257 | "new_debug_unreachable",
1258 | "phf",
1259 | "phf_codegen",
1260 | "precomputed-hash",
1261 | "servo_arc",
1262 | "smallvec",
1263 | ]
1264 |
1265 | [[package]]
1266 | name = "serde"
1267 | version = "1.0.219"
1268 | source = "registry+https://github.com/rust-lang/crates.io-index"
1269 | checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1270 | dependencies = [
1271 | "serde_derive",
1272 | ]
1273 |
1274 | [[package]]
1275 | name = "serde_derive"
1276 | version = "1.0.219"
1277 | source = "registry+https://github.com/rust-lang/crates.io-index"
1278 | checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1279 | dependencies = [
1280 | "proc-macro2",
1281 | "quote",
1282 | "syn",
1283 | ]
1284 |
1285 | [[package]]
1286 | name = "serde_json"
1287 | version = "1.0.140"
1288 | source = "registry+https://github.com/rust-lang/crates.io-index"
1289 | checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
1290 | dependencies = [
1291 | "itoa",
1292 | "memchr",
1293 | "ryu",
1294 | "serde",
1295 | ]
1296 |
1297 | [[package]]
1298 | name = "serde_urlencoded"
1299 | version = "0.7.1"
1300 | source = "registry+https://github.com/rust-lang/crates.io-index"
1301 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1302 | dependencies = [
1303 | "form_urlencoded",
1304 | "itoa",
1305 | "ryu",
1306 | "serde",
1307 | ]
1308 |
1309 | [[package]]
1310 | name = "servo_arc"
1311 | version = "0.4.0"
1312 | source = "registry+https://github.com/rust-lang/crates.io-index"
1313 | checksum = "ae65c4249478a2647db249fb43e23cec56a2c8974a427e7bd8cb5a1d0964921a"
1314 | dependencies = [
1315 | "stable_deref_trait",
1316 | ]
1317 |
1318 | [[package]]
1319 | name = "shlex"
1320 | version = "1.3.0"
1321 | source = "registry+https://github.com/rust-lang/crates.io-index"
1322 | checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1323 |
1324 | [[package]]
1325 | name = "signal-hook"
1326 | version = "0.3.18"
1327 | source = "registry+https://github.com/rust-lang/crates.io-index"
1328 | checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
1329 | dependencies = [
1330 | "libc",
1331 | "signal-hook-registry",
1332 | ]
1333 |
1334 | [[package]]
1335 | name = "signal-hook-mio"
1336 | version = "0.2.4"
1337 | source = "registry+https://github.com/rust-lang/crates.io-index"
1338 | checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
1339 | dependencies = [
1340 | "libc",
1341 | "mio 0.8.11",
1342 | "signal-hook",
1343 | ]
1344 |
1345 | [[package]]
1346 | name = "signal-hook-registry"
1347 | version = "1.4.5"
1348 | source = "registry+https://github.com/rust-lang/crates.io-index"
1349 | checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
1350 | dependencies = [
1351 | "libc",
1352 | ]
1353 |
1354 | [[package]]
1355 | name = "siphasher"
1356 | version = "1.0.1"
1357 | source = "registry+https://github.com/rust-lang/crates.io-index"
1358 | checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1359 |
1360 | [[package]]
1361 | name = "slab"
1362 | version = "0.4.9"
1363 | source = "registry+https://github.com/rust-lang/crates.io-index"
1364 | checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1365 | dependencies = [
1366 | "autocfg",
1367 | ]
1368 |
1369 | [[package]]
1370 | name = "smallvec"
1371 | version = "1.15.0"
1372 | source = "registry+https://github.com/rust-lang/crates.io-index"
1373 | checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9"
1374 |
1375 | [[package]]
1376 | name = "socket2"
1377 | version = "0.5.9"
1378 | source = "registry+https://github.com/rust-lang/crates.io-index"
1379 | checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef"
1380 | dependencies = [
1381 | "libc",
1382 | "windows-sys 0.52.0",
1383 | ]
1384 |
1385 | [[package]]
1386 | name = "stable_deref_trait"
1387 | version = "1.2.0"
1388 | source = "registry+https://github.com/rust-lang/crates.io-index"
1389 | checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1390 |
1391 | [[package]]
1392 | name = "string_cache"
1393 | version = "0.8.9"
1394 | source = "registry+https://github.com/rust-lang/crates.io-index"
1395 | checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
1396 | dependencies = [
1397 | "new_debug_unreachable",
1398 | "parking_lot",
1399 | "phf_shared",
1400 | "precomputed-hash",
1401 | "serde",
1402 | ]
1403 |
1404 | [[package]]
1405 | name = "string_cache_codegen"
1406 | version = "0.5.4"
1407 | source = "registry+https://github.com/rust-lang/crates.io-index"
1408 | checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
1409 | dependencies = [
1410 | "phf_generator",
1411 | "phf_shared",
1412 | "proc-macro2",
1413 | "quote",
1414 | ]
1415 |
1416 | [[package]]
1417 | name = "subtle"
1418 | version = "2.6.1"
1419 | source = "registry+https://github.com/rust-lang/crates.io-index"
1420 | checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1421 |
1422 | [[package]]
1423 | name = "syn"
1424 | version = "2.0.101"
1425 | source = "registry+https://github.com/rust-lang/crates.io-index"
1426 | checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
1427 | dependencies = [
1428 | "proc-macro2",
1429 | "quote",
1430 | "unicode-ident",
1431 | ]
1432 |
1433 | [[package]]
1434 | name = "sync_wrapper"
1435 | version = "1.0.2"
1436 | source = "registry+https://github.com/rust-lang/crates.io-index"
1437 | checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1438 | dependencies = [
1439 | "futures-core",
1440 | ]
1441 |
1442 | [[package]]
1443 | name = "synstructure"
1444 | version = "0.13.2"
1445 | source = "registry+https://github.com/rust-lang/crates.io-index"
1446 | checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1447 | dependencies = [
1448 | "proc-macro2",
1449 | "quote",
1450 | "syn",
1451 | ]
1452 |
1453 | [[package]]
1454 | name = "system-configuration"
1455 | version = "0.6.1"
1456 | source = "registry+https://github.com/rust-lang/crates.io-index"
1457 | checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
1458 | dependencies = [
1459 | "bitflags 2.9.1",
1460 | "core-foundation",
1461 | "system-configuration-sys",
1462 | ]
1463 |
1464 | [[package]]
1465 | name = "system-configuration-sys"
1466 | version = "0.6.0"
1467 | source = "registry+https://github.com/rust-lang/crates.io-index"
1468 | checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
1469 | dependencies = [
1470 | "core-foundation-sys",
1471 | "libc",
1472 | ]
1473 |
1474 | [[package]]
1475 | name = "tempfile"
1476 | version = "3.20.0"
1477 | source = "registry+https://github.com/rust-lang/crates.io-index"
1478 | checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
1479 | dependencies = [
1480 | "fastrand",
1481 | "getrandom 0.3.3",
1482 | "once_cell",
1483 | "rustix",
1484 | "windows-sys 0.59.0",
1485 | ]
1486 |
1487 | [[package]]
1488 | name = "tendril"
1489 | version = "0.4.3"
1490 | source = "registry+https://github.com/rust-lang/crates.io-index"
1491 | checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
1492 | dependencies = [
1493 | "futf",
1494 | "mac",
1495 | "utf-8",
1496 | ]
1497 |
1498 | [[package]]
1499 | name = "thread_local"
1500 | version = "1.1.8"
1501 | source = "registry+https://github.com/rust-lang/crates.io-index"
1502 | checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
1503 | dependencies = [
1504 | "cfg-if",
1505 | "once_cell",
1506 | ]
1507 |
1508 | [[package]]
1509 | name = "tinystr"
1510 | version = "0.8.1"
1511 | source = "registry+https://github.com/rust-lang/crates.io-index"
1512 | checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
1513 | dependencies = [
1514 | "displaydoc",
1515 | "zerovec",
1516 | ]
1517 |
1518 | [[package]]
1519 | name = "tokio"
1520 | version = "1.45.0"
1521 | source = "registry+https://github.com/rust-lang/crates.io-index"
1522 | checksum = "2513ca694ef9ede0fb23fe71a4ee4107cb102b9dc1930f6d0fd77aae068ae165"
1523 | dependencies = [
1524 | "backtrace",
1525 | "bytes",
1526 | "libc",
1527 | "mio 1.0.3",
1528 | "parking_lot",
1529 | "pin-project-lite",
1530 | "signal-hook-registry",
1531 | "socket2",
1532 | "tokio-macros",
1533 | "windows-sys 0.52.0",
1534 | ]
1535 |
1536 | [[package]]
1537 | name = "tokio-macros"
1538 | version = "2.5.0"
1539 | source = "registry+https://github.com/rust-lang/crates.io-index"
1540 | checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
1541 | dependencies = [
1542 | "proc-macro2",
1543 | "quote",
1544 | "syn",
1545 | ]
1546 |
1547 | [[package]]
1548 | name = "tokio-native-tls"
1549 | version = "0.3.1"
1550 | source = "registry+https://github.com/rust-lang/crates.io-index"
1551 | checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1552 | dependencies = [
1553 | "native-tls",
1554 | "tokio",
1555 | ]
1556 |
1557 | [[package]]
1558 | name = "tokio-rustls"
1559 | version = "0.26.2"
1560 | source = "registry+https://github.com/rust-lang/crates.io-index"
1561 | checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b"
1562 | dependencies = [
1563 | "rustls",
1564 | "tokio",
1565 | ]
1566 |
1567 | [[package]]
1568 | name = "tokio-util"
1569 | version = "0.7.15"
1570 | source = "registry+https://github.com/rust-lang/crates.io-index"
1571 | checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
1572 | dependencies = [
1573 | "bytes",
1574 | "futures-core",
1575 | "futures-sink",
1576 | "pin-project-lite",
1577 | "tokio",
1578 | ]
1579 |
1580 | [[package]]
1581 | name = "tower"
1582 | version = "0.5.2"
1583 | source = "registry+https://github.com/rust-lang/crates.io-index"
1584 | checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
1585 | dependencies = [
1586 | "futures-core",
1587 | "futures-util",
1588 | "pin-project-lite",
1589 | "sync_wrapper",
1590 | "tokio",
1591 | "tower-layer",
1592 | "tower-service",
1593 | ]
1594 |
1595 | [[package]]
1596 | name = "tower-layer"
1597 | version = "0.3.3"
1598 | source = "registry+https://github.com/rust-lang/crates.io-index"
1599 | checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1600 |
1601 | [[package]]
1602 | name = "tower-service"
1603 | version = "0.3.3"
1604 | source = "registry+https://github.com/rust-lang/crates.io-index"
1605 | checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1606 |
1607 | [[package]]
1608 | name = "tracing"
1609 | version = "0.1.41"
1610 | source = "registry+https://github.com/rust-lang/crates.io-index"
1611 | checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
1612 | dependencies = [
1613 | "pin-project-lite",
1614 | "tracing-core",
1615 | ]
1616 |
1617 | [[package]]
1618 | name = "tracing-core"
1619 | version = "0.1.33"
1620 | source = "registry+https://github.com/rust-lang/crates.io-index"
1621 | checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
1622 | dependencies = [
1623 | "once_cell",
1624 | ]
1625 |
1626 | [[package]]
1627 | name = "try-lock"
1628 | version = "0.2.5"
1629 | source = "registry+https://github.com/rust-lang/crates.io-index"
1630 | checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1631 |
1632 | [[package]]
1633 | name = "unicode-ident"
1634 | version = "1.0.18"
1635 | source = "registry+https://github.com/rust-lang/crates.io-index"
1636 | checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1637 |
1638 | [[package]]
1639 | name = "unicode-segmentation"
1640 | version = "1.12.0"
1641 | source = "registry+https://github.com/rust-lang/crates.io-index"
1642 | checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1643 |
1644 | [[package]]
1645 | name = "unicode-width"
1646 | version = "0.1.14"
1647 | source = "registry+https://github.com/rust-lang/crates.io-index"
1648 | checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1649 |
1650 | [[package]]
1651 | name = "untrusted"
1652 | version = "0.9.0"
1653 | source = "registry+https://github.com/rust-lang/crates.io-index"
1654 | checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1655 |
1656 | [[package]]
1657 | name = "url"
1658 | version = "2.5.4"
1659 | source = "registry+https://github.com/rust-lang/crates.io-index"
1660 | checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
1661 | dependencies = [
1662 | "form_urlencoded",
1663 | "idna",
1664 | "percent-encoding",
1665 | ]
1666 |
1667 | [[package]]
1668 | name = "utf-8"
1669 | version = "0.7.6"
1670 | source = "registry+https://github.com/rust-lang/crates.io-index"
1671 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1672 |
1673 | [[package]]
1674 | name = "utf8_iter"
1675 | version = "1.0.4"
1676 | source = "registry+https://github.com/rust-lang/crates.io-index"
1677 | checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1678 |
1679 | [[package]]
1680 | name = "vcpkg"
1681 | version = "0.2.15"
1682 | source = "registry+https://github.com/rust-lang/crates.io-index"
1683 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1684 |
1685 | [[package]]
1686 | name = "want"
1687 | version = "0.3.1"
1688 | source = "registry+https://github.com/rust-lang/crates.io-index"
1689 | checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1690 | dependencies = [
1691 | "try-lock",
1692 | ]
1693 |
1694 | [[package]]
1695 | name = "wasi"
1696 | version = "0.11.0+wasi-snapshot-preview1"
1697 | source = "registry+https://github.com/rust-lang/crates.io-index"
1698 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1699 |
1700 | [[package]]
1701 | name = "wasi"
1702 | version = "0.14.2+wasi-0.2.4"
1703 | source = "registry+https://github.com/rust-lang/crates.io-index"
1704 | checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1705 | dependencies = [
1706 | "wit-bindgen-rt",
1707 | ]
1708 |
1709 | [[package]]
1710 | name = "wasm-bindgen"
1711 | version = "0.2.100"
1712 | source = "registry+https://github.com/rust-lang/crates.io-index"
1713 | checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
1714 | dependencies = [
1715 | "cfg-if",
1716 | "once_cell",
1717 | "rustversion",
1718 | "wasm-bindgen-macro",
1719 | ]
1720 |
1721 | [[package]]
1722 | name = "wasm-bindgen-backend"
1723 | version = "0.2.100"
1724 | source = "registry+https://github.com/rust-lang/crates.io-index"
1725 | checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
1726 | dependencies = [
1727 | "bumpalo",
1728 | "log",
1729 | "proc-macro2",
1730 | "quote",
1731 | "syn",
1732 | "wasm-bindgen-shared",
1733 | ]
1734 |
1735 | [[package]]
1736 | name = "wasm-bindgen-futures"
1737 | version = "0.4.50"
1738 | source = "registry+https://github.com/rust-lang/crates.io-index"
1739 | checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
1740 | dependencies = [
1741 | "cfg-if",
1742 | "js-sys",
1743 | "once_cell",
1744 | "wasm-bindgen",
1745 | "web-sys",
1746 | ]
1747 |
1748 | [[package]]
1749 | name = "wasm-bindgen-macro"
1750 | version = "0.2.100"
1751 | source = "registry+https://github.com/rust-lang/crates.io-index"
1752 | checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
1753 | dependencies = [
1754 | "quote",
1755 | "wasm-bindgen-macro-support",
1756 | ]
1757 |
1758 | [[package]]
1759 | name = "wasm-bindgen-macro-support"
1760 | version = "0.2.100"
1761 | source = "registry+https://github.com/rust-lang/crates.io-index"
1762 | checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
1763 | dependencies = [
1764 | "proc-macro2",
1765 | "quote",
1766 | "syn",
1767 | "wasm-bindgen-backend",
1768 | "wasm-bindgen-shared",
1769 | ]
1770 |
1771 | [[package]]
1772 | name = "wasm-bindgen-shared"
1773 | version = "0.2.100"
1774 | source = "registry+https://github.com/rust-lang/crates.io-index"
1775 | checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
1776 | dependencies = [
1777 | "unicode-ident",
1778 | ]
1779 |
1780 | [[package]]
1781 | name = "web-sys"
1782 | version = "0.3.77"
1783 | source = "registry+https://github.com/rust-lang/crates.io-index"
1784 | checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
1785 | dependencies = [
1786 | "js-sys",
1787 | "wasm-bindgen",
1788 | ]
1789 |
1790 | [[package]]
1791 | name = "winapi"
1792 | version = "0.3.9"
1793 | source = "registry+https://github.com/rust-lang/crates.io-index"
1794 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1795 | dependencies = [
1796 | "winapi-i686-pc-windows-gnu",
1797 | "winapi-x86_64-pc-windows-gnu",
1798 | ]
1799 |
1800 | [[package]]
1801 | name = "winapi-i686-pc-windows-gnu"
1802 | version = "0.4.0"
1803 | source = "registry+https://github.com/rust-lang/crates.io-index"
1804 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1805 |
1806 | [[package]]
1807 | name = "winapi-x86_64-pc-windows-gnu"
1808 | version = "0.4.0"
1809 | source = "registry+https://github.com/rust-lang/crates.io-index"
1810 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1811 |
1812 | [[package]]
1813 | name = "windows-link"
1814 | version = "0.1.1"
1815 | source = "registry+https://github.com/rust-lang/crates.io-index"
1816 | checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38"
1817 |
1818 | [[package]]
1819 | name = "windows-registry"
1820 | version = "0.4.0"
1821 | source = "registry+https://github.com/rust-lang/crates.io-index"
1822 | checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3"
1823 | dependencies = [
1824 | "windows-result",
1825 | "windows-strings",
1826 | "windows-targets 0.53.0",
1827 | ]
1828 |
1829 | [[package]]
1830 | name = "windows-result"
1831 | version = "0.3.2"
1832 | source = "registry+https://github.com/rust-lang/crates.io-index"
1833 | checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252"
1834 | dependencies = [
1835 | "windows-link",
1836 | ]
1837 |
1838 | [[package]]
1839 | name = "windows-strings"
1840 | version = "0.3.1"
1841 | source = "registry+https://github.com/rust-lang/crates.io-index"
1842 | checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
1843 | dependencies = [
1844 | "windows-link",
1845 | ]
1846 |
1847 | [[package]]
1848 | name = "windows-sys"
1849 | version = "0.48.0"
1850 | source = "registry+https://github.com/rust-lang/crates.io-index"
1851 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1852 | dependencies = [
1853 | "windows-targets 0.48.5",
1854 | ]
1855 |
1856 | [[package]]
1857 | name = "windows-sys"
1858 | version = "0.52.0"
1859 | source = "registry+https://github.com/rust-lang/crates.io-index"
1860 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1861 | dependencies = [
1862 | "windows-targets 0.52.6",
1863 | ]
1864 |
1865 | [[package]]
1866 | name = "windows-sys"
1867 | version = "0.59.0"
1868 | source = "registry+https://github.com/rust-lang/crates.io-index"
1869 | checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1870 | dependencies = [
1871 | "windows-targets 0.52.6",
1872 | ]
1873 |
1874 | [[package]]
1875 | name = "windows-targets"
1876 | version = "0.48.5"
1877 | source = "registry+https://github.com/rust-lang/crates.io-index"
1878 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
1879 | dependencies = [
1880 | "windows_aarch64_gnullvm 0.48.5",
1881 | "windows_aarch64_msvc 0.48.5",
1882 | "windows_i686_gnu 0.48.5",
1883 | "windows_i686_msvc 0.48.5",
1884 | "windows_x86_64_gnu 0.48.5",
1885 | "windows_x86_64_gnullvm 0.48.5",
1886 | "windows_x86_64_msvc 0.48.5",
1887 | ]
1888 |
1889 | [[package]]
1890 | name = "windows-targets"
1891 | version = "0.52.6"
1892 | source = "registry+https://github.com/rust-lang/crates.io-index"
1893 | checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1894 | dependencies = [
1895 | "windows_aarch64_gnullvm 0.52.6",
1896 | "windows_aarch64_msvc 0.52.6",
1897 | "windows_i686_gnu 0.52.6",
1898 | "windows_i686_gnullvm 0.52.6",
1899 | "windows_i686_msvc 0.52.6",
1900 | "windows_x86_64_gnu 0.52.6",
1901 | "windows_x86_64_gnullvm 0.52.6",
1902 | "windows_x86_64_msvc 0.52.6",
1903 | ]
1904 |
1905 | [[package]]
1906 | name = "windows-targets"
1907 | version = "0.53.0"
1908 | source = "registry+https://github.com/rust-lang/crates.io-index"
1909 | checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b"
1910 | dependencies = [
1911 | "windows_aarch64_gnullvm 0.53.0",
1912 | "windows_aarch64_msvc 0.53.0",
1913 | "windows_i686_gnu 0.53.0",
1914 | "windows_i686_gnullvm 0.53.0",
1915 | "windows_i686_msvc 0.53.0",
1916 | "windows_x86_64_gnu 0.53.0",
1917 | "windows_x86_64_gnullvm 0.53.0",
1918 | "windows_x86_64_msvc 0.53.0",
1919 | ]
1920 |
1921 | [[package]]
1922 | name = "windows_aarch64_gnullvm"
1923 | version = "0.48.5"
1924 | source = "registry+https://github.com/rust-lang/crates.io-index"
1925 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
1926 |
1927 | [[package]]
1928 | name = "windows_aarch64_gnullvm"
1929 | version = "0.52.6"
1930 | source = "registry+https://github.com/rust-lang/crates.io-index"
1931 | checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1932 |
1933 | [[package]]
1934 | name = "windows_aarch64_gnullvm"
1935 | version = "0.53.0"
1936 | source = "registry+https://github.com/rust-lang/crates.io-index"
1937 | checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
1938 |
1939 | [[package]]
1940 | name = "windows_aarch64_msvc"
1941 | version = "0.48.5"
1942 | source = "registry+https://github.com/rust-lang/crates.io-index"
1943 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
1944 |
1945 | [[package]]
1946 | name = "windows_aarch64_msvc"
1947 | version = "0.52.6"
1948 | source = "registry+https://github.com/rust-lang/crates.io-index"
1949 | checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1950 |
1951 | [[package]]
1952 | name = "windows_aarch64_msvc"
1953 | version = "0.53.0"
1954 | source = "registry+https://github.com/rust-lang/crates.io-index"
1955 | checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
1956 |
1957 | [[package]]
1958 | name = "windows_i686_gnu"
1959 | version = "0.48.5"
1960 | source = "registry+https://github.com/rust-lang/crates.io-index"
1961 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
1962 |
1963 | [[package]]
1964 | name = "windows_i686_gnu"
1965 | version = "0.52.6"
1966 | source = "registry+https://github.com/rust-lang/crates.io-index"
1967 | checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1968 |
1969 | [[package]]
1970 | name = "windows_i686_gnu"
1971 | version = "0.53.0"
1972 | source = "registry+https://github.com/rust-lang/crates.io-index"
1973 | checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
1974 |
1975 | [[package]]
1976 | name = "windows_i686_gnullvm"
1977 | version = "0.52.6"
1978 | source = "registry+https://github.com/rust-lang/crates.io-index"
1979 | checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1980 |
1981 | [[package]]
1982 | name = "windows_i686_gnullvm"
1983 | version = "0.53.0"
1984 | source = "registry+https://github.com/rust-lang/crates.io-index"
1985 | checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
1986 |
1987 | [[package]]
1988 | name = "windows_i686_msvc"
1989 | version = "0.48.5"
1990 | source = "registry+https://github.com/rust-lang/crates.io-index"
1991 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1992 |
1993 | [[package]]
1994 | name = "windows_i686_msvc"
1995 | version = "0.52.6"
1996 | source = "registry+https://github.com/rust-lang/crates.io-index"
1997 | checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1998 |
1999 | [[package]]
2000 | name = "windows_i686_msvc"
2001 | version = "0.53.0"
2002 | source = "registry+https://github.com/rust-lang/crates.io-index"
2003 | checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
2004 |
2005 | [[package]]
2006 | name = "windows_x86_64_gnu"
2007 | version = "0.48.5"
2008 | source = "registry+https://github.com/rust-lang/crates.io-index"
2009 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2010 |
2011 | [[package]]
2012 | name = "windows_x86_64_gnu"
2013 | version = "0.52.6"
2014 | source = "registry+https://github.com/rust-lang/crates.io-index"
2015 | checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2016 |
2017 | [[package]]
2018 | name = "windows_x86_64_gnu"
2019 | version = "0.53.0"
2020 | source = "registry+https://github.com/rust-lang/crates.io-index"
2021 | checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
2022 |
2023 | [[package]]
2024 | name = "windows_x86_64_gnullvm"
2025 | version = "0.48.5"
2026 | source = "registry+https://github.com/rust-lang/crates.io-index"
2027 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2028 |
2029 | [[package]]
2030 | name = "windows_x86_64_gnullvm"
2031 | version = "0.52.6"
2032 | source = "registry+https://github.com/rust-lang/crates.io-index"
2033 | checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2034 |
2035 | [[package]]
2036 | name = "windows_x86_64_gnullvm"
2037 | version = "0.53.0"
2038 | source = "registry+https://github.com/rust-lang/crates.io-index"
2039 | checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
2040 |
2041 | [[package]]
2042 | name = "windows_x86_64_msvc"
2043 | version = "0.48.5"
2044 | source = "registry+https://github.com/rust-lang/crates.io-index"
2045 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2046 |
2047 | [[package]]
2048 | name = "windows_x86_64_msvc"
2049 | version = "0.52.6"
2050 | source = "registry+https://github.com/rust-lang/crates.io-index"
2051 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2052 |
2053 | [[package]]
2054 | name = "windows_x86_64_msvc"
2055 | version = "0.53.0"
2056 | source = "registry+https://github.com/rust-lang/crates.io-index"
2057 | checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
2058 |
2059 | [[package]]
2060 | name = "wit-bindgen-rt"
2061 | version = "0.39.0"
2062 | source = "registry+https://github.com/rust-lang/crates.io-index"
2063 | checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
2064 | dependencies = [
2065 | "bitflags 2.9.1",
2066 | ]
2067 |
2068 | [[package]]
2069 | name = "writeable"
2070 | version = "0.6.1"
2071 | source = "registry+https://github.com/rust-lang/crates.io-index"
2072 | checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
2073 |
2074 | [[package]]
2075 | name = "yoke"
2076 | version = "0.8.0"
2077 | source = "registry+https://github.com/rust-lang/crates.io-index"
2078 | checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
2079 | dependencies = [
2080 | "serde",
2081 | "stable_deref_trait",
2082 | "yoke-derive",
2083 | "zerofrom",
2084 | ]
2085 |
2086 | [[package]]
2087 | name = "yoke-derive"
2088 | version = "0.8.0"
2089 | source = "registry+https://github.com/rust-lang/crates.io-index"
2090 | checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
2091 | dependencies = [
2092 | "proc-macro2",
2093 | "quote",
2094 | "syn",
2095 | "synstructure",
2096 | ]
2097 |
2098 | [[package]]
2099 | name = "zerofrom"
2100 | version = "0.1.6"
2101 | source = "registry+https://github.com/rust-lang/crates.io-index"
2102 | checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2103 | dependencies = [
2104 | "zerofrom-derive",
2105 | ]
2106 |
2107 | [[package]]
2108 | name = "zerofrom-derive"
2109 | version = "0.1.6"
2110 | source = "registry+https://github.com/rust-lang/crates.io-index"
2111 | checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2112 | dependencies = [
2113 | "proc-macro2",
2114 | "quote",
2115 | "syn",
2116 | "synstructure",
2117 | ]
2118 |
2119 | [[package]]
2120 | name = "zeroize"
2121 | version = "1.8.1"
2122 | source = "registry+https://github.com/rust-lang/crates.io-index"
2123 | checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2124 |
2125 | [[package]]
2126 | name = "zerotrie"
2127 | version = "0.2.2"
2128 | source = "registry+https://github.com/rust-lang/crates.io-index"
2129 | checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
2130 | dependencies = [
2131 | "displaydoc",
2132 | "yoke",
2133 | "zerofrom",
2134 | ]
2135 |
2136 | [[package]]
2137 | name = "zerovec"
2138 | version = "0.11.2"
2139 | source = "registry+https://github.com/rust-lang/crates.io-index"
2140 | checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
2141 | dependencies = [
2142 | "yoke",
2143 | "zerofrom",
2144 | "zerovec-derive",
2145 | ]
2146 |
2147 | [[package]]
2148 | name = "zerovec-derive"
2149 | version = "0.11.1"
2150 | source = "registry+https://github.com/rust-lang/crates.io-index"
2151 | checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
2152 | dependencies = [
2153 | "proc-macro2",
2154 | "quote",
2155 | "syn",
2156 | ]
2157 |
--------------------------------------------------------------------------------