├── .gitignore ├── README.md ├── Cargo.toml ├── src ├── structs.rs ├── lib.rs ├── crawl.rs └── main.rs ├── .woodpecker.yml ├── LICENSE └── Cargo.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | .idea/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Lemmy-Stats-Crawler 2 | 3 | Crawls Lemmy instances using nodeinfo and API endpoints, to generate a list of instances and overall details. 4 | 5 | ## Usage 6 | 7 | lemmy-stats-crawler will discover new instances from other instances, but you have to seed it with a set of initial instances using the `--start-instances` argument. 8 | 9 | ``` 10 | cargo run -- --start-instances baraza.africa,lemmy.ml 11 | ``` 12 | 13 | For a complete list of arguments, use `--help` 14 | 15 | ``` 16 | cargo run -- --help 17 | ``` 18 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "lemmy-stats-crawler" 3 | version = "0.1.0" 4 | authors = ["Felix Ableitner"] 5 | edition = "2018" 6 | 7 | [profile.release] 8 | strip = "symbols" 9 | debug = 0 10 | lto = "thin" 11 | 12 | [profile.dev] 13 | strip = "symbols" 14 | debug = 0 15 | 16 | [dependencies] 17 | lemmy_api_common_v019 = { package = "lemmy_api_common", git = "https://github.com/LemmyNet/lemmy.git", tag = "0.19.0-rc.12" } 18 | reqwest = { version = "0.11.23", default-features = false, features = [ 19 | "json", 20 | "rustls-tls", 21 | ] } 22 | reqwest-middleware = "0.2.4" 23 | reqwest-retry = "0.3.0" 24 | serde = { version = "1.0.193", features = ["derive"] } 25 | anyhow = "1.0.76" 26 | tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] } 27 | serde_json = "1.0.108" 28 | semver = "1.0.20" 29 | once_cell = "1.19.0" 30 | log = "0.4.20" 31 | derive-new = "0.7.0" 32 | stderrlog = "0.6.0" 33 | clap = { version = "4.4", features = ["derive"] } 34 | regex = "1.10.2" 35 | -------------------------------------------------------------------------------- /src/structs.rs: -------------------------------------------------------------------------------- 1 | use serde::{Deserialize, Serialize}; 2 | 3 | #[derive(Deserialize, Serialize, Debug, Clone)] 4 | #[serde(rename_all = "camelCase")] 5 | pub struct NodeInfo { 6 | pub version: String, 7 | pub software: NodeInfoSoftware, 8 | pub protocols: Vec, 9 | pub usage: NodeInfoUsage, 10 | pub open_registrations: bool, 11 | } 12 | 13 | #[derive(Deserialize, Serialize, Debug, Clone)] 14 | pub struct NodeInfoSoftware { 15 | pub name: String, 16 | pub version: String, 17 | } 18 | 19 | #[derive(Deserialize, Serialize, Debug, Clone, Default)] 20 | #[serde(rename_all = "camelCase", default)] 21 | pub struct NodeInfoUsage { 22 | pub users: NodeInfoUsers, 23 | #[serde(rename(deserialize = "localPosts"))] 24 | pub posts: i64, 25 | #[serde(rename(deserialize = "localComments"))] 26 | pub comments: i64, 27 | } 28 | 29 | #[derive(Deserialize, Serialize, Debug, Clone, Default)] 30 | #[serde(rename_all = "camelCase", default)] 31 | pub struct NodeInfoUsers { 32 | pub total: i64, 33 | pub active_halfyear: i64, 34 | pub active_month: i64, 35 | } 36 | -------------------------------------------------------------------------------- /.woodpecker.yml: -------------------------------------------------------------------------------- 1 | variables: 2 | - &rust_image "rust:1.81.0" 3 | 4 | steps: 5 | cargo_fmt: 6 | image: rustdocker/rust:nightly 7 | commands: 8 | - /root/.cargo/bin/cargo fmt -- --check 9 | when: 10 | - event: pull_request 11 | 12 | toml_fmt: 13 | image: tamasfe/taplo:0.9.3 14 | commands: 15 | - taplo format --check 16 | when: 17 | - event: pull_request 18 | 19 | prettier_check: 20 | image: tmknom/prettier:3.2.5 21 | commands: 22 | - prettier -c . 23 | when: 24 | - event: pull_request 25 | 26 | cargo_check: 27 | image: *rust_image 28 | environment: 29 | CARGO_HOME: .cargo 30 | commands: 31 | - cargo check --all-features --all-targets 32 | when: 33 | - event: pull_request 34 | 35 | cargo_clippy: 36 | image: *rust_image 37 | environment: 38 | CARGO_HOME: .cargo 39 | commands: 40 | - rustup component add clippy 41 | - cargo clippy --all-targets --all-features -- 42 | -D warnings -D deprecated -D clippy::perf -D clippy::complexity 43 | -D clippy::dbg_macro 44 | when: 45 | - event: pull_request 46 | 47 | cargo_test: 48 | image: *rust_image 49 | environment: 50 | CARGO_HOME: .cargo 51 | commands: 52 | - cargo test --all-features --no-fail-fast 53 | when: 54 | - event: pull_request 55 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- 1 | #[macro_use] 2 | extern crate derive_new; 3 | 4 | use anyhow::Error; 5 | use crawl::CrawlParams; 6 | use crawl::{CrawlJob, CrawlResult}; 7 | use log::{debug, trace}; 8 | use reqwest::redirect::Policy; 9 | use reqwest_middleware::{ClientBuilder, ClientWithMiddleware}; 10 | use reqwest_retry::{policies::ExponentialBackoff, RetryTransientMiddleware}; 11 | use semver::Version; 12 | use std::collections::HashSet; 13 | use std::sync::Arc; 14 | use std::time::Duration; 15 | use tokio::sync::mpsc::{UnboundedReceiver, WeakUnboundedSender}; 16 | use tokio::sync::{mpsc, Mutex}; 17 | 18 | pub mod crawl; 19 | mod structs; 20 | 21 | fn build_client(timeout: Duration) -> ClientWithMiddleware { 22 | let retry_policy = ExponentialBackoff::builder().build_with_max_retries(3); 23 | let client = reqwest::ClientBuilder::new() 24 | .timeout(timeout) 25 | .connect_timeout(timeout) 26 | .user_agent("lemmy-stats-crawler") 27 | .pool_idle_timeout(Some(Duration::from_millis(100))) 28 | .pool_max_idle_per_host(1) 29 | .redirect(Policy::none()) 30 | .build() 31 | .expect("build reqwest client"); 32 | ClientBuilder::new(client) 33 | .with(RetryTransientMiddleware::new_with_policy(retry_policy)) 34 | .build() 35 | } 36 | 37 | pub async fn start_crawl( 38 | start_instances: Vec, 39 | exclude_domains: Vec, 40 | jobs_count: u32, 41 | max_distance: u8, 42 | timeout: Duration, 43 | ) -> Result, Error> { 44 | let (crawl_jobs_sender, crawl_jobs_receiver) = mpsc::unbounded_channel::(); 45 | let (results_sender, mut results_receiver) = mpsc::unbounded_channel(); 46 | let client = build_client(timeout); 47 | let params = Arc::new(CrawlParams::new( 48 | min_lemmy_version(&client).await?, 49 | exclude_domains.into_iter().collect(), 50 | max_distance, 51 | Mutex::new(HashSet::new()), 52 | results_sender, 53 | client, 54 | )); 55 | 56 | let rcv = Arc::new(Mutex::new(crawl_jobs_receiver)); 57 | let send = crawl_jobs_sender.downgrade(); 58 | for i in 0..jobs_count { 59 | let rcv = rcv.clone(); 60 | let send = send.clone(); 61 | tokio::spawn(background_task(i, send, rcv)); 62 | } 63 | 64 | for domain in start_instances.into_iter() { 65 | let job = CrawlJob::new(domain, 0, params.clone()); 66 | crawl_jobs_sender.send(job).unwrap(); 67 | } 68 | 69 | // give time to start background tasks 70 | tokio::time::sleep(Duration::from_secs(1)).await; 71 | drop(params); 72 | 73 | let mut results = vec![]; 74 | while let Some(res) = results_receiver.recv().await { 75 | results.push(res); 76 | } 77 | 78 | // Sort by active monthly users descending 79 | results.sort_unstable_by_key(|i| i.site_info.site_view.counts.users_active_month); 80 | results.reverse(); 81 | Ok(results) 82 | } 83 | 84 | async fn background_task( 85 | i: u32, 86 | sender: WeakUnboundedSender, 87 | rcv: Arc>>, 88 | ) { 89 | loop { 90 | let maybe_job = { 91 | let mut lock = rcv.lock().await; 92 | lock.recv().await 93 | }; 94 | if let Some(job) = maybe_job { 95 | let domain = job.domain.clone(); 96 | debug!( 97 | "Worker {i} starting job {domain} at distance {}", 98 | job.current_distance 99 | ); 100 | let sender = sender.upgrade().unwrap(); 101 | let res = job.crawl(sender).await; 102 | if let Err(e) = res { 103 | trace!("Job {domain} errored with: {}", e) 104 | } 105 | } else { 106 | return; 107 | } 108 | } 109 | } 110 | 111 | /// calculate minimum allowed lemmy version based on current version. in case of current version 112 | /// 0.16.3, the minimum from this function is 0.15.3. this is to avoid rejecting all instances on 113 | /// the previous version when a major lemmy release is published. 114 | async fn min_lemmy_version(client: &ClientWithMiddleware) -> Result { 115 | let lemmy_version_url = "https://raw.githubusercontent.com/LemmyNet/lemmy-ansible/main/VERSION"; 116 | let req = client.get(lemmy_version_url).send().await?; 117 | let mut version = Version::parse(req.text().await?.trim())?; 118 | version.minor -= 1; 119 | Ok(version) 120 | } 121 | -------------------------------------------------------------------------------- /src/crawl.rs: -------------------------------------------------------------------------------- 1 | use crate::structs::NodeInfo; 2 | use anyhow::{anyhow, Error}; 3 | use lemmy_api_common_v019::site::{GetFederatedInstancesResponse, GetSiteResponse}; 4 | use once_cell::sync::Lazy; 5 | use regex::Regex; 6 | use reqwest_middleware::ClientWithMiddleware; 7 | use semver::Version; 8 | use serde::Serialize; 9 | use std::collections::HashSet; 10 | use std::sync::Arc; 11 | use tokio::join; 12 | use tokio::sync::mpsc::UnboundedSender; 13 | use tokio::sync::Mutex; 14 | 15 | /// Regex to check that a domain is valid 16 | static DOMAIN_REGEX: Lazy = Lazy::new(|| { 17 | Regex::new(r"^([a-z0-9]+(-[a-z0-9]+)*\.)+[a-z]{2,}$").expect("compile domain regex") 18 | }); 19 | 20 | #[derive(new, Debug, Clone)] 21 | pub struct CrawlJob { 22 | pub domain: String, 23 | pub current_distance: u8, 24 | params: Arc, 25 | } 26 | 27 | #[derive(new, Debug)] 28 | pub struct CrawlParams { 29 | min_lemmy_version: Version, 30 | exclude_domains: HashSet, 31 | max_distance: u8, 32 | crawled_instances: Mutex>, 33 | result_sender: UnboundedSender, 34 | client: ClientWithMiddleware, 35 | } 36 | 37 | #[derive(Debug, Serialize)] 38 | pub struct CrawlResult { 39 | pub domain: String, 40 | pub node_info: NodeInfo, 41 | pub site_info: GetSiteResponse, 42 | pub federated_instances: GetFederatedInstancesResponse, 43 | } 44 | 45 | impl CrawlJob { 46 | // TODO: return an enum for crawl states, 47 | pub async fn crawl(self, sender: UnboundedSender) -> Result<(), Error> { 48 | // need to acquire and release mutex before recursing, otherwise it will deadlock 49 | { 50 | let mut crawled_instances = self.params.crawled_instances.lock().await; 51 | // Need this check to avoid instances being crawled multiple times. Actually the 52 | // crawled_instances filter below should take care of that, but its not enough). 53 | if crawled_instances.contains(&self.domain) { 54 | return Ok(()); 55 | } else { 56 | crawled_instances.insert(self.domain.clone()); 57 | } 58 | } 59 | 60 | let (node_info, site_info, federated_instances) = self.fetch_instance_details().await?; 61 | 62 | let version = Version::parse(&site_info.version)?; 63 | if version < self.params.min_lemmy_version { 64 | return Err(anyhow!("too old lemmy version {version}")); 65 | } 66 | 67 | if self.current_distance < self.params.max_distance { 68 | let crawled_instances = self.params.crawled_instances.lock().await; 69 | federated_instances 70 | .federated_instances 71 | .clone() 72 | .map(|f| f.linked) 73 | .unwrap_or_default() 74 | .into_iter() 75 | .filter(|i| !self.params.exclude_domains.contains(&i.instance.domain)) 76 | .filter(|i| !crawled_instances.contains(&i.instance.domain)) 77 | .filter(|i| DOMAIN_REGEX.is_match(&i.instance.domain)) 78 | .map(|i| { 79 | CrawlJob::new( 80 | i.instance.domain, 81 | self.current_distance + 1, 82 | self.params.clone(), 83 | ) 84 | }) 85 | .for_each(|j| sender.send(j).unwrap()); 86 | } 87 | 88 | let crawl_result = CrawlResult { 89 | domain: self.domain.clone(), 90 | node_info, 91 | site_info, 92 | federated_instances, 93 | }; 94 | self.params.result_sender.send(crawl_result).unwrap(); 95 | 96 | Ok(()) 97 | } 98 | 99 | async fn fetch_instance_details( 100 | &self, 101 | ) -> Result<(NodeInfo, GetSiteResponse, GetFederatedInstancesResponse), Error> { 102 | // Lemmy 0.19.4 switched from nodeinfo 2.0 to 2.1 so we try both endpoints. 103 | // Otherwise we would have to get the correct url from .well-known, which would 104 | // require a separate request that can't be parallelized. 105 | let node_info_20 = self 106 | .params 107 | .client 108 | .get(format!("https://{}/nodeinfo/2.0.json", &self.domain)) 109 | .send(); 110 | let node_info_21 = self 111 | .params 112 | .client 113 | .get(format!("https://{}/nodeinfo/2.1", &self.domain)) 114 | .send(); 115 | let site_info = self 116 | .params 117 | .client 118 | .get(format!("https://{}/api/v3/site", &self.domain)) 119 | .send(); 120 | let federated_instances = self 121 | .params 122 | .client 123 | .get(format!( 124 | "https://{}/api/v3/federated_instances", 125 | &self.domain 126 | )) 127 | .send(); 128 | 129 | let (node_info_20, node_info_21, site_info, federated_instances) = 130 | join!(node_info_20, node_info_21, site_info, federated_instances); 131 | 132 | let node_info = if let Ok(node_info) = node_info_20?.json::().await { 133 | node_info 134 | } else { 135 | node_info_21?.json::().await? 136 | }; 137 | if node_info.software.name != "lemmy" && node_info.software.name != "lemmybb" { 138 | return Err(anyhow!("wrong software {}", node_info.software.name)); 139 | } 140 | 141 | let site_info = site_info?.json::().await?; 142 | let site_actor = &site_info.site_view.site.actor_id; 143 | if site_actor.domain() != Some(&self.domain) { 144 | return Err(anyhow!( 145 | "wrong domain {}, expected {}", 146 | site_actor, 147 | &self.domain 148 | )); 149 | } 150 | 151 | let federated_instances = federated_instances? 152 | .json::() 153 | .await?; 154 | 155 | Ok((node_info, site_info, federated_instances)) 156 | } 157 | } 158 | -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- 1 | use anyhow::Error; 2 | use clap::Parser; 3 | use lemmy_stats_crawler::crawl::CrawlResult; 4 | use lemmy_stats_crawler::start_crawl; 5 | use serde::Serialize; 6 | use std::time::{Duration, Instant}; 7 | 8 | #[derive(Parser)] 9 | pub struct Parameters { 10 | /// List of Lemmy instance domains where the crawl should be started 11 | #[structopt(short, long, use_value_delimiter = true, default_value = "lemmy.ml")] 12 | pub start_instances: Vec, 13 | /// List of Lemmy instance domains which should not be crawled 14 | #[structopt( 15 | short, 16 | long, 17 | use_value_delimiter = true, 18 | default_value = "ds9.lemmy.ml,enterprise.lemmy.ml,voyager.lemmy.ml,test.lemmy.ml" 19 | )] 20 | pub exclude_instances: Vec, 21 | /// Prints output in machine readable JSON format 22 | #[structopt(long)] 23 | json: bool, 24 | /// Maximum crawl distance from start_instances 25 | #[structopt(short, long, default_value = "10")] 26 | pub max_crawl_distance: u8, 27 | /// Number of crawl jobs to run in parallel 28 | #[structopt(short, long, default_value = "100")] 29 | pub jobs_count: u32, 30 | /// Timeout for HTTP requests, in seconds 31 | #[structopt(short, long, default_value = "10")] 32 | pub timeout: u64, 33 | /// Log verbosity, 0 -> Error 1 -> Warn 2 -> Info 3 -> Debug 4 or higher -> Trace 34 | #[structopt(short, long, default_value = "2")] 35 | verbose: usize, 36 | /// Silence all output 37 | #[structopt(short, long)] 38 | quiet: bool, 39 | /// Generate output for joinlemmy, with unneded data filtered out (implies --json) 40 | #[structopt(long)] 41 | joinlemmy_output: bool, 42 | } 43 | 44 | #[tokio::main] 45 | pub async fn main() -> Result<(), Error> { 46 | let params = Parameters::parse(); 47 | stderrlog::new() 48 | .module(module_path!()) 49 | .quiet(params.quiet) 50 | .verbosity(params.verbose) 51 | .init()?; 52 | 53 | eprintln!("Crawling..."); 54 | let start_time = Instant::now(); 55 | let instance_details = start_crawl( 56 | params.start_instances, 57 | params.exclude_instances, 58 | params.jobs_count, 59 | params.max_crawl_distance, 60 | Duration::from_secs(params.timeout), 61 | ) 62 | .await?; 63 | let mut total_stats = aggregate(instance_details); 64 | 65 | if params.joinlemmy_output { 66 | total_stats.instance_details = total_stats 67 | .instance_details 68 | .into_iter() 69 | // Filter out instances with other registration modes (closed dont allow signups and 70 | // open are often abused by bots) 71 | .filter(|i| { 72 | &i.site_info 73 | .site_view 74 | .local_site 75 | .registration_mode 76 | .to_string() 77 | == "RequireApplication" 78 | }) 79 | // Require at least 5 monthly users 80 | .filter(|i| i.site_info.site_view.counts.users_active_month > 5) 81 | // Exclude some unnecessary data to reduce output size 82 | .map(|mut i| { 83 | i.federated_instances.federated_instances = None; 84 | i.site_info.admins = vec![]; 85 | i.site_info.all_languages = vec![]; 86 | i.site_info.discussion_languages = vec![]; 87 | i.site_info.custom_emojis = vec![]; 88 | i.site_info.taglines = vec![]; 89 | i.site_info.site_view.local_site.application_question = None; 90 | i.site_info.site_view.local_site.legal_information = None; 91 | i.site_info.site_view.site.public_key = String::new(); 92 | i 93 | }) 94 | .collect(); 95 | println!("{}", serde_json::to_value(&total_stats)?); 96 | } else if params.json { 97 | println!("{}", serde_json::to_string_pretty(&total_stats)?); 98 | } else { 99 | eprintln!("Crawl complete, took {}s", start_time.elapsed().as_secs()); 100 | eprintln!( 101 | "Number of Lemmy instances: {}", 102 | total_stats.crawled_instances 103 | ); 104 | eprintln!("Total users: {}", total_stats.total_users); 105 | eprintln!( 106 | "Half year active users: {}", 107 | total_stats.users_active_halfyear 108 | ); 109 | eprintln!("Monthly active users: {}", total_stats.users_active_month); 110 | eprintln!("Weekly active users: {}", total_stats.users_active_week); 111 | eprintln!("Daily active users: {}", total_stats.users_active_day); 112 | eprintln!(); 113 | eprintln!("Use --json flag to get machine readable output"); 114 | } 115 | Ok(()) 116 | } 117 | 118 | // TODO: lemmy stores these numbers in SiteAggregates, would be good to simply use that as a member 119 | // (to avoid many members). but SiteAggregates also has id, site_id fields 120 | #[derive(Serialize)] 121 | struct TotalStats { 122 | crawled_instances: i32, 123 | total_users: i64, 124 | users_active_day: i64, 125 | users_active_week: i64, 126 | users_active_month: i64, 127 | users_active_halfyear: i64, 128 | instance_details: Vec, 129 | } 130 | 131 | fn aggregate(instance_details: Vec) -> TotalStats { 132 | let mut total_users = 0; 133 | let mut users_active_day = 0; 134 | let mut users_active_week = 0; 135 | let mut users_active_month = 0; 136 | let mut users_active_halfyear = 0; 137 | let mut crawled_instances = 0; 138 | for i in &instance_details { 139 | crawled_instances += 1; 140 | total_users += i.site_info.site_view.counts.users; 141 | users_active_day += i.site_info.site_view.counts.users_active_day; 142 | users_active_week += i.site_info.site_view.counts.users_active_week; 143 | users_active_month += i.site_info.site_view.counts.users_active_month; 144 | users_active_halfyear += i.site_info.site_view.counts.users_active_half_year; 145 | } 146 | TotalStats { 147 | crawled_instances, 148 | total_users, 149 | users_active_day, 150 | users_active_week, 151 | users_active_halfyear, 152 | users_active_month, 153 | instance_details, 154 | } 155 | } 156 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | version = 3 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 = "aho-corasick" 22 | version = "1.1.2" 23 | source = "registry+https://github.com/rust-lang/crates.io-index" 24 | checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0" 25 | dependencies = [ 26 | "memchr", 27 | ] 28 | 29 | [[package]] 30 | name = "android-tzdata" 31 | version = "0.1.1" 32 | source = "registry+https://github.com/rust-lang/crates.io-index" 33 | checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 34 | 35 | [[package]] 36 | name = "android_system_properties" 37 | version = "0.1.5" 38 | source = "registry+https://github.com/rust-lang/crates.io-index" 39 | checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 40 | dependencies = [ 41 | "libc", 42 | ] 43 | 44 | [[package]] 45 | name = "anstream" 46 | version = "0.6.14" 47 | source = "registry+https://github.com/rust-lang/crates.io-index" 48 | checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b" 49 | dependencies = [ 50 | "anstyle", 51 | "anstyle-parse", 52 | "anstyle-query", 53 | "anstyle-wincon", 54 | "colorchoice", 55 | "is_terminal_polyfill", 56 | "utf8parse", 57 | ] 58 | 59 | [[package]] 60 | name = "anstyle" 61 | version = "1.0.8" 62 | source = "registry+https://github.com/rust-lang/crates.io-index" 63 | checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1" 64 | 65 | [[package]] 66 | name = "anstyle-parse" 67 | version = "0.2.3" 68 | source = "registry+https://github.com/rust-lang/crates.io-index" 69 | checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" 70 | dependencies = [ 71 | "utf8parse", 72 | ] 73 | 74 | [[package]] 75 | name = "anstyle-query" 76 | version = "1.0.2" 77 | source = "registry+https://github.com/rust-lang/crates.io-index" 78 | checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" 79 | dependencies = [ 80 | "windows-sys 0.52.0", 81 | ] 82 | 83 | [[package]] 84 | name = "anstyle-wincon" 85 | version = "3.0.2" 86 | source = "registry+https://github.com/rust-lang/crates.io-index" 87 | checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" 88 | dependencies = [ 89 | "anstyle", 90 | "windows-sys 0.52.0", 91 | ] 92 | 93 | [[package]] 94 | name = "anyhow" 95 | version = "1.0.89" 96 | source = "registry+https://github.com/rust-lang/crates.io-index" 97 | checksum = "86fdf8605db99b54d3cd748a44c6d04df638eb5dafb219b135d0149bd0db01f6" 98 | 99 | [[package]] 100 | name = "async-trait" 101 | version = "0.1.75" 102 | source = "registry+https://github.com/rust-lang/crates.io-index" 103 | checksum = "fdf6721fb0140e4f897002dd086c06f6c27775df19cfe1fccb21181a48fd2c98" 104 | dependencies = [ 105 | "proc-macro2", 106 | "quote", 107 | "syn", 108 | ] 109 | 110 | [[package]] 111 | name = "autocfg" 112 | version = "1.1.0" 113 | source = "registry+https://github.com/rust-lang/crates.io-index" 114 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 115 | 116 | [[package]] 117 | name = "backtrace" 118 | version = "0.3.69" 119 | source = "registry+https://github.com/rust-lang/crates.io-index" 120 | checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 121 | dependencies = [ 122 | "addr2line", 123 | "cc", 124 | "cfg-if", 125 | "libc", 126 | "miniz_oxide", 127 | "object", 128 | "rustc-demangle", 129 | ] 130 | 131 | [[package]] 132 | name = "base64" 133 | version = "0.21.5" 134 | source = "registry+https://github.com/rust-lang/crates.io-index" 135 | checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 136 | 137 | [[package]] 138 | name = "bitflags" 139 | version = "1.3.2" 140 | source = "registry+https://github.com/rust-lang/crates.io-index" 141 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 142 | 143 | [[package]] 144 | name = "bumpalo" 145 | version = "3.14.0" 146 | source = "registry+https://github.com/rust-lang/crates.io-index" 147 | checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 148 | 149 | [[package]] 150 | name = "bytes" 151 | version = "1.5.0" 152 | source = "registry+https://github.com/rust-lang/crates.io-index" 153 | checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 154 | 155 | [[package]] 156 | name = "cc" 157 | version = "1.0.83" 158 | source = "registry+https://github.com/rust-lang/crates.io-index" 159 | checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 160 | dependencies = [ 161 | "libc", 162 | ] 163 | 164 | [[package]] 165 | name = "cfg-if" 166 | version = "1.0.0" 167 | source = "registry+https://github.com/rust-lang/crates.io-index" 168 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 169 | 170 | [[package]] 171 | name = "chrono" 172 | version = "0.4.31" 173 | source = "registry+https://github.com/rust-lang/crates.io-index" 174 | checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 175 | dependencies = [ 176 | "android-tzdata", 177 | "iana-time-zone", 178 | "js-sys", 179 | "num-traits", 180 | "serde", 181 | "wasm-bindgen", 182 | "windows-targets 0.48.5", 183 | ] 184 | 185 | [[package]] 186 | name = "clap" 187 | version = "4.5.19" 188 | source = "registry+https://github.com/rust-lang/crates.io-index" 189 | checksum = "7be5744db7978a28d9df86a214130d106a89ce49644cbc4e3f0c22c3fba30615" 190 | dependencies = [ 191 | "clap_builder", 192 | "clap_derive", 193 | ] 194 | 195 | [[package]] 196 | name = "clap_builder" 197 | version = "4.5.19" 198 | source = "registry+https://github.com/rust-lang/crates.io-index" 199 | checksum = "a5fbc17d3ef8278f55b282b2a2e75ae6f6c7d4bb70ed3d0382375104bfafdb4b" 200 | dependencies = [ 201 | "anstream", 202 | "anstyle", 203 | "clap_lex", 204 | "strsim 0.11.1", 205 | ] 206 | 207 | [[package]] 208 | name = "clap_derive" 209 | version = "4.5.18" 210 | source = "registry+https://github.com/rust-lang/crates.io-index" 211 | checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab" 212 | dependencies = [ 213 | "heck 0.5.0", 214 | "proc-macro2", 215 | "quote", 216 | "syn", 217 | ] 218 | 219 | [[package]] 220 | name = "clap_lex" 221 | version = "0.7.1" 222 | source = "registry+https://github.com/rust-lang/crates.io-index" 223 | checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70" 224 | 225 | [[package]] 226 | name = "colorchoice" 227 | version = "1.0.0" 228 | source = "registry+https://github.com/rust-lang/crates.io-index" 229 | checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" 230 | 231 | [[package]] 232 | name = "core-foundation" 233 | version = "0.9.4" 234 | source = "registry+https://github.com/rust-lang/crates.io-index" 235 | checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" 236 | dependencies = [ 237 | "core-foundation-sys", 238 | "libc", 239 | ] 240 | 241 | [[package]] 242 | name = "core-foundation-sys" 243 | version = "0.8.6" 244 | source = "registry+https://github.com/rust-lang/crates.io-index" 245 | checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" 246 | 247 | [[package]] 248 | name = "darling" 249 | version = "0.20.3" 250 | source = "registry+https://github.com/rust-lang/crates.io-index" 251 | checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e" 252 | dependencies = [ 253 | "darling_core", 254 | "darling_macro", 255 | ] 256 | 257 | [[package]] 258 | name = "darling_core" 259 | version = "0.20.3" 260 | source = "registry+https://github.com/rust-lang/crates.io-index" 261 | checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621" 262 | dependencies = [ 263 | "fnv", 264 | "ident_case", 265 | "proc-macro2", 266 | "quote", 267 | "strsim 0.10.0", 268 | "syn", 269 | ] 270 | 271 | [[package]] 272 | name = "darling_macro" 273 | version = "0.20.3" 274 | source = "registry+https://github.com/rust-lang/crates.io-index" 275 | checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5" 276 | dependencies = [ 277 | "darling_core", 278 | "quote", 279 | "syn", 280 | ] 281 | 282 | [[package]] 283 | name = "deranged" 284 | version = "0.3.10" 285 | source = "registry+https://github.com/rust-lang/crates.io-index" 286 | checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc" 287 | dependencies = [ 288 | "powerfmt", 289 | "serde", 290 | ] 291 | 292 | [[package]] 293 | name = "derive-new" 294 | version = "0.7.0" 295 | source = "registry+https://github.com/rust-lang/crates.io-index" 296 | checksum = "2cdc8d50f426189eef89dac62fabfa0abb27d5cc008f25bf4156a0203325becc" 297 | dependencies = [ 298 | "proc-macro2", 299 | "quote", 300 | "syn", 301 | ] 302 | 303 | [[package]] 304 | name = "encoding_rs" 305 | version = "0.8.33" 306 | source = "registry+https://github.com/rust-lang/crates.io-index" 307 | checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 308 | dependencies = [ 309 | "cfg-if", 310 | ] 311 | 312 | [[package]] 313 | name = "enum-map" 314 | version = "2.7.3" 315 | source = "registry+https://github.com/rust-lang/crates.io-index" 316 | checksum = "6866f3bfdf8207509a033af1a75a7b08abda06bbaaeae6669323fd5a097df2e9" 317 | dependencies = [ 318 | "enum-map-derive", 319 | ] 320 | 321 | [[package]] 322 | name = "enum-map-derive" 323 | version = "0.17.0" 324 | source = "registry+https://github.com/rust-lang/crates.io-index" 325 | checksum = "f282cfdfe92516eb26c2af8589c274c7c17681f5ecc03c18255fe741c6aa64eb" 326 | dependencies = [ 327 | "proc-macro2", 328 | "quote", 329 | "syn", 330 | ] 331 | 332 | [[package]] 333 | name = "equivalent" 334 | version = "1.0.1" 335 | source = "registry+https://github.com/rust-lang/crates.io-index" 336 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 337 | 338 | [[package]] 339 | name = "fnv" 340 | version = "1.0.7" 341 | source = "registry+https://github.com/rust-lang/crates.io-index" 342 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 343 | 344 | [[package]] 345 | name = "form_urlencoded" 346 | version = "1.2.1" 347 | source = "registry+https://github.com/rust-lang/crates.io-index" 348 | checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" 349 | dependencies = [ 350 | "percent-encoding", 351 | ] 352 | 353 | [[package]] 354 | name = "futures" 355 | version = "0.3.30" 356 | source = "registry+https://github.com/rust-lang/crates.io-index" 357 | checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0" 358 | dependencies = [ 359 | "futures-channel", 360 | "futures-core", 361 | "futures-executor", 362 | "futures-io", 363 | "futures-sink", 364 | "futures-task", 365 | "futures-util", 366 | ] 367 | 368 | [[package]] 369 | name = "futures-channel" 370 | version = "0.3.30" 371 | source = "registry+https://github.com/rust-lang/crates.io-index" 372 | checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" 373 | dependencies = [ 374 | "futures-core", 375 | "futures-sink", 376 | ] 377 | 378 | [[package]] 379 | name = "futures-core" 380 | version = "0.3.30" 381 | source = "registry+https://github.com/rust-lang/crates.io-index" 382 | checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" 383 | 384 | [[package]] 385 | name = "futures-executor" 386 | version = "0.3.30" 387 | source = "registry+https://github.com/rust-lang/crates.io-index" 388 | checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" 389 | dependencies = [ 390 | "futures-core", 391 | "futures-task", 392 | "futures-util", 393 | ] 394 | 395 | [[package]] 396 | name = "futures-io" 397 | version = "0.3.30" 398 | source = "registry+https://github.com/rust-lang/crates.io-index" 399 | checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" 400 | 401 | [[package]] 402 | name = "futures-macro" 403 | version = "0.3.30" 404 | source = "registry+https://github.com/rust-lang/crates.io-index" 405 | checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" 406 | dependencies = [ 407 | "proc-macro2", 408 | "quote", 409 | "syn", 410 | ] 411 | 412 | [[package]] 413 | name = "futures-sink" 414 | version = "0.3.30" 415 | source = "registry+https://github.com/rust-lang/crates.io-index" 416 | checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" 417 | 418 | [[package]] 419 | name = "futures-task" 420 | version = "0.3.30" 421 | source = "registry+https://github.com/rust-lang/crates.io-index" 422 | checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" 423 | 424 | [[package]] 425 | name = "futures-util" 426 | version = "0.3.30" 427 | source = "registry+https://github.com/rust-lang/crates.io-index" 428 | checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" 429 | dependencies = [ 430 | "futures-channel", 431 | "futures-core", 432 | "futures-io", 433 | "futures-macro", 434 | "futures-sink", 435 | "futures-task", 436 | "memchr", 437 | "pin-project-lite", 438 | "pin-utils", 439 | "slab", 440 | ] 441 | 442 | [[package]] 443 | name = "getrandom" 444 | version = "0.2.11" 445 | source = "registry+https://github.com/rust-lang/crates.io-index" 446 | checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 447 | dependencies = [ 448 | "cfg-if", 449 | "js-sys", 450 | "libc", 451 | "wasi", 452 | "wasm-bindgen", 453 | ] 454 | 455 | [[package]] 456 | name = "gimli" 457 | version = "0.28.1" 458 | source = "registry+https://github.com/rust-lang/crates.io-index" 459 | checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253" 460 | 461 | [[package]] 462 | name = "h2" 463 | version = "0.3.22" 464 | source = "registry+https://github.com/rust-lang/crates.io-index" 465 | checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178" 466 | dependencies = [ 467 | "bytes", 468 | "fnv", 469 | "futures-core", 470 | "futures-sink", 471 | "futures-util", 472 | "http", 473 | "indexmap 2.1.0", 474 | "slab", 475 | "tokio", 476 | "tokio-util", 477 | "tracing", 478 | ] 479 | 480 | [[package]] 481 | name = "hashbrown" 482 | version = "0.12.3" 483 | source = "registry+https://github.com/rust-lang/crates.io-index" 484 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 485 | 486 | [[package]] 487 | name = "hashbrown" 488 | version = "0.14.3" 489 | source = "registry+https://github.com/rust-lang/crates.io-index" 490 | checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" 491 | 492 | [[package]] 493 | name = "heck" 494 | version = "0.4.1" 495 | source = "registry+https://github.com/rust-lang/crates.io-index" 496 | checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 497 | 498 | [[package]] 499 | name = "heck" 500 | version = "0.5.0" 501 | source = "registry+https://github.com/rust-lang/crates.io-index" 502 | checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" 503 | 504 | [[package]] 505 | name = "hermit-abi" 506 | version = "0.3.9" 507 | source = "registry+https://github.com/rust-lang/crates.io-index" 508 | checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" 509 | 510 | [[package]] 511 | name = "hex" 512 | version = "0.4.3" 513 | source = "registry+https://github.com/rust-lang/crates.io-index" 514 | checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 515 | 516 | [[package]] 517 | name = "http" 518 | version = "0.2.11" 519 | source = "registry+https://github.com/rust-lang/crates.io-index" 520 | checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb" 521 | dependencies = [ 522 | "bytes", 523 | "fnv", 524 | "itoa", 525 | ] 526 | 527 | [[package]] 528 | name = "http-body" 529 | version = "0.4.6" 530 | source = "registry+https://github.com/rust-lang/crates.io-index" 531 | checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2" 532 | dependencies = [ 533 | "bytes", 534 | "http", 535 | "pin-project-lite", 536 | ] 537 | 538 | [[package]] 539 | name = "httparse" 540 | version = "1.8.0" 541 | source = "registry+https://github.com/rust-lang/crates.io-index" 542 | checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 543 | 544 | [[package]] 545 | name = "httpdate" 546 | version = "1.0.3" 547 | source = "registry+https://github.com/rust-lang/crates.io-index" 548 | checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 549 | 550 | [[package]] 551 | name = "hyper" 552 | version = "0.14.28" 553 | source = "registry+https://github.com/rust-lang/crates.io-index" 554 | checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80" 555 | dependencies = [ 556 | "bytes", 557 | "futures-channel", 558 | "futures-core", 559 | "futures-util", 560 | "h2", 561 | "http", 562 | "http-body", 563 | "httparse", 564 | "httpdate", 565 | "itoa", 566 | "pin-project-lite", 567 | "socket2", 568 | "tokio", 569 | "tower-service", 570 | "tracing", 571 | "want", 572 | ] 573 | 574 | [[package]] 575 | name = "hyper-rustls" 576 | version = "0.24.2" 577 | source = "registry+https://github.com/rust-lang/crates.io-index" 578 | checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590" 579 | dependencies = [ 580 | "futures-util", 581 | "http", 582 | "hyper", 583 | "rustls", 584 | "tokio", 585 | "tokio-rustls", 586 | ] 587 | 588 | [[package]] 589 | name = "iana-time-zone" 590 | version = "0.1.58" 591 | source = "registry+https://github.com/rust-lang/crates.io-index" 592 | checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 593 | dependencies = [ 594 | "android_system_properties", 595 | "core-foundation-sys", 596 | "iana-time-zone-haiku", 597 | "js-sys", 598 | "wasm-bindgen", 599 | "windows-core", 600 | ] 601 | 602 | [[package]] 603 | name = "iana-time-zone-haiku" 604 | version = "0.1.2" 605 | source = "registry+https://github.com/rust-lang/crates.io-index" 606 | checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 607 | dependencies = [ 608 | "cc", 609 | ] 610 | 611 | [[package]] 612 | name = "ident_case" 613 | version = "1.0.1" 614 | source = "registry+https://github.com/rust-lang/crates.io-index" 615 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 616 | 617 | [[package]] 618 | name = "idna" 619 | version = "0.5.0" 620 | source = "registry+https://github.com/rust-lang/crates.io-index" 621 | checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6" 622 | dependencies = [ 623 | "unicode-bidi", 624 | "unicode-normalization", 625 | ] 626 | 627 | [[package]] 628 | name = "indexmap" 629 | version = "1.9.3" 630 | source = "registry+https://github.com/rust-lang/crates.io-index" 631 | checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 632 | dependencies = [ 633 | "autocfg", 634 | "hashbrown 0.12.3", 635 | "serde", 636 | ] 637 | 638 | [[package]] 639 | name = "indexmap" 640 | version = "2.1.0" 641 | source = "registry+https://github.com/rust-lang/crates.io-index" 642 | checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 643 | dependencies = [ 644 | "equivalent", 645 | "hashbrown 0.14.3", 646 | "serde", 647 | ] 648 | 649 | [[package]] 650 | name = "instant" 651 | version = "0.1.12" 652 | source = "registry+https://github.com/rust-lang/crates.io-index" 653 | checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 654 | dependencies = [ 655 | "cfg-if", 656 | "js-sys", 657 | "wasm-bindgen", 658 | "web-sys", 659 | ] 660 | 661 | [[package]] 662 | name = "ipnet" 663 | version = "2.9.0" 664 | source = "registry+https://github.com/rust-lang/crates.io-index" 665 | checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 666 | 667 | [[package]] 668 | name = "is-terminal" 669 | version = "0.4.12" 670 | source = "registry+https://github.com/rust-lang/crates.io-index" 671 | checksum = "f23ff5ef2b80d608d61efee834934d862cd92461afc0560dedf493e4c033738b" 672 | dependencies = [ 673 | "hermit-abi", 674 | "libc", 675 | "windows-sys 0.52.0", 676 | ] 677 | 678 | [[package]] 679 | name = "is_terminal_polyfill" 680 | version = "1.70.0" 681 | source = "registry+https://github.com/rust-lang/crates.io-index" 682 | checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800" 683 | 684 | [[package]] 685 | name = "itoa" 686 | version = "1.0.10" 687 | source = "registry+https://github.com/rust-lang/crates.io-index" 688 | checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c" 689 | 690 | [[package]] 691 | name = "js-sys" 692 | version = "0.3.66" 693 | source = "registry+https://github.com/rust-lang/crates.io-index" 694 | checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" 695 | dependencies = [ 696 | "wasm-bindgen", 697 | ] 698 | 699 | [[package]] 700 | name = "lemmy-stats-crawler" 701 | version = "0.1.0" 702 | dependencies = [ 703 | "anyhow", 704 | "clap", 705 | "derive-new", 706 | "lemmy_api_common", 707 | "log", 708 | "once_cell", 709 | "regex", 710 | "reqwest", 711 | "reqwest-middleware", 712 | "reqwest-retry", 713 | "semver", 714 | "serde", 715 | "serde_json", 716 | "stderrlog", 717 | "tokio", 718 | ] 719 | 720 | [[package]] 721 | name = "lemmy_api_common" 722 | version = "0.19.0-rc.12" 723 | source = "git+https://github.com/LemmyNet/lemmy.git?tag=0.19.0-rc.12#3f79eacb53c8a1bb0e23c4bd9037606a7cc58857" 724 | dependencies = [ 725 | "chrono", 726 | "enum-map", 727 | "getrandom", 728 | "lemmy_db_schema", 729 | "lemmy_db_views", 730 | "lemmy_db_views_actor", 731 | "lemmy_db_views_moderator", 732 | "regex", 733 | "serde", 734 | "serde_with", 735 | "url", 736 | ] 737 | 738 | [[package]] 739 | name = "lemmy_db_schema" 740 | version = "0.19.0-rc.12" 741 | source = "git+https://github.com/LemmyNet/lemmy.git?tag=0.19.0-rc.12#3f79eacb53c8a1bb0e23c4bd9037606a7cc58857" 742 | dependencies = [ 743 | "async-trait", 744 | "chrono", 745 | "futures-util", 746 | "serde", 747 | "serde_with", 748 | "strum", 749 | "strum_macros", 750 | "tracing", 751 | "typed-builder", 752 | "url", 753 | "uuid", 754 | ] 755 | 756 | [[package]] 757 | name = "lemmy_db_views" 758 | version = "0.19.0-rc.12" 759 | source = "git+https://github.com/LemmyNet/lemmy.git?tag=0.19.0-rc.12#3f79eacb53c8a1bb0e23c4bd9037606a7cc58857" 760 | dependencies = [ 761 | "lemmy_db_schema", 762 | "serde", 763 | "serde_with", 764 | ] 765 | 766 | [[package]] 767 | name = "lemmy_db_views_actor" 768 | version = "0.19.0-rc.12" 769 | source = "git+https://github.com/LemmyNet/lemmy.git?tag=0.19.0-rc.12#3f79eacb53c8a1bb0e23c4bd9037606a7cc58857" 770 | dependencies = [ 771 | "chrono", 772 | "lemmy_db_schema", 773 | "serde", 774 | "serde_with", 775 | "strum", 776 | "strum_macros", 777 | ] 778 | 779 | [[package]] 780 | name = "lemmy_db_views_moderator" 781 | version = "0.19.0-rc.12" 782 | source = "git+https://github.com/LemmyNet/lemmy.git?tag=0.19.0-rc.12#3f79eacb53c8a1bb0e23c4bd9037606a7cc58857" 783 | dependencies = [ 784 | "lemmy_db_schema", 785 | "serde", 786 | "serde_with", 787 | ] 788 | 789 | [[package]] 790 | name = "libc" 791 | version = "0.2.151" 792 | source = "registry+https://github.com/rust-lang/crates.io-index" 793 | checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" 794 | 795 | [[package]] 796 | name = "lock_api" 797 | version = "0.4.11" 798 | source = "registry+https://github.com/rust-lang/crates.io-index" 799 | checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 800 | dependencies = [ 801 | "autocfg", 802 | "scopeguard", 803 | ] 804 | 805 | [[package]] 806 | name = "log" 807 | version = "0.4.22" 808 | source = "registry+https://github.com/rust-lang/crates.io-index" 809 | checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" 810 | 811 | [[package]] 812 | name = "memchr" 813 | version = "2.6.4" 814 | source = "registry+https://github.com/rust-lang/crates.io-index" 815 | checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 816 | 817 | [[package]] 818 | name = "mime" 819 | version = "0.3.17" 820 | source = "registry+https://github.com/rust-lang/crates.io-index" 821 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 822 | 823 | [[package]] 824 | name = "mime_guess" 825 | version = "2.0.4" 826 | source = "registry+https://github.com/rust-lang/crates.io-index" 827 | checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 828 | dependencies = [ 829 | "mime", 830 | "unicase", 831 | ] 832 | 833 | [[package]] 834 | name = "miniz_oxide" 835 | version = "0.7.1" 836 | source = "registry+https://github.com/rust-lang/crates.io-index" 837 | checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 838 | dependencies = [ 839 | "adler", 840 | ] 841 | 842 | [[package]] 843 | name = "mio" 844 | version = "1.0.1" 845 | source = "registry+https://github.com/rust-lang/crates.io-index" 846 | checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4" 847 | dependencies = [ 848 | "hermit-abi", 849 | "libc", 850 | "wasi", 851 | "windows-sys 0.52.0", 852 | ] 853 | 854 | [[package]] 855 | name = "num-traits" 856 | version = "0.2.17" 857 | source = "registry+https://github.com/rust-lang/crates.io-index" 858 | checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 859 | dependencies = [ 860 | "autocfg", 861 | ] 862 | 863 | [[package]] 864 | name = "object" 865 | version = "0.32.2" 866 | source = "registry+https://github.com/rust-lang/crates.io-index" 867 | checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441" 868 | dependencies = [ 869 | "memchr", 870 | ] 871 | 872 | [[package]] 873 | name = "once_cell" 874 | version = "1.20.2" 875 | source = "registry+https://github.com/rust-lang/crates.io-index" 876 | checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" 877 | 878 | [[package]] 879 | name = "parking_lot" 880 | version = "0.11.2" 881 | source = "registry+https://github.com/rust-lang/crates.io-index" 882 | checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" 883 | dependencies = [ 884 | "instant", 885 | "lock_api", 886 | "parking_lot_core", 887 | ] 888 | 889 | [[package]] 890 | name = "parking_lot_core" 891 | version = "0.8.6" 892 | source = "registry+https://github.com/rust-lang/crates.io-index" 893 | checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc" 894 | dependencies = [ 895 | "cfg-if", 896 | "instant", 897 | "libc", 898 | "redox_syscall", 899 | "smallvec", 900 | "winapi", 901 | ] 902 | 903 | [[package]] 904 | name = "percent-encoding" 905 | version = "2.3.1" 906 | source = "registry+https://github.com/rust-lang/crates.io-index" 907 | checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" 908 | 909 | [[package]] 910 | name = "pin-project-lite" 911 | version = "0.2.13" 912 | source = "registry+https://github.com/rust-lang/crates.io-index" 913 | checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 914 | 915 | [[package]] 916 | name = "pin-utils" 917 | version = "0.1.0" 918 | source = "registry+https://github.com/rust-lang/crates.io-index" 919 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 920 | 921 | [[package]] 922 | name = "powerfmt" 923 | version = "0.2.0" 924 | source = "registry+https://github.com/rust-lang/crates.io-index" 925 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 926 | 927 | [[package]] 928 | name = "ppv-lite86" 929 | version = "0.2.17" 930 | source = "registry+https://github.com/rust-lang/crates.io-index" 931 | checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 932 | 933 | [[package]] 934 | name = "proc-macro2" 935 | version = "1.0.82" 936 | source = "registry+https://github.com/rust-lang/crates.io-index" 937 | checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b" 938 | dependencies = [ 939 | "unicode-ident", 940 | ] 941 | 942 | [[package]] 943 | name = "quote" 944 | version = "1.0.36" 945 | source = "registry+https://github.com/rust-lang/crates.io-index" 946 | checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 947 | dependencies = [ 948 | "proc-macro2", 949 | ] 950 | 951 | [[package]] 952 | name = "rand" 953 | version = "0.8.5" 954 | source = "registry+https://github.com/rust-lang/crates.io-index" 955 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 956 | dependencies = [ 957 | "libc", 958 | "rand_chacha", 959 | "rand_core", 960 | ] 961 | 962 | [[package]] 963 | name = "rand_chacha" 964 | version = "0.3.1" 965 | source = "registry+https://github.com/rust-lang/crates.io-index" 966 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 967 | dependencies = [ 968 | "ppv-lite86", 969 | "rand_core", 970 | ] 971 | 972 | [[package]] 973 | name = "rand_core" 974 | version = "0.6.4" 975 | source = "registry+https://github.com/rust-lang/crates.io-index" 976 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 977 | dependencies = [ 978 | "getrandom", 979 | ] 980 | 981 | [[package]] 982 | name = "redox_syscall" 983 | version = "0.2.16" 984 | source = "registry+https://github.com/rust-lang/crates.io-index" 985 | checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 986 | dependencies = [ 987 | "bitflags", 988 | ] 989 | 990 | [[package]] 991 | name = "regex" 992 | version = "1.11.0" 993 | source = "registry+https://github.com/rust-lang/crates.io-index" 994 | checksum = "38200e5ee88914975b69f657f0801b6f6dccafd44fd9326302a4aaeecfacb1d8" 995 | dependencies = [ 996 | "aho-corasick", 997 | "memchr", 998 | "regex-automata", 999 | "regex-syntax", 1000 | ] 1001 | 1002 | [[package]] 1003 | name = "regex-automata" 1004 | version = "0.4.8" 1005 | source = "registry+https://github.com/rust-lang/crates.io-index" 1006 | checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" 1007 | dependencies = [ 1008 | "aho-corasick", 1009 | "memchr", 1010 | "regex-syntax", 1011 | ] 1012 | 1013 | [[package]] 1014 | name = "regex-syntax" 1015 | version = "0.8.5" 1016 | source = "registry+https://github.com/rust-lang/crates.io-index" 1017 | checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" 1018 | 1019 | [[package]] 1020 | name = "reqwest" 1021 | version = "0.11.23" 1022 | source = "registry+https://github.com/rust-lang/crates.io-index" 1023 | checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41" 1024 | dependencies = [ 1025 | "base64", 1026 | "bytes", 1027 | "encoding_rs", 1028 | "futures-core", 1029 | "futures-util", 1030 | "h2", 1031 | "http", 1032 | "http-body", 1033 | "hyper", 1034 | "hyper-rustls", 1035 | "ipnet", 1036 | "js-sys", 1037 | "log", 1038 | "mime", 1039 | "mime_guess", 1040 | "once_cell", 1041 | "percent-encoding", 1042 | "pin-project-lite", 1043 | "rustls", 1044 | "rustls-pemfile", 1045 | "serde", 1046 | "serde_json", 1047 | "serde_urlencoded", 1048 | "system-configuration", 1049 | "tokio", 1050 | "tokio-rustls", 1051 | "tower-service", 1052 | "url", 1053 | "wasm-bindgen", 1054 | "wasm-bindgen-futures", 1055 | "web-sys", 1056 | "webpki-roots", 1057 | "winreg", 1058 | ] 1059 | 1060 | [[package]] 1061 | name = "reqwest-middleware" 1062 | version = "0.2.4" 1063 | source = "registry+https://github.com/rust-lang/crates.io-index" 1064 | checksum = "88a3e86aa6053e59030e7ce2d2a3b258dd08fc2d337d52f73f6cb480f5858690" 1065 | dependencies = [ 1066 | "anyhow", 1067 | "async-trait", 1068 | "http", 1069 | "reqwest", 1070 | "serde", 1071 | "task-local-extensions", 1072 | "thiserror", 1073 | ] 1074 | 1075 | [[package]] 1076 | name = "reqwest-retry" 1077 | version = "0.3.0" 1078 | source = "registry+https://github.com/rust-lang/crates.io-index" 1079 | checksum = "9af20b65c2ee9746cc575acb6bd28a05ffc0d15e25c992a8f4462d8686aacb4f" 1080 | dependencies = [ 1081 | "anyhow", 1082 | "async-trait", 1083 | "chrono", 1084 | "futures", 1085 | "getrandom", 1086 | "http", 1087 | "hyper", 1088 | "parking_lot", 1089 | "reqwest", 1090 | "reqwest-middleware", 1091 | "retry-policies", 1092 | "task-local-extensions", 1093 | "tokio", 1094 | "tracing", 1095 | "wasm-timer", 1096 | ] 1097 | 1098 | [[package]] 1099 | name = "retry-policies" 1100 | version = "0.2.1" 1101 | source = "registry+https://github.com/rust-lang/crates.io-index" 1102 | checksum = "17dd00bff1d737c40dbcd47d4375281bf4c17933f9eef0a185fc7bacca23ecbd" 1103 | dependencies = [ 1104 | "anyhow", 1105 | "chrono", 1106 | "rand", 1107 | ] 1108 | 1109 | [[package]] 1110 | name = "ring" 1111 | version = "0.17.7" 1112 | source = "registry+https://github.com/rust-lang/crates.io-index" 1113 | checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74" 1114 | dependencies = [ 1115 | "cc", 1116 | "getrandom", 1117 | "libc", 1118 | "spin", 1119 | "untrusted", 1120 | "windows-sys 0.48.0", 1121 | ] 1122 | 1123 | [[package]] 1124 | name = "rustc-demangle" 1125 | version = "0.1.23" 1126 | source = "registry+https://github.com/rust-lang/crates.io-index" 1127 | checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1128 | 1129 | [[package]] 1130 | name = "rustls" 1131 | version = "0.21.10" 1132 | source = "registry+https://github.com/rust-lang/crates.io-index" 1133 | checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba" 1134 | dependencies = [ 1135 | "log", 1136 | "ring", 1137 | "rustls-webpki", 1138 | "sct", 1139 | ] 1140 | 1141 | [[package]] 1142 | name = "rustls-pemfile" 1143 | version = "1.0.4" 1144 | source = "registry+https://github.com/rust-lang/crates.io-index" 1145 | checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" 1146 | dependencies = [ 1147 | "base64", 1148 | ] 1149 | 1150 | [[package]] 1151 | name = "rustls-webpki" 1152 | version = "0.101.7" 1153 | source = "registry+https://github.com/rust-lang/crates.io-index" 1154 | checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" 1155 | dependencies = [ 1156 | "ring", 1157 | "untrusted", 1158 | ] 1159 | 1160 | [[package]] 1161 | name = "rustversion" 1162 | version = "1.0.14" 1163 | source = "registry+https://github.com/rust-lang/crates.io-index" 1164 | checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 1165 | 1166 | [[package]] 1167 | name = "ryu" 1168 | version = "1.0.16" 1169 | source = "registry+https://github.com/rust-lang/crates.io-index" 1170 | checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c" 1171 | 1172 | [[package]] 1173 | name = "scopeguard" 1174 | version = "1.2.0" 1175 | source = "registry+https://github.com/rust-lang/crates.io-index" 1176 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1177 | 1178 | [[package]] 1179 | name = "sct" 1180 | version = "0.7.1" 1181 | source = "registry+https://github.com/rust-lang/crates.io-index" 1182 | checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 1183 | dependencies = [ 1184 | "ring", 1185 | "untrusted", 1186 | ] 1187 | 1188 | [[package]] 1189 | name = "semver" 1190 | version = "1.0.23" 1191 | source = "registry+https://github.com/rust-lang/crates.io-index" 1192 | checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" 1193 | 1194 | [[package]] 1195 | name = "serde" 1196 | version = "1.0.210" 1197 | source = "registry+https://github.com/rust-lang/crates.io-index" 1198 | checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" 1199 | dependencies = [ 1200 | "serde_derive", 1201 | ] 1202 | 1203 | [[package]] 1204 | name = "serde_derive" 1205 | version = "1.0.210" 1206 | source = "registry+https://github.com/rust-lang/crates.io-index" 1207 | checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" 1208 | dependencies = [ 1209 | "proc-macro2", 1210 | "quote", 1211 | "syn", 1212 | ] 1213 | 1214 | [[package]] 1215 | name = "serde_json" 1216 | version = "1.0.128" 1217 | source = "registry+https://github.com/rust-lang/crates.io-index" 1218 | checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" 1219 | dependencies = [ 1220 | "itoa", 1221 | "memchr", 1222 | "ryu", 1223 | "serde", 1224 | ] 1225 | 1226 | [[package]] 1227 | name = "serde_urlencoded" 1228 | version = "0.7.1" 1229 | source = "registry+https://github.com/rust-lang/crates.io-index" 1230 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1231 | dependencies = [ 1232 | "form_urlencoded", 1233 | "itoa", 1234 | "ryu", 1235 | "serde", 1236 | ] 1237 | 1238 | [[package]] 1239 | name = "serde_with" 1240 | version = "3.4.0" 1241 | source = "registry+https://github.com/rust-lang/crates.io-index" 1242 | checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23" 1243 | dependencies = [ 1244 | "base64", 1245 | "chrono", 1246 | "hex", 1247 | "indexmap 1.9.3", 1248 | "indexmap 2.1.0", 1249 | "serde", 1250 | "serde_json", 1251 | "serde_with_macros", 1252 | "time", 1253 | ] 1254 | 1255 | [[package]] 1256 | name = "serde_with_macros" 1257 | version = "3.4.0" 1258 | source = "registry+https://github.com/rust-lang/crates.io-index" 1259 | checksum = "93634eb5f75a2323b16de4748022ac4297f9e76b6dced2be287a099f41b5e788" 1260 | dependencies = [ 1261 | "darling", 1262 | "proc-macro2", 1263 | "quote", 1264 | "syn", 1265 | ] 1266 | 1267 | [[package]] 1268 | name = "slab" 1269 | version = "0.4.9" 1270 | source = "registry+https://github.com/rust-lang/crates.io-index" 1271 | checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1272 | dependencies = [ 1273 | "autocfg", 1274 | ] 1275 | 1276 | [[package]] 1277 | name = "smallvec" 1278 | version = "1.11.2" 1279 | source = "registry+https://github.com/rust-lang/crates.io-index" 1280 | checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 1281 | 1282 | [[package]] 1283 | name = "socket2" 1284 | version = "0.5.5" 1285 | source = "registry+https://github.com/rust-lang/crates.io-index" 1286 | checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 1287 | dependencies = [ 1288 | "libc", 1289 | "windows-sys 0.48.0", 1290 | ] 1291 | 1292 | [[package]] 1293 | name = "spin" 1294 | version = "0.9.8" 1295 | source = "registry+https://github.com/rust-lang/crates.io-index" 1296 | checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 1297 | 1298 | [[package]] 1299 | name = "stderrlog" 1300 | version = "0.6.0" 1301 | source = "registry+https://github.com/rust-lang/crates.io-index" 1302 | checksum = "61c910772f992ab17d32d6760e167d2353f4130ed50e796752689556af07dc6b" 1303 | dependencies = [ 1304 | "chrono", 1305 | "is-terminal", 1306 | "log", 1307 | "termcolor", 1308 | "thread_local", 1309 | ] 1310 | 1311 | [[package]] 1312 | name = "strsim" 1313 | version = "0.10.0" 1314 | source = "registry+https://github.com/rust-lang/crates.io-index" 1315 | checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 1316 | 1317 | [[package]] 1318 | name = "strsim" 1319 | version = "0.11.1" 1320 | source = "registry+https://github.com/rust-lang/crates.io-index" 1321 | checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" 1322 | 1323 | [[package]] 1324 | name = "strum" 1325 | version = "0.25.0" 1326 | source = "registry+https://github.com/rust-lang/crates.io-index" 1327 | checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125" 1328 | 1329 | [[package]] 1330 | name = "strum_macros" 1331 | version = "0.25.3" 1332 | source = "registry+https://github.com/rust-lang/crates.io-index" 1333 | checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0" 1334 | dependencies = [ 1335 | "heck 0.4.1", 1336 | "proc-macro2", 1337 | "quote", 1338 | "rustversion", 1339 | "syn", 1340 | ] 1341 | 1342 | [[package]] 1343 | name = "syn" 1344 | version = "2.0.63" 1345 | source = "registry+https://github.com/rust-lang/crates.io-index" 1346 | checksum = "bf5be731623ca1a1fb7d8be6f261a3be6d3e2337b8a1f97be944d020c8fcb704" 1347 | dependencies = [ 1348 | "proc-macro2", 1349 | "quote", 1350 | "unicode-ident", 1351 | ] 1352 | 1353 | [[package]] 1354 | name = "system-configuration" 1355 | version = "0.5.1" 1356 | source = "registry+https://github.com/rust-lang/crates.io-index" 1357 | checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 1358 | dependencies = [ 1359 | "bitflags", 1360 | "core-foundation", 1361 | "system-configuration-sys", 1362 | ] 1363 | 1364 | [[package]] 1365 | name = "system-configuration-sys" 1366 | version = "0.5.0" 1367 | source = "registry+https://github.com/rust-lang/crates.io-index" 1368 | checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 1369 | dependencies = [ 1370 | "core-foundation-sys", 1371 | "libc", 1372 | ] 1373 | 1374 | [[package]] 1375 | name = "task-local-extensions" 1376 | version = "0.1.4" 1377 | source = "registry+https://github.com/rust-lang/crates.io-index" 1378 | checksum = "ba323866e5d033818e3240feeb9f7db2c4296674e4d9e16b97b7bf8f490434e8" 1379 | dependencies = [ 1380 | "pin-utils", 1381 | ] 1382 | 1383 | [[package]] 1384 | name = "termcolor" 1385 | version = "1.1.3" 1386 | source = "registry+https://github.com/rust-lang/crates.io-index" 1387 | checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" 1388 | dependencies = [ 1389 | "winapi-util", 1390 | ] 1391 | 1392 | [[package]] 1393 | name = "thiserror" 1394 | version = "1.0.52" 1395 | source = "registry+https://github.com/rust-lang/crates.io-index" 1396 | checksum = "83a48fd946b02c0a526b2e9481c8e2a17755e47039164a86c4070446e3a4614d" 1397 | dependencies = [ 1398 | "thiserror-impl", 1399 | ] 1400 | 1401 | [[package]] 1402 | name = "thiserror-impl" 1403 | version = "1.0.52" 1404 | source = "registry+https://github.com/rust-lang/crates.io-index" 1405 | checksum = "e7fbe9b594d6568a6a1443250a7e67d80b74e1e96f6d1715e1e21cc1888291d3" 1406 | dependencies = [ 1407 | "proc-macro2", 1408 | "quote", 1409 | "syn", 1410 | ] 1411 | 1412 | [[package]] 1413 | name = "thread_local" 1414 | version = "1.1.7" 1415 | source = "registry+https://github.com/rust-lang/crates.io-index" 1416 | checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 1417 | dependencies = [ 1418 | "cfg-if", 1419 | "once_cell", 1420 | ] 1421 | 1422 | [[package]] 1423 | name = "time" 1424 | version = "0.3.31" 1425 | source = "registry+https://github.com/rust-lang/crates.io-index" 1426 | checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" 1427 | dependencies = [ 1428 | "deranged", 1429 | "itoa", 1430 | "powerfmt", 1431 | "serde", 1432 | "time-core", 1433 | "time-macros", 1434 | ] 1435 | 1436 | [[package]] 1437 | name = "time-core" 1438 | version = "0.1.2" 1439 | source = "registry+https://github.com/rust-lang/crates.io-index" 1440 | checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 1441 | 1442 | [[package]] 1443 | name = "time-macros" 1444 | version = "0.2.16" 1445 | source = "registry+https://github.com/rust-lang/crates.io-index" 1446 | checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f" 1447 | dependencies = [ 1448 | "time-core", 1449 | ] 1450 | 1451 | [[package]] 1452 | name = "tinyvec" 1453 | version = "1.6.0" 1454 | source = "registry+https://github.com/rust-lang/crates.io-index" 1455 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 1456 | dependencies = [ 1457 | "tinyvec_macros", 1458 | ] 1459 | 1460 | [[package]] 1461 | name = "tinyvec_macros" 1462 | version = "0.1.1" 1463 | source = "registry+https://github.com/rust-lang/crates.io-index" 1464 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 1465 | 1466 | [[package]] 1467 | name = "tokio" 1468 | version = "1.40.0" 1469 | source = "registry+https://github.com/rust-lang/crates.io-index" 1470 | checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998" 1471 | dependencies = [ 1472 | "backtrace", 1473 | "bytes", 1474 | "libc", 1475 | "mio", 1476 | "pin-project-lite", 1477 | "socket2", 1478 | "tokio-macros", 1479 | "windows-sys 0.52.0", 1480 | ] 1481 | 1482 | [[package]] 1483 | name = "tokio-macros" 1484 | version = "2.4.0" 1485 | source = "registry+https://github.com/rust-lang/crates.io-index" 1486 | checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" 1487 | dependencies = [ 1488 | "proc-macro2", 1489 | "quote", 1490 | "syn", 1491 | ] 1492 | 1493 | [[package]] 1494 | name = "tokio-rustls" 1495 | version = "0.24.1" 1496 | source = "registry+https://github.com/rust-lang/crates.io-index" 1497 | checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" 1498 | dependencies = [ 1499 | "rustls", 1500 | "tokio", 1501 | ] 1502 | 1503 | [[package]] 1504 | name = "tokio-util" 1505 | version = "0.7.10" 1506 | source = "registry+https://github.com/rust-lang/crates.io-index" 1507 | checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 1508 | dependencies = [ 1509 | "bytes", 1510 | "futures-core", 1511 | "futures-sink", 1512 | "pin-project-lite", 1513 | "tokio", 1514 | "tracing", 1515 | ] 1516 | 1517 | [[package]] 1518 | name = "tower-service" 1519 | version = "0.3.2" 1520 | source = "registry+https://github.com/rust-lang/crates.io-index" 1521 | checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 1522 | 1523 | [[package]] 1524 | name = "tracing" 1525 | version = "0.1.40" 1526 | source = "registry+https://github.com/rust-lang/crates.io-index" 1527 | checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 1528 | dependencies = [ 1529 | "pin-project-lite", 1530 | "tracing-attributes", 1531 | "tracing-core", 1532 | ] 1533 | 1534 | [[package]] 1535 | name = "tracing-attributes" 1536 | version = "0.1.27" 1537 | source = "registry+https://github.com/rust-lang/crates.io-index" 1538 | checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 1539 | dependencies = [ 1540 | "proc-macro2", 1541 | "quote", 1542 | "syn", 1543 | ] 1544 | 1545 | [[package]] 1546 | name = "tracing-core" 1547 | version = "0.1.32" 1548 | source = "registry+https://github.com/rust-lang/crates.io-index" 1549 | checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 1550 | dependencies = [ 1551 | "once_cell", 1552 | ] 1553 | 1554 | [[package]] 1555 | name = "try-lock" 1556 | version = "0.2.5" 1557 | source = "registry+https://github.com/rust-lang/crates.io-index" 1558 | checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" 1559 | 1560 | [[package]] 1561 | name = "typed-builder" 1562 | version = "0.15.2" 1563 | source = "registry+https://github.com/rust-lang/crates.io-index" 1564 | checksum = "7fe83c85a85875e8c4cb9ce4a890f05b23d38cd0d47647db7895d3d2a79566d2" 1565 | dependencies = [ 1566 | "typed-builder-macro", 1567 | ] 1568 | 1569 | [[package]] 1570 | name = "typed-builder-macro" 1571 | version = "0.15.2" 1572 | source = "registry+https://github.com/rust-lang/crates.io-index" 1573 | checksum = "29a3151c41d0b13e3d011f98adc24434560ef06673a155a6c7f66b9879eecce2" 1574 | dependencies = [ 1575 | "proc-macro2", 1576 | "quote", 1577 | "syn", 1578 | ] 1579 | 1580 | [[package]] 1581 | name = "unicase" 1582 | version = "2.7.0" 1583 | source = "registry+https://github.com/rust-lang/crates.io-index" 1584 | checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 1585 | dependencies = [ 1586 | "version_check", 1587 | ] 1588 | 1589 | [[package]] 1590 | name = "unicode-bidi" 1591 | version = "0.3.14" 1592 | source = "registry+https://github.com/rust-lang/crates.io-index" 1593 | checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416" 1594 | 1595 | [[package]] 1596 | name = "unicode-ident" 1597 | version = "1.0.12" 1598 | source = "registry+https://github.com/rust-lang/crates.io-index" 1599 | checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 1600 | 1601 | [[package]] 1602 | name = "unicode-normalization" 1603 | version = "0.1.22" 1604 | source = "registry+https://github.com/rust-lang/crates.io-index" 1605 | checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 1606 | dependencies = [ 1607 | "tinyvec", 1608 | ] 1609 | 1610 | [[package]] 1611 | name = "untrusted" 1612 | version = "0.9.0" 1613 | source = "registry+https://github.com/rust-lang/crates.io-index" 1614 | checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" 1615 | 1616 | [[package]] 1617 | name = "url" 1618 | version = "2.5.0" 1619 | source = "registry+https://github.com/rust-lang/crates.io-index" 1620 | checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633" 1621 | dependencies = [ 1622 | "form_urlencoded", 1623 | "idna", 1624 | "percent-encoding", 1625 | "serde", 1626 | ] 1627 | 1628 | [[package]] 1629 | name = "utf8parse" 1630 | version = "0.2.1" 1631 | source = "registry+https://github.com/rust-lang/crates.io-index" 1632 | checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" 1633 | 1634 | [[package]] 1635 | name = "uuid" 1636 | version = "1.6.1" 1637 | source = "registry+https://github.com/rust-lang/crates.io-index" 1638 | checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" 1639 | dependencies = [ 1640 | "getrandom", 1641 | "serde", 1642 | ] 1643 | 1644 | [[package]] 1645 | name = "version_check" 1646 | version = "0.9.4" 1647 | source = "registry+https://github.com/rust-lang/crates.io-index" 1648 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 1649 | 1650 | [[package]] 1651 | name = "want" 1652 | version = "0.3.1" 1653 | source = "registry+https://github.com/rust-lang/crates.io-index" 1654 | checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 1655 | dependencies = [ 1656 | "try-lock", 1657 | ] 1658 | 1659 | [[package]] 1660 | name = "wasi" 1661 | version = "0.11.0+wasi-snapshot-preview1" 1662 | source = "registry+https://github.com/rust-lang/crates.io-index" 1663 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 1664 | 1665 | [[package]] 1666 | name = "wasm-bindgen" 1667 | version = "0.2.89" 1668 | source = "registry+https://github.com/rust-lang/crates.io-index" 1669 | checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" 1670 | dependencies = [ 1671 | "cfg-if", 1672 | "wasm-bindgen-macro", 1673 | ] 1674 | 1675 | [[package]] 1676 | name = "wasm-bindgen-backend" 1677 | version = "0.2.89" 1678 | source = "registry+https://github.com/rust-lang/crates.io-index" 1679 | checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" 1680 | dependencies = [ 1681 | "bumpalo", 1682 | "log", 1683 | "once_cell", 1684 | "proc-macro2", 1685 | "quote", 1686 | "syn", 1687 | "wasm-bindgen-shared", 1688 | ] 1689 | 1690 | [[package]] 1691 | name = "wasm-bindgen-futures" 1692 | version = "0.4.39" 1693 | source = "registry+https://github.com/rust-lang/crates.io-index" 1694 | checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12" 1695 | dependencies = [ 1696 | "cfg-if", 1697 | "js-sys", 1698 | "wasm-bindgen", 1699 | "web-sys", 1700 | ] 1701 | 1702 | [[package]] 1703 | name = "wasm-bindgen-macro" 1704 | version = "0.2.89" 1705 | source = "registry+https://github.com/rust-lang/crates.io-index" 1706 | checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" 1707 | dependencies = [ 1708 | "quote", 1709 | "wasm-bindgen-macro-support", 1710 | ] 1711 | 1712 | [[package]] 1713 | name = "wasm-bindgen-macro-support" 1714 | version = "0.2.89" 1715 | source = "registry+https://github.com/rust-lang/crates.io-index" 1716 | checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" 1717 | dependencies = [ 1718 | "proc-macro2", 1719 | "quote", 1720 | "syn", 1721 | "wasm-bindgen-backend", 1722 | "wasm-bindgen-shared", 1723 | ] 1724 | 1725 | [[package]] 1726 | name = "wasm-bindgen-shared" 1727 | version = "0.2.89" 1728 | source = "registry+https://github.com/rust-lang/crates.io-index" 1729 | checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" 1730 | 1731 | [[package]] 1732 | name = "wasm-timer" 1733 | version = "0.2.5" 1734 | source = "registry+https://github.com/rust-lang/crates.io-index" 1735 | checksum = "be0ecb0db480561e9a7642b5d3e4187c128914e58aa84330b9493e3eb68c5e7f" 1736 | dependencies = [ 1737 | "futures", 1738 | "js-sys", 1739 | "parking_lot", 1740 | "pin-utils", 1741 | "wasm-bindgen", 1742 | "wasm-bindgen-futures", 1743 | "web-sys", 1744 | ] 1745 | 1746 | [[package]] 1747 | name = "web-sys" 1748 | version = "0.3.66" 1749 | source = "registry+https://github.com/rust-lang/crates.io-index" 1750 | checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f" 1751 | dependencies = [ 1752 | "js-sys", 1753 | "wasm-bindgen", 1754 | ] 1755 | 1756 | [[package]] 1757 | name = "webpki-roots" 1758 | version = "0.25.3" 1759 | source = "registry+https://github.com/rust-lang/crates.io-index" 1760 | checksum = "1778a42e8b3b90bff8d0f5032bf22250792889a5cdc752aa0020c84abe3aaf10" 1761 | 1762 | [[package]] 1763 | name = "winapi" 1764 | version = "0.3.9" 1765 | source = "registry+https://github.com/rust-lang/crates.io-index" 1766 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1767 | dependencies = [ 1768 | "winapi-i686-pc-windows-gnu", 1769 | "winapi-x86_64-pc-windows-gnu", 1770 | ] 1771 | 1772 | [[package]] 1773 | name = "winapi-i686-pc-windows-gnu" 1774 | version = "0.4.0" 1775 | source = "registry+https://github.com/rust-lang/crates.io-index" 1776 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1777 | 1778 | [[package]] 1779 | name = "winapi-util" 1780 | version = "0.1.6" 1781 | source = "registry+https://github.com/rust-lang/crates.io-index" 1782 | checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596" 1783 | dependencies = [ 1784 | "winapi", 1785 | ] 1786 | 1787 | [[package]] 1788 | name = "winapi-x86_64-pc-windows-gnu" 1789 | version = "0.4.0" 1790 | source = "registry+https://github.com/rust-lang/crates.io-index" 1791 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1792 | 1793 | [[package]] 1794 | name = "windows-core" 1795 | version = "0.51.1" 1796 | source = "registry+https://github.com/rust-lang/crates.io-index" 1797 | checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 1798 | dependencies = [ 1799 | "windows-targets 0.48.5", 1800 | ] 1801 | 1802 | [[package]] 1803 | name = "windows-sys" 1804 | version = "0.48.0" 1805 | source = "registry+https://github.com/rust-lang/crates.io-index" 1806 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 1807 | dependencies = [ 1808 | "windows-targets 0.48.5", 1809 | ] 1810 | 1811 | [[package]] 1812 | name = "windows-sys" 1813 | version = "0.52.0" 1814 | source = "registry+https://github.com/rust-lang/crates.io-index" 1815 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1816 | dependencies = [ 1817 | "windows-targets 0.52.0", 1818 | ] 1819 | 1820 | [[package]] 1821 | name = "windows-targets" 1822 | version = "0.48.5" 1823 | source = "registry+https://github.com/rust-lang/crates.io-index" 1824 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 1825 | dependencies = [ 1826 | "windows_aarch64_gnullvm 0.48.5", 1827 | "windows_aarch64_msvc 0.48.5", 1828 | "windows_i686_gnu 0.48.5", 1829 | "windows_i686_msvc 0.48.5", 1830 | "windows_x86_64_gnu 0.48.5", 1831 | "windows_x86_64_gnullvm 0.48.5", 1832 | "windows_x86_64_msvc 0.48.5", 1833 | ] 1834 | 1835 | [[package]] 1836 | name = "windows-targets" 1837 | version = "0.52.0" 1838 | source = "registry+https://github.com/rust-lang/crates.io-index" 1839 | checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd" 1840 | dependencies = [ 1841 | "windows_aarch64_gnullvm 0.52.0", 1842 | "windows_aarch64_msvc 0.52.0", 1843 | "windows_i686_gnu 0.52.0", 1844 | "windows_i686_msvc 0.52.0", 1845 | "windows_x86_64_gnu 0.52.0", 1846 | "windows_x86_64_gnullvm 0.52.0", 1847 | "windows_x86_64_msvc 0.52.0", 1848 | ] 1849 | 1850 | [[package]] 1851 | name = "windows_aarch64_gnullvm" 1852 | version = "0.48.5" 1853 | source = "registry+https://github.com/rust-lang/crates.io-index" 1854 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 1855 | 1856 | [[package]] 1857 | name = "windows_aarch64_gnullvm" 1858 | version = "0.52.0" 1859 | source = "registry+https://github.com/rust-lang/crates.io-index" 1860 | checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea" 1861 | 1862 | [[package]] 1863 | name = "windows_aarch64_msvc" 1864 | version = "0.48.5" 1865 | source = "registry+https://github.com/rust-lang/crates.io-index" 1866 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 1867 | 1868 | [[package]] 1869 | name = "windows_aarch64_msvc" 1870 | version = "0.52.0" 1871 | source = "registry+https://github.com/rust-lang/crates.io-index" 1872 | checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef" 1873 | 1874 | [[package]] 1875 | name = "windows_i686_gnu" 1876 | version = "0.48.5" 1877 | source = "registry+https://github.com/rust-lang/crates.io-index" 1878 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 1879 | 1880 | [[package]] 1881 | name = "windows_i686_gnu" 1882 | version = "0.52.0" 1883 | source = "registry+https://github.com/rust-lang/crates.io-index" 1884 | checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313" 1885 | 1886 | [[package]] 1887 | name = "windows_i686_msvc" 1888 | version = "0.48.5" 1889 | source = "registry+https://github.com/rust-lang/crates.io-index" 1890 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 1891 | 1892 | [[package]] 1893 | name = "windows_i686_msvc" 1894 | version = "0.52.0" 1895 | source = "registry+https://github.com/rust-lang/crates.io-index" 1896 | checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a" 1897 | 1898 | [[package]] 1899 | name = "windows_x86_64_gnu" 1900 | version = "0.48.5" 1901 | source = "registry+https://github.com/rust-lang/crates.io-index" 1902 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 1903 | 1904 | [[package]] 1905 | name = "windows_x86_64_gnu" 1906 | version = "0.52.0" 1907 | source = "registry+https://github.com/rust-lang/crates.io-index" 1908 | checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd" 1909 | 1910 | [[package]] 1911 | name = "windows_x86_64_gnullvm" 1912 | version = "0.48.5" 1913 | source = "registry+https://github.com/rust-lang/crates.io-index" 1914 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 1915 | 1916 | [[package]] 1917 | name = "windows_x86_64_gnullvm" 1918 | version = "0.52.0" 1919 | source = "registry+https://github.com/rust-lang/crates.io-index" 1920 | checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e" 1921 | 1922 | [[package]] 1923 | name = "windows_x86_64_msvc" 1924 | version = "0.48.5" 1925 | source = "registry+https://github.com/rust-lang/crates.io-index" 1926 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 1927 | 1928 | [[package]] 1929 | name = "windows_x86_64_msvc" 1930 | version = "0.52.0" 1931 | source = "registry+https://github.com/rust-lang/crates.io-index" 1932 | checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04" 1933 | 1934 | [[package]] 1935 | name = "winreg" 1936 | version = "0.50.0" 1937 | source = "registry+https://github.com/rust-lang/crates.io-index" 1938 | checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 1939 | dependencies = [ 1940 | "cfg-if", 1941 | "windows-sys 0.48.0", 1942 | ] 1943 | --------------------------------------------------------------------------------