├── .gitignore ├── symbols.c ├── Cargo.toml ├── README.md ├── src ├── sign.c └── main.rs ├── LICENSE └── Cargo.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /libsymbols.so 3 | -------------------------------------------------------------------------------- /symbols.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: AGPL-3.0-only 2 | // Copyright (C) 2025 Moew72 3 | 4 | void qq_magic_napi_register(void*) { } 5 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "sign" 3 | version = "1.0.0" 4 | edition = "2024" 5 | readme = "README.md" 6 | license = "AGPL-3.0-only" 7 | authors = ["Moew72 "] 8 | 9 | [build-dependencies] 10 | cc = "1.2.41" 11 | 12 | [dependencies] 13 | data-encoding = "2.9.0" 14 | ntex = { version = "2.16.0", features = ["compio"] } 15 | serde = { version = "1.0.228", features = ["derive"] } 16 | 17 | [profile.release] 18 | codegen-units = 1 19 | lto = true 20 | strip = true 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Linux QQ SignServer 2 | 3 | This project can only be used on Linux. 4 | 5 | ## How to use? 6 | 7 | First, go to the official website to download QQ. 8 | 9 | I recommend downloading the Linux x64 3.2.19-39038 version. If you need to download other versions, you will need to modify the `src/main.rs` file. 10 | 11 | Then unzip or install QQ. 12 | 13 | And then: 14 | 15 | ```sh 16 | gcc -std=c99 -shared -fPIC -o libsymbols.so symbols.c 17 | cargo build --release 18 | ``` 19 | 20 | Place the `libsymbols.so` and `target/release/sign` files into the folder that contains the `wrapper.node` file. 21 | 22 | Switch the directory to the folder containing `wrapper.node`, and then run `./sign`. 23 | 24 | The server will listen on `127.0.0.1:8080`. If you want to listen on other endpoints, please go to modify the `src/main.rs` file. 25 | 26 | Enjoy! 27 | -------------------------------------------------------------------------------- /src/sign.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: AGPL-3.0-only 2 | // Copyright (C) 2025 Moew72 3 | 4 | #define _GNU_SOURCE 5 | #include 6 | #include 7 | #include 8 | #include 9 | 10 | #ifndef __USE_GNU 11 | #define __USE_GNU 12 | #endif 13 | #include 14 | 15 | typedef long long (*func)(char*, unsigned char*, int, int, unsigned char*); 16 | 17 | char** libs; 18 | uintptr_t offset; 19 | func sign; 20 | 21 | static uintptr_t module_base; 22 | static void* module; 23 | 24 | int callback(struct dl_phdr_info* info, size_t, void*) { 25 | if (info->dlpi_name && strstr(info->dlpi_name, "wrapper.node")) { 26 | module_base = info->dlpi_addr; 27 | printf("Found wrapper.node at base: 0x%lx\n", module_base); 28 | return 1; 29 | } 30 | return 0; 31 | } 32 | 33 | int load_module() { 34 | for (int i = 0; libs[i] != NULL; i++) { 35 | void *handle = dlopen(libs[i], RTLD_LAZY | RTLD_GLOBAL); 36 | if (handle) { 37 | printf("Successfully preloaded: %s\n", libs[i]); 38 | } else { 39 | printf("Failed to preload %s: %s\n", libs[i], dlerror()); 40 | return 1; 41 | } 42 | } 43 | 44 | module = dlopen("./wrapper.node", RTLD_LAZY); 45 | if (!module) { 46 | fprintf(stderr, "dlopen failed: %s\n", dlerror()); 47 | return 1; 48 | } 49 | 50 | printf("Module handle: %p\n", module); 51 | 52 | dl_iterate_phdr(callback, NULL); 53 | 54 | if (module_base == 0) { 55 | fprintf(stderr, "Failed to find module base\n"); 56 | dlclose(module); 57 | return 1; 58 | } 59 | 60 | sign = (func)(module_base + offset); 61 | 62 | printf("Calculated function address: %p\n", (void*)sign); 63 | 64 | if ((uintptr_t)sign < 0x10000) { 65 | fprintf(stderr, "Invalid function pointer: %p\n", (void*)sign); 66 | dlclose(module); 67 | return 1; 68 | } 69 | 70 | return 0; 71 | } 72 | 73 | void unload_module() { 74 | dlclose(module); 75 | } 76 | -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: AGPL-3.0-only 2 | // Copyright (C) 2025 Moew72 3 | 4 | use std::ffi::{CString, c_char}; 5 | use std::mem::ManuallyDrop; 6 | use std::ptr::null; 7 | 8 | use data_encoding::HEXUPPER; 9 | use ntex::web; 10 | use serde::{Deserialize, Serialize}; 11 | 12 | mod lib { 13 | use std::ffi::*; 14 | type Func = extern "C" fn(*const c_char, *const c_uchar, c_int, c_int, *mut c_uchar); 15 | unsafe extern "C" { 16 | pub(super) static mut libs: *mut *const c_char; 17 | pub(super) static mut offset: usize; 18 | pub(super) static mut sign: Func; 19 | pub(super) fn load_module() -> c_int; 20 | pub(super) fn unload_module(); 21 | } 22 | } 23 | 24 | fn set_libs(libs: Vec<&str>) { 25 | let mut libs = libs 26 | .iter() 27 | .map(|&x| ManuallyDrop::new(CString::new(x).unwrap()).as_ptr()) 28 | .collect::>(); 29 | libs.push(null()); 30 | unsafe { 31 | lib::libs = ManuallyDrop::new(libs).as_mut_ptr(); 32 | } 33 | } 34 | 35 | fn set_offset(offset: usize) { 36 | unsafe { 37 | lib::offset = offset; 38 | } 39 | } 40 | 41 | fn load_module() { 42 | let ret = unsafe { lib::load_module() }; 43 | if ret != 0 { 44 | panic!("load module error."); 45 | } 46 | } 47 | 48 | #[allow(unused)] 49 | fn unload_module() { 50 | unsafe { lib::unload_module() } 51 | } 52 | 53 | fn sign(cmd: &str, src: &[u8], seq: i32) -> [Vec; 3] { 54 | const TOKEN_DATA_OFFSET: usize = 0x000; 55 | const TOKEN_LEN_OFFSET: usize = 0x0FF; 56 | const EXTRA_DATA_OFFSET: usize = 0x100; 57 | const EXTRA_LEN_OFFSET: usize = 0x1FF; 58 | const SIGN_DATA_OFFSET: usize = 0x200; 59 | const SIGN_LEN_OFFSET: usize = 0x2FF; 60 | 61 | let c_cmd = CString::new(cmd).unwrap(); 62 | let mut buf = [0u8; 0x300]; 63 | let _ = unsafe { 64 | lib::sign( 65 | c_cmd.as_ptr(), 66 | src.as_ptr(), 67 | src.len() as i32, 68 | seq, 69 | buf.as_mut_ptr(), 70 | ) 71 | }; 72 | 73 | let token_len = buf[TOKEN_LEN_OFFSET]; 74 | let token = &buf[TOKEN_DATA_OFFSET..TOKEN_DATA_OFFSET + token_len as usize]; 75 | let extra_len = buf[EXTRA_LEN_OFFSET]; 76 | let extra = &buf[EXTRA_DATA_OFFSET..EXTRA_DATA_OFFSET + extra_len as usize]; 77 | let sign_len = buf[SIGN_LEN_OFFSET]; 78 | let sign = &buf[SIGN_DATA_OFFSET..SIGN_DATA_OFFSET + sign_len as usize]; 79 | 80 | [Vec::from(token), Vec::from(extra), Vec::from(sign)] 81 | } 82 | 83 | #[ntex::main] 84 | async fn main() -> std::io::Result<()> { 85 | set_libs(vec!["libgnutls.so.30", "./libsymbols.so"]); 86 | set_offset(0x5ADE220); 87 | load_module(); 88 | web::HttpServer::new(|| web::App::new().service(sign_service)) 89 | .bind(("127.0.0.1", 8080))? 90 | .run() 91 | .await 92 | } 93 | 94 | #[web::post("/")] 95 | async fn sign_service(params: web::types::Json) -> impl web::Responder { 96 | let ret = HEXUPPER.decode(params.src.to_uppercase().as_bytes()); 97 | let src = match ret { 98 | Ok(v) => v, 99 | Err(err) => return web::HttpResponse::InternalServerError().body(err.to_string()), 100 | }; 101 | let [token, extra, sign] = sign(¶ms.cmd, &src, params.seq); 102 | let token = HEXUPPER.encode(&token); 103 | let extra = HEXUPPER.encode(&extra); 104 | let sign = HEXUPPER.encode(&sign); 105 | let value = Value { token, extra, sign }; 106 | let body = RespBody { value }; 107 | web::HttpResponse::Ok().json(&body) 108 | } 109 | 110 | #[derive(Deserialize)] 111 | struct Params { 112 | cmd: String, 113 | src: String, 114 | seq: i32, 115 | } 116 | 117 | #[derive(Serialize)] 118 | struct RespBody { 119 | value: Value, 120 | } 121 | 122 | #[derive(Serialize)] 123 | struct Value { 124 | token: String, 125 | extra: String, 126 | sign: String, 127 | } 128 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | version = 4 4 | 5 | [[package]] 6 | name = "ahash" 7 | version = "0.8.12" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75" 10 | dependencies = [ 11 | "cfg-if", 12 | "getrandom", 13 | "once_cell", 14 | "version_check", 15 | "zerocopy", 16 | ] 17 | 18 | [[package]] 19 | name = "aho-corasick" 20 | version = "1.1.3" 21 | source = "registry+https://github.com/rust-lang/crates.io-index" 22 | checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 23 | dependencies = [ 24 | "memchr", 25 | ] 26 | 27 | [[package]] 28 | name = "aligned-array" 29 | version = "1.0.1" 30 | source = "registry+https://github.com/rust-lang/crates.io-index" 31 | checksum = "e05c92d086290f52938013f6242ac62bf7d401fab8ad36798a609faa65c3fd2c" 32 | dependencies = [ 33 | "generic-array", 34 | ] 35 | 36 | [[package]] 37 | name = "arrayvec" 38 | version = "0.7.6" 39 | source = "registry+https://github.com/rust-lang/crates.io-index" 40 | checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" 41 | 42 | [[package]] 43 | name = "async-channel" 44 | version = "2.5.0" 45 | source = "registry+https://github.com/rust-lang/crates.io-index" 46 | checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2" 47 | dependencies = [ 48 | "concurrent-queue", 49 | "event-listener-strategy", 50 | "futures-core", 51 | "pin-project-lite", 52 | ] 53 | 54 | [[package]] 55 | name = "async-task" 56 | version = "4.7.1" 57 | source = "registry+https://github.com/rust-lang/crates.io-index" 58 | checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" 59 | 60 | [[package]] 61 | name = "atomic-waker" 62 | version = "1.1.2" 63 | source = "registry+https://github.com/rust-lang/crates.io-index" 64 | checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" 65 | 66 | [[package]] 67 | name = "base64" 68 | version = "0.22.1" 69 | source = "registry+https://github.com/rust-lang/crates.io-index" 70 | checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" 71 | 72 | [[package]] 73 | name = "bitflags" 74 | version = "2.9.4" 75 | source = "registry+https://github.com/rust-lang/crates.io-index" 76 | checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394" 77 | 78 | [[package]] 79 | name = "block-buffer" 80 | version = "0.10.4" 81 | source = "registry+https://github.com/rust-lang/crates.io-index" 82 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 83 | dependencies = [ 84 | "generic-array", 85 | ] 86 | 87 | [[package]] 88 | name = "bytes" 89 | version = "1.10.1" 90 | source = "registry+https://github.com/rust-lang/crates.io-index" 91 | checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" 92 | 93 | [[package]] 94 | name = "cc" 95 | version = "1.2.41" 96 | source = "registry+https://github.com/rust-lang/crates.io-index" 97 | checksum = "ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7" 98 | dependencies = [ 99 | "find-msvc-tools", 100 | "shlex", 101 | ] 102 | 103 | [[package]] 104 | name = "cfg-if" 105 | version = "1.0.4" 106 | source = "registry+https://github.com/rust-lang/crates.io-index" 107 | checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" 108 | 109 | [[package]] 110 | name = "cfg_aliases" 111 | version = "0.2.1" 112 | source = "registry+https://github.com/rust-lang/crates.io-index" 113 | checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" 114 | 115 | [[package]] 116 | name = "compio-buf" 117 | version = "0.6.0" 118 | source = "registry+https://github.com/rust-lang/crates.io-index" 119 | checksum = "3ce94a45a47ef8c0e3f44084fe67c8effc25e7ac1de6de2ee1a29a59e6c6ba8e" 120 | dependencies = [ 121 | "arrayvec", 122 | "bytes", 123 | "libc", 124 | ] 125 | 126 | [[package]] 127 | name = "compio-driver" 128 | version = "0.8.2" 129 | source = "registry+https://github.com/rust-lang/crates.io-index" 130 | checksum = "6ea757a5a1be2c2613f298a4ca703958251ff34bfdb803d78d55d01f48fae249" 131 | dependencies = [ 132 | "aligned-array", 133 | "cfg-if", 134 | "cfg_aliases", 135 | "compio-buf", 136 | "compio-log", 137 | "crossbeam-channel", 138 | "crossbeam-queue", 139 | "futures-util", 140 | "io-uring", 141 | "io_uring_buf_ring", 142 | "libc", 143 | "once_cell", 144 | "paste", 145 | "polling", 146 | "slab", 147 | "socket2", 148 | "windows-sys 0.52.0", 149 | ] 150 | 151 | [[package]] 152 | name = "compio-io" 153 | version = "0.7.0" 154 | source = "registry+https://github.com/rust-lang/crates.io-index" 155 | checksum = "c2b05cc4142659f2c90b6e44c68568ff71c83c6fb9285aca686952250b914932" 156 | dependencies = [ 157 | "compio-buf", 158 | "futures-util", 159 | "paste", 160 | ] 161 | 162 | [[package]] 163 | name = "compio-log" 164 | version = "0.1.0" 165 | source = "registry+https://github.com/rust-lang/crates.io-index" 166 | checksum = "fc4e560213c1996b618da369b7c9109564b41af9033802ae534465c4ee4e132f" 167 | dependencies = [ 168 | "tracing", 169 | ] 170 | 171 | [[package]] 172 | name = "compio-net" 173 | version = "0.8.0" 174 | source = "registry+https://github.com/rust-lang/crates.io-index" 175 | checksum = "0c1fabe3393bc0c3a0dca8e99a35bf97e42caa12bb3cc6bba83df04e28c9c142" 176 | dependencies = [ 177 | "cfg-if", 178 | "compio-buf", 179 | "compio-driver", 180 | "compio-io", 181 | "compio-runtime", 182 | "either", 183 | "libc", 184 | "once_cell", 185 | "socket2", 186 | "widestring", 187 | "windows-sys 0.52.0", 188 | ] 189 | 190 | [[package]] 191 | name = "compio-runtime" 192 | version = "0.8.1" 193 | source = "registry+https://github.com/rust-lang/crates.io-index" 194 | checksum = "b7df559e87b7ab05ba61c32619f6076dd5cc2daf5a8cb30cb9931fb355d20aff" 195 | dependencies = [ 196 | "async-task", 197 | "cfg-if", 198 | "compio-buf", 199 | "compio-driver", 200 | "compio-log", 201 | "crossbeam-queue", 202 | "futures-util", 203 | "libc", 204 | "once_cell", 205 | "scoped-tls", 206 | "socket2", 207 | "windows-sys 0.52.0", 208 | ] 209 | 210 | [[package]] 211 | name = "concurrent-queue" 212 | version = "2.5.0" 213 | source = "registry+https://github.com/rust-lang/crates.io-index" 214 | checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" 215 | dependencies = [ 216 | "crossbeam-utils", 217 | ] 218 | 219 | [[package]] 220 | name = "core_affinity" 221 | version = "0.8.3" 222 | source = "registry+https://github.com/rust-lang/crates.io-index" 223 | checksum = "a034b3a7b624016c6e13f5df875747cc25f884156aad2abd12b6c46797971342" 224 | dependencies = [ 225 | "libc", 226 | "num_cpus", 227 | "winapi", 228 | ] 229 | 230 | [[package]] 231 | name = "cpufeatures" 232 | version = "0.2.17" 233 | source = "registry+https://github.com/rust-lang/crates.io-index" 234 | checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" 235 | dependencies = [ 236 | "libc", 237 | ] 238 | 239 | [[package]] 240 | name = "crossbeam-channel" 241 | version = "0.5.15" 242 | source = "registry+https://github.com/rust-lang/crates.io-index" 243 | checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" 244 | dependencies = [ 245 | "crossbeam-utils", 246 | ] 247 | 248 | [[package]] 249 | name = "crossbeam-queue" 250 | version = "0.3.12" 251 | source = "registry+https://github.com/rust-lang/crates.io-index" 252 | checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115" 253 | dependencies = [ 254 | "crossbeam-utils", 255 | ] 256 | 257 | [[package]] 258 | name = "crossbeam-utils" 259 | version = "0.8.21" 260 | source = "registry+https://github.com/rust-lang/crates.io-index" 261 | checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" 262 | 263 | [[package]] 264 | name = "crypto-common" 265 | version = "0.1.6" 266 | source = "registry+https://github.com/rust-lang/crates.io-index" 267 | checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 268 | dependencies = [ 269 | "generic-array", 270 | "typenum", 271 | ] 272 | 273 | [[package]] 274 | name = "ctrlc" 275 | version = "3.5.0" 276 | source = "registry+https://github.com/rust-lang/crates.io-index" 277 | checksum = "881c5d0a13b2f1498e2306e82cbada78390e152d4b1378fb28a84f4dcd0dc4f3" 278 | dependencies = [ 279 | "dispatch", 280 | "nix", 281 | "windows-sys 0.61.2", 282 | ] 283 | 284 | [[package]] 285 | name = "data-encoding" 286 | version = "2.9.0" 287 | source = "registry+https://github.com/rust-lang/crates.io-index" 288 | checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476" 289 | 290 | [[package]] 291 | name = "digest" 292 | version = "0.10.7" 293 | source = "registry+https://github.com/rust-lang/crates.io-index" 294 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 295 | dependencies = [ 296 | "block-buffer", 297 | "crypto-common", 298 | ] 299 | 300 | [[package]] 301 | name = "dispatch" 302 | version = "0.2.0" 303 | source = "registry+https://github.com/rust-lang/crates.io-index" 304 | checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" 305 | 306 | [[package]] 307 | name = "either" 308 | version = "1.15.0" 309 | source = "registry+https://github.com/rust-lang/crates.io-index" 310 | checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" 311 | 312 | [[package]] 313 | name = "encoding_rs" 314 | version = "0.8.35" 315 | source = "registry+https://github.com/rust-lang/crates.io-index" 316 | checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" 317 | dependencies = [ 318 | "cfg-if", 319 | ] 320 | 321 | [[package]] 322 | name = "env_filter" 323 | version = "0.1.4" 324 | source = "registry+https://github.com/rust-lang/crates.io-index" 325 | checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2" 326 | dependencies = [ 327 | "log", 328 | ] 329 | 330 | [[package]] 331 | name = "env_logger" 332 | version = "0.11.8" 333 | source = "registry+https://github.com/rust-lang/crates.io-index" 334 | checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f" 335 | dependencies = [ 336 | "env_filter", 337 | "log", 338 | ] 339 | 340 | [[package]] 341 | name = "errno" 342 | version = "0.3.14" 343 | source = "registry+https://github.com/rust-lang/crates.io-index" 344 | checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 345 | dependencies = [ 346 | "libc", 347 | "windows-sys 0.61.2", 348 | ] 349 | 350 | [[package]] 351 | name = "event-listener" 352 | version = "5.4.1" 353 | source = "registry+https://github.com/rust-lang/crates.io-index" 354 | checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab" 355 | dependencies = [ 356 | "concurrent-queue", 357 | "parking", 358 | "pin-project-lite", 359 | ] 360 | 361 | [[package]] 362 | name = "event-listener-strategy" 363 | version = "0.5.4" 364 | source = "registry+https://github.com/rust-lang/crates.io-index" 365 | checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93" 366 | dependencies = [ 367 | "event-listener", 368 | "pin-project-lite", 369 | ] 370 | 371 | [[package]] 372 | name = "find-msvc-tools" 373 | version = "0.1.4" 374 | source = "registry+https://github.com/rust-lang/crates.io-index" 375 | checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" 376 | 377 | [[package]] 378 | name = "fnv" 379 | version = "1.0.7" 380 | source = "registry+https://github.com/rust-lang/crates.io-index" 381 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 382 | 383 | [[package]] 384 | name = "form_urlencoded" 385 | version = "1.2.2" 386 | source = "registry+https://github.com/rust-lang/crates.io-index" 387 | checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" 388 | dependencies = [ 389 | "percent-encoding", 390 | ] 391 | 392 | [[package]] 393 | name = "futures-core" 394 | version = "0.3.31" 395 | source = "registry+https://github.com/rust-lang/crates.io-index" 396 | checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" 397 | 398 | [[package]] 399 | name = "futures-macro" 400 | version = "0.3.31" 401 | source = "registry+https://github.com/rust-lang/crates.io-index" 402 | checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" 403 | dependencies = [ 404 | "proc-macro2", 405 | "quote", 406 | "syn 2.0.106", 407 | ] 408 | 409 | [[package]] 410 | name = "futures-sink" 411 | version = "0.3.31" 412 | source = "registry+https://github.com/rust-lang/crates.io-index" 413 | checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" 414 | 415 | [[package]] 416 | name = "futures-task" 417 | version = "0.3.31" 418 | source = "registry+https://github.com/rust-lang/crates.io-index" 419 | checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" 420 | 421 | [[package]] 422 | name = "futures-timer" 423 | version = "3.0.3" 424 | source = "registry+https://github.com/rust-lang/crates.io-index" 425 | checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24" 426 | 427 | [[package]] 428 | name = "futures-util" 429 | version = "0.3.31" 430 | source = "registry+https://github.com/rust-lang/crates.io-index" 431 | checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" 432 | dependencies = [ 433 | "futures-core", 434 | "futures-macro", 435 | "futures-sink", 436 | "futures-task", 437 | "pin-project-lite", 438 | "pin-utils", 439 | "slab", 440 | ] 441 | 442 | [[package]] 443 | name = "generic-array" 444 | version = "0.14.9" 445 | source = "registry+https://github.com/rust-lang/crates.io-index" 446 | checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2" 447 | dependencies = [ 448 | "typenum", 449 | "version_check", 450 | ] 451 | 452 | [[package]] 453 | name = "getrandom" 454 | version = "0.3.4" 455 | source = "registry+https://github.com/rust-lang/crates.io-index" 456 | checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" 457 | dependencies = [ 458 | "cfg-if", 459 | "libc", 460 | "r-efi", 461 | "wasip2", 462 | ] 463 | 464 | [[package]] 465 | name = "hermit-abi" 466 | version = "0.5.2" 467 | source = "registry+https://github.com/rust-lang/crates.io-index" 468 | checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" 469 | 470 | [[package]] 471 | name = "http" 472 | version = "1.3.1" 473 | source = "registry+https://github.com/rust-lang/crates.io-index" 474 | checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" 475 | dependencies = [ 476 | "bytes", 477 | "fnv", 478 | "itoa", 479 | ] 480 | 481 | [[package]] 482 | name = "httparse" 483 | version = "1.10.1" 484 | source = "registry+https://github.com/rust-lang/crates.io-index" 485 | checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" 486 | 487 | [[package]] 488 | name = "httpdate" 489 | version = "1.0.3" 490 | source = "registry+https://github.com/rust-lang/crates.io-index" 491 | checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 492 | 493 | [[package]] 494 | name = "io-uring" 495 | version = "0.7.10" 496 | source = "registry+https://github.com/rust-lang/crates.io-index" 497 | checksum = "046fa2d4d00aea763528b4950358d0ead425372445dc8ff86312b3c69ff7727b" 498 | dependencies = [ 499 | "bitflags", 500 | "cfg-if", 501 | "libc", 502 | ] 503 | 504 | [[package]] 505 | name = "io_uring_buf_ring" 506 | version = "0.2.1" 507 | source = "registry+https://github.com/rust-lang/crates.io-index" 508 | checksum = "8a8867874ff5758b47c1dac069e6e86541432f9da8be9111c5e94154134f07d0" 509 | dependencies = [ 510 | "bytes", 511 | "io-uring", 512 | "rustix", 513 | ] 514 | 515 | [[package]] 516 | name = "itoa" 517 | version = "1.0.15" 518 | source = "registry+https://github.com/rust-lang/crates.io-index" 519 | checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" 520 | 521 | [[package]] 522 | name = "libc" 523 | version = "0.2.177" 524 | source = "registry+https://github.com/rust-lang/crates.io-index" 525 | checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976" 526 | 527 | [[package]] 528 | name = "linux-raw-sys" 529 | version = "0.11.0" 530 | source = "registry+https://github.com/rust-lang/crates.io-index" 531 | checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 532 | 533 | [[package]] 534 | name = "log" 535 | version = "0.4.28" 536 | source = "registry+https://github.com/rust-lang/crates.io-index" 537 | checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" 538 | 539 | [[package]] 540 | name = "memchr" 541 | version = "2.7.6" 542 | source = "registry+https://github.com/rust-lang/crates.io-index" 543 | checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 544 | 545 | [[package]] 546 | name = "mime" 547 | version = "0.3.17" 548 | source = "registry+https://github.com/rust-lang/crates.io-index" 549 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 550 | 551 | [[package]] 552 | name = "nanorand" 553 | version = "0.8.0" 554 | source = "registry+https://github.com/rust-lang/crates.io-index" 555 | checksum = "6e3d189da485332e96ba8a5ef646a311871abd7915bf06ac848a9117f19cf6e4" 556 | 557 | [[package]] 558 | name = "nix" 559 | version = "0.30.1" 560 | source = "registry+https://github.com/rust-lang/crates.io-index" 561 | checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6" 562 | dependencies = [ 563 | "bitflags", 564 | "cfg-if", 565 | "cfg_aliases", 566 | "libc", 567 | ] 568 | 569 | [[package]] 570 | name = "ntex" 571 | version = "2.16.0" 572 | source = "registry+https://github.com/rust-lang/crates.io-index" 573 | checksum = "d4b41d1af2e11a7c29499395c2505550507749c35b29fa4a31234130abdb2285" 574 | dependencies = [ 575 | "base64", 576 | "bitflags", 577 | "encoding_rs", 578 | "env_logger", 579 | "httparse", 580 | "httpdate", 581 | "log", 582 | "mime", 583 | "nanorand", 584 | "ntex-bytes", 585 | "ntex-codec", 586 | "ntex-h2", 587 | "ntex-http", 588 | "ntex-io", 589 | "ntex-macros", 590 | "ntex-net", 591 | "ntex-router", 592 | "ntex-rt", 593 | "ntex-server", 594 | "ntex-service", 595 | "ntex-tls", 596 | "ntex-util", 597 | "percent-encoding", 598 | "pin-project-lite", 599 | "regex", 600 | "serde", 601 | "serde_json", 602 | "serde_urlencoded", 603 | "sha1", 604 | "thiserror", 605 | "variadics_please", 606 | ] 607 | 608 | [[package]] 609 | name = "ntex-bytes" 610 | version = "0.1.30" 611 | source = "registry+https://github.com/rust-lang/crates.io-index" 612 | checksum = "53d23b86ef2f4a947e29e959a61bdae71c9d52a80df02936a9992bc6dbda9ddb" 613 | dependencies = [ 614 | "bitflags", 615 | "bytes", 616 | "futures-core", 617 | "serde", 618 | ] 619 | 620 | [[package]] 621 | name = "ntex-codec" 622 | version = "0.6.2" 623 | source = "registry+https://github.com/rust-lang/crates.io-index" 624 | checksum = "69a7e111d946bb915d712df496728ca2a120b1b5643f66c580f13023bce46fda" 625 | dependencies = [ 626 | "ntex-bytes", 627 | ] 628 | 629 | [[package]] 630 | name = "ntex-compio" 631 | version = "0.4.0" 632 | source = "registry+https://github.com/rust-lang/crates.io-index" 633 | checksum = "10a040ee6290a2ed08e4eed25f2c978c5fe81b8f05c1665de39e905c7c93e43e" 634 | dependencies = [ 635 | "compio-buf", 636 | "compio-driver", 637 | "compio-io", 638 | "compio-net", 639 | "compio-runtime", 640 | "log", 641 | "ntex-bytes", 642 | "ntex-io", 643 | "ntex-rt", 644 | "ntex-util", 645 | ] 646 | 647 | [[package]] 648 | name = "ntex-h2" 649 | version = "1.13.0" 650 | source = "registry+https://github.com/rust-lang/crates.io-index" 651 | checksum = "2bfa6c16696b2b08cef057d581b67726213b71b42be69cda1977e351b9a36e5c" 652 | dependencies = [ 653 | "ahash", 654 | "bitflags", 655 | "log", 656 | "nanorand", 657 | "ntex-bytes", 658 | "ntex-codec", 659 | "ntex-http", 660 | "ntex-io", 661 | "ntex-net", 662 | "ntex-service", 663 | "ntex-util", 664 | "pin-project-lite", 665 | "thiserror", 666 | ] 667 | 668 | [[package]] 669 | name = "ntex-http" 670 | version = "0.1.15" 671 | source = "registry+https://github.com/rust-lang/crates.io-index" 672 | checksum = "61da3d6c8bec83c5481d7e36ed4cf1a8cd0edee3e2fa411290932b17549d5cf2" 673 | dependencies = [ 674 | "ahash", 675 | "futures-core", 676 | "http", 677 | "itoa", 678 | "log", 679 | "ntex-bytes", 680 | "serde", 681 | "thiserror", 682 | ] 683 | 684 | [[package]] 685 | name = "ntex-io" 686 | version = "2.14.0" 687 | source = "registry+https://github.com/rust-lang/crates.io-index" 688 | checksum = "55eb13ef2e89f799ef0395911b6365052cab4cea65a7d2ef870e39732bf346b2" 689 | dependencies = [ 690 | "bitflags", 691 | "log", 692 | "ntex-bytes", 693 | "ntex-codec", 694 | "ntex-service", 695 | "ntex-util", 696 | "pin-project-lite", 697 | ] 698 | 699 | [[package]] 700 | name = "ntex-macros" 701 | version = "0.1.4" 702 | source = "registry+https://github.com/rust-lang/crates.io-index" 703 | checksum = "7389855b7cf0a7cc4cd6748b6d31ad8d45481c9a4d6c977d289a469a362f7766" 704 | dependencies = [ 705 | "proc-macro2", 706 | "quote", 707 | "syn 1.0.109", 708 | ] 709 | 710 | [[package]] 711 | name = "ntex-net" 712 | version = "2.8.1" 713 | source = "registry+https://github.com/rust-lang/crates.io-index" 714 | checksum = "a53c65509e4e3abf6490514e98a570d4cbcdbf18628e9569a02cc1d47c1e29b9" 715 | dependencies = [ 716 | "bitflags", 717 | "cfg-if", 718 | "libc", 719 | "log", 720 | "ntex-bytes", 721 | "ntex-compio", 722 | "ntex-http", 723 | "ntex-io", 724 | "ntex-rt", 725 | "ntex-service", 726 | "ntex-util", 727 | "thiserror", 728 | ] 729 | 730 | [[package]] 731 | name = "ntex-router" 732 | version = "0.5.3" 733 | source = "registry+https://github.com/rust-lang/crates.io-index" 734 | checksum = "bb9c68c26a87ffca54339be5f95223339db3e7bcc5d64733fef20812970a746f" 735 | dependencies = [ 736 | "http", 737 | "log", 738 | "ntex-bytes", 739 | "regex", 740 | "serde", 741 | ] 742 | 743 | [[package]] 744 | name = "ntex-rt" 745 | version = "0.4.32" 746 | source = "registry+https://github.com/rust-lang/crates.io-index" 747 | checksum = "c30a11a3017f0bf2ea00d0bd6ba8f69e52906aa8c1f894a060341056d8b1eef8" 748 | dependencies = [ 749 | "async-channel", 750 | "compio-driver", 751 | "compio-runtime", 752 | "futures-timer", 753 | "log", 754 | "oneshot", 755 | ] 756 | 757 | [[package]] 758 | name = "ntex-server" 759 | version = "2.8.1" 760 | source = "registry+https://github.com/rust-lang/crates.io-index" 761 | checksum = "b886e739e5101ba06f083244bda0557997521c3ddf9b8f85ca74bc2aa165aa29" 762 | dependencies = [ 763 | "async-channel", 764 | "atomic-waker", 765 | "core_affinity", 766 | "ctrlc", 767 | "log", 768 | "ntex-bytes", 769 | "ntex-net", 770 | "ntex-rt", 771 | "ntex-service", 772 | "ntex-util", 773 | "oneshot", 774 | "polling", 775 | "signal-hook", 776 | "socket2", 777 | ] 778 | 779 | [[package]] 780 | name = "ntex-service" 781 | version = "3.5.0" 782 | source = "registry+https://github.com/rust-lang/crates.io-index" 783 | checksum = "35dc63ff1a6d11eac0f27682997e4d8c2055b151e45e10dc1d76347b49fa52b7" 784 | dependencies = [ 785 | "slab", 786 | "version_check", 787 | ] 788 | 789 | [[package]] 790 | name = "ntex-tls" 791 | version = "2.6.1" 792 | source = "registry+https://github.com/rust-lang/crates.io-index" 793 | checksum = "08c6c64b87ddbd44a9140810712ced321d3fec149d74e9b76beef11aa3bc8110" 794 | dependencies = [ 795 | "log", 796 | "ntex-bytes", 797 | "ntex-io", 798 | "ntex-net", 799 | "ntex-service", 800 | "ntex-util", 801 | ] 802 | 803 | [[package]] 804 | name = "ntex-util" 805 | version = "2.15.0" 806 | source = "registry+https://github.com/rust-lang/crates.io-index" 807 | checksum = "877b628fb2feecdd602174933568980aa96ac5c62766af60b09f38bf2bd10d09" 808 | dependencies = [ 809 | "ahash", 810 | "bitflags", 811 | "futures-core", 812 | "futures-timer", 813 | "log", 814 | "ntex-bytes", 815 | "ntex-rt", 816 | "ntex-service", 817 | "pin-project-lite", 818 | "slab", 819 | "thiserror", 820 | ] 821 | 822 | [[package]] 823 | name = "num_cpus" 824 | version = "1.17.0" 825 | source = "registry+https://github.com/rust-lang/crates.io-index" 826 | checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b" 827 | dependencies = [ 828 | "hermit-abi", 829 | "libc", 830 | ] 831 | 832 | [[package]] 833 | name = "once_cell" 834 | version = "1.21.3" 835 | source = "registry+https://github.com/rust-lang/crates.io-index" 836 | checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" 837 | 838 | [[package]] 839 | name = "oneshot" 840 | version = "0.1.11" 841 | source = "registry+https://github.com/rust-lang/crates.io-index" 842 | checksum = "b4ce411919553d3f9fa53a0880544cda985a112117a0444d5ff1e870a893d6ea" 843 | 844 | [[package]] 845 | name = "parking" 846 | version = "2.2.1" 847 | source = "registry+https://github.com/rust-lang/crates.io-index" 848 | checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" 849 | 850 | [[package]] 851 | name = "paste" 852 | version = "1.0.15" 853 | source = "registry+https://github.com/rust-lang/crates.io-index" 854 | checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" 855 | 856 | [[package]] 857 | name = "percent-encoding" 858 | version = "2.3.2" 859 | source = "registry+https://github.com/rust-lang/crates.io-index" 860 | checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" 861 | 862 | [[package]] 863 | name = "pin-project-lite" 864 | version = "0.2.16" 865 | source = "registry+https://github.com/rust-lang/crates.io-index" 866 | checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" 867 | 868 | [[package]] 869 | name = "pin-utils" 870 | version = "0.1.0" 871 | source = "registry+https://github.com/rust-lang/crates.io-index" 872 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 873 | 874 | [[package]] 875 | name = "polling" 876 | version = "3.11.0" 877 | source = "registry+https://github.com/rust-lang/crates.io-index" 878 | checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218" 879 | dependencies = [ 880 | "cfg-if", 881 | "concurrent-queue", 882 | "hermit-abi", 883 | "pin-project-lite", 884 | "rustix", 885 | "windows-sys 0.61.2", 886 | ] 887 | 888 | [[package]] 889 | name = "proc-macro2" 890 | version = "1.0.101" 891 | source = "registry+https://github.com/rust-lang/crates.io-index" 892 | checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de" 893 | dependencies = [ 894 | "unicode-ident", 895 | ] 896 | 897 | [[package]] 898 | name = "quote" 899 | version = "1.0.41" 900 | source = "registry+https://github.com/rust-lang/crates.io-index" 901 | checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1" 902 | dependencies = [ 903 | "proc-macro2", 904 | ] 905 | 906 | [[package]] 907 | name = "r-efi" 908 | version = "5.3.0" 909 | source = "registry+https://github.com/rust-lang/crates.io-index" 910 | checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" 911 | 912 | [[package]] 913 | name = "regex" 914 | version = "1.12.2" 915 | source = "registry+https://github.com/rust-lang/crates.io-index" 916 | checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4" 917 | dependencies = [ 918 | "aho-corasick", 919 | "memchr", 920 | "regex-automata", 921 | "regex-syntax", 922 | ] 923 | 924 | [[package]] 925 | name = "regex-automata" 926 | version = "0.4.13" 927 | source = "registry+https://github.com/rust-lang/crates.io-index" 928 | checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c" 929 | dependencies = [ 930 | "aho-corasick", 931 | "memchr", 932 | "regex-syntax", 933 | ] 934 | 935 | [[package]] 936 | name = "regex-syntax" 937 | version = "0.8.8" 938 | source = "registry+https://github.com/rust-lang/crates.io-index" 939 | checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58" 940 | 941 | [[package]] 942 | name = "rustix" 943 | version = "1.1.2" 944 | source = "registry+https://github.com/rust-lang/crates.io-index" 945 | checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e" 946 | dependencies = [ 947 | "bitflags", 948 | "errno", 949 | "libc", 950 | "linux-raw-sys", 951 | "windows-sys 0.61.2", 952 | ] 953 | 954 | [[package]] 955 | name = "ryu" 956 | version = "1.0.20" 957 | source = "registry+https://github.com/rust-lang/crates.io-index" 958 | checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" 959 | 960 | [[package]] 961 | name = "scoped-tls" 962 | version = "1.0.1" 963 | source = "registry+https://github.com/rust-lang/crates.io-index" 964 | checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 965 | 966 | [[package]] 967 | name = "serde" 968 | version = "1.0.228" 969 | source = "registry+https://github.com/rust-lang/crates.io-index" 970 | checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" 971 | dependencies = [ 972 | "serde_core", 973 | "serde_derive", 974 | ] 975 | 976 | [[package]] 977 | name = "serde_core" 978 | version = "1.0.228" 979 | source = "registry+https://github.com/rust-lang/crates.io-index" 980 | checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" 981 | dependencies = [ 982 | "serde_derive", 983 | ] 984 | 985 | [[package]] 986 | name = "serde_derive" 987 | version = "1.0.228" 988 | source = "registry+https://github.com/rust-lang/crates.io-index" 989 | checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" 990 | dependencies = [ 991 | "proc-macro2", 992 | "quote", 993 | "syn 2.0.106", 994 | ] 995 | 996 | [[package]] 997 | name = "serde_json" 998 | version = "1.0.145" 999 | source = "registry+https://github.com/rust-lang/crates.io-index" 1000 | checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c" 1001 | dependencies = [ 1002 | "itoa", 1003 | "memchr", 1004 | "ryu", 1005 | "serde", 1006 | "serde_core", 1007 | ] 1008 | 1009 | [[package]] 1010 | name = "serde_urlencoded" 1011 | version = "0.7.1" 1012 | source = "registry+https://github.com/rust-lang/crates.io-index" 1013 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1014 | dependencies = [ 1015 | "form_urlencoded", 1016 | "itoa", 1017 | "ryu", 1018 | "serde", 1019 | ] 1020 | 1021 | [[package]] 1022 | name = "sha1" 1023 | version = "0.10.6" 1024 | source = "registry+https://github.com/rust-lang/crates.io-index" 1025 | checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" 1026 | dependencies = [ 1027 | "cfg-if", 1028 | "cpufeatures", 1029 | "digest", 1030 | ] 1031 | 1032 | [[package]] 1033 | name = "shlex" 1034 | version = "1.3.0" 1035 | source = "registry+https://github.com/rust-lang/crates.io-index" 1036 | checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 1037 | 1038 | [[package]] 1039 | name = "sign" 1040 | version = "0.1.0" 1041 | dependencies = [ 1042 | "cc", 1043 | "data-encoding", 1044 | "ntex", 1045 | "serde", 1046 | ] 1047 | 1048 | [[package]] 1049 | name = "signal-hook" 1050 | version = "0.3.18" 1051 | source = "registry+https://github.com/rust-lang/crates.io-index" 1052 | checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2" 1053 | dependencies = [ 1054 | "libc", 1055 | "signal-hook-registry", 1056 | ] 1057 | 1058 | [[package]] 1059 | name = "signal-hook-registry" 1060 | version = "1.4.6" 1061 | source = "registry+https://github.com/rust-lang/crates.io-index" 1062 | checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b" 1063 | dependencies = [ 1064 | "libc", 1065 | ] 1066 | 1067 | [[package]] 1068 | name = "slab" 1069 | version = "0.4.11" 1070 | source = "registry+https://github.com/rust-lang/crates.io-index" 1071 | checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589" 1072 | 1073 | [[package]] 1074 | name = "socket2" 1075 | version = "0.5.10" 1076 | source = "registry+https://github.com/rust-lang/crates.io-index" 1077 | checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678" 1078 | dependencies = [ 1079 | "libc", 1080 | "windows-sys 0.52.0", 1081 | ] 1082 | 1083 | [[package]] 1084 | name = "syn" 1085 | version = "1.0.109" 1086 | source = "registry+https://github.com/rust-lang/crates.io-index" 1087 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1088 | dependencies = [ 1089 | "proc-macro2", 1090 | "quote", 1091 | "unicode-ident", 1092 | ] 1093 | 1094 | [[package]] 1095 | name = "syn" 1096 | version = "2.0.106" 1097 | source = "registry+https://github.com/rust-lang/crates.io-index" 1098 | checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6" 1099 | dependencies = [ 1100 | "proc-macro2", 1101 | "quote", 1102 | "unicode-ident", 1103 | ] 1104 | 1105 | [[package]] 1106 | name = "thiserror" 1107 | version = "2.0.17" 1108 | source = "registry+https://github.com/rust-lang/crates.io-index" 1109 | checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8" 1110 | dependencies = [ 1111 | "thiserror-impl", 1112 | ] 1113 | 1114 | [[package]] 1115 | name = "thiserror-impl" 1116 | version = "2.0.17" 1117 | source = "registry+https://github.com/rust-lang/crates.io-index" 1118 | checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913" 1119 | dependencies = [ 1120 | "proc-macro2", 1121 | "quote", 1122 | "syn 2.0.106", 1123 | ] 1124 | 1125 | [[package]] 1126 | name = "tracing" 1127 | version = "0.1.41" 1128 | source = "registry+https://github.com/rust-lang/crates.io-index" 1129 | checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" 1130 | dependencies = [ 1131 | "pin-project-lite", 1132 | "tracing-core", 1133 | ] 1134 | 1135 | [[package]] 1136 | name = "tracing-core" 1137 | version = "0.1.34" 1138 | source = "registry+https://github.com/rust-lang/crates.io-index" 1139 | checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678" 1140 | 1141 | [[package]] 1142 | name = "typenum" 1143 | version = "1.19.0" 1144 | source = "registry+https://github.com/rust-lang/crates.io-index" 1145 | checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" 1146 | 1147 | [[package]] 1148 | name = "unicode-ident" 1149 | version = "1.0.19" 1150 | source = "registry+https://github.com/rust-lang/crates.io-index" 1151 | checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d" 1152 | 1153 | [[package]] 1154 | name = "variadics_please" 1155 | version = "1.1.0" 1156 | source = "registry+https://github.com/rust-lang/crates.io-index" 1157 | checksum = "41b6d82be61465f97d42bd1d15bf20f3b0a3a0905018f38f9d6f6962055b0b5c" 1158 | dependencies = [ 1159 | "proc-macro2", 1160 | "quote", 1161 | "syn 2.0.106", 1162 | ] 1163 | 1164 | [[package]] 1165 | name = "version_check" 1166 | version = "0.9.5" 1167 | source = "registry+https://github.com/rust-lang/crates.io-index" 1168 | checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" 1169 | 1170 | [[package]] 1171 | name = "wasip2" 1172 | version = "1.0.1+wasi-0.2.4" 1173 | source = "registry+https://github.com/rust-lang/crates.io-index" 1174 | checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" 1175 | dependencies = [ 1176 | "wit-bindgen", 1177 | ] 1178 | 1179 | [[package]] 1180 | name = "widestring" 1181 | version = "1.2.1" 1182 | source = "registry+https://github.com/rust-lang/crates.io-index" 1183 | checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471" 1184 | 1185 | [[package]] 1186 | name = "winapi" 1187 | version = "0.3.9" 1188 | source = "registry+https://github.com/rust-lang/crates.io-index" 1189 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 1190 | dependencies = [ 1191 | "winapi-i686-pc-windows-gnu", 1192 | "winapi-x86_64-pc-windows-gnu", 1193 | ] 1194 | 1195 | [[package]] 1196 | name = "winapi-i686-pc-windows-gnu" 1197 | version = "0.4.0" 1198 | source = "registry+https://github.com/rust-lang/crates.io-index" 1199 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 1200 | 1201 | [[package]] 1202 | name = "winapi-x86_64-pc-windows-gnu" 1203 | version = "0.4.0" 1204 | source = "registry+https://github.com/rust-lang/crates.io-index" 1205 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 1206 | 1207 | [[package]] 1208 | name = "windows-link" 1209 | version = "0.2.1" 1210 | source = "registry+https://github.com/rust-lang/crates.io-index" 1211 | checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 1212 | 1213 | [[package]] 1214 | name = "windows-sys" 1215 | version = "0.52.0" 1216 | source = "registry+https://github.com/rust-lang/crates.io-index" 1217 | checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" 1218 | dependencies = [ 1219 | "windows-targets", 1220 | ] 1221 | 1222 | [[package]] 1223 | name = "windows-sys" 1224 | version = "0.61.2" 1225 | source = "registry+https://github.com/rust-lang/crates.io-index" 1226 | checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 1227 | dependencies = [ 1228 | "windows-link", 1229 | ] 1230 | 1231 | [[package]] 1232 | name = "windows-targets" 1233 | version = "0.52.6" 1234 | source = "registry+https://github.com/rust-lang/crates.io-index" 1235 | checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" 1236 | dependencies = [ 1237 | "windows_aarch64_gnullvm", 1238 | "windows_aarch64_msvc", 1239 | "windows_i686_gnu", 1240 | "windows_i686_gnullvm", 1241 | "windows_i686_msvc", 1242 | "windows_x86_64_gnu", 1243 | "windows_x86_64_gnullvm", 1244 | "windows_x86_64_msvc", 1245 | ] 1246 | 1247 | [[package]] 1248 | name = "windows_aarch64_gnullvm" 1249 | version = "0.52.6" 1250 | source = "registry+https://github.com/rust-lang/crates.io-index" 1251 | checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" 1252 | 1253 | [[package]] 1254 | name = "windows_aarch64_msvc" 1255 | version = "0.52.6" 1256 | source = "registry+https://github.com/rust-lang/crates.io-index" 1257 | checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" 1258 | 1259 | [[package]] 1260 | name = "windows_i686_gnu" 1261 | version = "0.52.6" 1262 | source = "registry+https://github.com/rust-lang/crates.io-index" 1263 | checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" 1264 | 1265 | [[package]] 1266 | name = "windows_i686_gnullvm" 1267 | version = "0.52.6" 1268 | source = "registry+https://github.com/rust-lang/crates.io-index" 1269 | checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" 1270 | 1271 | [[package]] 1272 | name = "windows_i686_msvc" 1273 | version = "0.52.6" 1274 | source = "registry+https://github.com/rust-lang/crates.io-index" 1275 | checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" 1276 | 1277 | [[package]] 1278 | name = "windows_x86_64_gnu" 1279 | version = "0.52.6" 1280 | source = "registry+https://github.com/rust-lang/crates.io-index" 1281 | checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" 1282 | 1283 | [[package]] 1284 | name = "windows_x86_64_gnullvm" 1285 | version = "0.52.6" 1286 | source = "registry+https://github.com/rust-lang/crates.io-index" 1287 | checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" 1288 | 1289 | [[package]] 1290 | name = "windows_x86_64_msvc" 1291 | version = "0.52.6" 1292 | source = "registry+https://github.com/rust-lang/crates.io-index" 1293 | checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" 1294 | 1295 | [[package]] 1296 | name = "wit-bindgen" 1297 | version = "0.46.0" 1298 | source = "registry+https://github.com/rust-lang/crates.io-index" 1299 | checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" 1300 | 1301 | [[package]] 1302 | name = "zerocopy" 1303 | version = "0.8.27" 1304 | source = "registry+https://github.com/rust-lang/crates.io-index" 1305 | checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c" 1306 | dependencies = [ 1307 | "zerocopy-derive", 1308 | ] 1309 | 1310 | [[package]] 1311 | name = "zerocopy-derive" 1312 | version = "0.8.27" 1313 | source = "registry+https://github.com/rust-lang/crates.io-index" 1314 | checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831" 1315 | dependencies = [ 1316 | "proc-macro2", 1317 | "quote", 1318 | "syn 2.0.106", 1319 | ] 1320 | --------------------------------------------------------------------------------