├── .gitignore ├── run.sh ├── README.md ├── .rustfmt.toml ├── Cargo.toml ├── .woodpecker.yml ├── src ├── main.rs └── lib.rs ├── LICENSE └── Cargo.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | cargo run --release -- "$1" "$2" 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Generate-dev-update 2 | 3 | Generates a lemmy, lemmy-ui, and jerboa dev update for a given range. 4 | 5 | ## Example 6 | 7 | `./run.sh "2025-07-01" "2025-08-01"` 8 | -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- 1 | tab_spaces = 2 2 | edition = "2021" 3 | imports_layout = "HorizontalVertical" 4 | imports_granularity = "Crate" 5 | group_imports = "One" 6 | wrap_comments = true 7 | comment_width = 100 8 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "generate-dev-update" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | [dependencies] 7 | anyhow = "1.0.98" 8 | chrono = "0.4.41" 9 | clap = { version = "4.5.42", features = ["derive"] } 10 | itertools = "0.14.0" 11 | octocrab = "0.44.1" 12 | reqwest = { version = "0.12.22", default-features = false, features = [ 13 | "rustls-tls", 14 | "json", 15 | ] } 16 | rustls = { version = "0.23.31", default-features = false } 17 | tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] } 18 | -------------------------------------------------------------------------------- /.woodpecker.yml: -------------------------------------------------------------------------------- 1 | variables: 2 | - &rust_image "rust:1.81.0" 3 | 4 | steps: 5 | cargo_fmt: 6 | image: rustdocker/rust:nightly 7 | commands: 8 | - /root/.cargo/bin/cargo fmt -- --check 9 | when: 10 | - event: pull_request 11 | 12 | toml_fmt: 13 | image: tamasfe/taplo:0.9.3 14 | commands: 15 | - taplo format --check 16 | when: 17 | - event: pull_request 18 | 19 | cargo_clippy: 20 | image: *rust_image 21 | environment: 22 | CARGO_HOME: .cargo 23 | commands: 24 | - rustup component add clippy 25 | - cargo clippy 26 | when: 27 | - event: pull_request 28 | 29 | cargo_test: 30 | image: *rust_image 31 | environment: 32 | CARGO_HOME: .cargo 33 | commands: 34 | - cargo test --all-features --no-fail-fast 35 | when: 36 | - event: pull_request 37 | 38 | # Not working currently because of rate limiting. 39 | # cargo_run: 40 | # image: *rust_image 41 | # environment: 42 | # CARGO_HOME: .cargo 43 | # commands: 44 | # - cargo run 45 | # when: 46 | # - event: pull_request 47 | -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- 1 | use anyhow::Result; 2 | use clap::{command, Parser}; 3 | use generate_dev_update::{list_prs, string_to_utc}; 4 | use itertools::Itertools; 5 | use tokio::try_join; 6 | 7 | #[derive(Parser)] 8 | #[command(version, about, long_about = None)] 9 | struct Cli { 10 | /// The start date for the pull request range. (IE 2024-10-01) 11 | start_date: String, 12 | /// The end date for the pull request range. (IE 2024-11-01) 13 | end_date: String, 14 | } 15 | 16 | #[tokio::main] 17 | async fn main() -> Result<()> { 18 | rustls::crypto::ring::default_provider() 19 | .install_default() 20 | .unwrap(); 21 | 22 | let cli = Cli::parse(); 23 | 24 | let start_date = string_to_utc(&cli.start_date)?; 25 | let end_date = string_to_utc(&cli.end_date)?; 26 | 27 | println!( 28 | "# Dev Update from {} to {}", 29 | start_date.date_naive(), 30 | end_date.date_naive() 31 | ); 32 | 33 | let (lemmy_prs, lemmy_ui_prs, jerboa_prs) = try_join!( 34 | list_prs("lemmy", &start_date, &end_date), 35 | list_prs("lemmy-ui", &start_date, &end_date), 36 | list_prs("jerboa", &start_date, &end_date) 37 | )?; 38 | 39 | let pull_requests = [lemmy_prs, lemmy_ui_prs, jerboa_prs].concat(); 40 | 41 | pull_requests 42 | .into_iter() 43 | .map(|pr| (pr.user.clone().unwrap().login, pr)) 44 | .sorted_by(|a, b| Ord::cmp(&b.0, &a.0)) 45 | // Group by author name 46 | .chunk_by(|(author, _)| author.clone()) 47 | .into_iter() 48 | .map(|chunk| (chunk.0, chunk.1.collect::>())) 49 | // Show authors with less PRs first 50 | .sorted_by(|a, b| Ord::cmp(&a.1.len(), &b.1.len())) 51 | // Print as markdown 52 | .for_each(|pr| { 53 | println!("\n## {}\n", pr.0); 54 | for (_, pr) in pr.1 { 55 | println!( 56 | "- [{}]({})", 57 | pr.title.clone().unwrap().trim(), 58 | pr.html_url.unwrap().as_str() 59 | ); 60 | } 61 | }); 62 | 63 | println!("\n"); 64 | 65 | Ok(()) 66 | } 67 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- 1 | use anyhow::Result; 2 | use chrono::{DateTime, NaiveDate, NaiveTime, Utc}; 3 | use octocrab::{ 4 | models::pulls::PullRequest, 5 | params::{pulls::Sort, Direction, State}, 6 | }; 7 | 8 | /// Get list of pull requests from given repo under LemmyNet 9 | pub async fn list_prs( 10 | repo: &str, 11 | start_date: &DateTime, 12 | end_date: &DateTime, 13 | ) -> Result> { 14 | let mut results: Vec = Vec::new(); 15 | 16 | let mut current_date = Utc::now(); 17 | let mut page = 1u32; 18 | 19 | // Keep fetching until before start date 20 | while current_date > *start_date { 21 | let mut fetch_results = octocrab::instance() 22 | .pulls("LemmyNet", repo) 23 | .list() 24 | .state(State::Closed) 25 | .base("main") 26 | .sort(Sort::Updated) 27 | .direction(Direction::Descending) 28 | .per_page(100) 29 | .page(page) 30 | .send() 31 | .await? 32 | .items; 33 | 34 | // Set the current date and increase the page. 35 | current_date = fetch_results 36 | .last() 37 | .map(|pr| pr.updated_at.unwrap_or_default()) 38 | .unwrap_or_default(); 39 | page += 1; 40 | 41 | results.append(&mut fetch_results); 42 | } 43 | 44 | let filtered_results: Vec = results 45 | .into_iter() 46 | // Filter results to the current range 47 | .filter(|pr| { 48 | pr.merged_at.unwrap_or_default() > *start_date && pr.merged_at.unwrap_or_default() < *end_date 49 | }) 50 | // Ignore PRs with label `internal` 51 | // TODO: apply this to refactoring changes and similar 52 | .filter(|pr| { 53 | pr.labels 54 | .clone() 55 | .unwrap() 56 | .iter() 57 | .all(|l| l.name != "internal") 58 | }) 59 | // Ignore dependency updates 60 | .filter(|pr| { 61 | pr.user 62 | .clone() 63 | .map(|u| u.login != "renovate[bot]") 64 | .unwrap_or(false) 65 | }) 66 | .collect(); 67 | 68 | Ok(filtered_results) 69 | } 70 | 71 | pub fn string_to_utc(date_str: &str) -> Result> { 72 | Ok( 73 | NaiveDate::parse_from_str(date_str, "%Y-%m-%d")? 74 | .and_time(NaiveTime::default()) 75 | .and_utc(), 76 | ) 77 | } 78 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 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 Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /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.1" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375" 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 = "android-tzdata" 22 | version = "0.1.1" 23 | source = "registry+https://github.com/rust-lang/crates.io-index" 24 | checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 25 | 26 | [[package]] 27 | name = "android_system_properties" 28 | version = "0.1.5" 29 | source = "registry+https://github.com/rust-lang/crates.io-index" 30 | checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 31 | dependencies = [ 32 | "libc", 33 | ] 34 | 35 | [[package]] 36 | name = "anstream" 37 | version = "0.6.19" 38 | source = "registry+https://github.com/rust-lang/crates.io-index" 39 | checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933" 40 | dependencies = [ 41 | "anstyle", 42 | "anstyle-parse", 43 | "anstyle-query", 44 | "anstyle-wincon", 45 | "colorchoice", 46 | "is_terminal_polyfill", 47 | "utf8parse", 48 | ] 49 | 50 | [[package]] 51 | name = "anstyle" 52 | version = "1.0.11" 53 | source = "registry+https://github.com/rust-lang/crates.io-index" 54 | checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd" 55 | 56 | [[package]] 57 | name = "anstyle-parse" 58 | version = "0.2.7" 59 | source = "registry+https://github.com/rust-lang/crates.io-index" 60 | checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2" 61 | dependencies = [ 62 | "utf8parse", 63 | ] 64 | 65 | [[package]] 66 | name = "anstyle-query" 67 | version = "1.1.3" 68 | source = "registry+https://github.com/rust-lang/crates.io-index" 69 | checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9" 70 | dependencies = [ 71 | "windows-sys 0.59.0", 72 | ] 73 | 74 | [[package]] 75 | name = "anstyle-wincon" 76 | version = "3.0.9" 77 | source = "registry+https://github.com/rust-lang/crates.io-index" 78 | checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882" 79 | dependencies = [ 80 | "anstyle", 81 | "once_cell_polyfill", 82 | "windows-sys 0.59.0", 83 | ] 84 | 85 | [[package]] 86 | name = "anyhow" 87 | version = "1.0.98" 88 | source = "registry+https://github.com/rust-lang/crates.io-index" 89 | checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" 90 | 91 | [[package]] 92 | name = "arc-swap" 93 | version = "1.7.1" 94 | source = "registry+https://github.com/rust-lang/crates.io-index" 95 | checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 96 | 97 | [[package]] 98 | name = "async-trait" 99 | version = "0.1.83" 100 | source = "registry+https://github.com/rust-lang/crates.io-index" 101 | checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" 102 | dependencies = [ 103 | "proc-macro2", 104 | "quote", 105 | "syn", 106 | ] 107 | 108 | [[package]] 109 | name = "autocfg" 110 | version = "1.3.0" 111 | source = "registry+https://github.com/rust-lang/crates.io-index" 112 | checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 113 | 114 | [[package]] 115 | name = "backtrace" 116 | version = "0.3.74" 117 | source = "registry+https://github.com/rust-lang/crates.io-index" 118 | checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" 119 | dependencies = [ 120 | "addr2line", 121 | "cfg-if", 122 | "libc", 123 | "miniz_oxide", 124 | "object", 125 | "rustc-demangle", 126 | "windows-targets", 127 | ] 128 | 129 | [[package]] 130 | name = "base64" 131 | version = "0.21.7" 132 | source = "registry+https://github.com/rust-lang/crates.io-index" 133 | checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 134 | 135 | [[package]] 136 | name = "base64" 137 | version = "0.22.1" 138 | source = "registry+https://github.com/rust-lang/crates.io-index" 139 | checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 140 | 141 | [[package]] 142 | name = "bitflags" 143 | version = "2.6.0" 144 | source = "registry+https://github.com/rust-lang/crates.io-index" 145 | checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" 146 | 147 | [[package]] 148 | name = "bumpalo" 149 | version = "3.16.0" 150 | source = "registry+https://github.com/rust-lang/crates.io-index" 151 | checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 152 | 153 | [[package]] 154 | name = "byteorder" 155 | version = "1.5.0" 156 | source = "registry+https://github.com/rust-lang/crates.io-index" 157 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 158 | 159 | [[package]] 160 | name = "bytes" 161 | version = "1.7.2" 162 | source = "registry+https://github.com/rust-lang/crates.io-index" 163 | checksum = "428d9aa8fbc0670b7b8d6030a7fadd0f86151cae55e4dbbece15f3780a3dfaf3" 164 | 165 | [[package]] 166 | name = "cc" 167 | version = "1.1.21" 168 | source = "registry+https://github.com/rust-lang/crates.io-index" 169 | checksum = "07b1695e2c7e8fc85310cde85aeaab7e3097f593c91d209d3f9df76c928100f0" 170 | dependencies = [ 171 | "shlex", 172 | ] 173 | 174 | [[package]] 175 | name = "cfg-if" 176 | version = "1.0.0" 177 | source = "registry+https://github.com/rust-lang/crates.io-index" 178 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 179 | 180 | [[package]] 181 | name = "chrono" 182 | version = "0.4.41" 183 | source = "registry+https://github.com/rust-lang/crates.io-index" 184 | checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d" 185 | dependencies = [ 186 | "android-tzdata", 187 | "iana-time-zone", 188 | "js-sys", 189 | "num-traits", 190 | "serde", 191 | "wasm-bindgen", 192 | "windows-link", 193 | ] 194 | 195 | [[package]] 196 | name = "clap" 197 | version = "4.5.42" 198 | source = "registry+https://github.com/rust-lang/crates.io-index" 199 | checksum = "ed87a9d530bb41a67537289bafcac159cb3ee28460e0a4571123d2a778a6a882" 200 | dependencies = [ 201 | "clap_builder", 202 | "clap_derive", 203 | ] 204 | 205 | [[package]] 206 | name = "clap_builder" 207 | version = "4.5.42" 208 | source = "registry+https://github.com/rust-lang/crates.io-index" 209 | checksum = "64f4f3f3c77c94aff3c7e9aac9a2ca1974a5adf392a8bb751e827d6d127ab966" 210 | dependencies = [ 211 | "anstream", 212 | "anstyle", 213 | "clap_lex", 214 | "strsim", 215 | ] 216 | 217 | [[package]] 218 | name = "clap_derive" 219 | version = "4.5.41" 220 | source = "registry+https://github.com/rust-lang/crates.io-index" 221 | checksum = "ef4f52386a59ca4c860f7393bcf8abd8dfd91ecccc0f774635ff68e92eeef491" 222 | dependencies = [ 223 | "heck", 224 | "proc-macro2", 225 | "quote", 226 | "syn", 227 | ] 228 | 229 | [[package]] 230 | name = "clap_lex" 231 | version = "0.7.5" 232 | source = "registry+https://github.com/rust-lang/crates.io-index" 233 | checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675" 234 | 235 | [[package]] 236 | name = "colorchoice" 237 | version = "1.0.4" 238 | source = "registry+https://github.com/rust-lang/crates.io-index" 239 | checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" 240 | 241 | [[package]] 242 | name = "core-foundation" 243 | version = "0.9.4" 244 | source = "registry+https://github.com/rust-lang/crates.io-index" 245 | checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 246 | dependencies = [ 247 | "core-foundation-sys", 248 | "libc", 249 | ] 250 | 251 | [[package]] 252 | name = "core-foundation-sys" 253 | version = "0.8.7" 254 | source = "registry+https://github.com/rust-lang/crates.io-index" 255 | checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" 256 | 257 | [[package]] 258 | name = "deranged" 259 | version = "0.3.11" 260 | source = "registry+https://github.com/rust-lang/crates.io-index" 261 | checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" 262 | dependencies = [ 263 | "powerfmt", 264 | ] 265 | 266 | [[package]] 267 | name = "either" 268 | version = "1.13.0" 269 | source = "registry+https://github.com/rust-lang/crates.io-index" 270 | checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" 271 | 272 | [[package]] 273 | name = "fnv" 274 | version = "1.0.7" 275 | source = "registry+https://github.com/rust-lang/crates.io-index" 276 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 277 | 278 | [[package]] 279 | name = "form_urlencoded" 280 | version = "1.2.1" 281 | source = "registry+https://github.com/rust-lang/crates.io-index" 282 | checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 283 | dependencies = [ 284 | "percent-encoding", 285 | ] 286 | 287 | [[package]] 288 | name = "futures" 289 | version = "0.3.30" 290 | source = "registry+https://github.com/rust-lang/crates.io-index" 291 | checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 292 | dependencies = [ 293 | "futures-channel", 294 | "futures-core", 295 | "futures-executor", 296 | "futures-io", 297 | "futures-sink", 298 | "futures-task", 299 | "futures-util", 300 | ] 301 | 302 | [[package]] 303 | name = "futures-channel" 304 | version = "0.3.30" 305 | source = "registry+https://github.com/rust-lang/crates.io-index" 306 | checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 307 | dependencies = [ 308 | "futures-core", 309 | "futures-sink", 310 | ] 311 | 312 | [[package]] 313 | name = "futures-core" 314 | version = "0.3.30" 315 | source = "registry+https://github.com/rust-lang/crates.io-index" 316 | checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 317 | 318 | [[package]] 319 | name = "futures-executor" 320 | version = "0.3.30" 321 | source = "registry+https://github.com/rust-lang/crates.io-index" 322 | checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 323 | dependencies = [ 324 | "futures-core", 325 | "futures-task", 326 | "futures-util", 327 | ] 328 | 329 | [[package]] 330 | name = "futures-io" 331 | version = "0.3.30" 332 | source = "registry+https://github.com/rust-lang/crates.io-index" 333 | checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 334 | 335 | [[package]] 336 | name = "futures-macro" 337 | version = "0.3.30" 338 | source = "registry+https://github.com/rust-lang/crates.io-index" 339 | checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 340 | dependencies = [ 341 | "proc-macro2", 342 | "quote", 343 | "syn", 344 | ] 345 | 346 | [[package]] 347 | name = "futures-sink" 348 | version = "0.3.30" 349 | source = "registry+https://github.com/rust-lang/crates.io-index" 350 | checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 351 | 352 | [[package]] 353 | name = "futures-task" 354 | version = "0.3.30" 355 | source = "registry+https://github.com/rust-lang/crates.io-index" 356 | checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 357 | 358 | [[package]] 359 | name = "futures-util" 360 | version = "0.3.30" 361 | source = "registry+https://github.com/rust-lang/crates.io-index" 362 | checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 363 | dependencies = [ 364 | "futures-channel", 365 | "futures-core", 366 | "futures-io", 367 | "futures-macro", 368 | "futures-sink", 369 | "futures-task", 370 | "memchr", 371 | "pin-project-lite", 372 | "pin-utils", 373 | "slab", 374 | ] 375 | 376 | [[package]] 377 | name = "generate-dev-update" 378 | version = "0.1.0" 379 | dependencies = [ 380 | "anyhow", 381 | "chrono", 382 | "clap", 383 | "itertools", 384 | "octocrab", 385 | "reqwest", 386 | "rustls", 387 | "tokio", 388 | ] 389 | 390 | [[package]] 391 | name = "getrandom" 392 | version = "0.2.15" 393 | source = "registry+https://github.com/rust-lang/crates.io-index" 394 | checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 395 | dependencies = [ 396 | "cfg-if", 397 | "js-sys", 398 | "libc", 399 | "wasi", 400 | "wasm-bindgen", 401 | ] 402 | 403 | [[package]] 404 | name = "gimli" 405 | version = "0.31.0" 406 | source = "registry+https://github.com/rust-lang/crates.io-index" 407 | checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64" 408 | 409 | [[package]] 410 | name = "heck" 411 | version = "0.5.0" 412 | source = "registry+https://github.com/rust-lang/crates.io-index" 413 | checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 414 | 415 | [[package]] 416 | name = "hermit-abi" 417 | version = "0.3.9" 418 | source = "registry+https://github.com/rust-lang/crates.io-index" 419 | checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 420 | 421 | [[package]] 422 | name = "http" 423 | version = "1.1.0" 424 | source = "registry+https://github.com/rust-lang/crates.io-index" 425 | checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" 426 | dependencies = [ 427 | "bytes", 428 | "fnv", 429 | "itoa", 430 | ] 431 | 432 | [[package]] 433 | name = "http-body" 434 | version = "1.0.1" 435 | source = "registry+https://github.com/rust-lang/crates.io-index" 436 | checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" 437 | dependencies = [ 438 | "bytes", 439 | "http", 440 | ] 441 | 442 | [[package]] 443 | name = "http-body-util" 444 | version = "0.1.2" 445 | source = "registry+https://github.com/rust-lang/crates.io-index" 446 | checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" 447 | dependencies = [ 448 | "bytes", 449 | "futures-util", 450 | "http", 451 | "http-body", 452 | "pin-project-lite", 453 | ] 454 | 455 | [[package]] 456 | name = "httparse" 457 | version = "1.9.4" 458 | source = "registry+https://github.com/rust-lang/crates.io-index" 459 | checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" 460 | 461 | [[package]] 462 | name = "hyper" 463 | version = "1.6.0" 464 | source = "registry+https://github.com/rust-lang/crates.io-index" 465 | checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" 466 | dependencies = [ 467 | "bytes", 468 | "futures-channel", 469 | "futures-util", 470 | "http", 471 | "http-body", 472 | "httparse", 473 | "itoa", 474 | "pin-project-lite", 475 | "smallvec", 476 | "tokio", 477 | "want", 478 | ] 479 | 480 | [[package]] 481 | name = "hyper-rustls" 482 | version = "0.27.3" 483 | source = "registry+https://github.com/rust-lang/crates.io-index" 484 | checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333" 485 | dependencies = [ 486 | "futures-util", 487 | "http", 488 | "hyper", 489 | "hyper-util", 490 | "log", 491 | "rustls", 492 | "rustls-native-certs", 493 | "rustls-pki-types", 494 | "tokio", 495 | "tokio-rustls", 496 | "tower-service", 497 | "webpki-roots 0.26.6", 498 | ] 499 | 500 | [[package]] 501 | name = "hyper-timeout" 502 | version = "0.5.1" 503 | source = "registry+https://github.com/rust-lang/crates.io-index" 504 | checksum = "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793" 505 | dependencies = [ 506 | "hyper", 507 | "hyper-util", 508 | "pin-project-lite", 509 | "tokio", 510 | "tower-service", 511 | ] 512 | 513 | [[package]] 514 | name = "hyper-util" 515 | version = "0.1.16" 516 | source = "registry+https://github.com/rust-lang/crates.io-index" 517 | checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e" 518 | dependencies = [ 519 | "base64 0.22.1", 520 | "bytes", 521 | "futures-channel", 522 | "futures-core", 523 | "futures-util", 524 | "http", 525 | "http-body", 526 | "hyper", 527 | "ipnet", 528 | "libc", 529 | "percent-encoding", 530 | "pin-project-lite", 531 | "socket2 0.6.0", 532 | "tokio", 533 | "tower-service", 534 | "tracing", 535 | ] 536 | 537 | [[package]] 538 | name = "iana-time-zone" 539 | version = "0.1.61" 540 | source = "registry+https://github.com/rust-lang/crates.io-index" 541 | checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220" 542 | dependencies = [ 543 | "android_system_properties", 544 | "core-foundation-sys", 545 | "iana-time-zone-haiku", 546 | "js-sys", 547 | "wasm-bindgen", 548 | "windows-core", 549 | ] 550 | 551 | [[package]] 552 | name = "iana-time-zone-haiku" 553 | version = "0.1.2" 554 | source = "registry+https://github.com/rust-lang/crates.io-index" 555 | checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 556 | dependencies = [ 557 | "cc", 558 | ] 559 | 560 | [[package]] 561 | name = "idna" 562 | version = "0.5.0" 563 | source = "registry+https://github.com/rust-lang/crates.io-index" 564 | checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 565 | dependencies = [ 566 | "unicode-bidi", 567 | "unicode-normalization", 568 | ] 569 | 570 | [[package]] 571 | name = "io-uring" 572 | version = "0.7.9" 573 | source = "registry+https://github.com/rust-lang/crates.io-index" 574 | checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4" 575 | dependencies = [ 576 | "bitflags", 577 | "cfg-if", 578 | "libc", 579 | ] 580 | 581 | [[package]] 582 | name = "ipnet" 583 | version = "2.10.0" 584 | source = "registry+https://github.com/rust-lang/crates.io-index" 585 | checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4" 586 | 587 | [[package]] 588 | name = "iri-string" 589 | version = "0.7.5" 590 | source = "registry+https://github.com/rust-lang/crates.io-index" 591 | checksum = "9c25163201be6ded9e686703e85532f8f852ea1f92ba625cb3c51f7fe6d07a4a" 592 | dependencies = [ 593 | "memchr", 594 | "serde", 595 | ] 596 | 597 | [[package]] 598 | name = "is_terminal_polyfill" 599 | version = "1.70.1" 600 | source = "registry+https://github.com/rust-lang/crates.io-index" 601 | checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf" 602 | 603 | [[package]] 604 | name = "itertools" 605 | version = "0.14.0" 606 | source = "registry+https://github.com/rust-lang/crates.io-index" 607 | checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" 608 | dependencies = [ 609 | "either", 610 | ] 611 | 612 | [[package]] 613 | name = "itoa" 614 | version = "1.0.11" 615 | source = "registry+https://github.com/rust-lang/crates.io-index" 616 | checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 617 | 618 | [[package]] 619 | name = "js-sys" 620 | version = "0.3.77" 621 | source = "registry+https://github.com/rust-lang/crates.io-index" 622 | checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" 623 | dependencies = [ 624 | "once_cell", 625 | "wasm-bindgen", 626 | ] 627 | 628 | [[package]] 629 | name = "jsonwebtoken" 630 | version = "9.3.0" 631 | source = "registry+https://github.com/rust-lang/crates.io-index" 632 | checksum = "b9ae10193d25051e74945f1ea2d0b42e03cc3b890f7e4cc5faa44997d808193f" 633 | dependencies = [ 634 | "base64 0.21.7", 635 | "js-sys", 636 | "pem", 637 | "ring", 638 | "serde", 639 | "serde_json", 640 | "simple_asn1", 641 | ] 642 | 643 | [[package]] 644 | name = "libc" 645 | version = "0.2.174" 646 | source = "registry+https://github.com/rust-lang/crates.io-index" 647 | checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776" 648 | 649 | [[package]] 650 | name = "log" 651 | version = "0.4.22" 652 | source = "registry+https://github.com/rust-lang/crates.io-index" 653 | checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 654 | 655 | [[package]] 656 | name = "memchr" 657 | version = "2.7.4" 658 | source = "registry+https://github.com/rust-lang/crates.io-index" 659 | checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" 660 | 661 | [[package]] 662 | name = "miniz_oxide" 663 | version = "0.8.0" 664 | source = "registry+https://github.com/rust-lang/crates.io-index" 665 | checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" 666 | dependencies = [ 667 | "adler2", 668 | ] 669 | 670 | [[package]] 671 | name = "mio" 672 | version = "1.0.2" 673 | source = "registry+https://github.com/rust-lang/crates.io-index" 674 | checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" 675 | dependencies = [ 676 | "hermit-abi", 677 | "libc", 678 | "wasi", 679 | "windows-sys 0.52.0", 680 | ] 681 | 682 | [[package]] 683 | name = "num-bigint" 684 | version = "0.4.6" 685 | source = "registry+https://github.com/rust-lang/crates.io-index" 686 | checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" 687 | dependencies = [ 688 | "num-integer", 689 | "num-traits", 690 | ] 691 | 692 | [[package]] 693 | name = "num-conv" 694 | version = "0.1.0" 695 | source = "registry+https://github.com/rust-lang/crates.io-index" 696 | checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" 697 | 698 | [[package]] 699 | name = "num-integer" 700 | version = "0.1.46" 701 | source = "registry+https://github.com/rust-lang/crates.io-index" 702 | checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" 703 | dependencies = [ 704 | "num-traits", 705 | ] 706 | 707 | [[package]] 708 | name = "num-traits" 709 | version = "0.2.19" 710 | source = "registry+https://github.com/rust-lang/crates.io-index" 711 | checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" 712 | dependencies = [ 713 | "autocfg", 714 | ] 715 | 716 | [[package]] 717 | name = "object" 718 | version = "0.36.4" 719 | source = "registry+https://github.com/rust-lang/crates.io-index" 720 | checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a" 721 | dependencies = [ 722 | "memchr", 723 | ] 724 | 725 | [[package]] 726 | name = "octocrab" 727 | version = "0.44.1" 728 | source = "registry+https://github.com/rust-lang/crates.io-index" 729 | checksum = "86996964f8b721067b6ed238aa0ccee56ecad6ee5e714468aa567992d05d2b91" 730 | dependencies = [ 731 | "arc-swap", 732 | "async-trait", 733 | "base64 0.22.1", 734 | "bytes", 735 | "cfg-if", 736 | "chrono", 737 | "either", 738 | "futures", 739 | "futures-util", 740 | "http", 741 | "http-body", 742 | "http-body-util", 743 | "hyper", 744 | "hyper-rustls", 745 | "hyper-timeout", 746 | "hyper-util", 747 | "jsonwebtoken", 748 | "once_cell", 749 | "percent-encoding", 750 | "pin-project", 751 | "secrecy", 752 | "serde", 753 | "serde_json", 754 | "serde_path_to_error", 755 | "serde_urlencoded", 756 | "snafu", 757 | "tokio", 758 | "tower", 759 | "tower-http", 760 | "tracing", 761 | "url", 762 | "web-time", 763 | ] 764 | 765 | [[package]] 766 | name = "once_cell" 767 | version = "1.19.0" 768 | source = "registry+https://github.com/rust-lang/crates.io-index" 769 | checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 770 | 771 | [[package]] 772 | name = "once_cell_polyfill" 773 | version = "1.70.1" 774 | source = "registry+https://github.com/rust-lang/crates.io-index" 775 | checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad" 776 | 777 | [[package]] 778 | name = "openssl-probe" 779 | version = "0.1.5" 780 | source = "registry+https://github.com/rust-lang/crates.io-index" 781 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 782 | 783 | [[package]] 784 | name = "pem" 785 | version = "3.0.4" 786 | source = "registry+https://github.com/rust-lang/crates.io-index" 787 | checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae" 788 | dependencies = [ 789 | "base64 0.22.1", 790 | "serde", 791 | ] 792 | 793 | [[package]] 794 | name = "percent-encoding" 795 | version = "2.3.1" 796 | source = "registry+https://github.com/rust-lang/crates.io-index" 797 | checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 798 | 799 | [[package]] 800 | name = "pin-project" 801 | version = "1.1.5" 802 | source = "registry+https://github.com/rust-lang/crates.io-index" 803 | checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3" 804 | dependencies = [ 805 | "pin-project-internal", 806 | ] 807 | 808 | [[package]] 809 | name = "pin-project-internal" 810 | version = "1.1.5" 811 | source = "registry+https://github.com/rust-lang/crates.io-index" 812 | checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965" 813 | dependencies = [ 814 | "proc-macro2", 815 | "quote", 816 | "syn", 817 | ] 818 | 819 | [[package]] 820 | name = "pin-project-lite" 821 | version = "0.2.14" 822 | source = "registry+https://github.com/rust-lang/crates.io-index" 823 | checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 824 | 825 | [[package]] 826 | name = "pin-utils" 827 | version = "0.1.0" 828 | source = "registry+https://github.com/rust-lang/crates.io-index" 829 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 830 | 831 | [[package]] 832 | name = "powerfmt" 833 | version = "0.2.0" 834 | source = "registry+https://github.com/rust-lang/crates.io-index" 835 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 836 | 837 | [[package]] 838 | name = "ppv-lite86" 839 | version = "0.2.20" 840 | source = "registry+https://github.com/rust-lang/crates.io-index" 841 | checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" 842 | dependencies = [ 843 | "zerocopy", 844 | ] 845 | 846 | [[package]] 847 | name = "proc-macro2" 848 | version = "1.0.86" 849 | source = "registry+https://github.com/rust-lang/crates.io-index" 850 | checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77" 851 | dependencies = [ 852 | "unicode-ident", 853 | ] 854 | 855 | [[package]] 856 | name = "quinn" 857 | version = "0.11.5" 858 | source = "registry+https://github.com/rust-lang/crates.io-index" 859 | checksum = "8c7c5fdde3cdae7203427dc4f0a68fe0ed09833edc525a03456b153b79828684" 860 | dependencies = [ 861 | "bytes", 862 | "pin-project-lite", 863 | "quinn-proto", 864 | "quinn-udp", 865 | "rustc-hash", 866 | "rustls", 867 | "socket2 0.5.7", 868 | "thiserror", 869 | "tokio", 870 | "tracing", 871 | ] 872 | 873 | [[package]] 874 | name = "quinn-proto" 875 | version = "0.11.8" 876 | source = "registry+https://github.com/rust-lang/crates.io-index" 877 | checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6" 878 | dependencies = [ 879 | "bytes", 880 | "rand", 881 | "ring", 882 | "rustc-hash", 883 | "rustls", 884 | "slab", 885 | "thiserror", 886 | "tinyvec", 887 | "tracing", 888 | ] 889 | 890 | [[package]] 891 | name = "quinn-udp" 892 | version = "0.5.5" 893 | source = "registry+https://github.com/rust-lang/crates.io-index" 894 | checksum = "4fe68c2e9e1a1234e218683dbdf9f9dfcb094113c5ac2b938dfcb9bab4c4140b" 895 | dependencies = [ 896 | "libc", 897 | "once_cell", 898 | "socket2 0.5.7", 899 | "tracing", 900 | "windows-sys 0.59.0", 901 | ] 902 | 903 | [[package]] 904 | name = "quote" 905 | version = "1.0.37" 906 | source = "registry+https://github.com/rust-lang/crates.io-index" 907 | checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" 908 | dependencies = [ 909 | "proc-macro2", 910 | ] 911 | 912 | [[package]] 913 | name = "rand" 914 | version = "0.8.5" 915 | source = "registry+https://github.com/rust-lang/crates.io-index" 916 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 917 | dependencies = [ 918 | "libc", 919 | "rand_chacha", 920 | "rand_core", 921 | ] 922 | 923 | [[package]] 924 | name = "rand_chacha" 925 | version = "0.3.1" 926 | source = "registry+https://github.com/rust-lang/crates.io-index" 927 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 928 | dependencies = [ 929 | "ppv-lite86", 930 | "rand_core", 931 | ] 932 | 933 | [[package]] 934 | name = "rand_core" 935 | version = "0.6.4" 936 | source = "registry+https://github.com/rust-lang/crates.io-index" 937 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 938 | dependencies = [ 939 | "getrandom", 940 | ] 941 | 942 | [[package]] 943 | name = "reqwest" 944 | version = "0.12.22" 945 | source = "registry+https://github.com/rust-lang/crates.io-index" 946 | checksum = "cbc931937e6ca3a06e3b6c0aa7841849b160a90351d6ab467a8b9b9959767531" 947 | dependencies = [ 948 | "base64 0.22.1", 949 | "bytes", 950 | "futures-core", 951 | "http", 952 | "http-body", 953 | "http-body-util", 954 | "hyper", 955 | "hyper-rustls", 956 | "hyper-util", 957 | "js-sys", 958 | "log", 959 | "percent-encoding", 960 | "pin-project-lite", 961 | "quinn", 962 | "rustls", 963 | "rustls-pki-types", 964 | "serde", 965 | "serde_json", 966 | "serde_urlencoded", 967 | "sync_wrapper", 968 | "tokio", 969 | "tokio-rustls", 970 | "tower", 971 | "tower-http", 972 | "tower-service", 973 | "url", 974 | "wasm-bindgen", 975 | "wasm-bindgen-futures", 976 | "web-sys", 977 | "webpki-roots 1.0.2", 978 | ] 979 | 980 | [[package]] 981 | name = "ring" 982 | version = "0.17.8" 983 | source = "registry+https://github.com/rust-lang/crates.io-index" 984 | checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" 985 | dependencies = [ 986 | "cc", 987 | "cfg-if", 988 | "getrandom", 989 | "libc", 990 | "spin", 991 | "untrusted", 992 | "windows-sys 0.52.0", 993 | ] 994 | 995 | [[package]] 996 | name = "rustc-demangle" 997 | version = "0.1.24" 998 | source = "registry+https://github.com/rust-lang/crates.io-index" 999 | checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" 1000 | 1001 | [[package]] 1002 | name = "rustc-hash" 1003 | version = "2.0.0" 1004 | source = "registry+https://github.com/rust-lang/crates.io-index" 1005 | checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152" 1006 | 1007 | [[package]] 1008 | name = "rustls" 1009 | version = "0.23.31" 1010 | source = "registry+https://github.com/rust-lang/crates.io-index" 1011 | checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc" 1012 | dependencies = [ 1013 | "log", 1014 | "once_cell", 1015 | "ring", 1016 | "rustls-pki-types", 1017 | "rustls-webpki", 1018 | "subtle", 1019 | "zeroize", 1020 | ] 1021 | 1022 | [[package]] 1023 | name = "rustls-native-certs" 1024 | version = "0.8.0" 1025 | source = "registry+https://github.com/rust-lang/crates.io-index" 1026 | checksum = "fcaf18a4f2be7326cd874a5fa579fae794320a0f388d365dca7e480e55f83f8a" 1027 | dependencies = [ 1028 | "openssl-probe", 1029 | "rustls-pemfile", 1030 | "rustls-pki-types", 1031 | "schannel", 1032 | "security-framework", 1033 | ] 1034 | 1035 | [[package]] 1036 | name = "rustls-pemfile" 1037 | version = "2.1.3" 1038 | source = "registry+https://github.com/rust-lang/crates.io-index" 1039 | checksum = "196fe16b00e106300d3e45ecfcb764fa292a535d7326a29a5875c579c7417425" 1040 | dependencies = [ 1041 | "base64 0.22.1", 1042 | "rustls-pki-types", 1043 | ] 1044 | 1045 | [[package]] 1046 | name = "rustls-pki-types" 1047 | version = "1.12.0" 1048 | source = "registry+https://github.com/rust-lang/crates.io-index" 1049 | checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79" 1050 | dependencies = [ 1051 | "zeroize", 1052 | ] 1053 | 1054 | [[package]] 1055 | name = "rustls-webpki" 1056 | version = "0.103.4" 1057 | source = "registry+https://github.com/rust-lang/crates.io-index" 1058 | checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc" 1059 | dependencies = [ 1060 | "ring", 1061 | "rustls-pki-types", 1062 | "untrusted", 1063 | ] 1064 | 1065 | [[package]] 1066 | name = "rustversion" 1067 | version = "1.0.17" 1068 | source = "registry+https://github.com/rust-lang/crates.io-index" 1069 | checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" 1070 | 1071 | [[package]] 1072 | name = "ryu" 1073 | version = "1.0.18" 1074 | source = "registry+https://github.com/rust-lang/crates.io-index" 1075 | checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 1076 | 1077 | [[package]] 1078 | name = "schannel" 1079 | version = "0.1.24" 1080 | source = "registry+https://github.com/rust-lang/crates.io-index" 1081 | checksum = "e9aaafd5a2b6e3d657ff009d82fbd630b6bd54dd4eb06f21693925cdf80f9b8b" 1082 | dependencies = [ 1083 | "windows-sys 0.59.0", 1084 | ] 1085 | 1086 | [[package]] 1087 | name = "secrecy" 1088 | version = "0.10.3" 1089 | source = "registry+https://github.com/rust-lang/crates.io-index" 1090 | checksum = "e891af845473308773346dc847b2c23ee78fe442e0472ac50e22a18a93d3ae5a" 1091 | dependencies = [ 1092 | "zeroize", 1093 | ] 1094 | 1095 | [[package]] 1096 | name = "security-framework" 1097 | version = "2.11.1" 1098 | source = "registry+https://github.com/rust-lang/crates.io-index" 1099 | checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" 1100 | dependencies = [ 1101 | "bitflags", 1102 | "core-foundation", 1103 | "core-foundation-sys", 1104 | "libc", 1105 | "security-framework-sys", 1106 | ] 1107 | 1108 | [[package]] 1109 | name = "security-framework-sys" 1110 | version = "2.12.0" 1111 | source = "registry+https://github.com/rust-lang/crates.io-index" 1112 | checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6" 1113 | dependencies = [ 1114 | "core-foundation-sys", 1115 | "libc", 1116 | ] 1117 | 1118 | [[package]] 1119 | name = "serde" 1120 | version = "1.0.210" 1121 | source = "registry+https://github.com/rust-lang/crates.io-index" 1122 | checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" 1123 | dependencies = [ 1124 | "serde_derive", 1125 | ] 1126 | 1127 | [[package]] 1128 | name = "serde_derive" 1129 | version = "1.0.210" 1130 | source = "registry+https://github.com/rust-lang/crates.io-index" 1131 | checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" 1132 | dependencies = [ 1133 | "proc-macro2", 1134 | "quote", 1135 | "syn", 1136 | ] 1137 | 1138 | [[package]] 1139 | name = "serde_json" 1140 | version = "1.0.128" 1141 | source = "registry+https://github.com/rust-lang/crates.io-index" 1142 | checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" 1143 | dependencies = [ 1144 | "itoa", 1145 | "memchr", 1146 | "ryu", 1147 | "serde", 1148 | ] 1149 | 1150 | [[package]] 1151 | name = "serde_path_to_error" 1152 | version = "0.1.16" 1153 | source = "registry+https://github.com/rust-lang/crates.io-index" 1154 | checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" 1155 | dependencies = [ 1156 | "itoa", 1157 | "serde", 1158 | ] 1159 | 1160 | [[package]] 1161 | name = "serde_urlencoded" 1162 | version = "0.7.1" 1163 | source = "registry+https://github.com/rust-lang/crates.io-index" 1164 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1165 | dependencies = [ 1166 | "form_urlencoded", 1167 | "itoa", 1168 | "ryu", 1169 | "serde", 1170 | ] 1171 | 1172 | [[package]] 1173 | name = "shlex" 1174 | version = "1.3.0" 1175 | source = "registry+https://github.com/rust-lang/crates.io-index" 1176 | checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1177 | 1178 | [[package]] 1179 | name = "simple_asn1" 1180 | version = "0.6.2" 1181 | source = "registry+https://github.com/rust-lang/crates.io-index" 1182 | checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085" 1183 | dependencies = [ 1184 | "num-bigint", 1185 | "num-traits", 1186 | "thiserror", 1187 | "time", 1188 | ] 1189 | 1190 | [[package]] 1191 | name = "slab" 1192 | version = "0.4.9" 1193 | source = "registry+https://github.com/rust-lang/crates.io-index" 1194 | checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1195 | dependencies = [ 1196 | "autocfg", 1197 | ] 1198 | 1199 | [[package]] 1200 | name = "smallvec" 1201 | version = "1.13.2" 1202 | source = "registry+https://github.com/rust-lang/crates.io-index" 1203 | checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 1204 | 1205 | [[package]] 1206 | name = "snafu" 1207 | version = "0.8.5" 1208 | source = "registry+https://github.com/rust-lang/crates.io-index" 1209 | checksum = "223891c85e2a29c3fe8fb900c1fae5e69c2e42415e3177752e8718475efa5019" 1210 | dependencies = [ 1211 | "snafu-derive", 1212 | ] 1213 | 1214 | [[package]] 1215 | name = "snafu-derive" 1216 | version = "0.8.5" 1217 | source = "registry+https://github.com/rust-lang/crates.io-index" 1218 | checksum = "03c3c6b7927ffe7ecaa769ee0e3994da3b8cafc8f444578982c83ecb161af917" 1219 | dependencies = [ 1220 | "heck", 1221 | "proc-macro2", 1222 | "quote", 1223 | "syn", 1224 | ] 1225 | 1226 | [[package]] 1227 | name = "socket2" 1228 | version = "0.5.7" 1229 | source = "registry+https://github.com/rust-lang/crates.io-index" 1230 | checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" 1231 | dependencies = [ 1232 | "libc", 1233 | "windows-sys 0.52.0", 1234 | ] 1235 | 1236 | [[package]] 1237 | name = "socket2" 1238 | version = "0.6.0" 1239 | source = "registry+https://github.com/rust-lang/crates.io-index" 1240 | checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807" 1241 | dependencies = [ 1242 | "libc", 1243 | "windows-sys 0.59.0", 1244 | ] 1245 | 1246 | [[package]] 1247 | name = "spin" 1248 | version = "0.9.8" 1249 | source = "registry+https://github.com/rust-lang/crates.io-index" 1250 | checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 1251 | 1252 | [[package]] 1253 | name = "strsim" 1254 | version = "0.11.1" 1255 | source = "registry+https://github.com/rust-lang/crates.io-index" 1256 | checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1257 | 1258 | [[package]] 1259 | name = "subtle" 1260 | version = "2.6.1" 1261 | source = "registry+https://github.com/rust-lang/crates.io-index" 1262 | checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" 1263 | 1264 | [[package]] 1265 | name = "syn" 1266 | version = "2.0.77" 1267 | source = "registry+https://github.com/rust-lang/crates.io-index" 1268 | checksum = "9f35bcdf61fd8e7be6caf75f429fdca8beb3ed76584befb503b1569faee373ed" 1269 | dependencies = [ 1270 | "proc-macro2", 1271 | "quote", 1272 | "unicode-ident", 1273 | ] 1274 | 1275 | [[package]] 1276 | name = "sync_wrapper" 1277 | version = "1.0.1" 1278 | source = "registry+https://github.com/rust-lang/crates.io-index" 1279 | checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" 1280 | dependencies = [ 1281 | "futures-core", 1282 | ] 1283 | 1284 | [[package]] 1285 | name = "thiserror" 1286 | version = "1.0.64" 1287 | source = "registry+https://github.com/rust-lang/crates.io-index" 1288 | checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" 1289 | dependencies = [ 1290 | "thiserror-impl", 1291 | ] 1292 | 1293 | [[package]] 1294 | name = "thiserror-impl" 1295 | version = "1.0.64" 1296 | source = "registry+https://github.com/rust-lang/crates.io-index" 1297 | checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" 1298 | dependencies = [ 1299 | "proc-macro2", 1300 | "quote", 1301 | "syn", 1302 | ] 1303 | 1304 | [[package]] 1305 | name = "time" 1306 | version = "0.3.36" 1307 | source = "registry+https://github.com/rust-lang/crates.io-index" 1308 | checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" 1309 | dependencies = [ 1310 | "deranged", 1311 | "itoa", 1312 | "num-conv", 1313 | "powerfmt", 1314 | "serde", 1315 | "time-core", 1316 | "time-macros", 1317 | ] 1318 | 1319 | [[package]] 1320 | name = "time-core" 1321 | version = "0.1.2" 1322 | source = "registry+https://github.com/rust-lang/crates.io-index" 1323 | checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 1324 | 1325 | [[package]] 1326 | name = "time-macros" 1327 | version = "0.2.18" 1328 | source = "registry+https://github.com/rust-lang/crates.io-index" 1329 | checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" 1330 | dependencies = [ 1331 | "num-conv", 1332 | "time-core", 1333 | ] 1334 | 1335 | [[package]] 1336 | name = "tinyvec" 1337 | version = "1.8.0" 1338 | source = "registry+https://github.com/rust-lang/crates.io-index" 1339 | checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" 1340 | dependencies = [ 1341 | "tinyvec_macros", 1342 | ] 1343 | 1344 | [[package]] 1345 | name = "tinyvec_macros" 1346 | version = "0.1.1" 1347 | source = "registry+https://github.com/rust-lang/crates.io-index" 1348 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1349 | 1350 | [[package]] 1351 | name = "tokio" 1352 | version = "1.47.1" 1353 | source = "registry+https://github.com/rust-lang/crates.io-index" 1354 | checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" 1355 | dependencies = [ 1356 | "backtrace", 1357 | "bytes", 1358 | "io-uring", 1359 | "libc", 1360 | "mio", 1361 | "pin-project-lite", 1362 | "slab", 1363 | "socket2 0.6.0", 1364 | "tokio-macros", 1365 | "windows-sys 0.59.0", 1366 | ] 1367 | 1368 | [[package]] 1369 | name = "tokio-macros" 1370 | version = "2.5.0" 1371 | source = "registry+https://github.com/rust-lang/crates.io-index" 1372 | checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" 1373 | dependencies = [ 1374 | "proc-macro2", 1375 | "quote", 1376 | "syn", 1377 | ] 1378 | 1379 | [[package]] 1380 | name = "tokio-rustls" 1381 | version = "0.26.0" 1382 | source = "registry+https://github.com/rust-lang/crates.io-index" 1383 | checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4" 1384 | dependencies = [ 1385 | "rustls", 1386 | "rustls-pki-types", 1387 | "tokio", 1388 | ] 1389 | 1390 | [[package]] 1391 | name = "tokio-util" 1392 | version = "0.7.12" 1393 | source = "registry+https://github.com/rust-lang/crates.io-index" 1394 | checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" 1395 | dependencies = [ 1396 | "bytes", 1397 | "futures-core", 1398 | "futures-sink", 1399 | "pin-project-lite", 1400 | "tokio", 1401 | ] 1402 | 1403 | [[package]] 1404 | name = "tower" 1405 | version = "0.5.2" 1406 | source = "registry+https://github.com/rust-lang/crates.io-index" 1407 | checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" 1408 | dependencies = [ 1409 | "futures-core", 1410 | "futures-util", 1411 | "pin-project-lite", 1412 | "sync_wrapper", 1413 | "tokio", 1414 | "tokio-util", 1415 | "tower-layer", 1416 | "tower-service", 1417 | "tracing", 1418 | ] 1419 | 1420 | [[package]] 1421 | name = "tower-http" 1422 | version = "0.6.6" 1423 | source = "registry+https://github.com/rust-lang/crates.io-index" 1424 | checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2" 1425 | dependencies = [ 1426 | "bitflags", 1427 | "bytes", 1428 | "futures-util", 1429 | "http", 1430 | "http-body", 1431 | "iri-string", 1432 | "pin-project-lite", 1433 | "tower", 1434 | "tower-layer", 1435 | "tower-service", 1436 | "tracing", 1437 | ] 1438 | 1439 | [[package]] 1440 | name = "tower-layer" 1441 | version = "0.3.3" 1442 | source = "registry+https://github.com/rust-lang/crates.io-index" 1443 | checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" 1444 | 1445 | [[package]] 1446 | name = "tower-service" 1447 | version = "0.3.3" 1448 | source = "registry+https://github.com/rust-lang/crates.io-index" 1449 | checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" 1450 | 1451 | [[package]] 1452 | name = "tracing" 1453 | version = "0.1.40" 1454 | source = "registry+https://github.com/rust-lang/crates.io-index" 1455 | checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 1456 | dependencies = [ 1457 | "log", 1458 | "pin-project-lite", 1459 | "tracing-attributes", 1460 | "tracing-core", 1461 | ] 1462 | 1463 | [[package]] 1464 | name = "tracing-attributes" 1465 | version = "0.1.27" 1466 | source = "registry+https://github.com/rust-lang/crates.io-index" 1467 | checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 1468 | dependencies = [ 1469 | "proc-macro2", 1470 | "quote", 1471 | "syn", 1472 | ] 1473 | 1474 | [[package]] 1475 | name = "tracing-core" 1476 | version = "0.1.32" 1477 | source = "registry+https://github.com/rust-lang/crates.io-index" 1478 | checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 1479 | dependencies = [ 1480 | "once_cell", 1481 | ] 1482 | 1483 | [[package]] 1484 | name = "try-lock" 1485 | version = "0.2.5" 1486 | source = "registry+https://github.com/rust-lang/crates.io-index" 1487 | checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1488 | 1489 | [[package]] 1490 | name = "unicode-bidi" 1491 | version = "0.3.15" 1492 | source = "registry+https://github.com/rust-lang/crates.io-index" 1493 | checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 1494 | 1495 | [[package]] 1496 | name = "unicode-ident" 1497 | version = "1.0.13" 1498 | source = "registry+https://github.com/rust-lang/crates.io-index" 1499 | checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" 1500 | 1501 | [[package]] 1502 | name = "unicode-normalization" 1503 | version = "0.1.24" 1504 | source = "registry+https://github.com/rust-lang/crates.io-index" 1505 | checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956" 1506 | dependencies = [ 1507 | "tinyvec", 1508 | ] 1509 | 1510 | [[package]] 1511 | name = "untrusted" 1512 | version = "0.9.0" 1513 | source = "registry+https://github.com/rust-lang/crates.io-index" 1514 | checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 1515 | 1516 | [[package]] 1517 | name = "url" 1518 | version = "2.5.2" 1519 | source = "registry+https://github.com/rust-lang/crates.io-index" 1520 | checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c" 1521 | dependencies = [ 1522 | "form_urlencoded", 1523 | "idna", 1524 | "percent-encoding", 1525 | "serde", 1526 | ] 1527 | 1528 | [[package]] 1529 | name = "utf8parse" 1530 | version = "0.2.2" 1531 | source = "registry+https://github.com/rust-lang/crates.io-index" 1532 | checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" 1533 | 1534 | [[package]] 1535 | name = "want" 1536 | version = "0.3.1" 1537 | source = "registry+https://github.com/rust-lang/crates.io-index" 1538 | checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 1539 | dependencies = [ 1540 | "try-lock", 1541 | ] 1542 | 1543 | [[package]] 1544 | name = "wasi" 1545 | version = "0.11.0+wasi-snapshot-preview1" 1546 | source = "registry+https://github.com/rust-lang/crates.io-index" 1547 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1548 | 1549 | [[package]] 1550 | name = "wasm-bindgen" 1551 | version = "0.2.100" 1552 | source = "registry+https://github.com/rust-lang/crates.io-index" 1553 | checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" 1554 | dependencies = [ 1555 | "cfg-if", 1556 | "once_cell", 1557 | "rustversion", 1558 | "wasm-bindgen-macro", 1559 | ] 1560 | 1561 | [[package]] 1562 | name = "wasm-bindgen-backend" 1563 | version = "0.2.100" 1564 | source = "registry+https://github.com/rust-lang/crates.io-index" 1565 | checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" 1566 | dependencies = [ 1567 | "bumpalo", 1568 | "log", 1569 | "proc-macro2", 1570 | "quote", 1571 | "syn", 1572 | "wasm-bindgen-shared", 1573 | ] 1574 | 1575 | [[package]] 1576 | name = "wasm-bindgen-futures" 1577 | version = "0.4.43" 1578 | source = "registry+https://github.com/rust-lang/crates.io-index" 1579 | checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed" 1580 | dependencies = [ 1581 | "cfg-if", 1582 | "js-sys", 1583 | "wasm-bindgen", 1584 | "web-sys", 1585 | ] 1586 | 1587 | [[package]] 1588 | name = "wasm-bindgen-macro" 1589 | version = "0.2.100" 1590 | source = "registry+https://github.com/rust-lang/crates.io-index" 1591 | checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" 1592 | dependencies = [ 1593 | "quote", 1594 | "wasm-bindgen-macro-support", 1595 | ] 1596 | 1597 | [[package]] 1598 | name = "wasm-bindgen-macro-support" 1599 | version = "0.2.100" 1600 | source = "registry+https://github.com/rust-lang/crates.io-index" 1601 | checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" 1602 | dependencies = [ 1603 | "proc-macro2", 1604 | "quote", 1605 | "syn", 1606 | "wasm-bindgen-backend", 1607 | "wasm-bindgen-shared", 1608 | ] 1609 | 1610 | [[package]] 1611 | name = "wasm-bindgen-shared" 1612 | version = "0.2.100" 1613 | source = "registry+https://github.com/rust-lang/crates.io-index" 1614 | checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" 1615 | dependencies = [ 1616 | "unicode-ident", 1617 | ] 1618 | 1619 | [[package]] 1620 | name = "web-sys" 1621 | version = "0.3.70" 1622 | source = "registry+https://github.com/rust-lang/crates.io-index" 1623 | checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0" 1624 | dependencies = [ 1625 | "js-sys", 1626 | "wasm-bindgen", 1627 | ] 1628 | 1629 | [[package]] 1630 | name = "web-time" 1631 | version = "1.1.0" 1632 | source = "registry+https://github.com/rust-lang/crates.io-index" 1633 | checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" 1634 | dependencies = [ 1635 | "js-sys", 1636 | "serde", 1637 | "wasm-bindgen", 1638 | ] 1639 | 1640 | [[package]] 1641 | name = "webpki-roots" 1642 | version = "0.26.6" 1643 | source = "registry+https://github.com/rust-lang/crates.io-index" 1644 | checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" 1645 | dependencies = [ 1646 | "rustls-pki-types", 1647 | ] 1648 | 1649 | [[package]] 1650 | name = "webpki-roots" 1651 | version = "1.0.2" 1652 | source = "registry+https://github.com/rust-lang/crates.io-index" 1653 | checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2" 1654 | dependencies = [ 1655 | "rustls-pki-types", 1656 | ] 1657 | 1658 | [[package]] 1659 | name = "windows-core" 1660 | version = "0.52.0" 1661 | source = "registry+https://github.com/rust-lang/crates.io-index" 1662 | checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 1663 | dependencies = [ 1664 | "windows-targets", 1665 | ] 1666 | 1667 | [[package]] 1668 | name = "windows-link" 1669 | version = "0.1.3" 1670 | source = "registry+https://github.com/rust-lang/crates.io-index" 1671 | checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" 1672 | 1673 | [[package]] 1674 | name = "windows-sys" 1675 | version = "0.52.0" 1676 | source = "registry+https://github.com/rust-lang/crates.io-index" 1677 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1678 | dependencies = [ 1679 | "windows-targets", 1680 | ] 1681 | 1682 | [[package]] 1683 | name = "windows-sys" 1684 | version = "0.59.0" 1685 | source = "registry+https://github.com/rust-lang/crates.io-index" 1686 | checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" 1687 | dependencies = [ 1688 | "windows-targets", 1689 | ] 1690 | 1691 | [[package]] 1692 | name = "windows-targets" 1693 | version = "0.52.6" 1694 | source = "registry+https://github.com/rust-lang/crates.io-index" 1695 | checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1696 | dependencies = [ 1697 | "windows_aarch64_gnullvm", 1698 | "windows_aarch64_msvc", 1699 | "windows_i686_gnu", 1700 | "windows_i686_gnullvm", 1701 | "windows_i686_msvc", 1702 | "windows_x86_64_gnu", 1703 | "windows_x86_64_gnullvm", 1704 | "windows_x86_64_msvc", 1705 | ] 1706 | 1707 | [[package]] 1708 | name = "windows_aarch64_gnullvm" 1709 | version = "0.52.6" 1710 | source = "registry+https://github.com/rust-lang/crates.io-index" 1711 | checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1712 | 1713 | [[package]] 1714 | name = "windows_aarch64_msvc" 1715 | version = "0.52.6" 1716 | source = "registry+https://github.com/rust-lang/crates.io-index" 1717 | checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1718 | 1719 | [[package]] 1720 | name = "windows_i686_gnu" 1721 | version = "0.52.6" 1722 | source = "registry+https://github.com/rust-lang/crates.io-index" 1723 | checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1724 | 1725 | [[package]] 1726 | name = "windows_i686_gnullvm" 1727 | version = "0.52.6" 1728 | source = "registry+https://github.com/rust-lang/crates.io-index" 1729 | checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1730 | 1731 | [[package]] 1732 | name = "windows_i686_msvc" 1733 | version = "0.52.6" 1734 | source = "registry+https://github.com/rust-lang/crates.io-index" 1735 | checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1736 | 1737 | [[package]] 1738 | name = "windows_x86_64_gnu" 1739 | version = "0.52.6" 1740 | source = "registry+https://github.com/rust-lang/crates.io-index" 1741 | checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1742 | 1743 | [[package]] 1744 | name = "windows_x86_64_gnullvm" 1745 | version = "0.52.6" 1746 | source = "registry+https://github.com/rust-lang/crates.io-index" 1747 | checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1748 | 1749 | [[package]] 1750 | name = "windows_x86_64_msvc" 1751 | version = "0.52.6" 1752 | source = "registry+https://github.com/rust-lang/crates.io-index" 1753 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1754 | 1755 | [[package]] 1756 | name = "zerocopy" 1757 | version = "0.7.35" 1758 | source = "registry+https://github.com/rust-lang/crates.io-index" 1759 | checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" 1760 | dependencies = [ 1761 | "byteorder", 1762 | "zerocopy-derive", 1763 | ] 1764 | 1765 | [[package]] 1766 | name = "zerocopy-derive" 1767 | version = "0.7.35" 1768 | source = "registry+https://github.com/rust-lang/crates.io-index" 1769 | checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" 1770 | dependencies = [ 1771 | "proc-macro2", 1772 | "quote", 1773 | "syn", 1774 | ] 1775 | 1776 | [[package]] 1777 | name = "zeroize" 1778 | version = "1.8.1" 1779 | source = "registry+https://github.com/rust-lang/crates.io-index" 1780 | checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" 1781 | --------------------------------------------------------------------------------