├── .gitignore ├── .github ├── FUNDING.yml └── workflows │ └── release.yml ├── conclusive.png ├── .editorconfig ├── Cargo.toml ├── README.md ├── src └── main.rs ├── LICENSE └── Cargo.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ["https://github.com/mrusme#support"] 2 | -------------------------------------------------------------------------------- /conclusive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrusme/conclusive/HEAD/conclusive.png -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | charset = utf-8 6 | trim_trailing_whitespace = true 7 | indent_style = space 8 | indent_size = 2 9 | insert_final_newline = true 10 | max_line = 80 11 | 12 | [*.{md,markdown}] 13 | trim_trailing_whitespace = false 14 | 15 | [{Makefile,Makefile.*}] 16 | indent_style = tab 17 | indent_size = 2 18 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | on: 2 | release: 3 | types: [created] 4 | 5 | jobs: 6 | release: 7 | name: release ${{ matrix.target }} 8 | runs-on: ubuntu-latest 9 | strategy: 10 | fail-fast: false 11 | matrix: 12 | include: 13 | - target: x86_64-pc-windows-gnu 14 | archive: zip 15 | - target: x86_64-unknown-linux-musl 16 | archive: tar.gz tar.xz 17 | - target: x86_64-apple-darwin 18 | archive: zip 19 | steps: 20 | - uses: actions/checkout@master 21 | - name: Compile and release 22 | uses: rust-build/rust-build.action@v1.3.2 23 | env: 24 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 25 | with: 26 | RUSTTARGET: ${{ matrix.target }} 27 | ARCHIVE_TYPES: ${{ matrix.archive }} 28 | 29 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "conclusive" 3 | description = "A command line client for Plausible Analytics" 4 | version = "1.0.0" 5 | authors = ["マリウス "] 6 | license = "GPL-3.0" 7 | edition = "2018" 8 | readme = "README.md" 9 | homepage = "https://xn--gckvb8fzb.com/conclusive-a-command-line-client-for-plausible-analytics/" 10 | repository = "https://github.com/mrusme/conclusive" 11 | keywords = ["cli", "tui", "plausible", "analytics", "tool"] 12 | categories = ["command-line-utilities"] 13 | 14 | [dependencies] 15 | tui = { version = "0.18", default-features = false, features = ['termion'] } 16 | termion = "1.5" 17 | argh = "0.1.8" 18 | reqwest = { version = "0.11", features = ["blocking", "json"] } 19 | tokio = { version = "1", features = ["full"] } 20 | serde = { version = "1.0", features = ["derive"] } 21 | clap = "3.2.16" 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Conclusive 2 | ---------- 3 | 4 | Conclusive. A command line client for 5 | [Plausible Analytics](https://plausible.io). 6 | 7 | ![Conclusive](conclusive.png) \ 8 | *(thanks to Marko from Plausible.io for providing me a demo account to take this screenshot!)* 9 | 10 | 11 | ## Installing 12 | 13 | ```sh 14 | cargo install conclusive 15 | ``` 16 | 17 | 18 | ## Building 19 | 20 | Clone this repository, `cd` into it on a terminal and build the binary: 21 | 22 | ```sh 23 | cargo build --release 24 | ``` 25 | 26 | You will find the binary at `./target/release/conclusive`. 27 | 28 | 29 | ## Usage 30 | 31 | In order to use `conclusive` you need to [create an 32 | API token](https://plausible.io/settings#api-keys) in your 33 | Plausible.io account. 34 | 35 | Then export your API token as environment variable named `PLAUSIBLE_TOKEN`. 36 | 37 | ```sh 38 | export PLAUSIBLE_TOKEN=YOUR-PLAUSIBLE-API-TOKEN 39 | conclusive -p 30d YOUR-WEBSITE 40 | ``` 41 | 42 | For more further options check `conclusive -h`. 43 | -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- 1 | use std::io; 2 | use std::env; 3 | extern crate clap; 4 | use clap::{ 5 | Arg, 6 | App 7 | }; 8 | use termion::raw::IntoRawMode; 9 | use tui::{ 10 | Terminal, 11 | backend::TermionBackend, 12 | widgets::{ 13 | Block, 14 | Borders, 15 | Cell, 16 | Row, 17 | Table 18 | }, 19 | layout::{ 20 | Alignment, 21 | Layout, 22 | Constraint, 23 | Direction 24 | }, 25 | symbols, 26 | style::{ 27 | Color, 28 | Style 29 | }, 30 | text::{ 31 | Spans 32 | }, 33 | widgets::{ 34 | BarChart, 35 | Paragraph, 36 | }, 37 | }; 38 | use serde::Deserialize; 39 | use serde::de; 40 | 41 | const API_BASE_URL: &'static str = "https://plausible.io/api/v1/stats"; 42 | 43 | #[derive(Deserialize, Debug)] 44 | struct TopPageResult { 45 | bounce_rate: Option, 46 | page: String, 47 | visitors: Option, 48 | } 49 | 50 | #[derive(Deserialize, Debug)] 51 | struct TopSourceResult { 52 | bounce_rate: Option, 53 | source: String, 54 | visitors: Option, 55 | } 56 | 57 | #[derive(Deserialize, Debug)] 58 | struct AggregateValue { 59 | value: Option, 60 | } 61 | 62 | #[derive(Deserialize, Debug)] 63 | struct AggregateResult { 64 | bounce_rate: AggregateValue, 65 | pageviews: AggregateValue, 66 | visit_duration: AggregateValue, 67 | visitors: AggregateValue, 68 | } 69 | 70 | #[derive(Deserialize, Debug)] 71 | struct TimeseriesResult { 72 | date: String, 73 | visitors: Option, 74 | } 75 | 76 | #[derive(Deserialize, Debug)] 77 | struct ApiResponse { 78 | results: T, 79 | } 80 | 81 | pub struct TUI<'a> { 82 | pub stats: Vec<(&'a str, u64)> 83 | } 84 | 85 | impl<'a> TUI<'a> { 86 | pub fn new(stats: Vec<(&'a str, u64)>) -> TUI<'a> { 87 | TUI { 88 | stats: stats, 89 | } 90 | } 91 | } 92 | 93 | fn req(endpoint: &str, token: &str) 94 | -> Result, reqwest::blocking::Response> { 95 | let client = reqwest::blocking::Client::new(); 96 | let response = client.get(endpoint) 97 | .bearer_auth(token) 98 | .send(); 99 | let resp = response.unwrap(); 100 | 101 | if resp.status().is_success() == false { 102 | return Err(resp); 103 | } 104 | 105 | let timeseries: ApiResponse = resp.json().unwrap(); 106 | return Ok(timeseries); 107 | } 108 | 109 | fn main() 110 | -> Result<(), io::Error> { 111 | let args = App::new("conclusive") 112 | .version("0.1.0") 113 | .about("A command line client for Plausible Analytics.") 114 | .author("マリウス ") 115 | .arg(Arg::with_name("SITE-ID") 116 | .help("Site ID") 117 | .required(true) 118 | .index(1) 119 | .takes_value(true)) 120 | .arg(Arg::with_name("period") 121 | .help("Period") 122 | .short('p') 123 | .long("period") 124 | .takes_value(true)) 125 | .get_matches(); 126 | 127 | let site_id = args.value_of("SITE-ID").unwrap(); 128 | let period = args.value_of("period").unwrap_or("30d"); 129 | 130 | let plausible_token = env::var("PLAUSIBLE_TOKEN").unwrap(); 131 | 132 | let aggregate: ApiResponse = 133 | match req(&format!( 134 | "{api}/aggregate?site_id={site_id}&period={period}&metrics=visitors,pageviews,bounce_rate,visit_duration", 135 | api = API_BASE_URL, 136 | site_id = site_id, 137 | period = period 138 | ), &plausible_token) { 139 | Err(e) => { 140 | println!("Error: {:#?}", e); 141 | std::process::exit(1); 142 | }, 143 | Ok(r) => r, 144 | }; 145 | 146 | let timeseries: ApiResponse> = 147 | match req(&format!( 148 | "{api}/timeseries?site_id={site_id}&period={period}", 149 | api = API_BASE_URL, 150 | site_id = site_id, 151 | period = period 152 | ), &plausible_token) { 153 | Err(e) => { 154 | println!("Error: {:#?}", e); 155 | std::process::exit(1); 156 | }, 157 | Ok(r) => r, 158 | }; 159 | 160 | let top_sources: ApiResponse> = 161 | match req(&format!( 162 | "{api}/breakdown?site_id={site_id}&period={period}&{args}", 163 | api = API_BASE_URL, 164 | site_id = site_id, 165 | period = period, 166 | args = "property=visit:source&metrics=visitors,bounce_rate&limit=10" 167 | ), &plausible_token) { 168 | Err(e) => { 169 | println!("Error: {:#?}", e); 170 | std::process::exit(1); 171 | }, 172 | Ok(r) => r, 173 | }; 174 | 175 | let top_pages: ApiResponse> = 176 | match req(&format!( 177 | "{api}/breakdown?site_id={site_id}&period={period}&{args}", 178 | api = API_BASE_URL, 179 | site_id = site_id, 180 | period = period, 181 | args = "property=event:page&metrics=visitors,bounce_rate&limit=10" 182 | ), &plausible_token) { 183 | Err(e) => { 184 | println!("Error: {:#?}", e); 185 | std::process::exit(1); 186 | }, 187 | Ok(r) => r, 188 | }; 189 | 190 | let mut stats: Vec<(&str, u64)> = Vec::new(); 191 | 192 | for result in timeseries.results.iter() { 193 | let len = result.date.len(); 194 | let visitors: u64 = result.visitors.unwrap_or(0); 195 | stats.push((&result.date[len-2..], visitors)); 196 | } 197 | 198 | println!("{:#?}", stats); 199 | 200 | let stdout = io::stdout().into_raw_mode()?; 201 | let backend = TermionBackend::new(stdout); 202 | let mut terminal = Terminal::new(backend)?; 203 | 204 | let app = TUI::new(stats); 205 | 206 | terminal.clear()?; 207 | let _drawn = match terminal.draw(|f| { 208 | let chunks = Layout::default() 209 | .direction(Direction::Vertical) 210 | .margin(1) 211 | .constraints( 212 | [ 213 | Constraint::Length(5), 214 | Constraint::Min(10), 215 | Constraint::Length(16) 216 | ].as_ref() 217 | ) 218 | .split(f.size()); 219 | 220 | let layout_overview = Layout::default() 221 | .direction(Direction::Horizontal) 222 | .margin(0) 223 | .constraints( 224 | [ 225 | Constraint::Percentage(25), 226 | Constraint::Percentage(25), 227 | Constraint::Percentage(25), 228 | Constraint::Percentage(25) 229 | ].as_ref() 230 | ) 231 | .split(chunks[0]); 232 | 233 | // Total Visitors 234 | let block_overview_visitors = Block::default() 235 | .title("Total Visitors") 236 | .borders(Borders::ALL); 237 | 238 | let overview_visitors_text = vec![ 239 | Spans::from(""), 240 | Spans::from(format!("{total_visitors}", total_visitors = aggregate.results.visitors.value.unwrap_or(0))) 241 | ]; 242 | 243 | let overview_visitors = Paragraph::new(overview_visitors_text) 244 | .style(Style::default()) 245 | .block(block_overview_visitors) 246 | .alignment(Alignment::Center); 247 | 248 | f.render_widget(overview_visitors, layout_overview[0]); 249 | 250 | // Total Pageviews 251 | let block_overview_pageviews = Block::default() 252 | .title("Total Pageviews") 253 | .borders(Borders::ALL); 254 | 255 | let overview_pageviews_text = vec![ 256 | Spans::from(""), 257 | Spans::from(format!("{total_pageviews}", total_pageviews = aggregate.results.pageviews.value.unwrap_or(0))) 258 | ]; 259 | 260 | let overview_pageviews = Paragraph::new(overview_pageviews_text) 261 | .style(Style::default()) 262 | .block(block_overview_pageviews) 263 | .alignment(Alignment::Center); 264 | 265 | f.render_widget(overview_pageviews, layout_overview[1]); 266 | 267 | // Bounce Rate 268 | let block_overview_bounce = Block::default() 269 | .title("Bounce Rate") 270 | .borders(Borders::ALL); 271 | 272 | let overview_bounce_text = vec![ 273 | Spans::from(""), 274 | Spans::from(format!("{bounce_rate}%", bounce_rate = aggregate.results.bounce_rate.value.unwrap_or(0))) 275 | ]; 276 | 277 | let overview_bounce = Paragraph::new(overview_bounce_text) 278 | .style(Style::default()) 279 | .block(block_overview_bounce) 280 | .alignment(Alignment::Center); 281 | 282 | f.render_widget(overview_bounce, layout_overview[2]); 283 | 284 | // Visit Duration 285 | let block_overview_duration = Block::default() 286 | .title("Visit Duration") 287 | .borders(Borders::ALL); 288 | 289 | let overview_duration_text = vec![ 290 | Spans::from(""), 291 | Spans::from(format!("{visit_duration}s", visit_duration = aggregate.results.visit_duration.value.unwrap_or(0))) 292 | ]; 293 | 294 | let overview_duration = Paragraph::new(overview_duration_text) 295 | .style(Style::default()) 296 | .block(block_overview_duration) 297 | .alignment(Alignment::Center); 298 | 299 | f.render_widget(overview_duration, layout_overview[3]); 300 | 301 | // Bar Chart 302 | let barchart = BarChart::default() 303 | .block(Block::default().borders(Borders::ALL).title("Stats")) 304 | .data(&app.stats) 305 | .bar_width(3) 306 | .bar_gap(2) 307 | .bar_set(symbols::bar::NINE_LEVELS) 308 | .value_style( 309 | Style::default() 310 | .fg(Color::Black) 311 | .bg(Color::White), 312 | ) 313 | .label_style(Style::default().fg(Color::White)) 314 | .bar_style(Style::default().fg(Color::Rgb(107, 104, 242))); 315 | f.render_widget(barchart, chunks[1]); 316 | 317 | let chunks2 = Layout::default() 318 | .direction(Direction::Horizontal) 319 | .margin(0) 320 | .constraints( 321 | [ 322 | Constraint::Percentage(50), 323 | Constraint::Percentage(50) 324 | ].as_ref() 325 | ) 326 | .split(chunks[2]); 327 | 328 | 329 | let normal_style = Style::default().bg(Color::White); 330 | 331 | let header_cells = ["Visitors", "Source", "BNC"] 332 | .iter() 333 | .map(|h| Cell::from(*h).style(Style::default().fg(Color::Black))); 334 | let header = Row::new(header_cells) 335 | .style(normal_style) 336 | .height(1) 337 | .bottom_margin(1); 338 | 339 | let rows = top_sources.results.iter().map(|item| { 340 | let cells = vec![ 341 | Cell::from(format!("{}", item.visitors.unwrap_or(0))), 342 | Cell::from(format!("{}", item.source)), 343 | Cell::from(format!("{}%", item.bounce_rate.unwrap_or(0.0))) 344 | ]; 345 | Row::new(cells).height(1 as u16).bottom_margin(1) 346 | }); 347 | 348 | let t = Table::new(rows) 349 | .header(header) 350 | .block(Block::default().borders(Borders::ALL).title("Top Sauces")) 351 | .widths(&[ 352 | Constraint::Length(10), 353 | Constraint::Min(16), 354 | Constraint::Length(5), 355 | ]); 356 | f.render_widget(t, chunks2[0]); 357 | 358 | 359 | let header2_cells = ["Visitors", "Page", "BNC"] 360 | .iter() 361 | .map(|h| Cell::from(*h).style(Style::default().fg(Color::Black))); 362 | let header2 = Row::new(header2_cells) 363 | .style(normal_style) 364 | .height(1) 365 | .bottom_margin(1); 366 | let rows2 = top_pages.results.iter().map(|item| { 367 | let cells2 = vec![ 368 | Cell::from(format!("{}", item.visitors.unwrap_or(0))), 369 | Cell::from(format!("{}", item.page)), 370 | Cell::from(format!("{}%", item.bounce_rate.unwrap_or(0.0))) 371 | ]; 372 | Row::new(cells2).height(1 as u16).bottom_margin(1) 373 | }); 374 | let t2 = Table::new(rows2) 375 | .header(header2) 376 | .block(Block::default().borders(Borders::ALL).title("Top Pages")) 377 | .widths(&[ 378 | Constraint::Length(10), 379 | Constraint::Min(16), 380 | Constraint::Length(5), 381 | ]); 382 | f.render_widget(t2, chunks2[1]); 383 | }) { 384 | Ok(_) => return Ok(()), 385 | Err(e) => return Err(e), 386 | }; 387 | } 388 | 389 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | version = 4 4 | 5 | [[package]] 6 | name = "addr2line" 7 | version = "0.21.0" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 10 | dependencies = [ 11 | "gimli", 12 | ] 13 | 14 | [[package]] 15 | name = "adler" 16 | version = "1.0.2" 17 | source = "registry+https://github.com/rust-lang/crates.io-index" 18 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 | 20 | [[package]] 21 | name = "argh" 22 | version = "0.1.12" 23 | source = "registry+https://github.com/rust-lang/crates.io-index" 24 | checksum = "7af5ba06967ff7214ce4c7419c7d185be7ecd6cc4965a8f6e1d8ce0398aad219" 25 | dependencies = [ 26 | "argh_derive", 27 | "argh_shared", 28 | ] 29 | 30 | [[package]] 31 | name = "argh_derive" 32 | version = "0.1.12" 33 | source = "registry+https://github.com/rust-lang/crates.io-index" 34 | checksum = "56df0aeedf6b7a2fc67d06db35b09684c3e8da0c95f8f27685cb17e08413d87a" 35 | dependencies = [ 36 | "argh_shared", 37 | "proc-macro2", 38 | "quote", 39 | "syn", 40 | ] 41 | 42 | [[package]] 43 | name = "argh_shared" 44 | version = "0.1.12" 45 | source = "registry+https://github.com/rust-lang/crates.io-index" 46 | checksum = "5693f39141bda5760ecc4111ab08da40565d1771038c4a0250f03457ec707531" 47 | dependencies = [ 48 | "serde", 49 | ] 50 | 51 | [[package]] 52 | name = "atty" 53 | version = "0.2.14" 54 | source = "registry+https://github.com/rust-lang/crates.io-index" 55 | checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 56 | dependencies = [ 57 | "hermit-abi 0.1.19", 58 | "libc", 59 | "winapi", 60 | ] 61 | 62 | [[package]] 63 | name = "autocfg" 64 | version = "1.2.0" 65 | source = "registry+https://github.com/rust-lang/crates.io-index" 66 | checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" 67 | 68 | [[package]] 69 | name = "backtrace" 70 | version = "0.3.71" 71 | source = "registry+https://github.com/rust-lang/crates.io-index" 72 | checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d" 73 | dependencies = [ 74 | "addr2line", 75 | "cc", 76 | "cfg-if", 77 | "libc", 78 | "miniz_oxide", 79 | "object", 80 | "rustc-demangle", 81 | ] 82 | 83 | [[package]] 84 | name = "base64" 85 | version = "0.21.7" 86 | source = "registry+https://github.com/rust-lang/crates.io-index" 87 | checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" 88 | 89 | [[package]] 90 | name = "bitflags" 91 | version = "1.3.2" 92 | source = "registry+https://github.com/rust-lang/crates.io-index" 93 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 94 | 95 | [[package]] 96 | name = "bitflags" 97 | version = "2.5.0" 98 | source = "registry+https://github.com/rust-lang/crates.io-index" 99 | checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 100 | 101 | [[package]] 102 | name = "bumpalo" 103 | version = "3.15.4" 104 | source = "registry+https://github.com/rust-lang/crates.io-index" 105 | checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" 106 | 107 | [[package]] 108 | name = "bytes" 109 | version = "1.6.0" 110 | source = "registry+https://github.com/rust-lang/crates.io-index" 111 | checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" 112 | 113 | [[package]] 114 | name = "cassowary" 115 | version = "0.3.0" 116 | source = "registry+https://github.com/rust-lang/crates.io-index" 117 | checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" 118 | 119 | [[package]] 120 | name = "cc" 121 | version = "1.0.90" 122 | source = "registry+https://github.com/rust-lang/crates.io-index" 123 | checksum = "8cd6604a82acf3039f1144f54b8eb34e91ffba622051189e71b781822d5ee1f5" 124 | 125 | [[package]] 126 | name = "cfg-if" 127 | version = "1.0.0" 128 | source = "registry+https://github.com/rust-lang/crates.io-index" 129 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 130 | 131 | [[package]] 132 | name = "clap" 133 | version = "3.2.25" 134 | source = "registry+https://github.com/rust-lang/crates.io-index" 135 | checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 136 | dependencies = [ 137 | "atty", 138 | "bitflags 1.3.2", 139 | "clap_lex", 140 | "indexmap 1.9.3", 141 | "strsim", 142 | "termcolor", 143 | "textwrap", 144 | ] 145 | 146 | [[package]] 147 | name = "clap_lex" 148 | version = "0.2.4" 149 | source = "registry+https://github.com/rust-lang/crates.io-index" 150 | checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 151 | dependencies = [ 152 | "os_str_bytes", 153 | ] 154 | 155 | [[package]] 156 | name = "conclusive" 157 | version = "1.0.0" 158 | dependencies = [ 159 | "argh", 160 | "clap", 161 | "reqwest", 162 | "serde", 163 | "termion", 164 | "tokio", 165 | "tui", 166 | ] 167 | 168 | [[package]] 169 | name = "core-foundation" 170 | version = "0.9.4" 171 | source = "registry+https://github.com/rust-lang/crates.io-index" 172 | checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 173 | dependencies = [ 174 | "core-foundation-sys", 175 | "libc", 176 | ] 177 | 178 | [[package]] 179 | name = "core-foundation-sys" 180 | version = "0.8.6" 181 | source = "registry+https://github.com/rust-lang/crates.io-index" 182 | checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 183 | 184 | [[package]] 185 | name = "encoding_rs" 186 | version = "0.8.33" 187 | source = "registry+https://github.com/rust-lang/crates.io-index" 188 | checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 189 | dependencies = [ 190 | "cfg-if", 191 | ] 192 | 193 | [[package]] 194 | name = "equivalent" 195 | version = "1.0.1" 196 | source = "registry+https://github.com/rust-lang/crates.io-index" 197 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 198 | 199 | [[package]] 200 | name = "errno" 201 | version = "0.3.8" 202 | source = "registry+https://github.com/rust-lang/crates.io-index" 203 | checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" 204 | dependencies = [ 205 | "libc", 206 | "windows-sys 0.52.0", 207 | ] 208 | 209 | [[package]] 210 | name = "fastrand" 211 | version = "2.0.2" 212 | source = "registry+https://github.com/rust-lang/crates.io-index" 213 | checksum = "658bd65b1cf4c852a3cc96f18a8ce7b5640f6b703f905c7d74532294c2a63984" 214 | 215 | [[package]] 216 | name = "fnv" 217 | version = "1.0.7" 218 | source = "registry+https://github.com/rust-lang/crates.io-index" 219 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 220 | 221 | [[package]] 222 | name = "foreign-types" 223 | version = "0.3.2" 224 | source = "registry+https://github.com/rust-lang/crates.io-index" 225 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 226 | dependencies = [ 227 | "foreign-types-shared", 228 | ] 229 | 230 | [[package]] 231 | name = "foreign-types-shared" 232 | version = "0.1.1" 233 | source = "registry+https://github.com/rust-lang/crates.io-index" 234 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 235 | 236 | [[package]] 237 | name = "form_urlencoded" 238 | version = "1.2.1" 239 | source = "registry+https://github.com/rust-lang/crates.io-index" 240 | checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 241 | dependencies = [ 242 | "percent-encoding", 243 | ] 244 | 245 | [[package]] 246 | name = "futures-channel" 247 | version = "0.3.30" 248 | source = "registry+https://github.com/rust-lang/crates.io-index" 249 | checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 250 | dependencies = [ 251 | "futures-core", 252 | ] 253 | 254 | [[package]] 255 | name = "futures-core" 256 | version = "0.3.30" 257 | source = "registry+https://github.com/rust-lang/crates.io-index" 258 | checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 259 | 260 | [[package]] 261 | name = "futures-io" 262 | version = "0.3.30" 263 | source = "registry+https://github.com/rust-lang/crates.io-index" 264 | checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 265 | 266 | [[package]] 267 | name = "futures-sink" 268 | version = "0.3.30" 269 | source = "registry+https://github.com/rust-lang/crates.io-index" 270 | checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 271 | 272 | [[package]] 273 | name = "futures-task" 274 | version = "0.3.30" 275 | source = "registry+https://github.com/rust-lang/crates.io-index" 276 | checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 277 | 278 | [[package]] 279 | name = "futures-util" 280 | version = "0.3.30" 281 | source = "registry+https://github.com/rust-lang/crates.io-index" 282 | checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 283 | dependencies = [ 284 | "futures-core", 285 | "futures-io", 286 | "futures-task", 287 | "memchr", 288 | "pin-project-lite", 289 | "pin-utils", 290 | "slab", 291 | ] 292 | 293 | [[package]] 294 | name = "gimli" 295 | version = "0.28.1" 296 | source = "registry+https://github.com/rust-lang/crates.io-index" 297 | checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 298 | 299 | [[package]] 300 | name = "h2" 301 | version = "0.3.26" 302 | source = "registry+https://github.com/rust-lang/crates.io-index" 303 | checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8" 304 | dependencies = [ 305 | "bytes", 306 | "fnv", 307 | "futures-core", 308 | "futures-sink", 309 | "futures-util", 310 | "http", 311 | "indexmap 2.2.6", 312 | "slab", 313 | "tokio", 314 | "tokio-util", 315 | "tracing", 316 | ] 317 | 318 | [[package]] 319 | name = "hashbrown" 320 | version = "0.12.3" 321 | source = "registry+https://github.com/rust-lang/crates.io-index" 322 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 323 | 324 | [[package]] 325 | name = "hashbrown" 326 | version = "0.14.3" 327 | source = "registry+https://github.com/rust-lang/crates.io-index" 328 | checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 329 | 330 | [[package]] 331 | name = "hermit-abi" 332 | version = "0.1.19" 333 | source = "registry+https://github.com/rust-lang/crates.io-index" 334 | checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 335 | dependencies = [ 336 | "libc", 337 | ] 338 | 339 | [[package]] 340 | name = "hermit-abi" 341 | version = "0.3.9" 342 | source = "registry+https://github.com/rust-lang/crates.io-index" 343 | checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 344 | 345 | [[package]] 346 | name = "http" 347 | version = "0.2.12" 348 | source = "registry+https://github.com/rust-lang/crates.io-index" 349 | checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1" 350 | dependencies = [ 351 | "bytes", 352 | "fnv", 353 | "itoa", 354 | ] 355 | 356 | [[package]] 357 | name = "http-body" 358 | version = "0.4.6" 359 | source = "registry+https://github.com/rust-lang/crates.io-index" 360 | checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 361 | dependencies = [ 362 | "bytes", 363 | "http", 364 | "pin-project-lite", 365 | ] 366 | 367 | [[package]] 368 | name = "httparse" 369 | version = "1.8.0" 370 | source = "registry+https://github.com/rust-lang/crates.io-index" 371 | checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 372 | 373 | [[package]] 374 | name = "httpdate" 375 | version = "1.0.3" 376 | source = "registry+https://github.com/rust-lang/crates.io-index" 377 | checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 378 | 379 | [[package]] 380 | name = "hyper" 381 | version = "0.14.28" 382 | source = "registry+https://github.com/rust-lang/crates.io-index" 383 | checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 384 | dependencies = [ 385 | "bytes", 386 | "futures-channel", 387 | "futures-core", 388 | "futures-util", 389 | "h2", 390 | "http", 391 | "http-body", 392 | "httparse", 393 | "httpdate", 394 | "itoa", 395 | "pin-project-lite", 396 | "socket2", 397 | "tokio", 398 | "tower-service", 399 | "tracing", 400 | "want", 401 | ] 402 | 403 | [[package]] 404 | name = "hyper-tls" 405 | version = "0.5.0" 406 | source = "registry+https://github.com/rust-lang/crates.io-index" 407 | checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 408 | dependencies = [ 409 | "bytes", 410 | "hyper", 411 | "native-tls", 412 | "tokio", 413 | "tokio-native-tls", 414 | ] 415 | 416 | [[package]] 417 | name = "idna" 418 | version = "0.5.0" 419 | source = "registry+https://github.com/rust-lang/crates.io-index" 420 | checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 421 | dependencies = [ 422 | "unicode-bidi", 423 | "unicode-normalization", 424 | ] 425 | 426 | [[package]] 427 | name = "indexmap" 428 | version = "1.9.3" 429 | source = "registry+https://github.com/rust-lang/crates.io-index" 430 | checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 431 | dependencies = [ 432 | "autocfg", 433 | "hashbrown 0.12.3", 434 | ] 435 | 436 | [[package]] 437 | name = "indexmap" 438 | version = "2.2.6" 439 | source = "registry+https://github.com/rust-lang/crates.io-index" 440 | checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26" 441 | dependencies = [ 442 | "equivalent", 443 | "hashbrown 0.14.3", 444 | ] 445 | 446 | [[package]] 447 | name = "ipnet" 448 | version = "2.9.0" 449 | source = "registry+https://github.com/rust-lang/crates.io-index" 450 | checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 451 | 452 | [[package]] 453 | name = "itoa" 454 | version = "1.0.11" 455 | source = "registry+https://github.com/rust-lang/crates.io-index" 456 | checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 457 | 458 | [[package]] 459 | name = "js-sys" 460 | version = "0.3.69" 461 | source = "registry+https://github.com/rust-lang/crates.io-index" 462 | checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 463 | dependencies = [ 464 | "wasm-bindgen", 465 | ] 466 | 467 | [[package]] 468 | name = "lazy_static" 469 | version = "1.4.0" 470 | source = "registry+https://github.com/rust-lang/crates.io-index" 471 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 472 | 473 | [[package]] 474 | name = "libc" 475 | version = "0.2.153" 476 | source = "registry+https://github.com/rust-lang/crates.io-index" 477 | checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" 478 | 479 | [[package]] 480 | name = "linux-raw-sys" 481 | version = "0.4.13" 482 | source = "registry+https://github.com/rust-lang/crates.io-index" 483 | checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" 484 | 485 | [[package]] 486 | name = "lock_api" 487 | version = "0.4.11" 488 | source = "registry+https://github.com/rust-lang/crates.io-index" 489 | checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 490 | dependencies = [ 491 | "autocfg", 492 | "scopeguard", 493 | ] 494 | 495 | [[package]] 496 | name = "log" 497 | version = "0.4.21" 498 | source = "registry+https://github.com/rust-lang/crates.io-index" 499 | checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 500 | 501 | [[package]] 502 | name = "memchr" 503 | version = "2.7.2" 504 | source = "registry+https://github.com/rust-lang/crates.io-index" 505 | checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d" 506 | 507 | [[package]] 508 | name = "mime" 509 | version = "0.3.17" 510 | source = "registry+https://github.com/rust-lang/crates.io-index" 511 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 512 | 513 | [[package]] 514 | name = "miniz_oxide" 515 | version = "0.7.2" 516 | source = "registry+https://github.com/rust-lang/crates.io-index" 517 | checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" 518 | dependencies = [ 519 | "adler", 520 | ] 521 | 522 | [[package]] 523 | name = "mio" 524 | version = "0.8.11" 525 | source = "registry+https://github.com/rust-lang/crates.io-index" 526 | checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c" 527 | dependencies = [ 528 | "libc", 529 | "wasi", 530 | "windows-sys 0.48.0", 531 | ] 532 | 533 | [[package]] 534 | name = "native-tls" 535 | version = "0.2.11" 536 | source = "registry+https://github.com/rust-lang/crates.io-index" 537 | checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 538 | dependencies = [ 539 | "lazy_static", 540 | "libc", 541 | "log", 542 | "openssl", 543 | "openssl-probe", 544 | "openssl-sys", 545 | "schannel", 546 | "security-framework", 547 | "security-framework-sys", 548 | "tempfile", 549 | ] 550 | 551 | [[package]] 552 | name = "num_cpus" 553 | version = "1.16.0" 554 | source = "registry+https://github.com/rust-lang/crates.io-index" 555 | checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 556 | dependencies = [ 557 | "hermit-abi 0.3.9", 558 | "libc", 559 | ] 560 | 561 | [[package]] 562 | name = "numtoa" 563 | version = "0.1.0" 564 | source = "registry+https://github.com/rust-lang/crates.io-index" 565 | checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef" 566 | 567 | [[package]] 568 | name = "object" 569 | version = "0.32.2" 570 | source = "registry+https://github.com/rust-lang/crates.io-index" 571 | checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 572 | dependencies = [ 573 | "memchr", 574 | ] 575 | 576 | [[package]] 577 | name = "once_cell" 578 | version = "1.19.0" 579 | source = "registry+https://github.com/rust-lang/crates.io-index" 580 | checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 581 | 582 | [[package]] 583 | name = "openssl" 584 | version = "0.10.72" 585 | source = "registry+https://github.com/rust-lang/crates.io-index" 586 | checksum = "fedfea7d58a1f73118430a55da6a286e7b044961736ce96a16a17068ea25e5da" 587 | dependencies = [ 588 | "bitflags 2.5.0", 589 | "cfg-if", 590 | "foreign-types", 591 | "libc", 592 | "once_cell", 593 | "openssl-macros", 594 | "openssl-sys", 595 | ] 596 | 597 | [[package]] 598 | name = "openssl-macros" 599 | version = "0.1.1" 600 | source = "registry+https://github.com/rust-lang/crates.io-index" 601 | checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 602 | dependencies = [ 603 | "proc-macro2", 604 | "quote", 605 | "syn", 606 | ] 607 | 608 | [[package]] 609 | name = "openssl-probe" 610 | version = "0.1.5" 611 | source = "registry+https://github.com/rust-lang/crates.io-index" 612 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 613 | 614 | [[package]] 615 | name = "openssl-sys" 616 | version = "0.9.107" 617 | source = "registry+https://github.com/rust-lang/crates.io-index" 618 | checksum = "8288979acd84749c744a9014b4382d42b8f7b2592847b5afb2ed29e5d16ede07" 619 | dependencies = [ 620 | "cc", 621 | "libc", 622 | "pkg-config", 623 | "vcpkg", 624 | ] 625 | 626 | [[package]] 627 | name = "os_str_bytes" 628 | version = "6.6.1" 629 | source = "registry+https://github.com/rust-lang/crates.io-index" 630 | checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1" 631 | 632 | [[package]] 633 | name = "parking_lot" 634 | version = "0.12.1" 635 | source = "registry+https://github.com/rust-lang/crates.io-index" 636 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 637 | dependencies = [ 638 | "lock_api", 639 | "parking_lot_core", 640 | ] 641 | 642 | [[package]] 643 | name = "parking_lot_core" 644 | version = "0.9.9" 645 | source = "registry+https://github.com/rust-lang/crates.io-index" 646 | checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 647 | dependencies = [ 648 | "cfg-if", 649 | "libc", 650 | "redox_syscall 0.4.1", 651 | "smallvec", 652 | "windows-targets 0.48.5", 653 | ] 654 | 655 | [[package]] 656 | name = "percent-encoding" 657 | version = "2.3.1" 658 | source = "registry+https://github.com/rust-lang/crates.io-index" 659 | checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 660 | 661 | [[package]] 662 | name = "pin-project-lite" 663 | version = "0.2.14" 664 | source = "registry+https://github.com/rust-lang/crates.io-index" 665 | checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" 666 | 667 | [[package]] 668 | name = "pin-utils" 669 | version = "0.1.0" 670 | source = "registry+https://github.com/rust-lang/crates.io-index" 671 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 672 | 673 | [[package]] 674 | name = "pkg-config" 675 | version = "0.3.30" 676 | source = "registry+https://github.com/rust-lang/crates.io-index" 677 | checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" 678 | 679 | [[package]] 680 | name = "proc-macro2" 681 | version = "1.0.79" 682 | source = "registry+https://github.com/rust-lang/crates.io-index" 683 | checksum = "e835ff2298f5721608eb1a980ecaee1aef2c132bf95ecc026a11b7bf3c01c02e" 684 | dependencies = [ 685 | "unicode-ident", 686 | ] 687 | 688 | [[package]] 689 | name = "quote" 690 | version = "1.0.35" 691 | source = "registry+https://github.com/rust-lang/crates.io-index" 692 | checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 693 | dependencies = [ 694 | "proc-macro2", 695 | ] 696 | 697 | [[package]] 698 | name = "redox_syscall" 699 | version = "0.2.16" 700 | source = "registry+https://github.com/rust-lang/crates.io-index" 701 | checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 702 | dependencies = [ 703 | "bitflags 1.3.2", 704 | ] 705 | 706 | [[package]] 707 | name = "redox_syscall" 708 | version = "0.4.1" 709 | source = "registry+https://github.com/rust-lang/crates.io-index" 710 | checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 711 | dependencies = [ 712 | "bitflags 1.3.2", 713 | ] 714 | 715 | [[package]] 716 | name = "redox_termios" 717 | version = "0.1.3" 718 | source = "registry+https://github.com/rust-lang/crates.io-index" 719 | checksum = "20145670ba436b55d91fc92d25e71160fbfbdd57831631c8d7d36377a476f1cb" 720 | 721 | [[package]] 722 | name = "reqwest" 723 | version = "0.11.27" 724 | source = "registry+https://github.com/rust-lang/crates.io-index" 725 | checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62" 726 | dependencies = [ 727 | "base64", 728 | "bytes", 729 | "encoding_rs", 730 | "futures-core", 731 | "futures-util", 732 | "h2", 733 | "http", 734 | "http-body", 735 | "hyper", 736 | "hyper-tls", 737 | "ipnet", 738 | "js-sys", 739 | "log", 740 | "mime", 741 | "native-tls", 742 | "once_cell", 743 | "percent-encoding", 744 | "pin-project-lite", 745 | "rustls-pemfile", 746 | "serde", 747 | "serde_json", 748 | "serde_urlencoded", 749 | "sync_wrapper", 750 | "system-configuration", 751 | "tokio", 752 | "tokio-native-tls", 753 | "tower-service", 754 | "url", 755 | "wasm-bindgen", 756 | "wasm-bindgen-futures", 757 | "web-sys", 758 | "winreg", 759 | ] 760 | 761 | [[package]] 762 | name = "rustc-demangle" 763 | version = "0.1.23" 764 | source = "registry+https://github.com/rust-lang/crates.io-index" 765 | checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 766 | 767 | [[package]] 768 | name = "rustix" 769 | version = "0.38.32" 770 | source = "registry+https://github.com/rust-lang/crates.io-index" 771 | checksum = "65e04861e65f21776e67888bfbea442b3642beaa0138fdb1dd7a84a52dffdb89" 772 | dependencies = [ 773 | "bitflags 2.5.0", 774 | "errno", 775 | "libc", 776 | "linux-raw-sys", 777 | "windows-sys 0.52.0", 778 | ] 779 | 780 | [[package]] 781 | name = "rustls-pemfile" 782 | version = "1.0.4" 783 | source = "registry+https://github.com/rust-lang/crates.io-index" 784 | checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 785 | dependencies = [ 786 | "base64", 787 | ] 788 | 789 | [[package]] 790 | name = "ryu" 791 | version = "1.0.17" 792 | source = "registry+https://github.com/rust-lang/crates.io-index" 793 | checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1" 794 | 795 | [[package]] 796 | name = "schannel" 797 | version = "0.1.23" 798 | source = "registry+https://github.com/rust-lang/crates.io-index" 799 | checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534" 800 | dependencies = [ 801 | "windows-sys 0.52.0", 802 | ] 803 | 804 | [[package]] 805 | name = "scopeguard" 806 | version = "1.2.0" 807 | source = "registry+https://github.com/rust-lang/crates.io-index" 808 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 809 | 810 | [[package]] 811 | name = "security-framework" 812 | version = "2.10.0" 813 | source = "registry+https://github.com/rust-lang/crates.io-index" 814 | checksum = "770452e37cad93e0a50d5abc3990d2bc351c36d0328f86cefec2f2fb206eaef6" 815 | dependencies = [ 816 | "bitflags 1.3.2", 817 | "core-foundation", 818 | "core-foundation-sys", 819 | "libc", 820 | "security-framework-sys", 821 | ] 822 | 823 | [[package]] 824 | name = "security-framework-sys" 825 | version = "2.10.0" 826 | source = "registry+https://github.com/rust-lang/crates.io-index" 827 | checksum = "41f3cc463c0ef97e11c3461a9d3787412d30e8e7eb907c79180c4a57bf7c04ef" 828 | dependencies = [ 829 | "core-foundation-sys", 830 | "libc", 831 | ] 832 | 833 | [[package]] 834 | name = "serde" 835 | version = "1.0.197" 836 | source = "registry+https://github.com/rust-lang/crates.io-index" 837 | checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" 838 | dependencies = [ 839 | "serde_derive", 840 | ] 841 | 842 | [[package]] 843 | name = "serde_derive" 844 | version = "1.0.197" 845 | source = "registry+https://github.com/rust-lang/crates.io-index" 846 | checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" 847 | dependencies = [ 848 | "proc-macro2", 849 | "quote", 850 | "syn", 851 | ] 852 | 853 | [[package]] 854 | name = "serde_json" 855 | version = "1.0.115" 856 | source = "registry+https://github.com/rust-lang/crates.io-index" 857 | checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd" 858 | dependencies = [ 859 | "itoa", 860 | "ryu", 861 | "serde", 862 | ] 863 | 864 | [[package]] 865 | name = "serde_urlencoded" 866 | version = "0.7.1" 867 | source = "registry+https://github.com/rust-lang/crates.io-index" 868 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 869 | dependencies = [ 870 | "form_urlencoded", 871 | "itoa", 872 | "ryu", 873 | "serde", 874 | ] 875 | 876 | [[package]] 877 | name = "signal-hook-registry" 878 | version = "1.4.1" 879 | source = "registry+https://github.com/rust-lang/crates.io-index" 880 | checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 881 | dependencies = [ 882 | "libc", 883 | ] 884 | 885 | [[package]] 886 | name = "slab" 887 | version = "0.4.9" 888 | source = "registry+https://github.com/rust-lang/crates.io-index" 889 | checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 890 | dependencies = [ 891 | "autocfg", 892 | ] 893 | 894 | [[package]] 895 | name = "smallvec" 896 | version = "1.13.2" 897 | source = "registry+https://github.com/rust-lang/crates.io-index" 898 | checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 899 | 900 | [[package]] 901 | name = "socket2" 902 | version = "0.5.6" 903 | source = "registry+https://github.com/rust-lang/crates.io-index" 904 | checksum = "05ffd9c0a93b7543e062e759284fcf5f5e3b098501104bfbdde4d404db792871" 905 | dependencies = [ 906 | "libc", 907 | "windows-sys 0.52.0", 908 | ] 909 | 910 | [[package]] 911 | name = "strsim" 912 | version = "0.10.0" 913 | source = "registry+https://github.com/rust-lang/crates.io-index" 914 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 915 | 916 | [[package]] 917 | name = "syn" 918 | version = "2.0.57" 919 | source = "registry+https://github.com/rust-lang/crates.io-index" 920 | checksum = "11a6ae1e52eb25aab8f3fb9fca13be982a373b8f1157ca14b897a825ba4a2d35" 921 | dependencies = [ 922 | "proc-macro2", 923 | "quote", 924 | "unicode-ident", 925 | ] 926 | 927 | [[package]] 928 | name = "sync_wrapper" 929 | version = "0.1.2" 930 | source = "registry+https://github.com/rust-lang/crates.io-index" 931 | checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" 932 | 933 | [[package]] 934 | name = "system-configuration" 935 | version = "0.5.1" 936 | source = "registry+https://github.com/rust-lang/crates.io-index" 937 | checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 938 | dependencies = [ 939 | "bitflags 1.3.2", 940 | "core-foundation", 941 | "system-configuration-sys", 942 | ] 943 | 944 | [[package]] 945 | name = "system-configuration-sys" 946 | version = "0.5.0" 947 | source = "registry+https://github.com/rust-lang/crates.io-index" 948 | checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 949 | dependencies = [ 950 | "core-foundation-sys", 951 | "libc", 952 | ] 953 | 954 | [[package]] 955 | name = "tempfile" 956 | version = "3.10.1" 957 | source = "registry+https://github.com/rust-lang/crates.io-index" 958 | checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1" 959 | dependencies = [ 960 | "cfg-if", 961 | "fastrand", 962 | "rustix", 963 | "windows-sys 0.52.0", 964 | ] 965 | 966 | [[package]] 967 | name = "termcolor" 968 | version = "1.4.1" 969 | source = "registry+https://github.com/rust-lang/crates.io-index" 970 | checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755" 971 | dependencies = [ 972 | "winapi-util", 973 | ] 974 | 975 | [[package]] 976 | name = "termion" 977 | version = "1.5.6" 978 | source = "registry+https://github.com/rust-lang/crates.io-index" 979 | checksum = "077185e2eac69c3f8379a4298e1e07cd36beb962290d4a51199acf0fdc10607e" 980 | dependencies = [ 981 | "libc", 982 | "numtoa", 983 | "redox_syscall 0.2.16", 984 | "redox_termios", 985 | ] 986 | 987 | [[package]] 988 | name = "textwrap" 989 | version = "0.16.1" 990 | source = "registry+https://github.com/rust-lang/crates.io-index" 991 | checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9" 992 | 993 | [[package]] 994 | name = "tinyvec" 995 | version = "1.6.0" 996 | source = "registry+https://github.com/rust-lang/crates.io-index" 997 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 998 | dependencies = [ 999 | "tinyvec_macros", 1000 | ] 1001 | 1002 | [[package]] 1003 | name = "tinyvec_macros" 1004 | version = "0.1.1" 1005 | source = "registry+https://github.com/rust-lang/crates.io-index" 1006 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1007 | 1008 | [[package]] 1009 | name = "tokio" 1010 | version = "1.38.2" 1011 | source = "registry+https://github.com/rust-lang/crates.io-index" 1012 | checksum = "68722da18b0fc4a05fdc1120b302b82051265792a1e1b399086e9b204b10ad3d" 1013 | dependencies = [ 1014 | "backtrace", 1015 | "bytes", 1016 | "libc", 1017 | "mio", 1018 | "num_cpus", 1019 | "parking_lot", 1020 | "pin-project-lite", 1021 | "signal-hook-registry", 1022 | "socket2", 1023 | "tokio-macros", 1024 | "windows-sys 0.48.0", 1025 | ] 1026 | 1027 | [[package]] 1028 | name = "tokio-macros" 1029 | version = "2.3.0" 1030 | source = "registry+https://github.com/rust-lang/crates.io-index" 1031 | checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" 1032 | dependencies = [ 1033 | "proc-macro2", 1034 | "quote", 1035 | "syn", 1036 | ] 1037 | 1038 | [[package]] 1039 | name = "tokio-native-tls" 1040 | version = "0.3.1" 1041 | source = "registry+https://github.com/rust-lang/crates.io-index" 1042 | checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 1043 | dependencies = [ 1044 | "native-tls", 1045 | "tokio", 1046 | ] 1047 | 1048 | [[package]] 1049 | name = "tokio-util" 1050 | version = "0.7.10" 1051 | source = "registry+https://github.com/rust-lang/crates.io-index" 1052 | checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 1053 | dependencies = [ 1054 | "bytes", 1055 | "futures-core", 1056 | "futures-sink", 1057 | "pin-project-lite", 1058 | "tokio", 1059 | "tracing", 1060 | ] 1061 | 1062 | [[package]] 1063 | name = "tower-service" 1064 | version = "0.3.2" 1065 | source = "registry+https://github.com/rust-lang/crates.io-index" 1066 | checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 1067 | 1068 | [[package]] 1069 | name = "tracing" 1070 | version = "0.1.40" 1071 | source = "registry+https://github.com/rust-lang/crates.io-index" 1072 | checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 1073 | dependencies = [ 1074 | "pin-project-lite", 1075 | "tracing-core", 1076 | ] 1077 | 1078 | [[package]] 1079 | name = "tracing-core" 1080 | version = "0.1.32" 1081 | source = "registry+https://github.com/rust-lang/crates.io-index" 1082 | checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 1083 | dependencies = [ 1084 | "once_cell", 1085 | ] 1086 | 1087 | [[package]] 1088 | name = "try-lock" 1089 | version = "0.2.5" 1090 | source = "registry+https://github.com/rust-lang/crates.io-index" 1091 | checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1092 | 1093 | [[package]] 1094 | name = "tui" 1095 | version = "0.18.0" 1096 | source = "registry+https://github.com/rust-lang/crates.io-index" 1097 | checksum = "96fe69244ec2af261bced1d9046a6fee6c8c2a6b0228e59e5ba39bc8ba4ed729" 1098 | dependencies = [ 1099 | "bitflags 1.3.2", 1100 | "cassowary", 1101 | "termion", 1102 | "unicode-segmentation", 1103 | "unicode-width", 1104 | ] 1105 | 1106 | [[package]] 1107 | name = "unicode-bidi" 1108 | version = "0.3.15" 1109 | source = "registry+https://github.com/rust-lang/crates.io-index" 1110 | checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" 1111 | 1112 | [[package]] 1113 | name = "unicode-ident" 1114 | version = "1.0.12" 1115 | source = "registry+https://github.com/rust-lang/crates.io-index" 1116 | checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 1117 | 1118 | [[package]] 1119 | name = "unicode-normalization" 1120 | version = "0.1.23" 1121 | source = "registry+https://github.com/rust-lang/crates.io-index" 1122 | checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" 1123 | dependencies = [ 1124 | "tinyvec", 1125 | ] 1126 | 1127 | [[package]] 1128 | name = "unicode-segmentation" 1129 | version = "1.11.0" 1130 | source = "registry+https://github.com/rust-lang/crates.io-index" 1131 | checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" 1132 | 1133 | [[package]] 1134 | name = "unicode-width" 1135 | version = "0.1.11" 1136 | source = "registry+https://github.com/rust-lang/crates.io-index" 1137 | checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85" 1138 | 1139 | [[package]] 1140 | name = "url" 1141 | version = "2.5.0" 1142 | source = "registry+https://github.com/rust-lang/crates.io-index" 1143 | checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 1144 | dependencies = [ 1145 | "form_urlencoded", 1146 | "idna", 1147 | "percent-encoding", 1148 | ] 1149 | 1150 | [[package]] 1151 | name = "vcpkg" 1152 | version = "0.2.15" 1153 | source = "registry+https://github.com/rust-lang/crates.io-index" 1154 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 1155 | 1156 | [[package]] 1157 | name = "want" 1158 | version = "0.3.1" 1159 | source = "registry+https://github.com/rust-lang/crates.io-index" 1160 | checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 1161 | dependencies = [ 1162 | "try-lock", 1163 | ] 1164 | 1165 | [[package]] 1166 | name = "wasi" 1167 | version = "0.11.0+wasi-snapshot-preview1" 1168 | source = "registry+https://github.com/rust-lang/crates.io-index" 1169 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1170 | 1171 | [[package]] 1172 | name = "wasm-bindgen" 1173 | version = "0.2.92" 1174 | source = "registry+https://github.com/rust-lang/crates.io-index" 1175 | checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 1176 | dependencies = [ 1177 | "cfg-if", 1178 | "wasm-bindgen-macro", 1179 | ] 1180 | 1181 | [[package]] 1182 | name = "wasm-bindgen-backend" 1183 | version = "0.2.92" 1184 | source = "registry+https://github.com/rust-lang/crates.io-index" 1185 | checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 1186 | dependencies = [ 1187 | "bumpalo", 1188 | "log", 1189 | "once_cell", 1190 | "proc-macro2", 1191 | "quote", 1192 | "syn", 1193 | "wasm-bindgen-shared", 1194 | ] 1195 | 1196 | [[package]] 1197 | name = "wasm-bindgen-futures" 1198 | version = "0.4.42" 1199 | source = "registry+https://github.com/rust-lang/crates.io-index" 1200 | checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0" 1201 | dependencies = [ 1202 | "cfg-if", 1203 | "js-sys", 1204 | "wasm-bindgen", 1205 | "web-sys", 1206 | ] 1207 | 1208 | [[package]] 1209 | name = "wasm-bindgen-macro" 1210 | version = "0.2.92" 1211 | source = "registry+https://github.com/rust-lang/crates.io-index" 1212 | checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 1213 | dependencies = [ 1214 | "quote", 1215 | "wasm-bindgen-macro-support", 1216 | ] 1217 | 1218 | [[package]] 1219 | name = "wasm-bindgen-macro-support" 1220 | version = "0.2.92" 1221 | source = "registry+https://github.com/rust-lang/crates.io-index" 1222 | checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 1223 | dependencies = [ 1224 | "proc-macro2", 1225 | "quote", 1226 | "syn", 1227 | "wasm-bindgen-backend", 1228 | "wasm-bindgen-shared", 1229 | ] 1230 | 1231 | [[package]] 1232 | name = "wasm-bindgen-shared" 1233 | version = "0.2.92" 1234 | source = "registry+https://github.com/rust-lang/crates.io-index" 1235 | checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 1236 | 1237 | [[package]] 1238 | name = "web-sys" 1239 | version = "0.3.69" 1240 | source = "registry+https://github.com/rust-lang/crates.io-index" 1241 | checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef" 1242 | dependencies = [ 1243 | "js-sys", 1244 | "wasm-bindgen", 1245 | ] 1246 | 1247 | [[package]] 1248 | name = "winapi" 1249 | version = "0.3.9" 1250 | source = "registry+https://github.com/rust-lang/crates.io-index" 1251 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1252 | dependencies = [ 1253 | "winapi-i686-pc-windows-gnu", 1254 | "winapi-x86_64-pc-windows-gnu", 1255 | ] 1256 | 1257 | [[package]] 1258 | name = "winapi-i686-pc-windows-gnu" 1259 | version = "0.4.0" 1260 | source = "registry+https://github.com/rust-lang/crates.io-index" 1261 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1262 | 1263 | [[package]] 1264 | name = "winapi-util" 1265 | version = "0.1.6" 1266 | source = "registry+https://github.com/rust-lang/crates.io-index" 1267 | checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 1268 | dependencies = [ 1269 | "winapi", 1270 | ] 1271 | 1272 | [[package]] 1273 | name = "winapi-x86_64-pc-windows-gnu" 1274 | version = "0.4.0" 1275 | source = "registry+https://github.com/rust-lang/crates.io-index" 1276 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1277 | 1278 | [[package]] 1279 | name = "windows-sys" 1280 | version = "0.48.0" 1281 | source = "registry+https://github.com/rust-lang/crates.io-index" 1282 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1283 | dependencies = [ 1284 | "windows-targets 0.48.5", 1285 | ] 1286 | 1287 | [[package]] 1288 | name = "windows-sys" 1289 | version = "0.52.0" 1290 | source = "registry+https://github.com/rust-lang/crates.io-index" 1291 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1292 | dependencies = [ 1293 | "windows-targets 0.52.4", 1294 | ] 1295 | 1296 | [[package]] 1297 | name = "windows-targets" 1298 | version = "0.48.5" 1299 | source = "registry+https://github.com/rust-lang/crates.io-index" 1300 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1301 | dependencies = [ 1302 | "windows_aarch64_gnullvm 0.48.5", 1303 | "windows_aarch64_msvc 0.48.5", 1304 | "windows_i686_gnu 0.48.5", 1305 | "windows_i686_msvc 0.48.5", 1306 | "windows_x86_64_gnu 0.48.5", 1307 | "windows_x86_64_gnullvm 0.48.5", 1308 | "windows_x86_64_msvc 0.48.5", 1309 | ] 1310 | 1311 | [[package]] 1312 | name = "windows-targets" 1313 | version = "0.52.4" 1314 | source = "registry+https://github.com/rust-lang/crates.io-index" 1315 | checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" 1316 | dependencies = [ 1317 | "windows_aarch64_gnullvm 0.52.4", 1318 | "windows_aarch64_msvc 0.52.4", 1319 | "windows_i686_gnu 0.52.4", 1320 | "windows_i686_msvc 0.52.4", 1321 | "windows_x86_64_gnu 0.52.4", 1322 | "windows_x86_64_gnullvm 0.52.4", 1323 | "windows_x86_64_msvc 0.52.4", 1324 | ] 1325 | 1326 | [[package]] 1327 | name = "windows_aarch64_gnullvm" 1328 | version = "0.48.5" 1329 | source = "registry+https://github.com/rust-lang/crates.io-index" 1330 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1331 | 1332 | [[package]] 1333 | name = "windows_aarch64_gnullvm" 1334 | version = "0.52.4" 1335 | source = "registry+https://github.com/rust-lang/crates.io-index" 1336 | checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" 1337 | 1338 | [[package]] 1339 | name = "windows_aarch64_msvc" 1340 | version = "0.48.5" 1341 | source = "registry+https://github.com/rust-lang/crates.io-index" 1342 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1343 | 1344 | [[package]] 1345 | name = "windows_aarch64_msvc" 1346 | version = "0.52.4" 1347 | source = "registry+https://github.com/rust-lang/crates.io-index" 1348 | checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" 1349 | 1350 | [[package]] 1351 | name = "windows_i686_gnu" 1352 | version = "0.48.5" 1353 | source = "registry+https://github.com/rust-lang/crates.io-index" 1354 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1355 | 1356 | [[package]] 1357 | name = "windows_i686_gnu" 1358 | version = "0.52.4" 1359 | source = "registry+https://github.com/rust-lang/crates.io-index" 1360 | checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" 1361 | 1362 | [[package]] 1363 | name = "windows_i686_msvc" 1364 | version = "0.48.5" 1365 | source = "registry+https://github.com/rust-lang/crates.io-index" 1366 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1367 | 1368 | [[package]] 1369 | name = "windows_i686_msvc" 1370 | version = "0.52.4" 1371 | source = "registry+https://github.com/rust-lang/crates.io-index" 1372 | checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" 1373 | 1374 | [[package]] 1375 | name = "windows_x86_64_gnu" 1376 | version = "0.48.5" 1377 | source = "registry+https://github.com/rust-lang/crates.io-index" 1378 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1379 | 1380 | [[package]] 1381 | name = "windows_x86_64_gnu" 1382 | version = "0.52.4" 1383 | source = "registry+https://github.com/rust-lang/crates.io-index" 1384 | checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" 1385 | 1386 | [[package]] 1387 | name = "windows_x86_64_gnullvm" 1388 | version = "0.48.5" 1389 | source = "registry+https://github.com/rust-lang/crates.io-index" 1390 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1391 | 1392 | [[package]] 1393 | name = "windows_x86_64_gnullvm" 1394 | version = "0.52.4" 1395 | source = "registry+https://github.com/rust-lang/crates.io-index" 1396 | checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" 1397 | 1398 | [[package]] 1399 | name = "windows_x86_64_msvc" 1400 | version = "0.48.5" 1401 | source = "registry+https://github.com/rust-lang/crates.io-index" 1402 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1403 | 1404 | [[package]] 1405 | name = "windows_x86_64_msvc" 1406 | version = "0.52.4" 1407 | source = "registry+https://github.com/rust-lang/crates.io-index" 1408 | checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" 1409 | 1410 | [[package]] 1411 | name = "winreg" 1412 | version = "0.50.0" 1413 | source = "registry+https://github.com/rust-lang/crates.io-index" 1414 | checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 1415 | dependencies = [ 1416 | "cfg-if", 1417 | "windows-sys 0.48.0", 1418 | ] 1419 | --------------------------------------------------------------------------------