+
+ # This file was @generated by crate2nix 0.14.1 with the command:
+ # "generate"
+ # See https://github.com/kolloch/crate2nix for more info.
+
+ { nixpkgs ? <nixpkgs>
+ , pkgs ? import nixpkgs { config = {}; }
+ , lib ? pkgs.lib
+ , stdenv ? pkgs.stdenv
+ , buildRustCrateForPkgs ? pkgs: pkgs.buildRustCrate
+ # This is used as the `crateOverrides` argument for `buildRustCrate`.
+ , defaultCrateOverrides ? pkgs.defaultCrateOverrides
+ # The features to enable for the root_crate or the workspace_members.
+ , rootFeatures ? [ "default" ]
+ # If true, throw errors instead of issueing deprecation warnings.
+ , strictDeprecation ? false
+ # Elements to add to the `-C target-feature=` argument passed to `rustc`
+ # (separated by `,`, prefixed with `+`).
+ # Used for conditional compilation based on CPU feature detection.
+ , targetFeatures ? []
+ # Whether to perform release builds: longer compile times, faster binaries.
+ , release ? true
+ # Additional crate2nix configuration if it exists.
+ , crateConfig
+ ? if builtins.pathExists ./crate-config.nix
+ then pkgs.callPackage ./crate-config.nix {}
+ else {}
+ }:
+
+ rec {
+ #
+ # "public" attributes that we attempt to keep stable with new versions of crate2nix.
+ #
+
+
+ # Refer your crate build derivation by name here.
+ # You can override the features with
+ # workspaceMembers."${crateName}".build.override { features = [ "default" "feature1" ... ]; }.
+ workspaceMembers = {
+ "ci" = rec {
+ packageId = "ci";
+ build = internal.buildRustCrateWithFeatures {
+ packageId = "ci";
+ };
+
+ # Debug support which might change between releases.
+ # File a bug if you depend on any for non-debug work!
+ debug = internal.debugCrate { inherit packageId; };
+ };
+ "nest" = rec {
+ packageId = "nest";
+ build = internal.buildRustCrateWithFeatures {
+ packageId = "nest";
+ };
+
+ # Debug support which might change between releases.
+ # File a bug if you depend on any for non-debug work!
+ debug = internal.debugCrate { inherit packageId; };
+ };
+ "pijul-hooks" = rec {
+ packageId = "pijul-hooks";
+ build = internal.buildRustCrateWithFeatures {
+ packageId = "pijul-hooks";
+ };
+
+ # Debug support which might change between releases.
+ # File a bug if you depend on any for non-debug work!
+ debug = internal.debugCrate { inherit packageId; };
+ };
+ "replication" = rec {
+ packageId = "replication";
+ build = internal.buildRustCrateWithFeatures {
+ packageId = "replication";
+ };
+
+ # Debug support which might change between releases.
+ # File a bug if you depend on any for non-debug work!
+ debug = internal.debugCrate { inherit packageId; };
+ };
+ };
+
+ # A derivation that joins the outputs of all workspace members together.
+ allWorkspaceMembers = pkgs.symlinkJoin {
+ name = "all-workspace-members";
+ paths =
+ let members = builtins.attrValues workspaceMembers;
+ in builtins.map (m: m.build) members;
+ };
+
+ #
+ # "internal" ("private") attributes that may change in every new version of crate2nix.
+ #
+
+ internal = rec {
+ # Build and dependency information for crates.
+ # Many of the fields are passed one-to-one to buildRustCrate.
+ #
+ # Noteworthy:
+ # * `dependencies`/`buildDependencies`: similar to the corresponding fields for buildRustCrate.
+ # but with additional information which is used during dependency/feature resolution.
+ # * `resolvedDependencies`: the selected default features reported by cargo - only included for debugging.
+ # * `devDependencies` as of now not used by `buildRustCrate` but used to
+ # inject test dependencies into the build
+
+ crates = {
+ "adler2" = rec {
+ crateName = "adler2";
+ version = "2.0.1";
+ edition = "2021";
+ sha256 = "1ymy18s9hs7ya1pjc9864l30wk8p2qfqdi7mhhcc5nfakxbij09j";
+ authors = [
+ "Jonas Schievink <jonasschievink@gmail.com>"
+ "oyvindln <oyvindln@users.noreply.github.com>"
+ ];
+ features = {
+ "core" = [ "dep:core" ];
+ "default" = [ "std" ];
+ "rustc-dep-of-std" = [ "core" ];
+ };
+ };
+ "adler32" = rec {
+ crateName = "adler32";
+ version = "1.2.0";
+ edition = "2018";
+ sha256 = "0d7jq7jsjyhsgbhnfq5fvrlh9j0i9g1fqrl2735ibv5f75yjgqda";
+ authors = [
+ "Remi Rampin <remirampin@gmail.com>"
+ ];
+ features = {
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "std" ];
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "aead" = rec {
+ crateName = "aead";
+ version = "0.5.2";
+ edition = "2021";
+ sha256 = "1c32aviraqag7926xcb9sybdm36v5vh9gnxpn4pxdwjc50zl28ni";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "crypto-common";
+ packageId = "crypto-common";
+ }
+ {
+ name = "generic-array";
+ packageId = "generic-array";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "arrayvec" = [ "dep:arrayvec" ];
+ "blobby" = [ "dep:blobby" ];
+ "bytes" = [ "dep:bytes" ];
+ "default" = [ "rand_core" ];
+ "dev" = [ "blobby" ];
+ "getrandom" = [ "crypto-common/getrandom" "rand_core" ];
+ "heapless" = [ "dep:heapless" ];
+ "rand_core" = [ "crypto-common/rand_core" ];
+ "std" = [ "alloc" "crypto-common/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "getrandom" "rand_core" ];
+ };
+ "aes 0.7.5" = rec {
+ crateName = "aes";
+ version = "0.7.5";
+ edition = "2018";
+ sha256 = "1f0sdx2fsa8w3l7xzsyi9ry3shvnnsgc0znh50if9fm95vslg2wy";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "cipher";
+ packageId = "cipher 0.3.0";
+ }
+ {
+ name = "cpufeatures";
+ packageId = "cpufeatures";
+ target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
+ }
+ {
+ name = "ctr";
+ packageId = "ctr 0.8.0";
+ optional = true;
+ }
+ {
+ name = "opaque-debug";
+ packageId = "opaque-debug";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "cipher";
+ packageId = "cipher 0.3.0";
+ features = [ "dev" ];
+ }
+ ];
+ features = {
+ "ctr" = [ "dep:ctr" ];
+ };
+ resolvedDefaultFeatures = [ "ctr" ];
+ };
+ "aes 0.8.4" = rec {
+ crateName = "aes";
+ version = "0.8.4";
+ edition = "2021";
+ sha256 = "1853796anlwp4kqim0s6wm1srl4ib621nm0cl2h3c8klsjkgfsdi";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "cipher";
+ packageId = "cipher 0.4.4";
+ }
+ {
+ name = "cpufeatures";
+ packageId = "cpufeatures";
+ target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
+ }
+ ];
+ devDependencies = [
+ {
+ name = "cipher";
+ packageId = "cipher 0.4.4";
+ features = [ "dev" ];
+ }
+ ];
+ features = {
+ "zeroize" = [ "dep:zeroize" ];
+ };
+ };
+ "aes-gcm" = rec {
+ crateName = "aes-gcm";
+ version = "0.10.3";
+ edition = "2021";
+ sha256 = "1lgaqgg1gh9crg435509lqdhajg1m2vgma6f7fdj1qa2yyh10443";
+ libName = "aes_gcm";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "aead";
+ packageId = "aead";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "aes";
+ packageId = "aes 0.8.4";
+ optional = true;
+ }
+ {
+ name = "cipher";
+ packageId = "cipher 0.4.4";
+ }
+ {
+ name = "ctr";
+ packageId = "ctr 0.9.2";
+ }
+ {
+ name = "ghash";
+ packageId = "ghash";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "subtle";
+ packageId = "subtle";
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "aead";
+ packageId = "aead";
+ usesDefaultFeatures = false;
+ features = [ "dev" ];
+ }
+ ];
+ features = {
+ "aes" = [ "dep:aes" ];
+ "alloc" = [ "aead/alloc" ];
+ "arrayvec" = [ "aead/arrayvec" ];
+ "default" = [ "aes" "alloc" "getrandom" ];
+ "getrandom" = [ "aead/getrandom" "rand_core" ];
+ "heapless" = [ "aead/heapless" ];
+ "rand_core" = [ "aead/rand_core" ];
+ "std" = [ "aead/std" "alloc" ];
+ "stream" = [ "aead/stream" ];
+ "zeroize" = [ "dep:zeroize" ];
+ };
+ resolvedDefaultFeatures = [ "aes" "alloc" "default" "getrandom" "rand_core" ];
+ };
+ "ahash 0.7.8" = rec {
+ crateName = "ahash";
+ version = "0.7.8";
+ edition = "2018";
+ sha256 = "1y9014qsy6gs9xld4ch7a6xi9bpki8vaciawxq4p75d8qvh7f549";
+ authors = [
+ "Tom Kaitchuck <Tom.Kaitchuck@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.2.16";
+ target = { target, features }: (("linux" == target."os" or null) || ("android" == target."os" or null) || ("windows" == target."os" or null) || ("macos" == target."os" or null) || ("ios" == target."os" or null) || ("freebsd" == target."os" or null) || ("openbsd" == target."os" or null) || ("netbsd" == target."os" or null) || ("dragonfly" == target."os" or null) || ("solaris" == target."os" or null) || ("illumos" == target."os" or null) || ("fuchsia" == target."os" or null) || ("redox" == target."os" or null) || ("cloudabi" == target."os" or null) || ("haiku" == target."os" or null) || ("vxworks" == target."os" or null) || ("emscripten" == target."os" or null) || ("wasi" == target."os" or null));
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!(("arm" == target."arch" or null) && ("none" == target."os" or null)));
+ features = [ "alloc" ];
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "version_check";
+ packageId = "version_check";
+ }
+ ];
+ features = {
+ "atomic-polyfill" = [ "dep:atomic-polyfill" "once_cell/atomic-polyfill" ];
+ "compile-time-rng" = [ "const-random" ];
+ "const-random" = [ "dep:const-random" ];
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ };
+ };
+ "ahash 0.8.12" = rec {
+ crateName = "ahash";
+ version = "0.8.12";
+ edition = "2018";
+ sha256 = "0xbsp9rlm5ki017c0w6ay8kjwinwm8knjncci95mii30rmwz25as";
+ authors = [
+ "Tom Kaitchuck <Tom.Kaitchuck@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.3.4";
+ optional = true;
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!(("arm" == target."arch" or null) && ("none" == target."os" or null)));
+ features = [ "alloc" ];
+ }
+ {
+ name = "zerocopy";
+ packageId = "zerocopy";
+ usesDefaultFeatures = false;
+ features = [ "simd" ];
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "version_check";
+ packageId = "version_check";
+ }
+ ];
+ features = {
+ "atomic-polyfill" = [ "dep:portable-atomic" "once_cell/critical-section" ];
+ "compile-time-rng" = [ "const-random" ];
+ "const-random" = [ "dep:const-random" ];
+ "default" = [ "std" "runtime-rng" ];
+ "getrandom" = [ "dep:getrandom" ];
+ "runtime-rng" = [ "getrandom" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "getrandom" "runtime-rng" "std" ];
+ };
+ "aho-corasick" = rec {
+ crateName = "aho-corasick";
+ version = "1.1.4";
+ edition = "2021";
+ sha256 = "00a32wb2h07im3skkikc495jvncf62jl6s96vwc7bhi70h9imlyx";
+ libName = "aho_corasick";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "memchr";
+ packageId = "memchr";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" "perf-literal" ];
+ "logging" = [ "dep:log" ];
+ "perf-literal" = [ "dep:memchr" ];
+ "std" = [ "memchr?/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "perf-literal" "std" ];
+ };
+ "alloc-no-stdlib" = rec {
+ crateName = "alloc-no-stdlib";
+ version = "2.0.4";
+ edition = "2015";
+ crateBin = [];
+ sha256 = "1cy6r2sfv5y5cigv86vms7n5nlwhx1rbyxwcraqnmm1rxiib2yyc";
+ libName = "alloc_no_stdlib";
+ authors = [
+ "Daniel Reiter Horn <danielrh@dropbox.com>"
+ ];
+ features = {
+ };
+ };
+ "alloc-stdlib" = rec {
+ crateName = "alloc-stdlib";
+ version = "0.2.2";
+ edition = "2015";
+ crateBin = [];
+ sha256 = "1kkfbld20ab4165p29v172h8g0wvq8i06z8vnng14whw0isq5ywl";
+ libName = "alloc_stdlib";
+ authors = [
+ "Daniel Reiter Horn <danielrh@dropbox.com>"
+ ];
+ dependencies = [
+ {
+ name = "alloc-no-stdlib";
+ packageId = "alloc-no-stdlib";
+ }
+ ];
+ features = {
+ };
+ };
+ "allocator-api2" = rec {
+ crateName = "allocator-api2";
+ version = "0.2.21";
+ edition = "2018";
+ sha256 = "08zrzs022xwndihvzdn78yqarv2b9696y67i6h78nla3ww87jgb8";
+ libName = "allocator_api2";
+ authors = [
+ "Zakarum <zaq.dev@icloud.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "ammonia" = rec {
+ crateName = "ammonia";
+ version = "4.1.2";
+ edition = "2021";
+ sha256 = "1rnx4v8qiw4nvqzvnnbagb0lp5cc9q9q1ja6cys2888sgq4i7s8p";
+ authors = [
+ "Michael Howell <michael@notriddle.com>"
+ ];
+ dependencies = [
+ {
+ name = "cssparser";
+ packageId = "cssparser 0.35.0";
+ }
+ {
+ name = "html5ever";
+ packageId = "html5ever 0.35.0";
+ }
+ {
+ name = "maplit";
+ packageId = "maplit";
+ }
+ {
+ name = "tendril";
+ packageId = "tendril";
+ }
+ {
+ name = "url";
+ packageId = "url";
+ }
+ ];
+
+ };
+ "android_system_properties" = rec {
+ crateName = "android_system_properties";
+ version = "0.1.5";
+ edition = "2018";
+ sha256 = "04b3wrz12837j7mdczqd95b732gw5q7q66cv4yn4646lvccp57l1";
+ authors = [
+ "Nicolas Silva <nical@fastmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ ];
+
+ };
+ "anstream" = rec {
+ crateName = "anstream";
+ version = "0.6.21";
+ edition = "2021";
+ sha256 = "0jjgixms4qjj58dzr846h2s29p8w7ynwr9b9x6246m1pwy0v5ma3";
+ dependencies = [
+ {
+ name = "anstyle";
+ packageId = "anstyle";
+ }
+ {
+ name = "anstyle-parse";
+ packageId = "anstyle-parse";
+ }
+ {
+ name = "anstyle-query";
+ packageId = "anstyle-query";
+ optional = true;
+ }
+ {
+ name = "anstyle-wincon";
+ packageId = "anstyle-wincon";
+ optional = true;
+ target = { target, features }: (target."windows" or false);
+ }
+ {
+ name = "colorchoice";
+ packageId = "colorchoice";
+ }
+ {
+ name = "is_terminal_polyfill";
+ packageId = "is_terminal_polyfill";
+ }
+ {
+ name = "utf8parse";
+ packageId = "utf8parse";
+ }
+ ];
+ features = {
+ "auto" = [ "dep:anstyle-query" ];
+ "default" = [ "auto" "wincon" ];
+ "wincon" = [ "dep:anstyle-wincon" ];
+ };
+ resolvedDefaultFeatures = [ "auto" "default" "wincon" ];
+ };
+ "anstyle" = rec {
+ crateName = "anstyle";
+ version = "1.0.13";
+ edition = "2021";
+ sha256 = "0y2ynjqajpny6q0amvfzzgw0gfw3l47z85km4gvx87vg02lcr4ji";
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "anstyle-parse" = rec {
+ crateName = "anstyle-parse";
+ version = "0.2.7";
+ edition = "2021";
+ sha256 = "1hhmkkfr95d462b3zf6yl2vfzdqfy5726ya572wwg8ha9y148xjf";
+ libName = "anstyle_parse";
+ dependencies = [
+ {
+ name = "utf8parse";
+ packageId = "utf8parse";
+ optional = true;
+ }
+ ];
+ features = {
+ "core" = [ "dep:arrayvec" ];
+ "default" = [ "utf8" ];
+ "utf8" = [ "dep:utf8parse" ];
+ };
+ resolvedDefaultFeatures = [ "default" "utf8" ];
+ };
+ "anstyle-query" = rec {
+ crateName = "anstyle-query";
+ version = "1.1.5";
+ edition = "2021";
+ sha256 = "1p6shfpnbghs6jsa0vnqd8bb8gd7pjd0jr7w0j8jikakzmr8zi20";
+ libName = "anstyle_query";
+ dependencies = [
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.61.2";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_System_Console" "Win32_Foundation" ];
+ }
+ ];
+
+ };
+ "anstyle-wincon" = rec {
+ crateName = "anstyle-wincon";
+ version = "3.0.11";
+ edition = "2021";
+ sha256 = "0zblannm70sk3xny337mz7c6d8q8i24vhbqi42ld8v7q1wjnl7i9";
+ libName = "anstyle_wincon";
+ dependencies = [
+ {
+ name = "anstyle";
+ packageId = "anstyle";
+ }
+ {
+ name = "once_cell_polyfill";
+ packageId = "once_cell_polyfill";
+ target = { target, features }: (target."windows" or false);
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.61.2";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_System_Console" "Win32_Foundation" ];
+ }
+ ];
+
+ };
+ "anyhow" = rec {
+ crateName = "anyhow";
+ version = "1.0.100";
+ edition = "2018";
+ sha256 = "0qbfmw4hhv2ampza1csyvf1jqjs2dgrj29cv3h3sh623c6qvcgm2";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ features = {
+ "backtrace" = [ "dep:backtrace" ];
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "arc-swap" = rec {
+ crateName = "arc-swap";
+ version = "1.7.1";
+ edition = "2018";
+ sha256 = "0mrl9a9r9p9bln74q6aszvf22q1ijiw089jkrmabfqkbj31zixv9";
+ libName = "arc_swap";
+ authors = [
+ "Michal 'vorner' Vaner <vorner@vorner.cz>"
+ ];
+ features = {
+ "serde" = [ "dep:serde" ];
+ };
+ };
+ "arrayref" = rec {
+ crateName = "arrayref";
+ version = "0.3.9";
+ edition = "2015";
+ sha256 = "1jzyp0nvp10dmahaq9a2rnxqdd5wxgbvp8xaibps3zai8c9fi8kn";
+ authors = [
+ "David Roundy <roundyd@physics.oregonstate.edu>"
+ ];
+
+ };
+ "arrayvec" = rec {
+ crateName = "arrayvec";
+ version = "0.7.6";
+ edition = "2018";
+ sha256 = "0l1fz4ccgv6pm609rif37sl5nv5k6lbzi7kkppgzqzh1vwix20kw";
+ authors = [
+ "bluss"
+ ];
+ features = {
+ "borsh" = [ "dep:borsh" ];
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "zeroize" = [ "dep:zeroize" ];
+ };
+ };
+ "asn1-rs" = rec {
+ crateName = "asn1-rs";
+ version = "0.6.2";
+ edition = "2018";
+ sha256 = "0j5h437ycgih5hnrma6kmaxi4zb8csynnd66h9rzvxxcvfzc74sl";
+ libName = "asn1_rs";
+ authors = [
+ "Pierre Chifflier <chifflier@wzdftpd.net>"
+ ];
+ dependencies = [
+ {
+ name = "asn1-rs-derive";
+ packageId = "asn1-rs-derive";
+ }
+ {
+ name = "asn1-rs-impl";
+ packageId = "asn1-rs-impl";
+ }
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ }
+ {
+ name = "nom";
+ packageId = "nom 7.1.3";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "num-traits";
+ packageId = "num-traits";
+ }
+ {
+ name = "rusticata-macros";
+ packageId = "rusticata-macros";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 1.0.69";
+ }
+ {
+ name = "time";
+ packageId = "time";
+ optional = true;
+ features = [ "macros" "parsing" "formatting" ];
+ }
+ ];
+ features = {
+ "bigint" = [ "num-bigint" ];
+ "bits" = [ "bitvec" ];
+ "bitvec" = [ "dep:bitvec" ];
+ "colored" = [ "dep:colored" ];
+ "cookie-factory" = [ "dep:cookie-factory" ];
+ "datetime" = [ "time" ];
+ "debug" = [ "colored" ];
+ "default" = [ "std" ];
+ "num-bigint" = [ "dep:num-bigint" ];
+ "serialize" = [ "cookie-factory" ];
+ "time" = [ "dep:time" ];
+ "trace" = [ "debug" ];
+ };
+ resolvedDefaultFeatures = [ "datetime" "default" "std" "time" ];
+ };
+ "asn1-rs-derive" = rec {
+ crateName = "asn1-rs-derive";
+ version = "0.5.1";
+ edition = "2018";
+ sha256 = "140ldl0vp1d0090bpm0w9j8g80dwc03wp928w5kv5diwwlrjsp4n";
+ procMacro = true;
+ libName = "asn1_rs_derive";
+ authors = [
+ "Pierre Chifflier <chifflier@wzdftpd.net>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" ];
+ }
+ {
+ name = "synstructure";
+ packageId = "synstructure";
+ }
+ ];
+
+ };
+ "asn1-rs-impl" = rec {
+ crateName = "asn1-rs-impl";
+ version = "0.2.0";
+ edition = "2018";
+ sha256 = "1xv56m0wrwix4av3w86sih1nsa5g1dgfz135lz1qdznn5h60a63v";
+ procMacro = true;
+ libName = "asn1_rs_impl";
+ authors = [
+ "Pierre Chifflier <chifflier@wzdftpd.net>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ }
+ ];
+
+ };
+ "async-compression" = rec {
+ crateName = "async-compression";
+ version = "0.4.34";
+ edition = "2018";
+ sha256 = "0ww496iia521znjpqkcn7gfgbqqkkr4qwszavqp3bi4xvk9zd1hf";
+ libName = "async_compression";
+ authors = [
+ "Wim Looman <wim@nemo157.com>"
+ "Allen Bui <fairingrey@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "compression-codecs";
+ packageId = "compression-codecs";
+ }
+ {
+ name = "compression-core";
+ packageId = "compression-core";
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ usesDefaultFeatures = false;
+ features = [ "io-util" "macros" "rt-multi-thread" "io-std" ];
+ }
+ ];
+ features = {
+ "all" = [ "all-implementations" "all-algorithms" ];
+ "all-algorithms" = [ "brotli" "bzip2" "deflate" "deflate64" "gzip" "lz4" "lzma" "xz" "xz-parallel" "zlib" "zstd" ];
+ "all-implementations" = [ "futures-io" "tokio" ];
+ "brotli" = [ "compression-codecs/brotli" ];
+ "bzip2" = [ "compression-codecs/bzip2" ];
+ "deflate" = [ "compression-codecs/deflate" ];
+ "deflate64" = [ "compression-codecs/deflate64" ];
+ "futures-io" = [ "dep:futures-io" ];
+ "gzip" = [ "compression-codecs/gzip" ];
+ "lz4" = [ "compression-codecs/lz4" ];
+ "lzma" = [ "compression-codecs/lzma" ];
+ "tokio" = [ "dep:tokio" ];
+ "xz" = [ "compression-codecs/xz" "lzma" ];
+ "xz-parallel" = [ "compression-codecs/xz-parallel" "xz" ];
+ "xz2" = [ "compression-codecs/xz2" "xz" ];
+ "zlib" = [ "compression-codecs/zlib" ];
+ "zstd" = [ "compression-codecs/zstd" ];
+ "zstdmt" = [ "compression-codecs/zstdmt" "zstd" ];
+ };
+ resolvedDefaultFeatures = [ "brotli" "gzip" "tokio" "zlib" "zstd" ];
+ };
+ "async-trait" = rec {
+ crateName = "async-trait";
+ version = "0.1.89";
+ edition = "2021";
+ sha256 = "1fsxxmz3rzx1prn1h3rs7kyjhkap60i7xvi0ldapkvbb14nssdch";
+ procMacro = true;
+ libName = "async_trait";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ usesDefaultFeatures = false;
+ features = [ "clone-impls" "full" "parsing" "printing" "proc-macro" "visit-mut" ];
+ }
+ ];
+
+ };
+ "atomic-waker" = rec {
+ crateName = "atomic-waker";
+ version = "1.1.2";
+ edition = "2018";
+ sha256 = "1h5av1lw56m0jf0fd3bchxq8a30xv0b4wv8s4zkp4s0i7mfvs18m";
+ libName = "atomic_waker";
+ authors = [
+ "Stjepan Glavina <stjepang@gmail.com>"
+ "Contributors to futures-rs"
+ ];
+ features = {
+ "portable-atomic" = [ "dep:portable-atomic" ];
+ };
+ };
+ "autocfg" = rec {
+ crateName = "autocfg";
+ version = "1.5.0";
+ edition = "2015";
+ sha256 = "1s77f98id9l4af4alklmzq46f21c980v13z2r1pcxx6bqgw0d1n0";
+ authors = [
+ "Josh Stone <cuviper@gmail.com>"
+ ];
+
+ };
+ "aws-lc-rs" = rec {
+ crateName = "aws-lc-rs";
+ version = "1.15.1";
+ edition = "2021";
+ links = "aws_lc_rs_1_15_1_sys";
+ sha256 = "03qqbai1fzjz50462w3xvr6n53s3iryjk3mbz49xfg490maffp3b";
+ libName = "aws_lc_rs";
+ authors = [
+ "AWS-LibCrypto"
+ ];
+ dependencies = [
+ {
+ name = "aws-lc-sys";
+ packageId = "aws-lc-sys";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zeroize";
+ packageId = "zeroize";
+ }
+ ];
+ features = {
+ "asan" = [ "aws-lc-sys?/asan" "aws-lc-fips-sys?/asan" ];
+ "aws-lc-sys" = [ "dep:aws-lc-sys" ];
+ "bindgen" = [ "aws-lc-sys?/bindgen" "aws-lc-fips-sys?/bindgen" ];
+ "default" = [ "aws-lc-sys" "alloc" "ring-io" "ring-sig-verify" ];
+ "fips" = [ "dep:aws-lc-fips-sys" ];
+ "non-fips" = [ "aws-lc-sys" ];
+ "prebuilt-nasm" = [ "aws-lc-sys?/prebuilt-nasm" ];
+ "ring-io" = [ "dep:untrusted" ];
+ "ring-sig-verify" = [ "dep:untrusted" ];
+ };
+ resolvedDefaultFeatures = [ "aws-lc-sys" "prebuilt-nasm" ];
+ };
+ "aws-lc-sys" = rec {
+ crateName = "aws-lc-sys";
+ version = "0.34.0";
+ edition = "2021";
+ links = "aws_lc_0_34_0";
+ sha256 = "1dl1wzsnxailb864lv1gz2lw3ck5qpzi8qa2xa80xrxmm1vkg70p";
+ build = "builder/main.rs";
+ libName = "aws_lc_sys";
+ authors = [
+ "AWS-LC"
+ ];
+ buildDependencies = [
+ {
+ name = "cc";
+ packageId = "cc";
+ features = [ "parallel" ];
+ }
+ {
+ name = "cmake";
+ packageId = "cmake";
+ }
+ {
+ name = "dunce";
+ packageId = "dunce";
+ }
+ {
+ name = "fs_extra";
+ packageId = "fs_extra";
+ }
+ ];
+ features = {
+ "bindgen" = [ "dep:bindgen" ];
+ "default" = [ "all-bindings" ];
+ "ssl" = [ "bindgen" "all-bindings" ];
+ };
+ resolvedDefaultFeatures = [ "prebuilt-nasm" ];
+ };
+ "axum" = rec {
+ crateName = "axum";
+ version = "0.8.7";
+ edition = "2021";
+ sha256 = "09fl42x9j3h2kgw9ddznpvnl8vhscd4jgwy79z8vcz77xdsqa2av";
+ dependencies = [
+ {
+ name = "axum-core";
+ packageId = "axum-core";
+ }
+ {
+ name = "axum-macros";
+ packageId = "axum-macros";
+ optional = true;
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "form_urlencoded";
+ packageId = "form_urlencoded";
+ optional = true;
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body 1.0.1";
+ }
+ {
+ name = "http-body-util";
+ packageId = "http-body-util";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper 1.8.1";
+ optional = true;
+ }
+ {
+ name = "hyper-util";
+ packageId = "hyper-util";
+ optional = true;
+ features = [ "tokio" "server" "service" ];
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ {
+ name = "matchit";
+ packageId = "matchit";
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ }
+ {
+ name = "mime";
+ packageId = "mime";
+ }
+ {
+ name = "percent-encoding";
+ packageId = "percent-encoding";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "serde_core";
+ packageId = "serde_core";
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ optional = true;
+ features = [ "raw_value" ];
+ }
+ {
+ name = "serde_path_to_error";
+ packageId = "serde_path_to_error";
+ optional = true;
+ }
+ {
+ name = "serde_urlencoded";
+ packageId = "serde_urlencoded";
+ optional = true;
+ }
+ {
+ name = "sync_wrapper";
+ packageId = "sync_wrapper";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ rename = "tokio";
+ optional = true;
+ features = [ "time" ];
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ usesDefaultFeatures = false;
+ features = [ "util" ];
+ }
+ {
+ name = "tower-layer";
+ packageId = "tower-layer";
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "hyper";
+ packageId = "hyper 1.8.1";
+ features = [ "client" ];
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ features = [ "raw_value" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ rename = "tokio";
+ features = [ "macros" "rt" "rt-multi-thread" "net" "test-util" ];
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ rename = "tower";
+ features = [ "util" "timeout" "limit" "load-shed" "steer" "filter" ];
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ }
+ ];
+ features = {
+ "__private" = [ "tokio" "http1" "dep:reqwest" ];
+ "__private_docs" = [ "axum-core/__private_docs" "tower/full" "dep:serde" "dep:tower-http" ];
+ "default" = [ "form" "http1" "json" "matched-path" "original-uri" "query" "tokio" "tower-log" "tracing" ];
+ "form" = [ "dep:form_urlencoded" "dep:serde_urlencoded" "dep:serde_path_to_error" ];
+ "http1" = [ "dep:hyper" "hyper?/http1" "hyper-util?/http1" ];
+ "http2" = [ "dep:hyper" "hyper?/http2" "hyper-util?/http2" ];
+ "json" = [ "dep:serde_json" "dep:serde_path_to_error" ];
+ "macros" = [ "dep:axum-macros" ];
+ "multipart" = [ "dep:multer" ];
+ "query" = [ "dep:form_urlencoded" "dep:serde_urlencoded" "dep:serde_path_to_error" ];
+ "tokio" = [ "dep:hyper-util" "dep:tokio" "tokio/net" "tokio/rt" "tower/make" "tokio/macros" ];
+ "tower-log" = [ "tower/log" ];
+ "tracing" = [ "dep:tracing" "axum-core/tracing" ];
+ "ws" = [ "dep:hyper" "tokio" "dep:tokio-tungstenite" "dep:sha1" "dep:base64" ];
+ };
+ resolvedDefaultFeatures = [ "default" "form" "http1" "json" "macros" "matched-path" "original-uri" "query" "tokio" "tower-log" "tracing" ];
+ };
+ "axum-core" = rec {
+ crateName = "axum-core";
+ version = "0.5.5";
+ edition = "2021";
+ sha256 = "08pa4752h96pai7j5avr2hnq35xh7qgv6vl57y1zhhnikkhnqi2r";
+ libName = "axum_core";
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body 1.0.1";
+ }
+ {
+ name = "http-body-util";
+ packageId = "http-body-util";
+ }
+ {
+ name = "mime";
+ packageId = "mime";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "sync_wrapper";
+ packageId = "sync_wrapper";
+ }
+ {
+ name = "tower-layer";
+ packageId = "tower-layer";
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "__private_docs" = [ "dep:tower-http" ];
+ "tracing" = [ "dep:tracing" ];
+ };
+ resolvedDefaultFeatures = [ "tracing" ];
+ };
+ "axum-extra" = rec {
+ crateName = "axum-extra";
+ version = "0.12.2";
+ edition = "2021";
+ sha256 = "06yj7nqz6cgpbr3q0kbizqbcca1wqvwcq0ydrzq9rsg41xhrzznv";
+ libName = "axum_extra";
+ dependencies = [
+ {
+ name = "axum";
+ packageId = "axum";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "axum-core";
+ packageId = "axum-core";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "cookie";
+ packageId = "cookie";
+ rename = "cookie";
+ optional = true;
+ features = [ "percent-encode" ];
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "headers";
+ packageId = "headers";
+ optional = true;
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body 1.0.1";
+ }
+ {
+ name = "http-body-util";
+ packageId = "http-body-util";
+ }
+ {
+ name = "mime";
+ packageId = "mime";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "tower-layer";
+ packageId = "tower-layer";
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "__private_docs" = [ "axum/json" "dep:serde" "dep:tower" ];
+ "async-read-body" = [ "dep:tokio-util" "tokio-util?/io" "dep:tokio" ];
+ "attachment" = [ "dep:tracing" ];
+ "cached" = [ "dep:axum" ];
+ "cookie" = [ "dep:cookie" ];
+ "cookie-key-expansion" = [ "cookie" "cookie?/key-expansion" ];
+ "cookie-private" = [ "cookie" "cookie?/private" ];
+ "cookie-signed" = [ "cookie" "cookie?/signed" ];
+ "default" = [ "tracing" ];
+ "erased-json" = [ "dep:serde_core" "dep:serde_json" "dep:typed-json" ];
+ "error-response" = [ "dep:tracing" "tracing/std" ];
+ "file-stream" = [ "dep:tokio-util" "tokio-util?/io" "dep:tokio" "tokio?/fs" "tokio?/io-util" ];
+ "form" = [ "dep:axum" "dep:form_urlencoded" "dep:serde_core" "dep:serde_html_form" "dep:serde_path_to_error" ];
+ "handler" = [ "dep:axum" ];
+ "json-deserializer" = [ "dep:serde_core" "dep:serde_json" "dep:serde_path_to_error" ];
+ "json-lines" = [ "dep:serde_core" "dep:serde_json" "dep:tokio-util" "dep:tokio-stream" "tokio-util?/io" "tokio-stream?/io-util" "dep:tokio" ];
+ "middleware" = [ "dep:axum" ];
+ "multipart" = [ "dep:multer" "dep:fastrand" ];
+ "optional-path" = [ "dep:axum" "dep:serde_core" ];
+ "protobuf" = [ "dep:prost" ];
+ "query" = [ "dep:form_urlencoded" "dep:serde_core" "dep:serde_html_form" "dep:serde_path_to_error" ];
+ "routing" = [ "axum/original-uri" "dep:rustversion" ];
+ "tracing" = [ "axum-core/tracing" "axum/tracing" "dep:tracing" ];
+ "typed-header" = [ "dep:headers" ];
+ "typed-routing" = [ "dep:axum-macros" "dep:percent-encoding" "dep:serde_core" "dep:serde_html_form" "dep:form_urlencoded" ];
+ "with-rejection" = [ "dep:axum" ];
+ };
+ resolvedDefaultFeatures = [ "cookie" "cookie-signed" "default" "tracing" "typed-header" ];
+ };
+ "axum-helmet" = rec {
+ crateName = "axum-helmet";
+ version = "0.2.0";
+ edition = "2021";
+ sha256 = "0xl39wlpimw5rwc7cv317iwhkalqn65y3j0cfmnnyy64z9d13lcm";
+ libName = "axum_helmet";
+ authors = [
+ "Daniel Kovacs <kovacsemod@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "axum";
+ packageId = "axum";
+ }
+ {
+ name = "helmet-core";
+ packageId = "helmet-core";
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "rt-multi-thread" ];
+ }
+ ];
+
+ };
+ "axum-macros" = rec {
+ crateName = "axum-macros";
+ version = "0.5.0";
+ edition = "2021";
+ sha256 = "0p6011ld0izk22fmdxsps58cigilq2yhnmyqw4f8bslg09gdwkv0";
+ procMacro = true;
+ libName = "axum_macros";
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" "parsing" "extra-traits" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" "extra-traits" ];
+ }
+ ];
+ features = {
+ "__private" = [ "syn/visit-mut" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "axum-response-cache" = rec {
+ crateName = "axum-response-cache";
+ version = "0.4.0";
+ edition = "2021";
+ sha256 = "14xqisqkcv889f9hgwsk7wr6zbfpb1npkga6r58s1j08shhbrfsx";
+ libName = "axum_response_cache";
+ authors = [
+ "Omniscopy Dev Team <dev@omniscopy.com>"
+ "Benedykt Jaworski <benedykt.jaworski@omniscopy.com>"
+ ];
+ dependencies = [
+ {
+ name = "axum";
+ packageId = "axum";
+ rename = "axum_08";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "cached";
+ packageId = "cached";
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ }
+ {
+ name = "tracing-futures";
+ packageId = "tracing-futures";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "axum";
+ packageId = "axum";
+ rename = "axum_08";
+ features = [ "tokio" ];
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ features = [ "util" ];
+ }
+ ];
+ features = {
+ "axum07" = [ "dep:axum_07" ];
+ "axum08" = [ "dep:axum_08" ];
+ "default" = [ "axum08" ];
+ };
+ resolvedDefaultFeatures = [ "axum08" "default" ];
+ };
+ "axum-server" = rec {
+ crateName = "axum-server";
+ version = "0.7.3";
+ edition = "2021";
+ sha256 = "1yd584xm9lwwpp63kijyzg85nsdg4jl076nrf9y6b2par4z4may1";
+ libName = "axum_server";
+ authors = [
+ "Programatik <programatik29@gmail.com>"
+ "Adi Salimgereev <adisalimgereev@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "arc-swap";
+ packageId = "arc-swap";
+ optional = true;
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "fs-err";
+ packageId = "fs-err";
+ features = [ "tokio" ];
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body 1.0.1";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper 1.8.1";
+ features = [ "http1" "http2" "server" ];
+ }
+ {
+ name = "hyper-util";
+ packageId = "hyper-util";
+ features = [ "server-auto" "service" "tokio" ];
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ optional = true;
+ }
+ {
+ name = "rustls";
+ packageId = "rustls";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rustls-pemfile";
+ packageId = "rustls-pemfile";
+ optional = true;
+ }
+ {
+ name = "rustls-pki-types";
+ packageId = "rustls-pki-types";
+ optional = true;
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" "net" "sync" ];
+ }
+ {
+ name = "tokio-rustls";
+ packageId = "tokio-rustls";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "hyper";
+ packageId = "hyper 1.8.1";
+ features = [ "full" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "full" ];
+ }
+ ];
+ features = {
+ "arc-swap" = [ "dep:arc-swap" ];
+ "openssl" = [ "dep:openssl" ];
+ "openssl-sys" = [ "dep:openssl-sys" ];
+ "rustls" = [ "dep:rustls" ];
+ "rustls-pemfile" = [ "dep:rustls-pemfile" ];
+ "rustls-pki-types" = [ "dep:rustls-pki-types" ];
+ "tls-openssl" = [ "arc-swap" "openssl" "openssl-sys" "tokio-openssl" "dep:pin-project-lite" ];
+ "tls-rustls" = [ "tls-rustls-no-provider" "rustls/aws-lc-rs" ];
+ "tls-rustls-no-provider" = [ "arc-swap" "rustls" "rustls-pemfile" "tokio/fs" "tokio/time" "tokio-rustls" "rustls-pki-types" "dep:pin-project-lite" ];
+ "tokio-openssl" = [ "dep:tokio-openssl" ];
+ "tokio-rustls" = [ "dep:tokio-rustls" ];
+ };
+ resolvedDefaultFeatures = [ "arc-swap" "default" "rustls" "rustls-pemfile" "rustls-pki-types" "tls-rustls" "tls-rustls-no-provider" "tokio-rustls" ];
+ };
+ "axum_csrf" = rec {
+ crateName = "axum_csrf";
+ version = "0.11.0";
+ edition = "2021";
+ sha256 = "0m2gjk5b2fjd0na74zzjvd0vgs3pg6xcc7bfip663hfnqsw3768m";
+ authors = [
+ "Andrew Wheeler <genusistimelord@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "async-trait";
+ packageId = "async-trait";
+ }
+ {
+ name = "axum-core";
+ packageId = "axum-core";
+ }
+ {
+ name = "base64ct";
+ packageId = "base64ct";
+ features = [ "alloc" ];
+ }
+ {
+ name = "cookie";
+ packageId = "cookie";
+ features = [ "percent-encode" "signed" "private" ];
+ }
+ {
+ name = "hmac";
+ packageId = "hmac 0.12.1";
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.8.5";
+ }
+ {
+ name = "sha2";
+ packageId = "sha2 0.10.9";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 2.0.17";
+ }
+ {
+ name = "time";
+ packageId = "time";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ ];
+ features = {
+ "layer" = [ "dep:tower-layer" "dep:tower-service" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "base64 0.13.1" = rec {
+ crateName = "base64";
+ version = "0.13.1";
+ edition = "2018";
+ sha256 = "1s494mqmzjb766fy1kqlccgfg2sdcjb6hzbvzqv2jw65fdi5h6wy";
+ authors = [
+ "Alice Maz <alice@alicemaz.com>"
+ "Marshall Pierce <marshall@mpierce.org>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "base64 0.21.7" = rec {
+ crateName = "base64";
+ version = "0.21.7";
+ edition = "2018";
+ sha256 = "0rw52yvsk75kar9wgqfwgb414kvil1gn7mqkrhn9zf1537mpsacx";
+ authors = [
+ "Alice Maz <alice@alicemaz.com>"
+ "Marshall Pierce <marshall@mpierce.org>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "base64 0.22.1" = rec {
+ crateName = "base64";
+ version = "0.22.1";
+ edition = "2018";
+ sha256 = "1imqzgh7bxcikp5vx3shqvw9j09g9ly0xr0jma0q66i52r7jbcvj";
+ authors = [
+ "Marshall Pierce <marshall@mpierce.org>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "base64-simd 0.7.0" = rec {
+ crateName = "base64-simd";
+ version = "0.7.0";
+ edition = "2021";
+ sha256 = "1mg5ayj5z7imfyv06fhzi5rw289gv5yrfakxzsad22zz786d47bq";
+ libName = "base64_simd";
+ dependencies = [
+ {
+ name = "simd-abstraction";
+ packageId = "simd-abstraction";
+ }
+ ];
+ features = {
+ "alloc" = [ "simd-abstraction/alloc" ];
+ "default" = [ "std" "detect" ];
+ "detect" = [ "simd-abstraction/detect" ];
+ "std" = [ "alloc" "simd-abstraction/std" ];
+ "unstable" = [ "simd-abstraction/unstable" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "detect" "std" ];
+ };
+ "base64-simd 0.8.0" = rec {
+ crateName = "base64-simd";
+ version = "0.8.0";
+ edition = "2021";
+ sha256 = "15cihnjqpxy0h7llpk816czyp5z613yrvsivw9i8f5vkivkvp6ik";
+ libName = "base64_simd";
+ dependencies = [
+ {
+ name = "outref";
+ packageId = "outref 0.5.2";
+ }
+ {
+ name = "vsimd";
+ packageId = "vsimd";
+ }
+ ];
+ features = {
+ "alloc" = [ "vsimd/alloc" ];
+ "default" = [ "std" "detect" ];
+ "detect" = [ "vsimd/detect" ];
+ "std" = [ "alloc" "vsimd/std" ];
+ "unstable" = [ "vsimd/unstable" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "detect" "std" ];
+ };
+ "base64ct" = rec {
+ crateName = "base64ct";
+ version = "1.8.0";
+ edition = "2024";
+ sha256 = "1fj4vc6ghy3j1120r7dwn4xw90crfy46b448g5pm9w6an13qn92m";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ features = {
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" ];
+ };
+ "base64urlsafedata" = rec {
+ crateName = "base64urlsafedata";
+ version = "0.5.3";
+ edition = "2021";
+ sha256 = "1s1q57bmvhsxfw1jp73bp64n1n9fic820bff971qixc8i8gy6pi1";
+ authors = [
+ "William Brown <william@blackhats.net.au>"
+ "Michael Farrell <micolous+git@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64";
+ packageId = "base64 0.21.7";
+ }
+ {
+ name = "pastey";
+ packageId = "pastey";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ ];
+
+ };
+ "bcrypt-pbkdf" = rec {
+ crateName = "bcrypt-pbkdf";
+ version = "0.10.0";
+ edition = "2021";
+ sha256 = "18pjhsy3m2v0silsp4mjzz8i92zrpqxk9b059zrnk1w8zvhw5ska";
+ libName = "bcrypt_pbkdf";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "blowfish";
+ packageId = "blowfish";
+ features = [ "bcrypt" ];
+ }
+ {
+ name = "pbkdf2";
+ packageId = "pbkdf2 0.12.2";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "sha2";
+ packageId = "sha2 0.10.9";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "alloc" "std" ];
+ "zeroize" = [ "dep:zeroize" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "bigdecimal" = rec {
+ crateName = "bigdecimal";
+ version = "0.4.9";
+ edition = "2015";
+ sha256 = "0d49h9vidcxlyhfmhim5jz4zc8gc8yhphwsifdml7yp9kmj443sn";
+ authors = [
+ "Andrew Kubera"
+ ];
+ dependencies = [
+ {
+ name = "libm";
+ packageId = "libm";
+ }
+ {
+ name = "num-bigint";
+ packageId = "num-bigint";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "num-integer";
+ packageId = "num-integer";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "num-traits";
+ packageId = "num-traits";
+ usesDefaultFeatures = false;
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "autocfg";
+ packageId = "autocfg";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "serde-json" = [ "serde/derive" "serde_json" ];
+ "serde_json" = [ "dep:serde_json" ];
+ "std" = [ "num-bigint/std" "num-integer/std" "num-traits/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "bincode 1.3.3" = rec {
+ crateName = "bincode";
+ version = "1.3.3";
+ edition = "2015";
+ sha256 = "1bfw3mnwzx5g1465kiqllp5n4r10qrqy88kdlp3jfwnq2ya5xx5i";
+ authors = [
+ "Ty Overby <ty@pre-alpha.com>"
+ "Francesco Mazzoli <f@mazzo.li>"
+ "David Tolnay <dtolnay@gmail.com>"
+ "Zoey Riordan <zoey@dos.cafe>"
+ ];
+ dependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ ];
+ features = {
+ };
+ };
+ "bincode 2.0.1" = rec {
+ crateName = "bincode";
+ version = "2.0.1";
+ edition = "2021";
+ sha256 = "0h5pxp3dqkigjwy926a03sl69n9wv7aq4142a20kw9lhn3bzbsin";
+ authors = [
+ "Ty Overby <ty@pre-alpha.com>"
+ "Zoey Riordan <zoey@dos.cafe>"
+ "Victor Koenders <bincode@trangar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bincode_derive";
+ packageId = "bincode_derive";
+ optional = true;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "unty";
+ packageId = "unty";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "serde?/alloc" ];
+ "bincode_derive" = [ "dep:bincode_derive" ];
+ "default" = [ "std" "derive" ];
+ "derive" = [ "bincode_derive" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "alloc" "serde?/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "bincode_derive" "default" "derive" "std" ];
+ };
+ "bincode_derive" = rec {
+ crateName = "bincode_derive";
+ version = "2.0.1";
+ edition = "2021";
+ sha256 = "029wmh26hq3hhs1gq629y0frn2pkl7ld061rk23fji8g8jd715dz";
+ procMacro = true;
+ authors = [
+ "Zoey Riordan <zoey@dos.cafe>"
+ "Victor Koenders <bincode@trangar.com>"
+ ];
+ dependencies = [
+ {
+ name = "virtue";
+ packageId = "virtue";
+ }
+ ];
+
+ };
+ "bit-vec" = rec {
+ crateName = "bit-vec";
+ version = "0.6.3";
+ edition = "2015";
+ sha256 = "1ywqjnv60cdh1slhz67psnp422md6jdliji6alq0gmly2xm9p7rl";
+ libName = "bit_vec";
+ authors = [
+ "Alexis Beingessner <a.beingessner@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "serde_no_std" = [ "serde/alloc" ];
+ "serde_std" = [ "std" "serde/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "bitflags 1.3.2" = rec {
+ crateName = "bitflags";
+ version = "1.3.2";
+ edition = "2018";
+ sha256 = "12ki6w8gn1ldq7yz9y680llwk5gmrhrzszaa17g1sbrw2r2qvwxy";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ features = {
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "bitflags 2.10.0" = rec {
+ crateName = "bitflags";
+ version = "2.10.0";
+ edition = "2021";
+ sha256 = "1lqxwc3625lcjrjm5vygban9v8a6dlxisp1aqylibiaw52si4bl1";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "bytemuck" = [ "dep:bytemuck" ];
+ "serde" = [ "serde_core" ];
+ "serde_core" = [ "dep:serde_core" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "bitvec" = rec {
+ crateName = "bitvec";
+ version = "1.0.1";
+ edition = "2021";
+ sha256 = "173ydyj2q5vwj88k6xgjnfsshs4x9wbvjjv7sm0h36r34hn87hhv";
+ dependencies = [
+ {
+ name = "funty";
+ packageId = "funty";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "radium";
+ packageId = "radium";
+ }
+ {
+ name = "tap";
+ packageId = "tap";
+ }
+ {
+ name = "wyz";
+ packageId = "wyz";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "atomic" "std" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" ];
+ };
+ "blake3" = rec {
+ crateName = "blake3";
+ version = "1.8.2";
+ edition = "2021";
+ sha256 = "1854x65zmjh9w9cfhyyyg0wmm2k5d87l13l4m7y40ajbkslam21q";
+ authors = [
+ "Jack O'Connor <oconnor663@gmail.com>"
+ "Samuel Neves"
+ ];
+ dependencies = [
+ {
+ name = "arrayref";
+ packageId = "arrayref";
+ }
+ {
+ name = "arrayvec";
+ packageId = "arrayvec";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "constant_time_eq";
+ packageId = "constant_time_eq";
+ usesDefaultFeatures = false;
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "cc";
+ packageId = "cc";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "digest" = [ "dep:digest" ];
+ "mmap" = [ "std" "dep:memmap2" ];
+ "rayon" = [ "dep:rayon-core" ];
+ "serde" = [ "dep:serde" ];
+ "traits-preview" = [ "dep:digest" ];
+ "zeroize" = [ "dep:zeroize" "arrayvec/zeroize" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "block-buffer 0.10.4" = rec {
+ crateName = "block-buffer";
+ version = "0.10.4";
+ edition = "2018";
+ sha256 = "0w9sa2ypmrsqqvc20nhwr75wbb5cjr4kkyhpjm1z1lv2kdicfy1h";
+ libName = "block_buffer";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "generic-array";
+ packageId = "generic-array";
+ }
+ ];
+
+ };
+ "block-buffer 0.9.0" = rec {
+ crateName = "block-buffer";
+ version = "0.9.0";
+ edition = "2018";
+ sha256 = "1r4pf90s7d7lj1wdjhlnqa26vvbm6pnc33z138lxpnp9srpi2lj1";
+ libName = "block_buffer";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "generic-array";
+ packageId = "generic-array";
+ }
+ ];
+ features = {
+ "block-padding" = [ "dep:block-padding" ];
+ };
+ };
+ "block-modes" = rec {
+ crateName = "block-modes";
+ version = "0.8.1";
+ edition = "2018";
+ sha256 = "13id7rw1lhi83i701za8w5is3a8qkf4vfigqw3f8jp8mxldkvc1c";
+ libName = "block_modes";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "block-padding";
+ packageId = "block-padding";
+ }
+ {
+ name = "cipher";
+ packageId = "cipher 0.3.0";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "block-padding" = rec {
+ crateName = "block-padding";
+ version = "0.2.1";
+ edition = "2018";
+ sha256 = "1bickjlmfw9iv63dp781n589rfybw879mik1va59833m1hvnqscd";
+ libName = "block_padding";
+ authors = [
+ "RustCrypto Developers"
+ ];
+
+ };
+ "blowfish" = rec {
+ crateName = "blowfish";
+ version = "0.9.1";
+ edition = "2021";
+ sha256 = "1mw7bvj3bg5w8vh9xw9xawqh7ixk2xwsxkj34ph96b9b1z6y44p4";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "byteorder";
+ packageId = "byteorder";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "cipher";
+ packageId = "cipher 0.4.4";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "cipher";
+ packageId = "cipher 0.4.4";
+ features = [ "dev" ];
+ }
+ ];
+ features = {
+ "zeroize" = [ "cipher/zeroize" ];
+ };
+ resolvedDefaultFeatures = [ "bcrypt" ];
+ };
+ "brotli" = rec {
+ crateName = "brotli";
+ version = "8.0.2";
+ edition = "2015";
+ crateBin = [];
+ sha256 = "0q25r00z3gm5wzvv4vfxvlx5zjb8i4jwyznrvdcp7abs7ihbkn2b";
+ authors = [
+ "Daniel Reiter Horn <danielrh@dropbox.com>"
+ "The Brotli Authors"
+ ];
+ dependencies = [
+ {
+ name = "alloc-no-stdlib";
+ packageId = "alloc-no-stdlib";
+ }
+ {
+ name = "alloc-stdlib";
+ packageId = "alloc-stdlib";
+ optional = true;
+ }
+ {
+ name = "brotli-decompressor";
+ packageId = "brotli-decompressor";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc-stdlib" = [ "dep:alloc-stdlib" ];
+ "benchmark" = [ "brotli-decompressor/benchmark" ];
+ "default" = [ "std" ];
+ "disable-timer" = [ "brotli-decompressor/disable-timer" ];
+ "ffi-api" = [ "brotli-decompressor/ffi-api" ];
+ "seccomp" = [ "brotli-decompressor/seccomp" ];
+ "sha2" = [ "dep:sha2" ];
+ "std" = [ "alloc-stdlib" "brotli-decompressor/std" ];
+ "validation" = [ "sha2" ];
+ };
+ resolvedDefaultFeatures = [ "alloc-stdlib" "default" "std" ];
+ };
+ "brotli-decompressor" = rec {
+ crateName = "brotli-decompressor";
+ version = "5.0.0";
+ edition = "2015";
+ crateBin = [];
+ sha256 = "00yyswj1rj20ma4wr4wcci4r9ywlgvxa87nqsv5rik5y588vhjw7";
+ libName = "brotli_decompressor";
+ authors = [
+ "Daniel Reiter Horn <danielrh@dropbox.com>"
+ "The Brotli Authors"
+ ];
+ dependencies = [
+ {
+ name = "alloc-no-stdlib";
+ packageId = "alloc-no-stdlib";
+ }
+ {
+ name = "alloc-stdlib";
+ packageId = "alloc-stdlib";
+ optional = true;
+ }
+ ];
+ features = {
+ "alloc-stdlib" = [ "dep:alloc-stdlib" ];
+ "default" = [ "std" ];
+ "std" = [ "alloc-stdlib" ];
+ "unsafe" = [ "alloc-no-stdlib/unsafe" "alloc-stdlib/unsafe" ];
+ };
+ resolvedDefaultFeatures = [ "alloc-stdlib" "std" ];
+ };
+ "bs58 0.4.0" = rec {
+ crateName = "bs58";
+ version = "0.4.0";
+ edition = "2018";
+ sha256 = "1lr3vwzhhyica4y7rbkf26vr1h7vpjb1m6rml8zcqgw81c2y07vp";
+ authors = [
+ "Wim Looman <wim@nemo157.com>"
+ ];
+ features = {
+ "check" = [ "sha2" ];
+ "default" = [ "std" ];
+ "sha2" = [ "dep:sha2" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "bs58 0.5.1" = rec {
+ crateName = "bs58";
+ version = "0.5.1";
+ edition = "2021";
+ sha256 = "1x3v51n5n2s3l0rgrsn142akdf331n2qsa75pscw71fi848vm25z";
+ dependencies = [
+ {
+ name = "tinyvec";
+ packageId = "tinyvec";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "grab_spare_slice" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tinyvec";
+ packageId = "tinyvec";
+ features = [ "rustc_1_55" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "tinyvec?/alloc" ];
+ "cb58" = [ "sha2" ];
+ "check" = [ "sha2" ];
+ "default" = [ "std" ];
+ "sha2" = [ "dep:sha2" ];
+ "smallvec" = [ "dep:smallvec" ];
+ "std" = [ "alloc" "tinyvec?/std" ];
+ "tinyvec" = [ "dep:tinyvec" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "bstr" = rec {
+ crateName = "bstr";
+ version = "1.12.1";
+ edition = "2021";
+ sha256 = "1arc1v7h5l86vd6z76z3xykjzldqd5icldn7j9d3p7z6x0d4w133";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "memchr";
+ packageId = "memchr";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "memchr/alloc" "serde?/alloc" ];
+ "default" = [ "std" "unicode" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "alloc" "memchr/std" "serde?/std" ];
+ "unicode" = [ "dep:regex-automata" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "std" ];
+ };
+ "bumpalo" = rec {
+ crateName = "bumpalo";
+ version = "3.19.0";
+ edition = "2021";
+ sha256 = "0hsdndvcpqbjb85ghrhska2qxvp9i75q2vb70hma9fxqawdy9ia6";
+ authors = [
+ "Nick Fitzgerald <fitzgen@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "allocator-api2";
+ packageId = "allocator-api2";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "allocator-api2" = [ "dep:allocator-api2" ];
+ "bench_allocator_api" = [ "allocator_api" "blink-alloc/nightly" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "allocator-api2" "collections" "default" ];
+ };
+ "bytecheck" = rec {
+ crateName = "bytecheck";
+ version = "0.6.12";
+ edition = "2021";
+ sha256 = "1hmipv4yyxgbamcbw5r65wagv9khs033v9483s9kri9sw9ycbk93";
+ authors = [
+ "David Koloski <djkoloski@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytecheck_derive";
+ packageId = "bytecheck_derive";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "ptr_meta";
+ packageId = "ptr_meta";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "simdutf8";
+ packageId = "simdutf8";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "simdutf8" "std" ];
+ "simdutf8" = [ "dep:simdutf8" ];
+ "std" = [ "ptr_meta/std" "bytecheck_derive/std" "simdutf8/std" ];
+ "uuid" = [ "dep:uuid" ];
+ };
+ resolvedDefaultFeatures = [ "simdutf8" "std" ];
+ };
+ "bytecheck_derive" = rec {
+ crateName = "bytecheck_derive";
+ version = "0.6.12";
+ edition = "2021";
+ sha256 = "0ng6230brd0hvqpbgcx83inn74mdv3abwn95x515bndwkz90dd1x";
+ procMacro = true;
+ authors = [
+ "David Koloski <djkoloski@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 1.0.109";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "byteorder" = rec {
+ crateName = "byteorder";
+ version = "1.5.0";
+ edition = "2021";
+ sha256 = "0jzncxyf404mwqdbspihyzpkndfgda450l0893pz5xj685cg5l0z";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "i128" "std" ];
+ };
+ "bytes" = rec {
+ crateName = "bytes";
+ version = "1.11.0";
+ edition = "2021";
+ sha256 = "1cww1ybcvisyj8pbzl4m36bni2jaz0narhczp1348gqbvkxh8lmk";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "extra-platforms" = [ "dep:extra-platforms" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "cached" = rec {
+ crateName = "cached";
+ version = "0.56.0";
+ edition = "2018";
+ sha256 = "0g15g8rb1r24xrzrj9v5da6pvk80yw0ry7chp2d805wf2vp2f6c0";
+ authors = [
+ "James Kominick <james@kominick.com>"
+ ];
+ dependencies = [
+ {
+ name = "ahash";
+ packageId = "ahash 0.8.12";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "cached_proc_macro";
+ packageId = "cached_proc_macro";
+ optional = true;
+ }
+ {
+ name = "cached_proc_macro_types";
+ packageId = "cached_proc_macro_types";
+ optional = true;
+ }
+ {
+ name = "hashbrown";
+ packageId = "hashbrown 0.15.5";
+ usesDefaultFeatures = false;
+ features = [ "inline-more" ];
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 2.0.17";
+ }
+ {
+ name = "web-time";
+ packageId = "web-time";
+ }
+ ];
+ features = {
+ "ahash" = [ "dep:ahash" "hashbrown/default" ];
+ "async" = [ "futures" "tokio" "async-trait" ];
+ "async-trait" = [ "dep:async-trait" ];
+ "async_tokio_rt_multi_thread" = [ "async" "tokio/rt-multi-thread" ];
+ "cached_proc_macro" = [ "dep:cached_proc_macro" ];
+ "cached_proc_macro_types" = [ "dep:cached_proc_macro_types" ];
+ "default" = [ "proc_macro" "ahash" ];
+ "directories" = [ "dep:directories" ];
+ "disk_store" = [ "sled" "serde" "rmp-serde" "directories" ];
+ "futures" = [ "dep:futures" ];
+ "proc_macro" = [ "cached_proc_macro" "cached_proc_macro_types" ];
+ "r2d2" = [ "dep:r2d2" ];
+ "redis" = [ "dep:redis" ];
+ "redis_ahash" = [ "redis_store" "redis/ahash" ];
+ "redis_async_std" = [ "redis_store" "async" "redis/aio" "redis/async-std-comp" "redis/tls" "redis/async-std-tls-comp" ];
+ "redis_connection_manager" = [ "redis_store" "redis/connection-manager" ];
+ "redis_store" = [ "redis" "r2d2" "serde" "serde_json" ];
+ "redis_tokio" = [ "redis_store" "async" "redis/aio" "redis/tokio-comp" "redis/tls" "redis/tokio-native-tls-comp" ];
+ "rmp-serde" = [ "dep:rmp-serde" ];
+ "serde" = [ "dep:serde" ];
+ "serde_json" = [ "dep:serde_json" ];
+ "sled" = [ "dep:sled" ];
+ "tokio" = [ "dep:tokio" ];
+ };
+ resolvedDefaultFeatures = [ "ahash" "cached_proc_macro" "cached_proc_macro_types" "default" "proc_macro" ];
+ };
+ "cached_proc_macro" = rec {
+ crateName = "cached_proc_macro";
+ version = "0.25.0";
+ edition = "2018";
+ sha256 = "00gjf5jvyvbj37hbbq6m51l79grgxc47jq0npw44r6ja9v7vs9cj";
+ procMacro = true;
+ authors = [
+ "csos95 <csoscss@gmail.com>"
+ "James Kominick <james@kominick.com>"
+ ];
+ dependencies = [
+ {
+ name = "darling";
+ packageId = "darling 0.20.11";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ }
+ ];
+
+ };
+ "cached_proc_macro_types" = rec {
+ crateName = "cached_proc_macro_types";
+ version = "0.1.1";
+ edition = "2018";
+ sha256 = "1h3gw61v1inay4g3b8pirxlz18m81k63dw2q18zj9fnmidmkds5d";
+ authors = [
+ "James Kominick <james@kominick.com>"
+ ];
+
+ };
+ "canonical-path" = rec {
+ crateName = "canonical-path";
+ version = "2.0.2";
+ edition = "2018";
+ sha256 = "0vvsjda6ka5nz8zvx6r08zqi0j59sjccgcbjxj96xj764w9y1sg6";
+ libName = "canonical_path";
+ authors = [
+ "Tony Arcieri <tony@iqlusion.io>"
+ ];
+
+ };
+ "castaway" = rec {
+ crateName = "castaway";
+ version = "0.2.4";
+ edition = "2018";
+ sha256 = "0nn5his5f8q20nkyg1nwb40xc19a08yaj4y76a8q2y3mdsmm3ify";
+ authors = [
+ "Stephen M. Coakley <me@stephencoakley.com>"
+ ];
+ dependencies = [
+ {
+ name = "rustversion";
+ packageId = "rustversion";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" ];
+ };
+ "cc" = rec {
+ crateName = "cc";
+ version = "1.2.47";
+ edition = "2018";
+ sha256 = "01yg4yc86s1mpmwdrk441rx6idwzidyzcxgi75bz7xsgr215sh6d";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "find-msvc-tools";
+ packageId = "find-msvc-tools";
+ }
+ {
+ name = "jobserver";
+ packageId = "jobserver";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "shlex";
+ packageId = "shlex";
+ }
+ ];
+ features = {
+ "parallel" = [ "dep:libc" "dep:jobserver" ];
+ };
+ resolvedDefaultFeatures = [ "parallel" ];
+ };
+ "cfg-if" = rec {
+ crateName = "cfg-if";
+ version = "1.0.4";
+ edition = "2018";
+ sha256 = "008q28ajc546z5p2hcwdnckmg0hia7rnx52fni04bwqkzyrghc4k";
+ libName = "cfg_if";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ "core" = [ "dep:core" ];
+ "rustc-dep-of-std" = [ "core" ];
+ };
+ };
+ "cfg_aliases" = rec {
+ crateName = "cfg_aliases";
+ version = "0.2.1";
+ edition = "2018";
+ sha256 = "092pxdc1dbgjb6qvh83gk56rkic2n2ybm4yvy76cgynmzi3zwfk1";
+ authors = [
+ "Zicklag <zicklag@katharostech.com>"
+ ];
+
+ };
+ "chardetng" = rec {
+ crateName = "chardetng";
+ version = "0.1.17";
+ edition = "2018";
+ sha256 = "1spikjcnblwa5n1nnk46fxkwn86yfiqxgs47h4yaw23vbfvg1f0l";
+ authors = [
+ "Henri Sivonen <hsivonen@hsivonen.fi>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "encoding_rs";
+ packageId = "encoding_rs";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "arrayvec" = [ "dep:arrayvec" ];
+ "multithreading" = [ "rayon" "arrayvec" ];
+ "rayon" = [ "dep:rayon" ];
+ };
+ };
+ "chrono" = rec {
+ crateName = "chrono";
+ version = "0.4.42";
+ edition = "2021";
+ sha256 = "1lp8iz9js9jwxw0sj8yi59v54lgvwdvm49b9wch77f25sfym4l0l";
+ dependencies = [
+ {
+ name = "iana-time-zone";
+ packageId = "iana-time-zone";
+ optional = true;
+ target = { target, features }: (target."unix" or false);
+ features = [ "fallback" ];
+ }
+ {
+ name = "js-sys";
+ packageId = "js-sys";
+ optional = true;
+ target = { target, features }: (("wasm32" == target."arch" or null) && (!(("emscripten" == target."os" or null) || ("wasi" == target."os" or null))));
+ }
+ {
+ name = "num-traits";
+ packageId = "num-traits";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "wasm-bindgen";
+ packageId = "wasm-bindgen";
+ optional = true;
+ target = { target, features }: (("wasm32" == target."arch" or null) && (!(("emscripten" == target."os" or null) || ("wasi" == target."os" or null))));
+ }
+ {
+ name = "windows-link";
+ packageId = "windows-link";
+ optional = true;
+ target = { target, features }: (target."windows" or false);
+ }
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "clock" = [ "winapi" "iana-time-zone" "now" ];
+ "default" = [ "clock" "std" "oldtime" "wasmbind" ];
+ "iana-time-zone" = [ "dep:iana-time-zone" ];
+ "js-sys" = [ "dep:js-sys" ];
+ "now" = [ "std" ];
+ "pure-rust-locales" = [ "dep:pure-rust-locales" ];
+ "rkyv" = [ "dep:rkyv" "rkyv/size_32" ];
+ "rkyv-16" = [ "dep:rkyv" "rkyv?/size_16" ];
+ "rkyv-32" = [ "dep:rkyv" "rkyv?/size_32" ];
+ "rkyv-64" = [ "dep:rkyv" "rkyv?/size_64" ];
+ "rkyv-validation" = [ "rkyv?/validation" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "alloc" ];
+ "unstable-locales" = [ "pure-rust-locales" ];
+ "wasm-bindgen" = [ "dep:wasm-bindgen" ];
+ "wasmbind" = [ "wasm-bindgen" "js-sys" ];
+ "winapi" = [ "windows-link" ];
+ "windows-link" = [ "dep:windows-link" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "clock" "default" "iana-time-zone" "js-sys" "now" "oldtime" "serde" "std" "wasm-bindgen" "wasmbind" "winapi" "windows-link" ];
+ };
+ "ci" = rec {
+ crateName = "ci";
+ version = "0.1.0";
+ edition = "2021";
+ crateBin = [
+ {
+ name = "ci";
+ path = "src/main.rs";
+ requiredFeatures = [ ];
+ }
+ ];
+ src = lib.cleanSourceWith { filter = sourceFilter; src = ./ci; };
+ authors = [
+ "Pierre-Étienne Meunier <pe@pijul.org>"
+ ];
+ dependencies = [
+ {
+ name = "anyhow";
+ packageId = "anyhow";
+ }
+ {
+ name = "bincode";
+ packageId = "bincode 1.3.3";
+ }
+ {
+ name = "chrono";
+ packageId = "chrono";
+ }
+ {
+ name = "clap";
+ packageId = "clap";
+ features = [ "derive" ];
+ }
+ {
+ name = "env_logger";
+ packageId = "env_logger";
+ }
+ {
+ name = "futures";
+ packageId = "futures";
+ }
+ {
+ name = "libpijul";
+ packageId = "libpijul";
+ features = [ "tarball" ];
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ {
+ name = "thrussh";
+ packageId = "thrussh";
+ }
+ {
+ name = "thrussh-keys";
+ packageId = "thrussh-keys";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "process" "fs" ];
+ }
+ {
+ name = "toml";
+ packageId = "toml 0.9.8";
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ }
+ {
+ name = "tracing-subscriber";
+ packageId = "tracing-subscriber";
+ features = [ "env-filter" ];
+ }
+ {
+ name = "uuid";
+ packageId = "uuid";
+ features = [ "serde" ];
+ }
+ ];
+
+ };
+ "cipher 0.3.0" = rec {
+ crateName = "cipher";
+ version = "0.3.0";
+ edition = "2018";
+ sha256 = "1dyzsv0c84rgz98d5glnhsz4320wl24x3bq511vnyf0mxir21rby";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "generic-array";
+ packageId = "generic-array";
+ }
+ ];
+ features = {
+ "blobby" = [ "dep:blobby" ];
+ "dev" = [ "blobby" ];
+ };
+ };
+ "cipher 0.4.4" = rec {
+ crateName = "cipher";
+ version = "0.4.4";
+ edition = "2021";
+ sha256 = "1b9x9agg67xq5nq879z66ni4l08m6m3hqcshk37d4is4ysd3ngvp";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "crypto-common";
+ packageId = "crypto-common";
+ }
+ {
+ name = "inout";
+ packageId = "inout";
+ }
+ ];
+ features = {
+ "blobby" = [ "dep:blobby" ];
+ "block-padding" = [ "inout/block-padding" ];
+ "dev" = [ "blobby" ];
+ "rand_core" = [ "crypto-common/rand_core" ];
+ "std" = [ "alloc" "crypto-common/std" "inout/std" ];
+ "zeroize" = [ "dep:zeroize" ];
+ };
+ };
+ "clap" = rec {
+ crateName = "clap";
+ version = "4.5.53";
+ edition = "2021";
+ crateBin = [];
+ sha256 = "1y035lyy5w2xx83q4c3jiy75928ldm1x2bi8ylslkgx12bh41qy9";
+ dependencies = [
+ {
+ name = "clap_builder";
+ packageId = "clap_builder";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "clap_derive";
+ packageId = "clap_derive";
+ optional = true;
+ }
+ ];
+ features = {
+ "cargo" = [ "clap_builder/cargo" ];
+ "color" = [ "clap_builder/color" ];
+ "debug" = [ "clap_builder/debug" "clap_derive?/debug" ];
+ "default" = [ "std" "color" "help" "usage" "error-context" "suggestions" ];
+ "deprecated" = [ "clap_builder/deprecated" "clap_derive?/deprecated" ];
+ "derive" = [ "dep:clap_derive" ];
+ "env" = [ "clap_builder/env" ];
+ "error-context" = [ "clap_builder/error-context" ];
+ "help" = [ "clap_builder/help" ];
+ "std" = [ "clap_builder/std" ];
+ "string" = [ "clap_builder/string" ];
+ "suggestions" = [ "clap_builder/suggestions" ];
+ "unicode" = [ "clap_builder/unicode" ];
+ "unstable-doc" = [ "clap_builder/unstable-doc" "derive" ];
+ "unstable-ext" = [ "clap_builder/unstable-ext" ];
+ "unstable-markdown" = [ "clap_derive/unstable-markdown" ];
+ "unstable-styles" = [ "clap_builder/unstable-styles" ];
+ "unstable-v5" = [ "clap_builder/unstable-v5" "clap_derive?/unstable-v5" "deprecated" ];
+ "usage" = [ "clap_builder/usage" ];
+ "wrap_help" = [ "clap_builder/wrap_help" ];
+ };
+ resolvedDefaultFeatures = [ "color" "default" "derive" "error-context" "help" "std" "suggestions" "usage" ];
+ };
+ "clap_builder" = rec {
+ crateName = "clap_builder";
+ version = "4.5.53";
+ edition = "2021";
+ sha256 = "004xasw24a9vvzpiymjkm4khffpyzqwskz7ps8gr1351x89mssyp";
+ dependencies = [
+ {
+ name = "anstream";
+ packageId = "anstream";
+ optional = true;
+ }
+ {
+ name = "anstyle";
+ packageId = "anstyle";
+ }
+ {
+ name = "clap_lex";
+ packageId = "clap_lex";
+ }
+ {
+ name = "strsim";
+ packageId = "strsim";
+ optional = true;
+ }
+ ];
+ features = {
+ "color" = [ "dep:anstream" ];
+ "debug" = [ "dep:backtrace" ];
+ "default" = [ "std" "color" "help" "usage" "error-context" "suggestions" ];
+ "std" = [ "anstyle/std" ];
+ "suggestions" = [ "dep:strsim" "error-context" ];
+ "unicode" = [ "dep:unicode-width" "dep:unicase" ];
+ "unstable-doc" = [ "cargo" "wrap_help" "env" "unicode" "string" "unstable-ext" ];
+ "unstable-styles" = [ "color" ];
+ "unstable-v5" = [ "deprecated" ];
+ "wrap_help" = [ "help" "dep:terminal_size" ];
+ };
+ resolvedDefaultFeatures = [ "color" "error-context" "help" "std" "suggestions" "usage" ];
+ };
+ "clap_derive" = rec {
+ crateName = "clap_derive";
+ version = "4.5.49";
+ edition = "2021";
+ sha256 = "0wbngw649138v3jwx8pm5x9sq0qsml3sh0sfzyrdxcpamy3m82ra";
+ procMacro = true;
+ dependencies = [
+ {
+ name = "heck";
+ packageId = "heck 0.5.0";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" ];
+ }
+ ];
+ features = {
+ "raw-deprecated" = [ "deprecated" ];
+ "unstable-markdown" = [ "dep:pulldown-cmark" "dep:anstyle" ];
+ "unstable-v5" = [ "deprecated" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "clap_lex" = rec {
+ crateName = "clap_lex";
+ version = "0.7.6";
+ edition = "2021";
+ sha256 = "13cxw9m2rqvplgazgkq2awms0rgf34myc19bz6gywfngi762imx1";
+
+ };
+ "cmake" = rec {
+ crateName = "cmake";
+ version = "0.1.54";
+ edition = "2021";
+ sha256 = "1w41ma28yzad9x757s9sfq1wigjs9j902hbzc0nbxpc9vvws7jp7";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "cc";
+ packageId = "cc";
+ }
+ ];
+
+ };
+ "colorchoice" = rec {
+ crateName = "colorchoice";
+ version = "1.0.4";
+ edition = "2021";
+ sha256 = "0x8ymkz1xr77rcj1cfanhf416pc4v681gmkc9dzb3jqja7f62nxh";
+
+ };
+ "compact_str" = rec {
+ crateName = "compact_str";
+ version = "0.9.0";
+ edition = "2021";
+ sha256 = "0ykhh2scg32lmzxak107pmby6fmnz7qbhsi9i8g9iknfl4ji7nrz";
+ authors = [
+ "Parker Timmerman <parker@parkertimmerman.com>"
+ ];
+ dependencies = [
+ {
+ name = "castaway";
+ packageId = "castaway";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ {
+ name = "rustversion";
+ packageId = "rustversion";
+ }
+ {
+ name = "ryu";
+ packageId = "ryu";
+ }
+ {
+ name = "static_assertions";
+ packageId = "static_assertions";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "borsh" = [ "dep:borsh" ];
+ "bytes" = [ "dep:bytes" ];
+ "default" = [ "std" ];
+ "diesel" = [ "dep:diesel" ];
+ "markup" = [ "dep:markup" ];
+ "proptest" = [ "dep:proptest" ];
+ "quickcheck" = [ "dep:quickcheck" ];
+ "rkyv" = [ "dep:rkyv" ];
+ "serde" = [ "dep:serde" ];
+ "smallvec" = [ "dep:smallvec" ];
+ "sqlx" = [ "dep:sqlx" "std" ];
+ "sqlx-mysql" = [ "sqlx" "sqlx/mysql" ];
+ "sqlx-postgres" = [ "sqlx" "sqlx/postgres" ];
+ "sqlx-sqlite" = [ "sqlx" "sqlx/sqlite" ];
+ "zeroize" = [ "dep:zeroize" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "compression-codecs" = rec {
+ crateName = "compression-codecs";
+ version = "0.4.33";
+ edition = "2018";
+ sha256 = "1bflya4986dlha5nq0b8cz2svwcfll9j015x24nmaqxrki3nc8ih";
+ libName = "compression_codecs";
+ authors = [
+ "Wim Looman <wim@nemo157.com>"
+ "Allen Bui <fairingrey@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "brotli";
+ packageId = "brotli";
+ optional = true;
+ }
+ {
+ name = "compression-core";
+ packageId = "compression-core";
+ }
+ {
+ name = "flate2";
+ packageId = "flate2";
+ optional = true;
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ optional = true;
+ }
+ {
+ name = "zstd";
+ packageId = "zstd";
+ rename = "libzstd";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zstd-safe";
+ packageId = "zstd-safe";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "all-algorithms" = [ "brotli" "bzip2" "deflate" "gzip" "lz4" "lzma" "xz-parallel" "xz" "zlib" "zstd" "deflate64" ];
+ "brotli" = [ "dep:brotli" ];
+ "bzip2" = [ "dep:bzip2" ];
+ "deflate" = [ "flate2" ];
+ "deflate64" = [ "dep:deflate64" ];
+ "flate2" = [ "dep:flate2" ];
+ "gzip" = [ "flate2" "memchr" ];
+ "libzstd" = [ "dep:libzstd" ];
+ "lz4" = [ "dep:lz4" ];
+ "lzma" = [ "dep:liblzma" ];
+ "memchr" = [ "dep:memchr" ];
+ "xz" = [ "lzma" ];
+ "xz-parallel" = [ "xz" "liblzma/parallel" ];
+ "xz2" = [ "xz" ];
+ "zlib" = [ "flate2" ];
+ "zstd" = [ "libzstd" "zstd-safe" ];
+ "zstd-safe" = [ "dep:zstd-safe" ];
+ "zstdmt" = [ "zstd" "zstd-safe/zstdmt" ];
+ };
+ resolvedDefaultFeatures = [ "brotli" "flate2" "gzip" "libzstd" "memchr" "zlib" "zstd" "zstd-safe" ];
+ };
+ "compression-core" = rec {
+ crateName = "compression-core";
+ version = "0.4.31";
+ edition = "2018";
+ sha256 = "13cxnh46qvli55aqv04i3l6kiw2835ngp6mr5paa00nidvxlx63m";
+ libName = "compression_core";
+ authors = [
+ "Wim Looman <wim@nemo157.com>"
+ "Allen Bui <fairingrey@gmail.com>"
+ ];
+
+ };
+ "const-str" = rec {
+ crateName = "const-str";
+ version = "0.3.2";
+ edition = "2018";
+ sha256 = "1wxay9fr0ydvand3vidzcrhaapvjq4mg8fhw8axh441afrr7f1r1";
+ libName = "const_str";
+ authors = [
+ "Nugine <nugine@foxmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "const-str-proc-macro";
+ packageId = "const-str-proc-macro";
+ }
+ ];
+ features = {
+ "all" = [ "verify-regex" "verify-http" "case" "std" ];
+ "case" = [ "const-str-proc-macro/heck" ];
+ "verify-http" = [ "const-str-proc-macro/http" ];
+ "verify-regex" = [ "const-str-proc-macro/regex" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "const-str-proc-macro" = rec {
+ crateName = "const-str-proc-macro";
+ version = "0.3.2";
+ edition = "2018";
+ sha256 = "0np2206r7w3c7lg5rg06wg8bby7fmrc13cp163jl2c2x5vfhy7jy";
+ procMacro = true;
+ libName = "const_str_proc_macro";
+ authors = [
+ "Nugine <nugine@foxmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 1.0.109";
+ }
+ ];
+ features = {
+ "heck" = [ "dep:heck" ];
+ "http" = [ "dep:http" ];
+ "regex" = [ "dep:regex" ];
+ };
+ };
+ "constant_time_eq" = rec {
+ crateName = "constant_time_eq";
+ version = "0.3.1";
+ edition = "2021";
+ sha256 = "19nwwczii762pwlsm7bpizgjg8hkg1kqi32b2g4rglijklsbhx3w";
+ authors = [
+ "Cesar Eduardo Barros <cesarb@cesarb.eti.br>"
+ ];
+ features = {
+ };
+ };
+ "convert_case" = rec {
+ crateName = "convert_case";
+ version = "0.6.0";
+ edition = "2018";
+ sha256 = "1jn1pq6fp3rri88zyw6jlhwwgf6qiyc08d6gjv0qypgkl862n67c";
+ authors = [
+ "Rutrum <dave@rutrum.net>"
+ ];
+ dependencies = [
+ {
+ name = "unicode-segmentation";
+ packageId = "unicode-segmentation";
+ }
+ ];
+ features = {
+ "rand" = [ "dep:rand" ];
+ "random" = [ "rand" ];
+ };
+ };
+ "cookie" = rec {
+ crateName = "cookie";
+ version = "0.18.1";
+ edition = "2018";
+ sha256 = "0iy749flficrlvgr3hjmf3igr738lk81n5akzf4ym4cs6cxg7pjd";
+ authors = [
+ "Sergio Benitez <sb@sergio.bz>"
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "aes-gcm";
+ packageId = "aes-gcm";
+ optional = true;
+ }
+ {
+ name = "base64";
+ packageId = "base64 0.22.1";
+ optional = true;
+ }
+ {
+ name = "hmac";
+ packageId = "hmac 0.12.1";
+ optional = true;
+ }
+ {
+ name = "percent-encoding";
+ packageId = "percent-encoding";
+ optional = true;
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.8.5";
+ optional = true;
+ }
+ {
+ name = "sha2";
+ packageId = "sha2 0.10.9";
+ optional = true;
+ }
+ {
+ name = "subtle";
+ packageId = "subtle";
+ optional = true;
+ }
+ {
+ name = "time";
+ packageId = "time";
+ usesDefaultFeatures = false;
+ features = [ "std" "parsing" "formatting" "macros" ];
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "version_check";
+ packageId = "version_check";
+ }
+ ];
+ features = {
+ "aes-gcm" = [ "dep:aes-gcm" ];
+ "base64" = [ "dep:base64" ];
+ "hkdf" = [ "dep:hkdf" ];
+ "hmac" = [ "dep:hmac" ];
+ "key-expansion" = [ "sha2" "hkdf" ];
+ "percent-encode" = [ "percent-encoding" ];
+ "percent-encoding" = [ "dep:percent-encoding" ];
+ "private" = [ "aes-gcm" "base64" "rand" "subtle" ];
+ "rand" = [ "dep:rand" ];
+ "secure" = [ "private" "signed" "key-expansion" ];
+ "sha2" = [ "dep:sha2" ];
+ "signed" = [ "hmac" "sha2" "base64" "rand" "subtle" ];
+ "subtle" = [ "dep:subtle" ];
+ };
+ resolvedDefaultFeatures = [ "aes-gcm" "base64" "hmac" "percent-encode" "percent-encoding" "private" "rand" "sha2" "signed" "subtle" ];
+ };
+ "core-foundation" = rec {
+ crateName = "core-foundation";
+ version = "0.9.4";
+ edition = "2018";
+ sha256 = "13zvbbj07yk3b61b8fhwfzhy35535a583irf23vlcg59j7h9bqci";
+ libName = "core_foundation";
+ authors = [
+ "The Servo Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "core-foundation-sys";
+ packageId = "core-foundation-sys";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ ];
+ features = {
+ "chrono" = [ "dep:chrono" ];
+ "default" = [ "link" ];
+ "link" = [ "core-foundation-sys/link" ];
+ "mac_os_10_7_support" = [ "core-foundation-sys/mac_os_10_7_support" ];
+ "mac_os_10_8_features" = [ "core-foundation-sys/mac_os_10_8_features" ];
+ "uuid" = [ "dep:uuid" ];
+ "with-chrono" = [ "chrono" ];
+ "with-uuid" = [ "uuid" ];
+ };
+ resolvedDefaultFeatures = [ "default" "link" ];
+ };
+ "core-foundation-sys" = rec {
+ crateName = "core-foundation-sys";
+ version = "0.8.7";
+ edition = "2018";
+ sha256 = "12w8j73lazxmr1z0h98hf3z623kl8ms7g07jch7n4p8f9nwlhdkp";
+ libName = "core_foundation_sys";
+ authors = [
+ "The Servo Project Developers"
+ ];
+ features = {
+ "default" = [ "link" ];
+ };
+ resolvedDefaultFeatures = [ "default" "link" ];
+ };
+ "cow-utils" = rec {
+ crateName = "cow-utils";
+ version = "0.1.3";
+ edition = "2018";
+ sha256 = "0y9cxf0hm2hy4bn050wl2785md5q4i5gy9asjq006ip1mwjfyys1";
+ libName = "cow_utils";
+ authors = [
+ "Ingvar Stepanyan <me@rreverser.com>"
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "cpufeatures" = rec {
+ crateName = "cpufeatures";
+ version = "0.2.17";
+ edition = "2018";
+ sha256 = "10023dnnaghhdl70xcds12fsx2b966sxbxjq5sxs49mvxqw5ivar";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-linux-android");
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("aarch64" == target."arch" or null) && ("linux" == target."os" or null));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("aarch64" == target."arch" or null) && ("apple" == target."vendor" or null));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("loongarch64" == target."arch" or null) && ("linux" == target."os" or null));
+ }
+ ];
+
+ };
+ "crc32fast" = rec {
+ crateName = "crc32fast";
+ version = "1.5.0";
+ edition = "2021";
+ sha256 = "04d51liy8rbssra92p0qnwjw8i9rm9c4m3bwy19wjamz1k4w30cl";
+ authors = [
+ "Sam Rijs <srijs@airpost.net>"
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "crossbeam-deque" = rec {
+ crateName = "crossbeam-deque";
+ version = "0.8.6";
+ edition = "2021";
+ sha256 = "0l9f1saqp1gn5qy0rxvkmz4m6n7fc0b3dbm6q1r5pmgpnyvi3lcx";
+ libName = "crossbeam_deque";
+ dependencies = [
+ {
+ name = "crossbeam-epoch";
+ packageId = "crossbeam-epoch";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "crossbeam-utils";
+ packageId = "crossbeam-utils";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "crossbeam-epoch/std" "crossbeam-utils/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "crossbeam-epoch" = rec {
+ crateName = "crossbeam-epoch";
+ version = "0.9.18";
+ edition = "2021";
+ sha256 = "03j2np8llwf376m3fxqx859mgp9f83hj1w34153c7a9c7i5ar0jv";
+ libName = "crossbeam_epoch";
+ dependencies = [
+ {
+ name = "crossbeam-utils";
+ packageId = "crossbeam-utils";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "loom" = [ "loom-crate" "crossbeam-utils/loom" ];
+ "loom-crate" = [ "dep:loom-crate" ];
+ "nightly" = [ "crossbeam-utils/nightly" ];
+ "std" = [ "alloc" "crossbeam-utils/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "std" ];
+ };
+ "crossbeam-utils" = rec {
+ crateName = "crossbeam-utils";
+ version = "0.8.21";
+ edition = "2021";
+ sha256 = "0a3aa2bmc8q35fb67432w16wvi54sfmb69rk9h5bhd18vw0c99fh";
+ libName = "crossbeam_utils";
+ features = {
+ "default" = [ "std" ];
+ "loom" = [ "dep:loom" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "crunchy" = rec {
+ crateName = "crunchy";
+ version = "0.2.4";
+ edition = "2021";
+ sha256 = "1mbp5navim2qr3x48lyvadqblcxc1dm0lqr0swrkkwy2qblvw3s6";
+ authors = [
+ "Eira Fransham <jackefransham@gmail.com>"
+ ];
+ features = {
+ "default" = [ "limit_128" ];
+ };
+ resolvedDefaultFeatures = [ "default" "limit_128" ];
+ };
+ "crypto-common" = rec {
+ crateName = "crypto-common";
+ version = "0.1.7";
+ edition = "2018";
+ sha256 = "02nn2rhfy7kvdkdjl457q2z0mklcvj9h662xrq6dzhfialh2kj3q";
+ libName = "crypto_common";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "generic-array";
+ packageId = "generic-array";
+ features = [ "more_lengths" ];
+ }
+ {
+ name = "rand_core";
+ packageId = "rand_core 0.6.4";
+ optional = true;
+ }
+ {
+ name = "typenum";
+ packageId = "typenum";
+ }
+ ];
+ features = {
+ "getrandom" = [ "rand_core/getrandom" ];
+ "rand_core" = [ "dep:rand_core" ];
+ };
+ resolvedDefaultFeatures = [ "getrandom" "rand_core" "std" ];
+ };
+ "crypto-mac" = rec {
+ crateName = "crypto-mac";
+ version = "0.11.0";
+ edition = "2018";
+ sha256 = "0ghh3qmjf7hv580zqdk4yrbg99v57jx773zb7lzi7j4hj24bdyi5";
+ libName = "crypto_mac";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "generic-array";
+ packageId = "generic-array";
+ }
+ {
+ name = "subtle";
+ packageId = "subtle";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "blobby" = [ "dep:blobby" ];
+ "cipher" = [ "dep:cipher" ];
+ "dev" = [ "blobby" ];
+ };
+ };
+ "cryptovec" = rec {
+ crateName = "cryptovec";
+ version = "0.7.1";
+ edition = "2024";
+ sha256 = "1mx7wf174ycxmi6prfch7czyijpv36vr2bdaslszx8z5zxalhaxf";
+ authors = [
+ "Pierre-Étienne Meunier <pe@pijul.org>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ {
+ name = "winapi";
+ packageId = "winapi";
+ features = [ "basetsd" "minwindef" "memoryapi" ];
+ }
+ ];
+
+ };
+ "cssparser 0.33.0" = rec {
+ crateName = "cssparser";
+ version = "0.33.0";
+ edition = "2018";
+ sha256 = "07i8k47fmym7kzs95qfhg6zrh4yyf2vl4460rmdyvyx06vck9scv";
+ authors = [
+ "Simon Sapin <simon.sapin@exyr.org>"
+ ];
+ dependencies = [
+ {
+ name = "cssparser-macros";
+ packageId = "cssparser-macros";
+ }
+ {
+ name = "dtoa-short";
+ packageId = "dtoa-short";
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ {
+ name = "phf";
+ packageId = "phf 0.11.3";
+ features = [ "macros" ];
+ }
+ {
+ name = "smallvec";
+ packageId = "smallvec";
+ }
+ ];
+ features = {
+ "serde" = [ "dep:serde" ];
+ };
+ };
+ "cssparser 0.35.0" = rec {
+ crateName = "cssparser";
+ version = "0.35.0";
+ edition = "2018";
+ sha256 = "1am2mj4rddlbmi08drk7gv9m8vw47zgicld48kwp451sfgfix42f";
+ authors = [
+ "Simon Sapin <simon.sapin@exyr.org>"
+ ];
+ dependencies = [
+ {
+ name = "cssparser-macros";
+ packageId = "cssparser-macros";
+ }
+ {
+ name = "dtoa-short";
+ packageId = "dtoa-short";
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ {
+ name = "phf";
+ packageId = "phf 0.11.3";
+ features = [ "macros" ];
+ }
+ {
+ name = "smallvec";
+ packageId = "smallvec";
+ }
+ ];
+ features = {
+ "malloc_size_of" = [ "dep:malloc_size_of" ];
+ "serde" = [ "dep:serde" ];
+ };
+ };
+ "cssparser-color" = rec {
+ crateName = "cssparser-color";
+ version = "0.1.0";
+ edition = "2021";
+ sha256 = "17qcjsrph1ywcdsx1ipqgmzaas4dbbir5djjmzbqjnfqc6d0jv2m";
+ libName = "cssparser_color";
+ libPath = "lib.rs";
+ authors = [
+ "Emilio Cobos Álvarez <emilio@crisal.io>"
+ ];
+ dependencies = [
+ {
+ name = "cssparser";
+ packageId = "cssparser 0.33.0";
+ }
+ ];
+
+ };
+ "cssparser-macros" = rec {
+ crateName = "cssparser-macros";
+ version = "0.6.1";
+ edition = "2018";
+ sha256 = "0cfkzj60avrnskdmaf7f8zw6pp3di4ylplk455zrzaf19ax8id8k";
+ procMacro = true;
+ libName = "cssparser_macros";
+ libPath = "lib.rs";
+ authors = [
+ "Simon Sapin <simon.sapin@exyr.org>"
+ ];
+ dependencies = [
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" "extra-traits" ];
+ }
+ ];
+
+ };
+ "ctr 0.8.0" = rec {
+ crateName = "ctr";
+ version = "0.8.0";
+ edition = "2018";
+ sha256 = "1sk1aykwhkny92cnvl6s75dx3fyvfzw5xkd6xz3y7w5anhgvk6q4";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "cipher";
+ packageId = "cipher 0.3.0";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "cipher";
+ packageId = "cipher 0.3.0";
+ features = [ "dev" ];
+ }
+ ];
+
+ };
+ "ctr 0.9.2" = rec {
+ crateName = "ctr";
+ version = "0.9.2";
+ edition = "2021";
+ sha256 = "0d88b73waamgpfjdml78icxz45d95q7vi2aqa604b0visqdfws83";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "cipher";
+ packageId = "cipher 0.4.4";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "cipher";
+ packageId = "cipher 0.4.4";
+ features = [ "dev" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "cipher/alloc" ];
+ "block-padding" = [ "cipher/block-padding" ];
+ "std" = [ "cipher/std" "alloc" ];
+ "zeroize" = [ "cipher/zeroize" ];
+ };
+ };
+ "cuach" = rec {
+ crateName = "cuach";
+ version = "0.9.0";
+ edition = "2018";
+ sha256 = "093mfs5mjwi1af643krq22xcjwj53iywrzvh97aianpb71lrsnvd";
+ authors = [
+ "Pierre-Étienne Meunier <pe@pijul.org>"
+ ];
+ dependencies = [
+ {
+ name = "cuach-derive";
+ packageId = "cuach-derive";
+ }
+ {
+ name = "uuid";
+ packageId = "uuid";
+ }
+ {
+ name = "v_htmlescape";
+ packageId = "v_htmlescape";
+ }
+ ];
+
+ };
+ "cuach-derive" = rec {
+ crateName = "cuach-derive";
+ version = "0.6.0";
+ edition = "2018";
+ sha256 = "148g55lq1y5i5w7hbg0kp2rb5iiqxvdkk2idc2xibi95zmxl9s7x";
+ procMacro = true;
+ libName = "cuach_derive";
+ authors = [
+ "Pierre-Étienne Meunier <pe@pijul.org>"
+ ];
+ dependencies = [
+ {
+ name = "html5ever";
+ packageId = "html5ever 0.26.0";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "regex";
+ packageId = "regex";
+ }
+ {
+ name = "syn";
+ packageId = "syn 1.0.109";
+ }
+ ];
+
+ };
+ "curve25519-dalek" = rec {
+ crateName = "curve25519-dalek";
+ version = "3.2.0";
+ edition = "2015";
+ sha256 = "0q8v97275cy6v4ly6y2qwv9a8phnpjg9sy8kv7r6mgdjfacxz7qb";
+ libName = "curve25519_dalek";
+ authors = [
+ "Isis Lovecruft <isis@patternsinthevoid.net>"
+ "Henry de Valence <hdevalence@hdevalence.ca>"
+ ];
+ dependencies = [
+ {
+ name = "byteorder";
+ packageId = "byteorder";
+ usesDefaultFeatures = false;
+ features = [ "i128" ];
+ }
+ {
+ name = "digest";
+ packageId = "digest 0.9.0";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rand_core";
+ packageId = "rand_core 0.5.1";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ {
+ name = "subtle";
+ packageId = "subtle";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zeroize";
+ packageId = "zeroize";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "zeroize/alloc" ];
+ "avx2_backend" = [ "simd_backend" ];
+ "default" = [ "std" "u64_backend" ];
+ "fiat-crypto" = [ "dep:fiat-crypto" ];
+ "fiat_u32_backend" = [ "fiat-crypto" ];
+ "fiat_u64_backend" = [ "fiat-crypto" ];
+ "nightly" = [ "subtle/nightly" ];
+ "packed_simd" = [ "dep:packed_simd" ];
+ "serde" = [ "dep:serde" ];
+ "simd_backend" = [ "nightly" "u64_backend" "packed_simd" ];
+ "std" = [ "alloc" "subtle/std" "rand_core/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "serde" "std" "u64_backend" ];
+ };
+ "darling 0.20.11" = rec {
+ crateName = "darling";
+ version = "0.20.11";
+ edition = "2021";
+ sha256 = "1vmlphlrlw4f50z16p4bc9p5qwdni1ba95qmxfrrmzs6dh8lczzw";
+ authors = [
+ "Ted Driggs <ted.driggs@outlook.com>"
+ ];
+ dependencies = [
+ {
+ name = "darling_core";
+ packageId = "darling_core 0.20.11";
+ }
+ {
+ name = "darling_macro";
+ packageId = "darling_macro 0.20.11";
+ }
+ ];
+ features = {
+ "default" = [ "suggestions" ];
+ "diagnostics" = [ "darling_core/diagnostics" ];
+ "suggestions" = [ "darling_core/suggestions" ];
+ };
+ resolvedDefaultFeatures = [ "default" "suggestions" ];
+ };
+ "darling 0.21.3" = rec {
+ crateName = "darling";
+ version = "0.21.3";
+ edition = "2021";
+ sha256 = "1h281ah78pz05450r71h3gwm2n24hy8yngbz58g426l4j1q37pww";
+ authors = [
+ "Ted Driggs <ted.driggs@outlook.com>"
+ ];
+ dependencies = [
+ {
+ name = "darling_core";
+ packageId = "darling_core 0.21.3";
+ }
+ {
+ name = "darling_macro";
+ packageId = "darling_macro 0.21.3";
+ }
+ ];
+ features = {
+ "default" = [ "suggestions" ];
+ "diagnostics" = [ "darling_core/diagnostics" ];
+ "serde" = [ "darling_core/serde" ];
+ "suggestions" = [ "darling_core/suggestions" ];
+ };
+ resolvedDefaultFeatures = [ "default" "suggestions" ];
+ };
+ "darling_core 0.20.11" = rec {
+ crateName = "darling_core";
+ version = "0.20.11";
+ edition = "2021";
+ sha256 = "0bj1af6xl4ablnqbgn827m43b8fiicgv180749f5cphqdmcvj00d";
+ authors = [
+ "Ted Driggs <ted.driggs@outlook.com>"
+ ];
+ dependencies = [
+ {
+ name = "fnv";
+ packageId = "fnv";
+ }
+ {
+ name = "ident_case";
+ packageId = "ident_case";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "strsim";
+ packageId = "strsim";
+ optional = true;
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" "extra-traits" ];
+ }
+ ];
+ features = {
+ "strsim" = [ "dep:strsim" ];
+ "suggestions" = [ "strsim" ];
+ };
+ resolvedDefaultFeatures = [ "strsim" "suggestions" ];
+ };
+ "darling_core 0.21.3" = rec {
+ crateName = "darling_core";
+ version = "0.21.3";
+ edition = "2021";
+ sha256 = "193ya45qgac0a4siwghk0bl8im8h89p3cald7kw8ag3yrmg1jiqj";
+ authors = [
+ "Ted Driggs <ted.driggs@outlook.com>"
+ ];
+ dependencies = [
+ {
+ name = "fnv";
+ packageId = "fnv";
+ }
+ {
+ name = "ident_case";
+ packageId = "ident_case";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "strsim";
+ packageId = "strsim";
+ optional = true;
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" "extra-traits" ];
+ }
+ ];
+ features = {
+ "serde" = [ "dep:serde" ];
+ "strsim" = [ "dep:strsim" ];
+ "suggestions" = [ "strsim" ];
+ };
+ resolvedDefaultFeatures = [ "strsim" "suggestions" ];
+ };
+ "darling_macro 0.20.11" = rec {
+ crateName = "darling_macro";
+ version = "0.20.11";
+ edition = "2021";
+ sha256 = "1bbfbc2px6sj1pqqq97bgqn6c8xdnb2fmz66f7f40nrqrcybjd7w";
+ procMacro = true;
+ authors = [
+ "Ted Driggs <ted.driggs@outlook.com>"
+ ];
+ dependencies = [
+ {
+ name = "darling_core";
+ packageId = "darling_core 0.20.11";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ }
+ ];
+
+ };
+ "darling_macro 0.21.3" = rec {
+ crateName = "darling_macro";
+ version = "0.21.3";
+ edition = "2021";
+ sha256 = "10ac85n4lnx3rmf5rw8lijl2c0sbl6ghcpgfmzh0s26ihbghi0yk";
+ procMacro = true;
+ authors = [
+ "Ted Driggs <ted.driggs@outlook.com>"
+ ];
+ dependencies = [
+ {
+ name = "darling_core";
+ packageId = "darling_core 0.21.3";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ }
+ ];
+
+ };
+ "dashmap" = rec {
+ crateName = "dashmap";
+ version = "5.5.3";
+ edition = "2018";
+ sha256 = "0miqnlxi501vfbv6mw5jbmzgnj0wjrch3p4abvpd59s9v30lg1wp";
+ authors = [
+ "Acrimon <joel.wejdenstal@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "hashbrown";
+ packageId = "hashbrown 0.14.5";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "lock_api";
+ packageId = "lock_api";
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ }
+ {
+ name = "parking_lot_core";
+ packageId = "parking_lot_core 0.9.12";
+ }
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "inline" = [ "hashbrown/inline-more" ];
+ "rayon" = [ "dep:rayon" ];
+ "serde" = [ "dep:serde" ];
+ };
+ };
+ "data-encoding" = rec {
+ crateName = "data-encoding";
+ version = "2.9.0";
+ edition = "2018";
+ sha256 = "0xm46371aw613ghc12ay4vsnn49hpcmcwlijnqy8lbp2bpd308ra";
+ libName = "data_encoding";
+ authors = [
+ "Julien Cretin <git@ia0.eu>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "data-url" = rec {
+ crateName = "data-url";
+ version = "0.1.1";
+ edition = "2018";
+ sha256 = "14z15yiyklp5dv0k0q6pd83irrn0y8hj9y3fj17akkrbf37byc1s";
+ libName = "data_url";
+ authors = [
+ "Simon Sapin <simon.sapin@exyr.org>"
+ ];
+ dependencies = [
+ {
+ name = "matches";
+ packageId = "matches";
+ }
+ ];
+
+ };
+ "deadpool" = rec {
+ crateName = "deadpool";
+ version = "0.12.3";
+ edition = "2021";
+ sha256 = "06wvsfyni5f04ia6jczgjnpkq4w91cnjjdz10mpq93gcsv8v3qhb";
+ authors = [
+ "Michael P. Jung <michael.jung@terreon.de>"
+ ];
+ dependencies = [
+ {
+ name = "deadpool-runtime";
+ packageId = "deadpool-runtime";
+ }
+ {
+ name = "lazy_static";
+ packageId = "lazy_static";
+ }
+ {
+ name = "num_cpus";
+ packageId = "num_cpus";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "sync" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" "rt" "rt-multi-thread" "time" ];
+ }
+ ];
+ features = {
+ "default" = [ "managed" "unmanaged" ];
+ "rt_async-std_1" = [ "deadpool-runtime/async-std_1" ];
+ "rt_tokio_1" = [ "deadpool-runtime/tokio_1" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "managed" "rt_tokio_1" "unmanaged" ];
+ };
+ "deadpool-postgres" = rec {
+ crateName = "deadpool-postgres";
+ version = "0.14.1";
+ edition = "2021";
+ sha256 = "1ydyw2khdjx3v7l39h580v4xjgc8s4gspjml7v11i85zdhvpss9x";
+ libName = "deadpool_postgres";
+ authors = [
+ "Michael P. Jung <michael.jung@terreon.de>"
+ ];
+ dependencies = [
+ {
+ name = "async-trait";
+ packageId = "async-trait";
+ }
+ {
+ name = "deadpool";
+ packageId = "deadpool";
+ usesDefaultFeatures = false;
+ features = [ "managed" ];
+ }
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.2.16";
+ target = { target, features }: ("wasm32" == target."arch" or null);
+ features = [ "js" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "rt" ];
+ }
+ {
+ name = "tokio-postgres";
+ packageId = "tokio-postgres";
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "tokio-postgres";
+ packageId = "tokio-postgres";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("wasm32" == target."arch" or null);
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" "rt-multi-thread" ];
+ }
+ ];
+ features = {
+ "default" = [ "rt_tokio_1" ];
+ "rt_async-std_1" = [ "deadpool/rt_async-std_1" ];
+ "rt_tokio_1" = [ "deadpool/rt_tokio_1" ];
+ "serde" = [ "deadpool/serde" "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "rt_tokio_1" ];
+ };
+ "deadpool-runtime" = rec {
+ crateName = "deadpool-runtime";
+ version = "0.1.4";
+ edition = "2021";
+ sha256 = "0arbchl5j887hcfvjy4gq38d32055s5cf7pkpmwn0lfw3ss6ca89";
+ libName = "deadpool_runtime";
+ authors = [
+ "Michael P. Jung <michael.jung@terreon.de>"
+ ];
+ dependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ rename = "tokio_1";
+ optional = true;
+ features = [ "time" "rt" ];
+ }
+ ];
+ features = {
+ "async-std_1" = [ "dep:async-std_1" ];
+ "tokio_1" = [ "dep:tokio_1" ];
+ };
+ resolvedDefaultFeatures = [ "tokio_1" ];
+ };
+ "der-parser" = rec {
+ crateName = "der-parser";
+ version = "9.0.0";
+ edition = "2018";
+ sha256 = "0lxmykajggvaq5mvpm2avgzwib4n9nyxii0kqaz2d5k88g3abl2w";
+ libName = "der_parser";
+ authors = [
+ "Pierre Chifflier <chifflier@wzdftpd.net>"
+ ];
+ dependencies = [
+ {
+ name = "asn1-rs";
+ packageId = "asn1-rs";
+ }
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "nom";
+ packageId = "nom 7.1.3";
+ }
+ {
+ name = "num-bigint";
+ packageId = "num-bigint";
+ optional = true;
+ }
+ {
+ name = "num-traits";
+ packageId = "num-traits";
+ }
+ {
+ name = "rusticata-macros";
+ packageId = "rusticata-macros";
+ }
+ ];
+ features = {
+ "bigint" = [ "num-bigint" ];
+ "cookie-factory" = [ "dep:cookie-factory" ];
+ "default" = [ "std" ];
+ "num-bigint" = [ "dep:num-bigint" ];
+ "serialize" = [ "std" "cookie-factory" ];
+ };
+ resolvedDefaultFeatures = [ "bigint" "default" "num-bigint" "std" ];
+ };
+ "deranged" = rec {
+ crateName = "deranged";
+ version = "0.5.5";
+ edition = "2021";
+ sha256 = "11z5939gv2klp1r1lgrp4w5fnlkj18jqqf0h9zxmia3vkrjwpv7c";
+ authors = [
+ "Jacob Pratt <jacob@jhpratt.dev>"
+ ];
+ dependencies = [
+ {
+ name = "powerfmt";
+ packageId = "powerfmt";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "macros" = [ "dep:deranged-macros" ];
+ "num" = [ "dep:num-traits" ];
+ "powerfmt" = [ "dep:powerfmt" ];
+ "quickcheck" = [ "dep:quickcheck" "alloc" ];
+ "rand" = [ "rand08" "rand09" ];
+ "rand08" = [ "dep:rand08" ];
+ "rand09" = [ "dep:rand09" ];
+ "serde" = [ "dep:serde_core" ];
+ };
+ resolvedDefaultFeatures = [ "default" "powerfmt" ];
+ };
+ "diesel" = rec {
+ crateName = "diesel";
+ version = "2.3.3";
+ edition = "2021";
+ sha256 = "003mygzk0sxavbwji3gbi5d0xlk3y6kyjsq1zwpxizwzpfij8xjy";
+ dependencies = [
+ {
+ name = "bigdecimal";
+ packageId = "bigdecimal";
+ optional = true;
+ }
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ optional = true;
+ }
+ {
+ name = "byteorder";
+ packageId = "byteorder";
+ optional = true;
+ }
+ {
+ name = "chrono";
+ packageId = "chrono";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "clock" "std" ];
+ }
+ {
+ name = "diesel_derives";
+ packageId = "diesel_derives";
+ }
+ {
+ name = "downcast-rs";
+ packageId = "downcast-rs";
+ }
+ {
+ name = "ipnetwork";
+ packageId = "ipnetwork";
+ optional = true;
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ optional = true;
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ optional = true;
+ }
+ {
+ name = "num-bigint";
+ packageId = "num-bigint";
+ optional = true;
+ }
+ {
+ name = "num-integer";
+ packageId = "num-integer";
+ optional = true;
+ }
+ {
+ name = "num-traits";
+ packageId = "num-traits";
+ optional = true;
+ }
+ {
+ name = "r2d2";
+ packageId = "r2d2";
+ optional = true;
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ optional = true;
+ }
+ {
+ name = "time";
+ packageId = "time";
+ optional = true;
+ features = [ "macros" ];
+ }
+ {
+ name = "uuid";
+ packageId = "uuid";
+ optional = true;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "ipnetwork";
+ packageId = "ipnetwork";
+ }
+ ];
+ features = {
+ "128-column-tables" = [ "64-column-tables" "diesel_derives/128-column-tables" ];
+ "32-column-tables" = [ "diesel_derives/32-column-tables" ];
+ "64-column-tables" = [ "32-column-tables" "diesel_derives/64-column-tables" ];
+ "__with_asan_tests" = [ "libsqlite3-sys?/bundled" "libsqlite3-sys?/with-asan" "pq-sys?/bundled" "pq-src?/with-asan" "mysqlclient-sys?/bundled" "mysqlclient-src?/with-asan" ];
+ "chrono" = [ "diesel_derives/chrono" "dep:chrono" ];
+ "default" = [ "with-deprecated" "32-column-tables" ];
+ "extras" = [ "chrono" "time" "serde_json" "uuid" "network-address" "numeric" "r2d2" ];
+ "huge-tables" = [ "64-column-tables" ];
+ "ipnet-address" = [ "dep:ipnet" "dep:libc" ];
+ "large-tables" = [ "32-column-tables" ];
+ "mysql" = [ "dep:mysqlclient-sys" "dep:url" "dep:percent-encoding" "dep:bitflags" "mysql_backend" ];
+ "mysql_backend" = [ "diesel_derives/mysql" "dep:byteorder" ];
+ "mysqlclient-src" = [ "dep:mysqlclient-src" ];
+ "network-address" = [ "dep:ipnetwork" "dep:libc" ];
+ "numeric" = [ "dep:num-bigint" "dep:bigdecimal" "dep:num-traits" "dep:num-integer" "diesel_derives/numeric" ];
+ "postgres" = [ "dep:pq-sys" "postgres_backend" ];
+ "postgres_backend" = [ "diesel_derives/postgres" "dep:bitflags" "dep:byteorder" "dep:itoa" ];
+ "pq-src" = [ "dep:pq-src" ];
+ "quickcheck" = [ "dep:quickcheck" ];
+ "r2d2" = [ "diesel_derives/r2d2" "dep:r2d2" ];
+ "serde_json" = [ "dep:serde_json" ];
+ "sqlite" = [ "dep:libsqlite3-sys" "dep:sqlite-wasm-rs" "diesel_derives/sqlite" "time?/formatting" "time?/parsing" ];
+ "time" = [ "diesel_derives/time" "dep:time" ];
+ "unstable" = [ "diesel_derives/nightly" ];
+ "uuid" = [ "dep:uuid" ];
+ "with-deprecated" = [ "diesel_derives/with-deprecated" ];
+ "without-deprecated" = [ "diesel_derives/without-deprecated" ];
+ };
+ resolvedDefaultFeatures = [ "32-column-tables" "chrono" "default" "extras" "i-implement-a-third-party-backend-and-opt-into-breaking-changes" "network-address" "numeric" "postgres_backend" "r2d2" "serde_json" "time" "uuid" "with-deprecated" ];
+ };
+ "diesel-async" = rec {
+ crateName = "diesel-async";
+ version = "0.7.4";
+ edition = "2021";
+ sha256 = "0d2grgcr487vhm6sp8j463nm4mglhpn3nljb3i0jsgz5vaw6y28k";
+ libName = "diesel_async";
+ authors = [
+ "Georg Semmler <github@weiznich.de>"
+ ];
+ dependencies = [
+ {
+ name = "deadpool";
+ packageId = "deadpool";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "managed" ];
+ }
+ {
+ name = "diesel";
+ packageId = "diesel";
+ usesDefaultFeatures = false;
+ features = [ "i-implement-a-third-party-backend-and-opt-into-breaking-changes" ];
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ features = [ "alloc" "sink" ];
+ }
+ {
+ name = "scoped-futures";
+ packageId = "scoped-futures";
+ features = [ "std" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ optional = true;
+ }
+ {
+ name = "tokio-postgres";
+ packageId = "tokio-postgres";
+ optional = true;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "diesel";
+ packageId = "diesel";
+ usesDefaultFeatures = false;
+ features = [ "chrono" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "rt" "macros" "rt-multi-thread" ];
+ }
+ ];
+ features = {
+ "async-connection-wrapper" = [ "tokio/net" "tokio/rt" ];
+ "bb8" = [ "pool" "dep:bb8" ];
+ "deadpool" = [ "pool" "dep:deadpool" ];
+ "diesel_migrations" = [ "dep:diesel_migrations" ];
+ "futures-channel" = [ "dep:futures-channel" ];
+ "migrations" = [ "diesel_migrations" "async-connection-wrapper" "tokio/rt-multi-thread" ];
+ "mobc" = [ "pool" "dep:mobc" "dep:async-trait" "tokio/sync" ];
+ "mysql" = [ "diesel/mysql_backend" "mysql_async" "mysql_common" "futures-channel" "tokio" ];
+ "mysql_async" = [ "dep:mysql_async" ];
+ "mysql_common" = [ "dep:mysql_common" ];
+ "postgres" = [ "diesel/postgres_backend" "tokio-postgres" "tokio" "tokio/rt" ];
+ "r2d2" = [ "pool" "diesel/r2d2" ];
+ "sqlite" = [ "diesel/sqlite" "sync-connection-wrapper" ];
+ "sync-connection-wrapper" = [ "tokio/rt" ];
+ "tokio" = [ "dep:tokio" ];
+ "tokio-postgres" = [ "dep:tokio-postgres" ];
+ };
+ resolvedDefaultFeatures = [ "deadpool" "default" "pool" "postgres" "tokio" "tokio-postgres" ];
+ };
+ "diesel-derive-enum" = rec {
+ crateName = "diesel-derive-enum";
+ version = "2.1.0";
+ edition = "2021";
+ sha256 = "1m34vd3f3ifdg1kja6rd7ad24alc6lzlh7dd3ms69vwm50d17ic1";
+ procMacro = true;
+ libName = "diesel_derive_enum";
+ authors = [
+ "Alex Whitney <adwhit@fastmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "heck";
+ packageId = "heck 0.4.1";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ }
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "postgres" ];
+ };
+ "diesel_derives" = rec {
+ crateName = "diesel_derives";
+ version = "2.3.4";
+ edition = "2021";
+ sha256 = "0qkmvprj6z44w5azvibhzzywxvgk4k210nhnv9q2br1nk94cdalx";
+ procMacro = true;
+ dependencies = [
+ {
+ name = "diesel_table_macro_syntax";
+ packageId = "diesel_table_macro_syntax";
+ }
+ {
+ name = "dsl_auto_type";
+ packageId = "dsl_auto_type";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "derive" "fold" "full" ];
+ }
+ ];
+ features = {
+ "128-column-tables" = [ "64-column-tables" ];
+ "64-column-tables" = [ "32-column-tables" ];
+ "nightly" = [ "proc-macro2/nightly" ];
+ };
+ resolvedDefaultFeatures = [ "32-column-tables" "chrono" "default" "numeric" "postgres" "r2d2" "time" "with-deprecated" ];
+ };
+ "diesel_table_macro_syntax" = rec {
+ crateName = "diesel_table_macro_syntax";
+ version = "0.3.0";
+ edition = "2021";
+ sha256 = "135ypb3k6wg63kqf1bddc45w1hj3qy6n95sn253i2r28dc3l897y";
+ dependencies = [
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" ];
+ }
+ ];
+
+ };
+ "diffs" = rec {
+ crateName = "diffs";
+ version = "0.5.1";
+ edition = "2018";
+ sha256 = "01f8bp77kgahgvr3s2igmnmsxynjklq830lmp2wp2jyph6bnq4gz";
+ authors = [
+ "Pierre-Étienne Meunier <pe@pijul.org>"
+ ];
+
+ };
+ "digest 0.10.7" = rec {
+ crateName = "digest";
+ version = "0.10.7";
+ edition = "2018";
+ sha256 = "14p2n6ih29x81akj097lvz7wi9b6b9hvls0lwrv7b6xwyy0s5ncy";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "block-buffer";
+ packageId = "block-buffer 0.10.4";
+ optional = true;
+ }
+ {
+ name = "crypto-common";
+ packageId = "crypto-common";
+ }
+ {
+ name = "subtle";
+ packageId = "subtle";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "blobby" = [ "dep:blobby" ];
+ "block-buffer" = [ "dep:block-buffer" ];
+ "const-oid" = [ "dep:const-oid" ];
+ "core-api" = [ "block-buffer" ];
+ "default" = [ "core-api" ];
+ "dev" = [ "blobby" ];
+ "mac" = [ "subtle" ];
+ "oid" = [ "const-oid" ];
+ "rand_core" = [ "crypto-common/rand_core" ];
+ "std" = [ "alloc" "crypto-common/std" ];
+ "subtle" = [ "dep:subtle" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "block-buffer" "core-api" "default" "mac" "std" "subtle" ];
+ };
+ "digest 0.9.0" = rec {
+ crateName = "digest";
+ version = "0.9.0";
+ edition = "2018";
+ sha256 = "0rmhvk33rgvd6ll71z8sng91a52rw14p0drjn1da0mqa138n1pfk";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "generic-array";
+ packageId = "generic-array";
+ }
+ ];
+ features = {
+ "blobby" = [ "dep:blobby" ];
+ "dev" = [ "blobby" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "std" ];
+ };
+ "dirs" = rec {
+ crateName = "dirs";
+ version = "3.0.2";
+ edition = "2015";
+ sha256 = "028kqy0vrbfgrk1yc1flq2fqh8snyg17qlygawm0r79w211s1fih";
+ authors = [
+ "Simon Ochsenreither <simon@ochsenreither.de>"
+ ];
+ dependencies = [
+ {
+ name = "dirs-sys";
+ packageId = "dirs-sys";
+ }
+ ];
+
+ };
+ "dirs-next" = rec {
+ crateName = "dirs-next";
+ version = "2.0.0";
+ edition = "2018";
+ sha256 = "1q9kr151h9681wwp6is18750ssghz6j9j7qm7qi1ngcwy7mzi35r";
+ libName = "dirs_next";
+ authors = [
+ "The @xdg-rs members"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "dirs-sys-next";
+ packageId = "dirs-sys-next";
+ }
+ ];
+
+ };
+ "dirs-sys" = rec {
+ crateName = "dirs-sys";
+ version = "0.3.7";
+ edition = "2015";
+ sha256 = "19md1cnkazham8a6kh22v12d8hh3raqahfk6yb043vrjr68is78v";
+ libName = "dirs_sys";
+ authors = [
+ "Simon Ochsenreither <simon@ochsenreither.de>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "redox_users";
+ packageId = "redox_users";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("redox" == target."os" or null);
+ }
+ {
+ name = "winapi";
+ packageId = "winapi";
+ target = { target, features }: (target."windows" or false);
+ features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ];
+ }
+ ];
+
+ };
+ "dirs-sys-next" = rec {
+ crateName = "dirs-sys-next";
+ version = "0.1.2";
+ edition = "2018";
+ sha256 = "0kavhavdxv4phzj4l0psvh55hszwnr0rcz8sxbvx20pyqi2a3gaf";
+ libName = "dirs_sys_next";
+ authors = [
+ "The @xdg-rs members"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "redox_users";
+ packageId = "redox_users";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("redox" == target."os" or null);
+ }
+ {
+ name = "winapi";
+ packageId = "winapi";
+ target = { target, features }: (target."windows" or false);
+ features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ];
+ }
+ ];
+
+ };
+ "displaydoc" = rec {
+ crateName = "displaydoc";
+ version = "0.2.5";
+ edition = "2021";
+ sha256 = "1q0alair462j21iiqwrr21iabkfnb13d6x5w95lkdg21q2xrqdlp";
+ procMacro = true;
+ authors = [
+ "Jane Lusby <jlusby@yaah.dev>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "downcast-rs" = rec {
+ crateName = "downcast-rs";
+ version = "2.0.2";
+ edition = "2021";
+ sha256 = "1g0crs9qgz0sd9cwdgmm0zvjin2v549v46xfnc859rk903v40whi";
+ libName = "downcast_rs";
+ features = {
+ "default" = [ "std" "sync" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" "sync" ];
+ };
+ "dragonbox_ecma" = rec {
+ crateName = "dragonbox_ecma";
+ version = "0.0.5";
+ edition = "2018";
+ sha256 = "0rjyk2ynf3wcyynwi11584jswj8qgdchd67awxilvcg8arkbahnp";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ "magic-akari <akari.ccino@gmail.com>"
+ ];
+
+ };
+ "dsl_auto_type" = rec {
+ crateName = "dsl_auto_type";
+ version = "0.2.0";
+ edition = "2021";
+ sha256 = "0zkmlx1a3p9mfsfns39nspvci2gv70vivwipfyr6vw5ywhrjc4nx";
+ dependencies = [
+ {
+ name = "darling";
+ packageId = "darling 0.21.3";
+ }
+ {
+ name = "either";
+ packageId = "either";
+ }
+ {
+ name = "heck";
+ packageId = "heck 0.5.0";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "extra-traits" "full" "derive" "parsing" "visit" ];
+ }
+ ];
+
+ };
+ "dtoa" = rec {
+ crateName = "dtoa";
+ version = "1.0.10";
+ edition = "2018";
+ sha256 = "016gid01rarcdv57h049d7nr9daxc2hc2gqzx0mji57krywd7bfn";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ features = {
+ "no-panic" = [ "dep:no-panic" ];
+ };
+ };
+ "dtoa-short" = rec {
+ crateName = "dtoa-short";
+ version = "0.3.5";
+ edition = "2015";
+ sha256 = "11rwnkgql5jilsmwxpx6hjzkgyrbdmx1d71s0jyrjqm5nski25fd";
+ libName = "dtoa_short";
+ authors = [
+ "Xidorn Quan <me@upsuper.org>"
+ ];
+ dependencies = [
+ {
+ name = "dtoa";
+ packageId = "dtoa";
+ }
+ ];
+
+ };
+ "dunce" = rec {
+ crateName = "dunce";
+ version = "1.0.5";
+ edition = "2021";
+ sha256 = "04y8wwv3vvcqaqmqzssi6k0ii9gs6fpz96j5w9nky2ccsl23axwj";
+ authors = [
+ "Kornel <kornel@geekhood.net>"
+ ];
+
+ };
+ "ed25519" = rec {
+ crateName = "ed25519";
+ version = "1.5.3";
+ edition = "2021";
+ sha256 = "1rzydm5wd8szkddx3g55w4vm86y1ika8qp8qwckada5vf1fg7kwi";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "signature";
+ packageId = "signature";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "pkcs8/alloc" ];
+ "default" = [ "std" ];
+ "pem" = [ "pkcs8/pem" ];
+ "pkcs8" = [ "dep:pkcs8" ];
+ "serde" = [ "dep:serde" ];
+ "serde_bytes" = [ "serde" "serde_bytes_crate" "std" ];
+ "serde_bytes_crate" = [ "dep:serde_bytes_crate" ];
+ "std" = [ "signature/std" ];
+ "zeroize" = [ "dep:zeroize" ];
+ };
+ resolvedDefaultFeatures = [ "serde" "std" ];
+ };
+ "ed25519-dalek" = rec {
+ crateName = "ed25519-dalek";
+ version = "1.0.1";
+ edition = "2018";
+ sha256 = "17bsriciv93nkm39z22w7mr0h2a3hnbmgf378v4c895gvkkblqn7";
+ libName = "ed25519_dalek";
+ authors = [
+ "isis lovecruft <isis@patternsinthevoid.net>"
+ ];
+ dependencies = [
+ {
+ name = "curve25519-dalek";
+ packageId = "curve25519-dalek";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "ed25519";
+ packageId = "ed25519";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.7.3";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ rename = "serde_crate";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde_bytes";
+ packageId = "serde_bytes";
+ optional = true;
+ }
+ {
+ name = "sha2";
+ packageId = "sha2 0.9.9";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zeroize";
+ packageId = "zeroize";
+ usesDefaultFeatures = false;
+ features = [ "zeroize_derive" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "rand";
+ packageId = "rand 0.7.3";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ rename = "serde_crate";
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "curve25519-dalek/alloc" "rand/alloc" "zeroize/alloc" ];
+ "asm" = [ "sha2/asm" ];
+ "batch" = [ "merlin" "rand" ];
+ "batch_deterministic" = [ "merlin" "rand" "rand_core" ];
+ "default" = [ "std" "rand" "u64_backend" ];
+ "merlin" = [ "dep:merlin" ];
+ "nightly" = [ "curve25519-dalek/nightly" ];
+ "rand" = [ "dep:rand" ];
+ "rand_core" = [ "dep:rand_core" ];
+ "serde" = [ "serde_crate" "serde_bytes" "ed25519/serde" ];
+ "serde_bytes" = [ "dep:serde_bytes" ];
+ "serde_crate" = [ "dep:serde_crate" ];
+ "simd_backend" = [ "curve25519-dalek/simd_backend" ];
+ "std" = [ "curve25519-dalek/std" "ed25519/std" "serde_crate/std" "sha2/std" "rand/std" ];
+ "u32_backend" = [ "curve25519-dalek/u32_backend" ];
+ "u64_backend" = [ "curve25519-dalek/u64_backend" ];
+ };
+ resolvedDefaultFeatures = [ "default" "rand" "serde" "serde_bytes" "serde_crate" "std" "u64_backend" ];
+ };
+ "either" = rec {
+ crateName = "either";
+ version = "1.15.0";
+ edition = "2021";
+ sha256 = "069p1fknsmzn9llaizh77kip0pqmcwpdsykv2x30xpjyija5gis8";
+ authors = [
+ "bluss"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "use_std" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" "use_std" ];
+ };
+ "encoding_rs" = rec {
+ crateName = "encoding_rs";
+ version = "0.8.35";
+ edition = "2018";
+ sha256 = "1wv64xdrr9v37rqqdjsyb8l8wzlcbab80ryxhrszvnj59wy0y0vm";
+ authors = [
+ "Henri Sivonen <hsivonen@hsivonen.fi>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ ];
+ features = {
+ "any_all_workaround" = [ "dep:any_all_workaround" ];
+ "default" = [ "alloc" ];
+ "fast-legacy-encode" = [ "fast-hangul-encode" "fast-hanja-encode" "fast-kanji-encode" "fast-gb-hanzi-encode" "fast-big5-hanzi-encode" ];
+ "serde" = [ "dep:serde" ];
+ "simd-accel" = [ "any_all_workaround" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" ];
+ };
+ "env_filter" = rec {
+ crateName = "env_filter";
+ version = "0.1.4";
+ edition = "2021";
+ sha256 = "1qk8yn4lsqzxsz025kf4kaabika6aidykqih3c2p1jjms9cw5wqv";
+ dependencies = [
+ {
+ name = "log";
+ packageId = "log";
+ features = [ "std" ];
+ }
+ {
+ name = "regex";
+ packageId = "regex";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "std" "perf" ];
+ }
+ ];
+ features = {
+ "default" = [ "regex" ];
+ "regex" = [ "dep:regex" ];
+ };
+ resolvedDefaultFeatures = [ "regex" ];
+ };
+ "env_logger" = rec {
+ crateName = "env_logger";
+ version = "0.11.8";
+ edition = "2021";
+ sha256 = "17q6zbjam4wq75fa3m4gvvmv3rj3ch25abwbm84b28a0j3q67j0k";
+ dependencies = [
+ {
+ name = "anstream";
+ packageId = "anstream";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "wincon" ];
+ }
+ {
+ name = "anstyle";
+ packageId = "anstyle";
+ optional = true;
+ }
+ {
+ name = "env_filter";
+ packageId = "env_filter";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "jiff";
+ packageId = "jiff";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "log";
+ packageId = "log";
+ features = [ "std" ];
+ }
+ ];
+ features = {
+ "auto-color" = [ "color" "anstream/auto" ];
+ "color" = [ "dep:anstream" "dep:anstyle" ];
+ "default" = [ "auto-color" "humantime" "regex" ];
+ "humantime" = [ "dep:jiff" ];
+ "kv" = [ "log/kv" ];
+ "regex" = [ "env_filter/regex" ];
+ "unstable-kv" = [ "kv" ];
+ };
+ resolvedDefaultFeatures = [ "auto-color" "color" "default" "humantime" "regex" ];
+ };
+ "equivalent" = rec {
+ crateName = "equivalent";
+ version = "1.0.2";
+ edition = "2015";
+ sha256 = "03swzqznragy8n0x31lqc78g2af054jwivp7lkrbrc0khz74lyl7";
+
+ };
+ "errno" = rec {
+ crateName = "errno";
+ version = "0.3.14";
+ edition = "2018";
+ sha256 = "1szgccmh8vgryqyadg8xd58mnwwicf39zmin3bsn63df2wbbgjir";
+ authors = [
+ "Chris Wong <lambda.fairy@gmail.com>"
+ "Dan Gohman <dev@sunfishcode.online>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("hermit" == target."os" or null);
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("wasi" == target."os" or null);
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.61.2";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_Foundation" "Win32_System_Diagnostics_Debug" ];
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "libc/std" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "fallible-iterator" = rec {
+ crateName = "fallible-iterator";
+ version = "0.2.0";
+ edition = "2018";
+ sha256 = "1xq759lsr8gqss7hva42azn3whgrbrs2sd9xpn92c5ickxm1fhs4";
+ libName = "fallible_iterator";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "fastrand" = rec {
+ crateName = "fastrand";
+ version = "2.3.0";
+ edition = "2018";
+ sha256 = "1ghiahsw1jd68df895cy5h3gzwk30hndidn3b682zmshpgmrx41p";
+ authors = [
+ "Stjepan Glavina <stjepang@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "getrandom" = [ "dep:getrandom" ];
+ "js" = [ "std" "getrandom" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "filetime" = rec {
+ crateName = "filetime";
+ version = "0.2.26";
+ edition = "2018";
+ sha256 = "1vb3vz83saxr084wjf2032hspx7wfc5ggggnhc15i9kg3g6ha1dw";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "libredox";
+ packageId = "libredox";
+ target = { target, features }: ("redox" == target."os" or null);
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.60.2";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_Foundation" "Win32_Storage_FileSystem" ];
+ }
+ ];
+
+ };
+ "find-msvc-tools" = rec {
+ crateName = "find-msvc-tools";
+ version = "0.1.5";
+ edition = "2018";
+ sha256 = "0i1ql02y37bc7xywkqz10kx002vpz864vc4qq88h1jam190pcc1s";
+ libName = "find_msvc_tools";
+
+ };
+ "flate2" = rec {
+ crateName = "flate2";
+ version = "1.1.5";
+ edition = "2018";
+ sha256 = "1yrvxgxyg7mzksmmcd9i7vc3023kbv3zhdsf8mkjm8c5ivfkxqxz";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ "Josh Triplett <josh@joshtriplett.org>"
+ ];
+ dependencies = [
+ {
+ name = "crc32fast";
+ packageId = "crc32fast";
+ }
+ {
+ name = "miniz_oxide";
+ packageId = "miniz_oxide";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "with-alloc" "simd" ];
+ }
+ {
+ name = "miniz_oxide";
+ packageId = "miniz_oxide";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("wasm32" == target."arch" or null) && (!("emscripten" == target."os" or null)));
+ features = [ "with-alloc" "simd" ];
+ }
+ ];
+ features = {
+ "any_zlib" = [ "any_impl" ];
+ "cloudflare-zlib-sys" = [ "dep:cloudflare-zlib-sys" ];
+ "cloudflare_zlib" = [ "any_zlib" "cloudflare-zlib-sys" ];
+ "default" = [ "rust_backend" ];
+ "libz-ng-sys" = [ "dep:libz-ng-sys" ];
+ "libz-rs-sys" = [ "dep:libz-rs-sys" ];
+ "libz-sys" = [ "dep:libz-sys" ];
+ "miniz-sys" = [ "rust_backend" ];
+ "miniz_oxide" = [ "dep:miniz_oxide" ];
+ "rust_backend" = [ "miniz_oxide" "any_impl" ];
+ "zlib" = [ "any_zlib" "libz-sys" ];
+ "zlib-default" = [ "any_zlib" "libz-sys/default" ];
+ "zlib-ng" = [ "any_zlib" "libz-ng-sys" ];
+ "zlib-ng-compat" = [ "zlib" "libz-sys/zlib-ng" ];
+ "zlib-rs" = [ "any_zlib" "libz-rs-sys" ];
+ };
+ resolvedDefaultFeatures = [ "any_impl" "default" "miniz_oxide" "rust_backend" ];
+ };
+ "fnv" = rec {
+ crateName = "fnv";
+ version = "1.0.7";
+ edition = "2015";
+ sha256 = "1hc2mcqha06aibcaza94vbi81j6pr9a1bbxrxjfhc91zin8yr7iz";
+ libPath = "lib.rs";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "foldhash" = rec {
+ crateName = "foldhash";
+ version = "0.1.5";
+ edition = "2021";
+ sha256 = "1wisr1xlc2bj7hk4rgkcjkz3j2x4dhd1h9lwk7mj8p71qpdgbi6r";
+ authors = [
+ "Orson Peters <orsonpeters@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ };
+ "foreign-types" = rec {
+ crateName = "foreign-types";
+ version = "0.3.2";
+ edition = "2015";
+ sha256 = "1cgk0vyd7r45cj769jym4a6s7vwshvd0z4bqrb92q1fwibmkkwzn";
+ libName = "foreign_types";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "foreign-types-shared";
+ packageId = "foreign-types-shared";
+ }
+ ];
+
+ };
+ "foreign-types-shared" = rec {
+ crateName = "foreign-types-shared";
+ version = "0.1.1";
+ edition = "2015";
+ sha256 = "0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00";
+ libName = "foreign_types_shared";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+
+ };
+ "form_urlencoded" = rec {
+ crateName = "form_urlencoded";
+ version = "1.2.2";
+ edition = "2018";
+ sha256 = "1kqzb2qn608rxl3dws04zahcklpplkd5r1vpabwga5l50d2v4k6b";
+ authors = [
+ "The rust-url developers"
+ ];
+ dependencies = [
+ {
+ name = "percent-encoding";
+ packageId = "percent-encoding";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "percent-encoding/alloc" ];
+ "default" = [ "std" ];
+ "std" = [ "alloc" "percent-encoding/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "fs-err" = rec {
+ crateName = "fs-err";
+ version = "3.2.0";
+ edition = "2018";
+ sha256 = "0fmhxnbr3bkvrflhphyk1ma6b8km7xyqhiwc06dl48y19781znb2";
+ libName = "fs_err";
+ authors = [
+ "Andrew Hickman <andrew.hickman1@sky.com>"
+ ];
+ dependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "fs" ];
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "autocfg";
+ packageId = "autocfg";
+ }
+ ];
+ features = {
+ "debug" = [ "path_facts" ];
+ "debug_tokio" = [ "path_facts" "tokio/rt-multi-thread" ];
+ "path_facts" = [ "dep:path_facts" ];
+ "tokio" = [ "dep:tokio" ];
+ };
+ resolvedDefaultFeatures = [ "tokio" ];
+ };
+ "fs2" = rec {
+ crateName = "fs2";
+ version = "0.4.3";
+ edition = "2015";
+ sha256 = "04v2hwk7035c088f19mfl5b1lz84gnvv2hv6m935n0hmirszqr4m";
+ authors = [
+ "Dan Burkert <dan@danburkert.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "winapi";
+ packageId = "winapi";
+ target = { target, features }: (target."windows" or false);
+ features = [ "handleapi" "processthreadsapi" "winerror" "fileapi" "winbase" "std" ];
+ }
+ ];
+
+ };
+ "fs_extra" = rec {
+ crateName = "fs_extra";
+ version = "1.3.0";
+ edition = "2018";
+ sha256 = "075i25z70j2mz9r7i9p9r521y8xdj81q7skslyb7zhqnnw33fw22";
+ authors = [
+ "Denis Kurilenko <webdesus@gmail.com>"
+ ];
+
+ };
+ "funty" = rec {
+ crateName = "funty";
+ version = "2.0.0";
+ edition = "2018";
+ sha256 = "177w048bm0046qlzvp33ag3ghqkqw4ncpzcm5lq36gxf2lla7mg6";
+ authors = [
+ "myrrlyn <self@myrrlyn.dev>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ };
+ "futf" = rec {
+ crateName = "futf";
+ version = "0.1.5";
+ edition = "2015";
+ sha256 = "0hvqk2r7v4fnc34hvc3vkri89gn52d5m9ihygmwn75l1hhp0whnz";
+ authors = [
+ "Keegan McAllister <kmcallister@mozilla.com>"
+ ];
+ dependencies = [
+ {
+ name = "mac";
+ packageId = "mac";
+ }
+ {
+ name = "new_debug_unreachable";
+ packageId = "new_debug_unreachable";
+ }
+ ];
+
+ };
+ "futures" = rec {
+ crateName = "futures";
+ version = "0.3.31";
+ edition = "2018";
+ sha256 = "0xh8ddbkm9jy8kc5gbvjp9a4b6rqqxvc8471yb2qaz5wm2qhgg35";
+ dependencies = [
+ {
+ name = "futures-channel";
+ packageId = "futures-channel";
+ usesDefaultFeatures = false;
+ features = [ "sink" ];
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-executor";
+ packageId = "futures-executor";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-io";
+ packageId = "futures-io";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-sink";
+ packageId = "futures-sink";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-task";
+ packageId = "futures-task";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ features = [ "sink" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "futures-core/alloc" "futures-task/alloc" "futures-sink/alloc" "futures-channel/alloc" "futures-util/alloc" ];
+ "async-await" = [ "futures-util/async-await" "futures-util/async-await-macro" ];
+ "bilock" = [ "futures-util/bilock" ];
+ "compat" = [ "std" "futures-util/compat" ];
+ "default" = [ "std" "async-await" "executor" ];
+ "executor" = [ "std" "futures-executor/std" ];
+ "futures-executor" = [ "dep:futures-executor" ];
+ "io-compat" = [ "compat" "futures-util/io-compat" ];
+ "std" = [ "alloc" "futures-core/std" "futures-task/std" "futures-io/std" "futures-sink/std" "futures-util/std" "futures-util/io" "futures-util/channel" ];
+ "thread-pool" = [ "executor" "futures-executor/thread-pool" ];
+ "unstable" = [ "futures-core/unstable" "futures-task/unstable" "futures-channel/unstable" "futures-io/unstable" "futures-util/unstable" ];
+ "write-all-vectored" = [ "futures-util/write-all-vectored" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "async-await" "default" "executor" "futures-executor" "std" ];
+ };
+ "futures-channel" = rec {
+ crateName = "futures-channel";
+ version = "0.3.31";
+ edition = "2018";
+ sha256 = "040vpqpqlbk099razq8lyn74m0f161zd0rp36hciqrwcg2zibzrd";
+ libName = "futures_channel";
+ dependencies = [
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-sink";
+ packageId = "futures-sink";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "futures-core/alloc" ];
+ "default" = [ "std" ];
+ "futures-sink" = [ "dep:futures-sink" ];
+ "sink" = [ "futures-sink" ];
+ "std" = [ "alloc" "futures-core/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "futures-sink" "sink" "std" ];
+ };
+ "futures-core" = rec {
+ crateName = "futures-core";
+ version = "0.3.31";
+ edition = "2018";
+ sha256 = "0gk6yrxgi5ihfanm2y431jadrll00n5ifhnpx090c2f2q1cr1wh5";
+ libName = "futures_core";
+ features = {
+ "default" = [ "std" ];
+ "portable-atomic" = [ "dep:portable-atomic" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "futures-executor" = rec {
+ crateName = "futures-executor";
+ version = "0.3.31";
+ edition = "2018";
+ sha256 = "17vcci6mdfzx4gbk0wx64chr2f13wwwpvyf3xd5fb1gmjzcx2a0y";
+ libName = "futures_executor";
+ dependencies = [
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-task";
+ packageId = "futures-task";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "num_cpus" = [ "dep:num_cpus" ];
+ "std" = [ "futures-core/std" "futures-task/std" "futures-util/std" ];
+ "thread-pool" = [ "std" "num_cpus" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "futures-io" = rec {
+ crateName = "futures-io";
+ version = "0.3.31";
+ edition = "2018";
+ sha256 = "1ikmw1yfbgvsychmsihdkwa8a1knank2d9a8dk01mbjar9w1np4y";
+ libName = "futures_io";
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "futures-macro" = rec {
+ crateName = "futures-macro";
+ version = "0.3.31";
+ edition = "2018";
+ sha256 = "0l1n7kqzwwmgiznn0ywdc5i24z72zvh9q1dwps54mimppi7f6bhn";
+ procMacro = true;
+ libName = "futures_macro";
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" ];
+ }
+ ];
+
+ };
+ "futures-sink" = rec {
+ crateName = "futures-sink";
+ version = "0.3.31";
+ edition = "2018";
+ sha256 = "1xyly6naq6aqm52d5rh236snm08kw8zadydwqz8bip70s6vzlxg5";
+ libName = "futures_sink";
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "futures-task" = rec {
+ crateName = "futures-task";
+ version = "0.3.31";
+ edition = "2018";
+ sha256 = "124rv4n90f5xwfsm9qw6y99755y021cmi5dhzh253s920z77s3zr";
+ libName = "futures_task";
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "std" ];
+ };
+ "futures-util" = rec {
+ crateName = "futures-util";
+ version = "0.3.31";
+ edition = "2018";
+ sha256 = "10aa1ar8bgkgbr4wzxlidkqkcxf77gffyj8j7768h831pcaq784z";
+ libName = "futures_util";
+ dependencies = [
+ {
+ name = "futures-channel";
+ packageId = "futures-channel";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-io";
+ packageId = "futures-io";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "futures-macro";
+ packageId = "futures-macro";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-sink";
+ packageId = "futures-sink";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-task";
+ packageId = "futures-task";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ optional = true;
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "pin-utils";
+ packageId = "pin-utils";
+ }
+ {
+ name = "slab";
+ packageId = "slab";
+ optional = true;
+ }
+ ];
+ features = {
+ "alloc" = [ "futures-core/alloc" "futures-task/alloc" ];
+ "async-await-macro" = [ "async-await" "futures-macro" ];
+ "channel" = [ "std" "futures-channel" ];
+ "compat" = [ "std" "futures_01" ];
+ "default" = [ "std" "async-await" "async-await-macro" ];
+ "futures-channel" = [ "dep:futures-channel" ];
+ "futures-io" = [ "dep:futures-io" ];
+ "futures-macro" = [ "dep:futures-macro" ];
+ "futures-sink" = [ "dep:futures-sink" ];
+ "futures_01" = [ "dep:futures_01" ];
+ "io" = [ "std" "futures-io" "memchr" ];
+ "io-compat" = [ "io" "compat" "tokio-io" ];
+ "memchr" = [ "dep:memchr" ];
+ "portable-atomic" = [ "futures-core/portable-atomic" ];
+ "sink" = [ "futures-sink" ];
+ "slab" = [ "dep:slab" ];
+ "std" = [ "alloc" "futures-core/std" "futures-task/std" "slab" ];
+ "tokio-io" = [ "dep:tokio-io" ];
+ "unstable" = [ "futures-core/unstable" "futures-task/unstable" ];
+ "write-all-vectored" = [ "io" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "async-await" "async-await-macro" "channel" "futures-channel" "futures-io" "futures-macro" "futures-sink" "io" "memchr" "sink" "slab" "std" ];
+ };
+ "generic-array" = rec {
+ crateName = "generic-array";
+ version = "0.14.7";
+ edition = "2015";
+ sha256 = "16lyyrzrljfq424c3n8kfwkqihlimmsg5nhshbbp48np3yjrqr45";
+ libName = "generic_array";
+ authors = [
+ "Bartłomiej Kamiński <fizyk20@gmail.com>"
+ "Aaron Trent <novacrazy@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "typenum";
+ packageId = "typenum";
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "version_check";
+ packageId = "version_check";
+ }
+ ];
+ features = {
+ "serde" = [ "dep:serde" ];
+ "zeroize" = [ "dep:zeroize" ];
+ };
+ resolvedDefaultFeatures = [ "more_lengths" ];
+ };
+ "getopts" = rec {
+ crateName = "getopts";
+ version = "0.2.24";
+ edition = "2021";
+ sha256 = "1pylvsmq7fillnxmd6g58r7igdrlby412q37ws41z39va2ngpr6g";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "unicode-width";
+ packageId = "unicode-width";
+ optional = true;
+ }
+ ];
+ features = {
+ "core" = [ "dep:core" ];
+ "default" = [ "unicode" ];
+ "rustc-dep-of-std" = [ "std" "core" ];
+ "std" = [ "dep:std" ];
+ "unicode" = [ "dep:unicode-width" ];
+ };
+ resolvedDefaultFeatures = [ "default" "unicode" ];
+ };
+ "getrandom 0.1.16" = rec {
+ crateName = "getrandom";
+ version = "0.1.16";
+ edition = "2018";
+ sha256 = "1kjzmz60qx9mn615ks1akjbf36n3lkv27zfwbcam0fzmj56wphwg";
+ authors = [
+ "The Rand Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "wasi";
+ packageId = "wasi 0.9.0+wasi-snapshot-preview1";
+ target = { target, features }: ("wasi" == target."os" or null);
+ }
+ ];
+ features = {
+ "bindgen" = [ "dep:bindgen" ];
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "js-sys" = [ "dep:js-sys" ];
+ "log" = [ "dep:log" ];
+ "rustc-dep-of-std" = [ "compiler_builtins" "core" ];
+ "stdweb" = [ "dep:stdweb" ];
+ "test-in-browser" = [ "wasm-bindgen" ];
+ "wasm-bindgen" = [ "bindgen" "js-sys" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "getrandom 0.2.16" = rec {
+ crateName = "getrandom";
+ version = "0.2.16";
+ edition = "2018";
+ sha256 = "14l5aaia20cc6cc08xdlhrzmfcylmrnprwnna20lqf746pqzjprk";
+ authors = [
+ "The Rand Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "js-sys";
+ packageId = "js-sys";
+ optional = true;
+ target = { target, features }: ((("wasm32" == target."arch" or null) || ("wasm64" == target."arch" or null)) && ("unknown" == target."os" or null));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "wasi";
+ packageId = "wasi 0.11.1+wasi-snapshot-preview1";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("wasi" == target."os" or null);
+ }
+ {
+ name = "wasm-bindgen";
+ packageId = "wasm-bindgen";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: ((("wasm32" == target."arch" or null) || ("wasm64" == target."arch" or null)) && ("unknown" == target."os" or null));
+ }
+ ];
+ features = {
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "js" = [ "wasm-bindgen" "js-sys" ];
+ "js-sys" = [ "dep:js-sys" ];
+ "rustc-dep-of-std" = [ "compiler_builtins" "core" "libc/rustc-dep-of-std" "wasi/rustc-dep-of-std" ];
+ "wasm-bindgen" = [ "dep:wasm-bindgen" ];
+ };
+ resolvedDefaultFeatures = [ "js" "js-sys" "std" "wasm-bindgen" ];
+ };
+ "getrandom 0.3.4" = rec {
+ crateName = "getrandom";
+ version = "0.3.4";
+ edition = "2021";
+ sha256 = "1zbpvpicry9lrbjmkd4msgj3ihff1q92i334chk7pzf46xffz7c9";
+ authors = [
+ "The Rand Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: ((("linux" == target."os" or null) || ("android" == target."os" or null)) && (!((("linux" == target."os" or null) && ("" == target."env" or null)) || ("custom" == target."getrandom_backend" or null) || ("linux_raw" == target."getrandom_backend" or null) || ("rdrand" == target."getrandom_backend" or null) || ("rndr" == target."getrandom_backend" or null))));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("dragonfly" == target."os" or null) || ("freebsd" == target."os" or null) || ("hurd" == target."os" or null) || ("illumos" == target."os" or null) || ("cygwin" == target."os" or null) || (("horizon" == target."os" or null) && ("arm" == target."arch" or null)));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("haiku" == target."os" or null) || ("redox" == target."os" or null) || ("nto" == target."os" or null) || ("aix" == target."os" or null));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("ios" == target."os" or null) || ("visionos" == target."os" or null) || ("watchos" == target."os" or null) || ("tvos" == target."os" or null));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("macos" == target."os" or null) || ("openbsd" == target."os" or null) || ("vita" == target."os" or null) || ("emscripten" == target."os" or null));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("netbsd" == target."os" or null);
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("solaris" == target."os" or null);
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("vxworks" == target."os" or null);
+ }
+ {
+ name = "r-efi";
+ packageId = "r-efi";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("uefi" == target."os" or null) && ("efi_rng" == target."getrandom_backend" or null));
+ }
+ {
+ name = "wasip2";
+ packageId = "wasip2";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p2" == target."env" or null));
+ }
+ ];
+ features = {
+ "wasm_js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "getrandom 0.4.1" = rec {
+ crateName = "getrandom";
+ version = "0.4.1";
+ edition = "2024";
+ sha256 = "1v7fm84f2jh6x7w3bd2ncl3sw29wnb0rhg7xya1pd30i02cg77hk";
+ authors = [
+ "The Rand Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: ((("linux" == target."os" or null) || ("android" == target."os" or null)) && (!((("linux" == target."os" or null) && ("" == target."env" or null)) || ("custom" == target."getrandom_backend" or null) || ("linux_raw" == target."getrandom_backend" or null) || ("rdrand" == target."getrandom_backend" or null) || ("rndr" == target."getrandom_backend" or null))));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("dragonfly" == target."os" or null) || ("freebsd" == target."os" or null) || ("hurd" == target."os" or null) || ("illumos" == target."os" or null) || ("cygwin" == target."os" or null) || (("horizon" == target."os" or null) && ("arm" == target."arch" or null)));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("haiku" == target."os" or null) || ("redox" == target."os" or null) || ("nto" == target."os" or null) || ("aix" == target."os" or null));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("ios" == target."os" or null) || ("visionos" == target."os" or null) || ("watchos" == target."os" or null) || ("tvos" == target."os" or null));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("macos" == target."os" or null) || ("openbsd" == target."os" or null) || ("vita" == target."os" or null) || ("emscripten" == target."os" or null));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("netbsd" == target."os" or null);
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("solaris" == target."os" or null);
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("vxworks" == target."os" or null);
+ }
+ {
+ name = "r-efi";
+ packageId = "r-efi";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("uefi" == target."os" or null) && ("efi_rng" == target."getrandom_backend" or null));
+ }
+ {
+ name = "wasip2";
+ packageId = "wasip2";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p2" == target."env" or null));
+ }
+ {
+ name = "wasip3";
+ packageId = "wasip3";
+ target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p3" == target."env" or null));
+ }
+ ];
+ features = {
+ "sys_rng" = [ "dep:rand_core" ];
+ "wasm_js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
+ };
+ };
+ "ghash" = rec {
+ crateName = "ghash";
+ version = "0.5.1";
+ edition = "2021";
+ sha256 = "1wbg4vdgzwhkpkclz1g6bs4r5x984w5gnlsj4q5wnafb5hva9n7h";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "opaque-debug";
+ packageId = "opaque-debug";
+ }
+ {
+ name = "polyval";
+ packageId = "polyval";
+ }
+ ];
+ features = {
+ "std" = [ "polyval/std" ];
+ "zeroize" = [ "dep:zeroize" ];
+ };
+ };
+ "globset" = rec {
+ crateName = "globset";
+ version = "0.4.18";
+ edition = "2024";
+ sha256 = "1qsp3wg0mgxzmshcgymdlpivqlc1bihm6133pl6dx2x4af8w3psj";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "aho-corasick";
+ packageId = "aho-corasick";
+ }
+ {
+ name = "bstr";
+ packageId = "bstr";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "log";
+ packageId = "log";
+ optional = true;
+ }
+ {
+ name = "regex-automata";
+ packageId = "regex-automata";
+ usesDefaultFeatures = false;
+ features = [ "std" "perf" "syntax" "meta" "nfa" "hybrid" ];
+ }
+ {
+ name = "regex-syntax";
+ packageId = "regex-syntax";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "default" = [ "log" ];
+ "log" = [ "dep:log" ];
+ "serde" = [ "dep:serde" ];
+ "serde1" = [ "serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "log" ];
+ };
+ "h2 0.3.27" = rec {
+ crateName = "h2";
+ version = "0.3.27";
+ edition = "2018";
+ sha256 = "0b92141hilij015av6i5ziw9xfx4py3lbjy17yc35z5ih01sbv0b";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "fnv";
+ packageId = "fnv";
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-sink";
+ packageId = "futures-sink";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "http";
+ packageId = "http 0.2.12";
+ }
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ features = [ "std" ];
+ }
+ {
+ name = "slab";
+ packageId = "slab";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "io-util" ];
+ }
+ {
+ name = "tokio-util";
+ packageId = "tokio-util";
+ features = [ "codec" "io" ];
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "rt-multi-thread" "macros" "sync" "net" ];
+ }
+ ];
+ features = {
+ };
+ };
+ "h2 0.4.12" = rec {
+ crateName = "h2";
+ version = "0.4.12";
+ edition = "2021";
+ sha256 = "11hk5mpid8757z6n3v18jwb62ikffrgzjlrgpzqvkqdlzjfbdh7k";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "atomic-waker";
+ packageId = "atomic-waker";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "fnv";
+ packageId = "fnv";
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-sink";
+ packageId = "futures-sink";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ features = [ "std" ];
+ }
+ {
+ name = "slab";
+ packageId = "slab";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "io-util" ];
+ }
+ {
+ name = "tokio-util";
+ packageId = "tokio-util";
+ features = [ "codec" "io" ];
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "rt-multi-thread" "macros" "sync" "net" ];
+ }
+ ];
+ features = {
+ };
+ };
+ "half" = rec {
+ crateName = "half";
+ version = "2.7.1";
+ edition = "2021";
+ sha256 = "0jyq42xfa6sghc397mx84av7fayd4xfxr4jahsqv90lmjr5xi8kf";
+ authors = [
+ "Kathryn Long <squeeself@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "crunchy";
+ packageId = "crunchy";
+ target = { target, features }: ("spirv" == target."arch" or null);
+ }
+ {
+ name = "zerocopy";
+ packageId = "zerocopy";
+ usesDefaultFeatures = false;
+ features = [ "derive" "simd" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "crunchy";
+ packageId = "crunchy";
+ }
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "bytemuck" = [ "dep:bytemuck" ];
+ "default" = [ "std" ];
+ "num-traits" = [ "dep:num-traits" ];
+ "rand_distr" = [ "dep:rand" "dep:rand_distr" ];
+ "rkyv" = [ "dep:rkyv" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "alloc" ];
+ };
+ };
+ "hashbrown 0.12.3" = rec {
+ crateName = "hashbrown";
+ version = "0.12.3";
+ edition = "2021";
+ sha256 = "1268ka4750pyg2pbgsr43f0289l5zah4arir2k4igx5a8c6fg7la";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "ahash";
+ packageId = "ahash 0.7.8";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "ahash" = [ "dep:ahash" ];
+ "ahash-compile-time-rng" = [ "ahash/compile-time-rng" ];
+ "alloc" = [ "dep:alloc" ];
+ "bumpalo" = [ "dep:bumpalo" ];
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "ahash" "inline-more" ];
+ "rayon" = [ "dep:rayon" ];
+ "rustc-dep-of-std" = [ "nightly" "core" "compiler_builtins" "alloc" "rustc-internal-api" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "ahash" "default" "inline-more" ];
+ };
+ "hashbrown 0.14.5" = rec {
+ crateName = "hashbrown";
+ version = "0.14.5";
+ edition = "2021";
+ sha256 = "1wa1vy1xs3mp11bn3z9dv0jricgr6a2j0zkf1g19yz3vw4il89z5";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ features = {
+ "ahash" = [ "dep:ahash" ];
+ "alloc" = [ "dep:alloc" ];
+ "allocator-api2" = [ "dep:allocator-api2" ];
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "ahash" "inline-more" "allocator-api2" ];
+ "equivalent" = [ "dep:equivalent" ];
+ "nightly" = [ "allocator-api2?/nightly" "bumpalo/allocator_api" ];
+ "rayon" = [ "dep:rayon" ];
+ "rkyv" = [ "dep:rkyv" ];
+ "rustc-dep-of-std" = [ "nightly" "core" "compiler_builtins" "alloc" "rustc-internal-api" ];
+ "serde" = [ "dep:serde" ];
+ };
+ };
+ "hashbrown 0.15.5" = rec {
+ crateName = "hashbrown";
+ version = "0.15.5";
+ edition = "2021";
+ sha256 = "189qaczmjxnikm9db748xyhiw04kpmhm9xj9k9hg0sgx7pjwyacj";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "allocator-api2";
+ packageId = "allocator-api2";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "equivalent";
+ packageId = "equivalent";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "foldhash";
+ packageId = "foldhash";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "dep:alloc" ];
+ "allocator-api2" = [ "dep:allocator-api2" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
+ "default-hasher" = [ "dep:foldhash" ];
+ "equivalent" = [ "dep:equivalent" ];
+ "nightly" = [ "bumpalo/allocator_api" ];
+ "rayon" = [ "dep:rayon" ];
+ "rustc-dep-of-std" = [ "nightly" "core" "alloc" "rustc-internal-api" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "allocator-api2" "default" "default-hasher" "equivalent" "inline-more" "raw-entry" ];
+ };
+ "hashbrown 0.16.1" = rec {
+ crateName = "hashbrown";
+ version = "0.16.1";
+ edition = "2021";
+ sha256 = "004i3njw38ji3bzdp9z178ba9x3k0c1pgy8x69pj7yfppv4iq7c4";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "allocator-api2";
+ packageId = "allocator-api2";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "dep:alloc" ];
+ "allocator-api2" = [ "dep:allocator-api2" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
+ "default-hasher" = [ "dep:foldhash" ];
+ "equivalent" = [ "dep:equivalent" ];
+ "nightly" = [ "foldhash?/nightly" "bumpalo/allocator_api" ];
+ "rayon" = [ "dep:rayon" ];
+ "rustc-dep-of-std" = [ "nightly" "core" "alloc" "rustc-internal-api" ];
+ "serde" = [ "dep:serde_core" "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "allocator-api2" "inline-more" ];
+ };
+ "headers" = rec {
+ crateName = "headers";
+ version = "0.4.1";
+ edition = "2018";
+ sha256 = "1sr4zygaq1b2f0k7b5l8vx5vp05wvd82w7vpavgvr52xvdd4scdk";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64";
+ packageId = "base64 0.22.1";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "headers-core";
+ packageId = "headers-core";
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "httpdate";
+ packageId = "httpdate";
+ }
+ {
+ name = "mime";
+ packageId = "mime";
+ }
+ {
+ name = "sha1";
+ packageId = "sha1";
+ }
+ ];
+ features = {
+ };
+ };
+ "headers-core" = rec {
+ crateName = "headers-core";
+ version = "0.3.0";
+ edition = "2015";
+ sha256 = "1r1w80i2bhmyh8s5mjr2dz6baqlrm6cak6yvzm4jq96lacjs5d2l";
+ libName = "headers_core";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ ];
+
+ };
+ "heapsize" = rec {
+ crateName = "heapsize";
+ version = "0.4.2";
+ edition = "2015";
+ sha256 = "0q94q9ppqjgrw71swiyia4hgby2cz6dldp7ij57nkvhd6zmfcy8n";
+ authors = [
+ "The Servo Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "winapi";
+ packageId = "winapi";
+ target = { target, features }: (target."windows" or false);
+ features = [ "std" "heapapi" ];
+ }
+ ];
+ features = {
+ };
+ };
+ "heck 0.4.1" = rec {
+ crateName = "heck";
+ version = "0.4.1";
+ edition = "2018";
+ sha256 = "1a7mqsnycv5z4z5vnv1k34548jzmc0ajic7c1j8jsaspnhw5ql4m";
+ authors = [
+ "Without Boats <woboats@gmail.com>"
+ ];
+ features = {
+ "unicode" = [ "unicode-segmentation" ];
+ "unicode-segmentation" = [ "dep:unicode-segmentation" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "heck 0.5.0" = rec {
+ crateName = "heck";
+ version = "0.5.0";
+ edition = "2021";
+ sha256 = "1sjmpsdl8czyh9ywl3qcsfsq9a307dg4ni2vnlwgnzzqhc4y0113";
+
+ };
+ "helmet-core" = rec {
+ crateName = "helmet-core";
+ version = "0.2.0";
+ edition = "2021";
+ sha256 = "04bwjicd3jb2ink4q8hq7c2hz19sh6gig3r5qsjapd0sq1x2brbp";
+ libName = "helmet_core";
+ authors = [
+ "Daniel Kovacs <kovacsemod@gmail.com>"
+ ];
+
+ };
+ "hermit-abi" = rec {
+ crateName = "hermit-abi";
+ version = "0.5.2";
+ edition = "2021";
+ sha256 = "1744vaqkczpwncfy960j2hxrbjl1q01csm84jpd9dajbdr2yy3zw";
+ libName = "hermit_abi";
+ authors = [
+ "Stefan Lankes"
+ ];
+ features = {
+ "alloc" = [ "dep:alloc" ];
+ "core" = [ "dep:core" ];
+ "rustc-dep-of-std" = [ "core" "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "hex" = rec {
+ crateName = "hex";
+ version = "0.4.3";
+ edition = "2018";
+ sha256 = "0w1a4davm1lgzpamwnba907aysmlrnygbqmfis2mqjx5m552a93z";
+ authors = [
+ "KokaKiwi <kokakiwi@kokakiwi.net>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "hmac 0.11.0" = rec {
+ crateName = "hmac";
+ version = "0.11.0";
+ edition = "2018";
+ sha256 = "16z61aibdg4di40sqi4ks2s4rz6r29w4sx4gvblfph3yxch26aia";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "crypto-mac";
+ packageId = "crypto-mac";
+ }
+ {
+ name = "digest";
+ packageId = "digest 0.9.0";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "crypto-mac";
+ packageId = "crypto-mac";
+ features = [ "dev" ];
+ }
+ ];
+ features = {
+ "std" = [ "crypto-mac/std" ];
+ };
+ };
+ "hmac 0.12.1" = rec {
+ crateName = "hmac";
+ version = "0.12.1";
+ edition = "2018";
+ sha256 = "0pmbr069sfg76z7wsssfk5ddcqd9ncp79fyz6zcm6yn115yc6jbc";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "digest";
+ packageId = "digest 0.10.7";
+ features = [ "mac" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "digest";
+ packageId = "digest 0.10.7";
+ features = [ "dev" ];
+ }
+ ];
+ features = {
+ "std" = [ "digest/std" ];
+ };
+ };
+ "html5ever 0.26.0" = rec {
+ crateName = "html5ever";
+ version = "0.26.0";
+ edition = "2018";
+ sha256 = "1dx3lhfwngi21wa79cpjv5rd4wn5vmklr50wrwbryidq92mqr9my";
+ authors = [
+ "The html5ever Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "mac";
+ packageId = "mac";
+ }
+ {
+ name = "markup5ever";
+ packageId = "markup5ever 0.11.0";
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 1.0.109";
+ features = [ "extra-traits" "full" "fold" ];
+ }
+ ];
+
+ };
+ "html5ever 0.35.0" = rec {
+ crateName = "html5ever";
+ version = "0.35.0";
+ edition = "2021";
+ sha256 = "1m4yajw7slxqn0x3zdh3i9qlhb03vgdf2pq3la3l8rjbyz15inam";
+ authors = [
+ "The html5ever Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "markup5ever";
+ packageId = "markup5ever 0.35.0";
+ }
+ {
+ name = "match_token";
+ packageId = "match_token";
+ }
+ ];
+ features = {
+ };
+ };
+ "http 0.2.12" = rec {
+ crateName = "http";
+ version = "0.2.12";
+ edition = "2018";
+ sha256 = "1w81s4bcbmcj9bjp7mllm8jlz6b31wzvirz8bgpzbqkpwmbvn730";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ "Carl Lerche <me@carllerche.com>"
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "fnv";
+ packageId = "fnv";
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ ];
+
+ };
+ "http 1.4.0" = rec {
+ crateName = "http";
+ version = "1.4.0";
+ edition = "2021";
+ sha256 = "06iind4cwsj1d6q8c2xgq8i2wka4ps74kmws24gsi1bzdlw2mfp3";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ "Carl Lerche <me@carllerche.com>"
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "http-body 0.4.6" = rec {
+ crateName = "http-body";
+ version = "0.4.6";
+ edition = "2018";
+ sha256 = "1lmyjfk6bqk6k9gkn1dxq770sb78pqbqshga241hr5p995bb5skw";
+ libName = "http_body";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ "Lucio Franco <luciofranco14@gmail.com>"
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "http";
+ packageId = "http 0.2.12";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ ];
+
+ };
+ "http-body 1.0.1" = rec {
+ crateName = "http-body";
+ version = "1.0.1";
+ edition = "2018";
+ sha256 = "111ir5k2b9ihz5nr9cz7cwm7fnydca7dx4hc7vr16scfzghxrzhy";
+ libName = "http_body";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ "Lucio Franco <luciofranco14@gmail.com>"
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ ];
+
+ };
+ "http-body-util" = rec {
+ crateName = "http-body-util";
+ version = "0.1.3";
+ edition = "2018";
+ sha256 = "0jm6jv4gxsnlsi1kzdyffjrj8cfr3zninnxpw73mvkxy4qzdj8dh";
+ libName = "http_body_util";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ "Lucio Franco <luciofranco14@gmail.com>"
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body 1.0.1";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ ];
+ features = {
+ "channel" = [ "dep:tokio" ];
+ "full" = [ "channel" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "httparse" = rec {
+ crateName = "httparse";
+ version = "1.10.1";
+ edition = "2018";
+ sha256 = "11ycd554bw2dkgw0q61xsa7a4jn1wb1xbfacmf3dbwsikvkkvgvd";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "httpdate" = rec {
+ crateName = "httpdate";
+ version = "1.0.3";
+ edition = "2021";
+ sha256 = "1aa9rd2sac0zhjqh24c9xvir96g188zldkx0hr6dnnlx5904cfyz";
+ authors = [
+ "Pyfisch <pyfisch@posteo.org>"
+ ];
+
+ };
+ "hyper 0.14.32" = rec {
+ crateName = "hyper";
+ version = "0.14.32";
+ edition = "2018";
+ sha256 = "1rvcb0smz8q1i0y6p7rwxr02x5sclfg2hhxf3g0774zczn0cgps1";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "futures-channel";
+ packageId = "futures-channel";
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "h2";
+ packageId = "h2 0.3.27";
+ optional = true;
+ }
+ {
+ name = "http";
+ packageId = "http 0.2.12";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body 0.4.6";
+ }
+ {
+ name = "httparse";
+ packageId = "httparse";
+ }
+ {
+ name = "httpdate";
+ packageId = "httpdate";
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "socket2";
+ packageId = "socket2 0.5.10";
+ optional = true;
+ features = [ "all" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "sync" ];
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "want";
+ packageId = "want";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "fs" "macros" "io-std" "io-util" "rt" "rt-multi-thread" "sync" "time" "test-util" ];
+ }
+ ];
+ features = {
+ "ffi" = [ "libc" ];
+ "full" = [ "client" "http1" "http2" "server" "stream" "runtime" ];
+ "h2" = [ "dep:h2" ];
+ "http2" = [ "h2" ];
+ "libc" = [ "dep:libc" ];
+ "runtime" = [ "tcp" "tokio/rt" "tokio/time" ];
+ "socket2" = [ "dep:socket2" ];
+ "tcp" = [ "socket2" "tokio/net" "tokio/rt" "tokio/time" ];
+ };
+ resolvedDefaultFeatures = [ "client" "default" "h2" "http1" "http2" "socket2" "stream" "tcp" ];
+ };
+ "hyper 1.8.1" = rec {
+ crateName = "hyper";
+ version = "1.8.1";
+ edition = "2021";
+ sha256 = "04cxr8j5y86bhxxlyqb8xkxjskpajk7cxwfzzk4v3my3a3rd9cia";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "atomic-waker";
+ packageId = "atomic-waker";
+ optional = true;
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "futures-channel";
+ packageId = "futures-channel";
+ optional = true;
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ optional = true;
+ }
+ {
+ name = "h2";
+ packageId = "h2 0.4.12";
+ optional = true;
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body 1.0.1";
+ }
+ {
+ name = "httparse";
+ packageId = "httparse";
+ optional = true;
+ }
+ {
+ name = "httpdate";
+ packageId = "httpdate";
+ optional = true;
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ optional = true;
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ optional = true;
+ }
+ {
+ name = "pin-utils";
+ packageId = "pin-utils";
+ optional = true;
+ }
+ {
+ name = "smallvec";
+ packageId = "smallvec";
+ optional = true;
+ features = [ "const_generics" "const_new" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "sync" ];
+ }
+ {
+ name = "want";
+ packageId = "want";
+ optional = true;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "futures-channel";
+ packageId = "futures-channel";
+ features = [ "sink" ];
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "fs" "macros" "net" "io-std" "io-util" "rt" "rt-multi-thread" "sync" "time" "test-util" ];
+ }
+ ];
+ features = {
+ "client" = [ "dep:want" "dep:pin-project-lite" "dep:smallvec" ];
+ "ffi" = [ "dep:http-body-util" "dep:futures-util" ];
+ "full" = [ "client" "http1" "http2" "server" ];
+ "http1" = [ "dep:atomic-waker" "dep:futures-channel" "dep:futures-core" "dep:httparse" "dep:itoa" "dep:pin-utils" ];
+ "http2" = [ "dep:futures-channel" "dep:futures-core" "dep:h2" ];
+ "server" = [ "dep:httpdate" "dep:pin-project-lite" "dep:smallvec" ];
+ "tracing" = [ "dep:tracing" ];
+ };
+ resolvedDefaultFeatures = [ "client" "default" "http1" "http2" "server" ];
+ };
+ "hyper-rustls" = rec {
+ crateName = "hyper-rustls";
+ version = "0.27.7";
+ edition = "2021";
+ sha256 = "0n6g8998szbzhnvcs1b7ibn745grxiqmlpg53xz206v826v3xjg3";
+ libName = "hyper_rustls";
+ dependencies = [
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper 1.8.1";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "hyper-util";
+ packageId = "hyper-util";
+ usesDefaultFeatures = false;
+ features = [ "client-legacy" "tokio" ];
+ }
+ {
+ name = "rustls";
+ packageId = "rustls";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rustls-pki-types";
+ packageId = "rustls-pki-types";
+ rename = "pki-types";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ }
+ {
+ name = "tokio-rustls";
+ packageId = "tokio-rustls";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "hyper-util";
+ packageId = "hyper-util";
+ usesDefaultFeatures = false;
+ features = [ "server-auto" ];
+ }
+ {
+ name = "rustls";
+ packageId = "rustls";
+ usesDefaultFeatures = false;
+ features = [ "tls12" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "io-std" "macros" "net" "rt-multi-thread" ];
+ }
+ ];
+ features = {
+ "aws-lc-rs" = [ "rustls/aws_lc_rs" ];
+ "default" = [ "native-tokio" "http1" "tls12" "logging" "aws-lc-rs" ];
+ "fips" = [ "aws-lc-rs" "rustls/fips" ];
+ "http1" = [ "hyper-util/http1" ];
+ "http2" = [ "hyper-util/http2" ];
+ "log" = [ "dep:log" ];
+ "logging" = [ "log" "tokio-rustls/logging" "rustls/logging" ];
+ "native-tokio" = [ "rustls-native-certs" ];
+ "ring" = [ "rustls/ring" ];
+ "rustls-native-certs" = [ "dep:rustls-native-certs" ];
+ "rustls-platform-verifier" = [ "dep:rustls-platform-verifier" ];
+ "tls12" = [ "tokio-rustls/tls12" "rustls/tls12" ];
+ "webpki-roots" = [ "dep:webpki-roots" ];
+ "webpki-tokio" = [ "webpki-roots" ];
+ };
+ resolvedDefaultFeatures = [ "http1" "http2" "tls12" ];
+ };
+ "hyper-tls 0.5.0" = rec {
+ crateName = "hyper-tls";
+ version = "0.5.0";
+ edition = "2018";
+ sha256 = "01crgy13102iagakf6q4mb75dprzr7ps1gj0l5hxm1cvm7gks66n";
+ libName = "hyper_tls";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper 0.14.32";
+ usesDefaultFeatures = false;
+ features = [ "tcp" "client" ];
+ }
+ {
+ name = "native-tls";
+ packageId = "native-tls";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ }
+ {
+ name = "tokio-native-tls";
+ packageId = "tokio-native-tls";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "hyper";
+ packageId = "hyper 0.14.32";
+ usesDefaultFeatures = false;
+ features = [ "http1" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "io-std" "macros" "io-util" ];
+ }
+ ];
+ features = {
+ "vendored" = [ "native-tls/vendored" ];
+ };
+ };
+ "hyper-tls 0.6.0" = rec {
+ crateName = "hyper-tls";
+ version = "0.6.0";
+ edition = "2018";
+ sha256 = "1q36x2yps6hhvxq5r7mc8ph9zz6xlb573gx0x3yskb0fi736y83h";
+ libName = "hyper_tls";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "http-body-util";
+ packageId = "http-body-util";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper 1.8.1";
+ }
+ {
+ name = "hyper-util";
+ packageId = "hyper-util";
+ features = [ "client-legacy" "tokio" ];
+ }
+ {
+ name = "native-tls";
+ packageId = "native-tls";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ }
+ {
+ name = "tokio-native-tls";
+ packageId = "tokio-native-tls";
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "hyper-util";
+ packageId = "hyper-util";
+ features = [ "http1" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "io-std" "macros" "io-util" ];
+ }
+ ];
+ features = {
+ "alpn" = [ "native-tls/alpn" ];
+ "vendored" = [ "native-tls/vendored" ];
+ };
+ };
+ "hyper-util" = rec {
+ crateName = "hyper-util";
+ version = "0.1.18";
+ edition = "2021";
+ sha256 = "0mmvc4964b085sfhxi2mmjn35dmp2hg0w0x7f4g85in59nia5saj";
+ libName = "hyper_util";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64";
+ packageId = "base64 0.22.1";
+ optional = true;
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "futures-channel";
+ packageId = "futures-channel";
+ optional = true;
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body 1.0.1";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper 1.8.1";
+ }
+ {
+ name = "ipnet";
+ packageId = "ipnet";
+ optional = true;
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ optional = true;
+ }
+ {
+ name = "percent-encoding";
+ packageId = "percent-encoding";
+ optional = true;
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "socket2";
+ packageId = "socket2 0.6.1";
+ optional = true;
+ features = [ "all" ];
+ }
+ {
+ name = "system-configuration";
+ packageId = "system-configuration";
+ optional = true;
+ target = { target, features }: ("macos" == target."os" or null);
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ optional = true;
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "windows-registry";
+ packageId = "windows-registry";
+ optional = true;
+ target = { target, features }: (target."windows" or false);
+ }
+ ];
+ devDependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "hyper";
+ packageId = "hyper 1.8.1";
+ features = [ "full" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" "test-util" "signal" ];
+ }
+ ];
+ features = {
+ "client" = [ "hyper/client" "tokio/net" "dep:tracing" "dep:futures-channel" "dep:tower-service" ];
+ "client-legacy" = [ "client" "dep:socket2" "tokio/sync" "dep:libc" "dep:futures-util" ];
+ "client-proxy" = [ "client" "dep:base64" "dep:ipnet" "dep:percent-encoding" ];
+ "client-proxy-system" = [ "dep:system-configuration" "dep:windows-registry" ];
+ "full" = [ "client" "client-legacy" "client-proxy" "client-proxy-system" "server" "server-auto" "server-graceful" "service" "http1" "http2" "tokio" "tracing" ];
+ "http1" = [ "hyper/http1" ];
+ "http2" = [ "hyper/http2" ];
+ "server" = [ "hyper/server" ];
+ "server-auto" = [ "server" "http1" "http2" ];
+ "server-graceful" = [ "server" "tokio/sync" ];
+ "service" = [ "dep:tower-service" ];
+ "tokio" = [ "dep:tokio" "tokio/rt" "tokio/time" ];
+ "tracing" = [ "dep:tracing" ];
+ };
+ resolvedDefaultFeatures = [ "client" "client-legacy" "client-proxy" "client-proxy-system" "default" "http1" "http2" "server" "server-auto" "service" "tokio" ];
+ };
+ "iana-time-zone" = rec {
+ crateName = "iana-time-zone";
+ version = "0.1.64";
+ edition = "2021";
+ sha256 = "1yz980fmhaq9bdkasz35z63az37ci6kzzfhya83kgdqba61pzr9k";
+ libName = "iana_time_zone";
+ authors = [
+ "Andrew Straw <strawman@astraw.com>"
+ "René Kijewski <rene.kijewski@fu-berlin.de>"
+ "Ryan Lopopolo <rjl@hyperbo.la>"
+ ];
+ dependencies = [
+ {
+ name = "android_system_properties";
+ packageId = "android_system_properties";
+ target = { target, features }: ("android" == target."os" or null);
+ }
+ {
+ name = "core-foundation-sys";
+ packageId = "core-foundation-sys";
+ target = { target, features }: ("apple" == target."vendor" or null);
+ }
+ {
+ name = "iana-time-zone-haiku";
+ packageId = "iana-time-zone-haiku";
+ target = { target, features }: ("haiku" == target."os" or null);
+ }
+ {
+ name = "js-sys";
+ packageId = "js-sys";
+ target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."os" or null));
+ }
+ {
+ name = "log";
+ packageId = "log";
+ target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."os" or null));
+ }
+ {
+ name = "wasm-bindgen";
+ packageId = "wasm-bindgen";
+ target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."os" or null));
+ }
+ {
+ name = "windows-core";
+ packageId = "windows-core";
+ target = { target, features }: ("windows" == target."os" or null);
+ }
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "fallback" ];
+ };
+ "iana-time-zone-haiku" = rec {
+ crateName = "iana-time-zone-haiku";
+ version = "0.1.2";
+ edition = "2018";
+ sha256 = "17r6jmj31chn7xs9698r122mapq85mfnv98bb4pg6spm0si2f67k";
+ libName = "iana_time_zone_haiku";
+ authors = [
+ "René Kijewski <crates.io@k6i.de>"
+ ];
+ buildDependencies = [
+ {
+ name = "cc";
+ packageId = "cc";
+ }
+ ];
+
+ };
+ "icu_collections" = rec {
+ crateName = "icu_collections";
+ version = "2.1.1";
+ edition = "2021";
+ sha256 = "0hsblchsdl64q21qwrs4hvc2672jrf466zivbj1bwyv606bn8ssc";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "potential_utf";
+ packageId = "potential_utf";
+ usesDefaultFeatures = false;
+ features = [ "zerovec" ];
+ }
+ {
+ name = "yoke";
+ packageId = "yoke";
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ {
+ name = "zerofrom";
+ packageId = "zerofrom";
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ usesDefaultFeatures = false;
+ features = [ "derive" "yoke" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "serde?/alloc" "zerovec/alloc" ];
+ "databake" = [ "dep:databake" "zerovec/databake" ];
+ "serde" = [ "dep:serde" "zerovec/serde" "potential_utf/serde" "alloc" ];
+ };
+ };
+ "icu_locale_core" = rec {
+ crateName = "icu_locale_core";
+ version = "2.1.1";
+ edition = "2021";
+ sha256 = "1djvdc2f5ylmp1ymzv4gcnmq1s4hqfim9nxlcm173lsd01hpifpd";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "litemap";
+ packageId = "litemap";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "tinystr";
+ packageId = "tinystr";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "writeable";
+ packageId = "writeable";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "litemap/alloc" "tinystr/alloc" "writeable/alloc" "serde?/alloc" ];
+ "databake" = [ "dep:databake" "alloc" ];
+ "serde" = [ "dep:serde" "tinystr/serde" ];
+ "zerovec" = [ "dep:zerovec" "tinystr/zerovec" ];
+ };
+ resolvedDefaultFeatures = [ "zerovec" ];
+ };
+ "icu_normalizer" = rec {
+ crateName = "icu_normalizer";
+ version = "2.1.1";
+ edition = "2021";
+ sha256 = "16dmn5596la2qm0r3vih0bzjfi0vx9a20yqjha6r1y3vnql8hv2z";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "icu_collections";
+ packageId = "icu_collections";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_normalizer_data";
+ packageId = "icu_normalizer_data";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_properties";
+ packageId = "icu_properties";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_provider";
+ packageId = "icu_provider";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "smallvec";
+ packageId = "smallvec";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "compiled_data" = [ "dep:icu_normalizer_data" "icu_properties?/compiled_data" "icu_provider/baked" ];
+ "datagen" = [ "serde" "dep:databake" "icu_properties" "icu_collections/databake" "zerovec/databake" "icu_properties?/datagen" "icu_provider/export" ];
+ "default" = [ "compiled_data" "utf8_iter" "utf16_iter" ];
+ "icu_properties" = [ "dep:icu_properties" ];
+ "serde" = [ "dep:serde" "icu_collections/serde" "zerovec/serde" "icu_properties?/serde" "icu_provider/serde" ];
+ "utf16_iter" = [ "dep:utf16_iter" "dep:write16" ];
+ "utf8_iter" = [ "dep:utf8_iter" ];
+ };
+ resolvedDefaultFeatures = [ "compiled_data" ];
+ };
+ "icu_normalizer_data" = rec {
+ crateName = "icu_normalizer_data";
+ version = "2.1.1";
+ edition = "2021";
+ sha256 = "02jnzizg6q75m41l6c13xc7nkc5q8yr1b728dcgfhpzw076wrvbs";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+
+ };
+ "icu_properties" = rec {
+ crateName = "icu_properties";
+ version = "2.1.1";
+ edition = "2021";
+ sha256 = "16gvnnxr1xry6vn5275a1s0z0c8scp7gdkzqla6hqv3nawqwsgz9";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "icu_collections";
+ packageId = "icu_collections";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_locale_core";
+ packageId = "icu_locale_core";
+ usesDefaultFeatures = false;
+ features = [ "zerovec" ];
+ }
+ {
+ name = "icu_properties_data";
+ packageId = "icu_properties_data";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_provider";
+ packageId = "icu_provider";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zerotrie";
+ packageId = "zerotrie";
+ usesDefaultFeatures = false;
+ features = [ "yoke" "zerofrom" ];
+ }
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ usesDefaultFeatures = false;
+ features = [ "derive" "yoke" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "zerovec/alloc" "icu_collections/alloc" "serde?/alloc" ];
+ "compiled_data" = [ "dep:icu_properties_data" "icu_provider/baked" ];
+ "datagen" = [ "serde" "dep:databake" "zerovec/databake" "icu_collections/databake" "icu_locale_core/databake" "zerotrie/databake" "icu_provider/export" ];
+ "default" = [ "compiled_data" ];
+ "serde" = [ "dep:serde" "icu_locale_core/serde" "zerovec/serde" "icu_collections/serde" "icu_provider/serde" "zerotrie/serde" ];
+ "unicode_bidi" = [ "dep:unicode-bidi" ];
+ };
+ resolvedDefaultFeatures = [ "compiled_data" ];
+ };
+ "icu_properties_data" = rec {
+ crateName = "icu_properties_data";
+ version = "2.1.1";
+ edition = "2021";
+ sha256 = "16a80p8j371jkl10x26rh9gw6d1gyl7limpc008my15v8wv5p102";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+
+ };
+ "icu_provider" = rec {
+ crateName = "icu_provider";
+ version = "2.1.1";
+ edition = "2021";
+ sha256 = "0576b7dizgyhpfa74kacv86y4g1p7v5ffd6c56kf1q82rvq2r5l5";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_locale_core";
+ packageId = "icu_locale_core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "writeable";
+ packageId = "writeable";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "yoke";
+ packageId = "yoke";
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ {
+ name = "zerofrom";
+ packageId = "zerofrom";
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ {
+ name = "zerotrie";
+ packageId = "zerotrie";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "icu_locale_core/alloc" "serde?/alloc" "yoke/alloc" "zerofrom/alloc" "zerovec/alloc" "zerotrie?/alloc" "dep:stable_deref_trait" "dep:writeable" ];
+ "baked" = [ "dep:zerotrie" "dep:writeable" ];
+ "deserialize_bincode_1" = [ "serde" "dep:bincode" "std" ];
+ "deserialize_json" = [ "serde" "dep:serde_json" ];
+ "deserialize_postcard_1" = [ "serde" "dep:postcard" ];
+ "export" = [ "serde" "dep:erased-serde" "dep:databake" "std" "sync" "dep:postcard" "zerovec/databake" ];
+ "logging" = [ "dep:log" ];
+ "serde" = [ "dep:serde" "yoke/serde" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "baked" ];
+ };
+ "id-arena" = rec {
+ crateName = "id-arena";
+ version = "2.3.0";
+ edition = "2021";
+ sha256 = "0m6rs0jcaj4mg33gkv98d71w3hridghp5c4yr928hplpkgbnfc1x";
+ libName = "id_arena";
+ authors = [
+ "Nick Fitzgerald <fitzgen@gmail.com>"
+ "Aleksey Kladov <aleksey.kladov@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "rayon" = [ "dep:rayon" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "ident_case" = rec {
+ crateName = "ident_case";
+ version = "1.0.1";
+ edition = "2015";
+ sha256 = "0fac21q6pwns8gh1hz3nbq15j8fi441ncl6w4vlnd1cmc55kiq5r";
+ authors = [
+ "Ted Driggs <ted.driggs@outlook.com>"
+ ];
+
+ };
+ "idna" = rec {
+ crateName = "idna";
+ version = "1.1.0";
+ edition = "2018";
+ sha256 = "1pp4n7hppm480zcx411dsv9wfibai00wbpgnjj4qj0xa7kr7a21v";
+ authors = [
+ "The rust-url developers"
+ ];
+ dependencies = [
+ {
+ name = "idna_adapter";
+ packageId = "idna_adapter";
+ }
+ {
+ name = "smallvec";
+ packageId = "smallvec";
+ features = [ "const_generics" ];
+ }
+ {
+ name = "utf8_iter";
+ packageId = "utf8_iter";
+ }
+ ];
+ features = {
+ "compiled_data" = [ "idna_adapter/compiled_data" ];
+ "default" = [ "std" "compiled_data" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "compiled_data" "std" ];
+ };
+ "idna_adapter" = rec {
+ crateName = "idna_adapter";
+ version = "1.2.1";
+ edition = "2021";
+ sha256 = "0i0339pxig6mv786nkqcxnwqa87v4m94b2653f6k3aj0jmhfkjis";
+ authors = [
+ "The rust-url developers"
+ ];
+ dependencies = [
+ {
+ name = "icu_normalizer";
+ packageId = "icu_normalizer";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_properties";
+ packageId = "icu_properties";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "compiled_data" = [ "icu_normalizer/compiled_data" "icu_properties/compiled_data" ];
+ };
+ resolvedDefaultFeatures = [ "compiled_data" ];
+ };
+ "ignore" = rec {
+ crateName = "ignore";
+ version = "0.4.25";
+ edition = "2024";
+ sha256 = "0jlv2s4fxqj9fsz6y015j5vbz6i475hj80j9q3sy05d0cniq5myk";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "crossbeam-deque";
+ packageId = "crossbeam-deque";
+ }
+ {
+ name = "globset";
+ packageId = "globset";
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ }
+ {
+ name = "regex-automata";
+ packageId = "regex-automata";
+ usesDefaultFeatures = false;
+ features = [ "std" "perf" "syntax" "meta" "nfa" "hybrid" "dfa-onepass" ];
+ }
+ {
+ name = "same-file";
+ packageId = "same-file";
+ }
+ {
+ name = "walkdir";
+ packageId = "walkdir";
+ }
+ {
+ name = "winapi-util";
+ packageId = "winapi-util";
+ target = { target, features }: (target."windows" or false);
+ }
+ ];
+ features = {
+ };
+ };
+ "indexmap" = rec {
+ crateName = "indexmap";
+ version = "2.12.1";
+ edition = "2021";
+ sha256 = "1wmcfk7g7d9wz1dninlijx70kfkzz6d5r36nyi2hdjjvaqmvpm0a";
+ dependencies = [
+ {
+ name = "equivalent";
+ packageId = "equivalent";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "hashbrown";
+ packageId = "hashbrown 0.16.1";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: false;
+ }
+ {
+ name = "serde_core";
+ packageId = "serde_core";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "borsh" = [ "dep:borsh" ];
+ "default" = [ "std" ];
+ "quickcheck" = [ "dep:quickcheck" ];
+ "rayon" = [ "dep:rayon" ];
+ "serde" = [ "dep:serde_core" "dep:serde" ];
+ "sval" = [ "dep:sval" ];
+ };
+ resolvedDefaultFeatures = [ "default" "serde" "std" ];
+ };
+ "inout" = rec {
+ crateName = "inout";
+ version = "0.1.4";
+ edition = "2021";
+ sha256 = "008xfl1jn9rxsq19phnhbimccf4p64880jmnpg59wqi07kk117w7";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "generic-array";
+ packageId = "generic-array";
+ }
+ ];
+ features = {
+ "block-padding" = [ "dep:block-padding" ];
+ "std" = [ "block-padding/std" ];
+ };
+ };
+ "instant" = rec {
+ crateName = "instant";
+ version = "0.1.13";
+ edition = "2018";
+ sha256 = "08h27kzvb5jw74mh0ajv0nv9ggwvgqm8ynjsn2sa9jsks4cjh970";
+ authors = [
+ "sebcrozet <developer@crozet.re>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ ];
+ features = {
+ "js-sys" = [ "dep:js-sys" ];
+ "stdweb" = [ "dep:stdweb" ];
+ "wasm-bindgen" = [ "js-sys" "wasm-bindgen_rs" "web-sys" ];
+ "wasm-bindgen_rs" = [ "dep:wasm-bindgen_rs" ];
+ "web-sys" = [ "dep:web-sys" ];
+ };
+ };
+ "ipnet" = rec {
+ crateName = "ipnet";
+ version = "2.11.0";
+ edition = "2018";
+ sha256 = "0c5i9sfi2asai28m8xp48k5gvwkqrg5ffpi767py6mzsrswv17s6";
+ authors = [
+ "Kris Price <kris@krisprice.nz>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "heapless" = [ "dep:heapless" ];
+ "json" = [ "serde" "schemars" ];
+ "schemars" = [ "dep:schemars" ];
+ "ser_as_str" = [ "heapless" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "ipnetwork" = rec {
+ crateName = "ipnetwork";
+ version = "0.21.1";
+ edition = "2021";
+ sha256 = "0qqpyjfma524v734nw4xri38xwj524z8q3k29bji6kfmmyyhldyg";
+ authors = [
+ "Abhishek Chanda <abhishek.becs@gmail.com>"
+ "Linus Färnstrand <faern@faern.net>"
+ ];
+ features = {
+ "schemars" = [ "dep:schemars" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "iri-string" = rec {
+ crateName = "iri-string";
+ version = "0.7.9";
+ edition = "2021";
+ sha256 = "15s3s6k99ci52d7qdplhllpa6xyvdyiys645n6z6fsw93nfpp1jg";
+ libName = "iri_string";
+ authors = [
+ "YOSHIOKA Takuma <nop_thread@nops.red>"
+ ];
+ dependencies = [
+ {
+ name = "memchr";
+ packageId = "memchr";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "serde?/alloc" ];
+ "default" = [ "std" ];
+ "memchr" = [ "dep:memchr" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "alloc" "memchr?/std" "serde?/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "is_terminal_polyfill" = rec {
+ crateName = "is_terminal_polyfill";
+ version = "1.70.2";
+ edition = "2021";
+ sha256 = "15anlc47sbz0jfs9q8fhwf0h3vs2w4imc030shdnq54sny5i7jx6";
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "itertools 0.10.5" = rec {
+ crateName = "itertools";
+ version = "0.10.5";
+ edition = "2018";
+ sha256 = "0ww45h7nxx5kj6z2y6chlskxd1igvs4j507anr6dzg99x1h25zdh";
+ authors = [
+ "bluss"
+ ];
+ dependencies = [
+ {
+ name = "either";
+ packageId = "either";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "use_std" ];
+ "use_std" = [ "use_alloc" "either/use_std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "use_alloc" "use_std" ];
+ };
+ "itertools 0.14.0" = rec {
+ crateName = "itertools";
+ version = "0.14.0";
+ edition = "2018";
+ sha256 = "118j6l1vs2mx65dqhwyssbrxpawa90886m3mzafdvyip41w2q69b";
+ authors = [
+ "bluss"
+ ];
+ dependencies = [
+ {
+ name = "either";
+ packageId = "either";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "use_std" ];
+ "use_std" = [ "use_alloc" "either/use_std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "use_alloc" "use_std" ];
+ };
+ "itoa" = rec {
+ crateName = "itoa";
+ version = "1.0.15";
+ edition = "2018";
+ sha256 = "0b4fj9kz54dr3wam0vprjwgygvycyw8r0qwg7vp19ly8b2w16psa";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ features = {
+ "no-panic" = [ "dep:no-panic" ];
+ };
+ };
+ "jiff" = rec {
+ crateName = "jiff";
+ version = "0.2.16";
+ edition = "2021";
+ sha256 = "0ddvdlmg7a3glbbq70hj6jfyraxplvhc4ny3xziyg6103ywf5k29";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "jiff-static";
+ packageId = "jiff-static";
+ optional = true;
+ }
+ {
+ name = "jiff-static";
+ packageId = "jiff-static";
+ target = { target, features }: false;
+ }
+ {
+ name = "log";
+ packageId = "log";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "portable-atomic";
+ packageId = "portable-atomic";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!("ptr" == target."has_atomic" or null));
+ }
+ {
+ name = "portable-atomic-util";
+ packageId = "portable-atomic-util";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!("ptr" == target."has_atomic" or null));
+ }
+ {
+ name = "serde_core";
+ packageId = "serde_core";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "log";
+ packageId = "log";
+ }
+ ];
+ features = {
+ "alloc" = [ "serde_core?/alloc" "portable-atomic-util/alloc" ];
+ "default" = [ "std" "tz-system" "tz-fat" "tzdb-bundle-platform" "tzdb-zoneinfo" "tzdb-concatenated" "perf-inline" ];
+ "js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
+ "logging" = [ "dep:log" ];
+ "serde" = [ "dep:serde_core" ];
+ "static" = [ "static-tz" "jiff-static?/tzdb" ];
+ "static-tz" = [ "dep:jiff-static" ];
+ "std" = [ "alloc" "log?/std" "serde_core?/std" ];
+ "tz-fat" = [ "jiff-static?/tz-fat" ];
+ "tz-system" = [ "std" "dep:windows-sys" ];
+ "tzdb-bundle-always" = [ "dep:jiff-tzdb" "alloc" ];
+ "tzdb-bundle-platform" = [ "dep:jiff-tzdb-platform" "alloc" ];
+ "tzdb-concatenated" = [ "std" ];
+ "tzdb-zoneinfo" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "std" ];
+ };
+ "jiff-static" = rec {
+ crateName = "jiff-static";
+ version = "0.2.16";
+ edition = "2021";
+ sha256 = "0sgsa0cgx2p036x37lj279srz0vhh7n6gqdc979xim9s7jsgh2lq";
+ procMacro = true;
+ libName = "jiff_static";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ }
+ ];
+ features = {
+ "tzdb" = [ "dep:jiff-tzdb" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "jobserver" = rec {
+ crateName = "jobserver";
+ version = "0.1.34";
+ edition = "2021";
+ sha256 = "0cwx0fllqzdycqn4d6nb277qx5qwnmjdxdl0lxkkwssx77j3vyws";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.3.4";
+ target = { target, features }: (target."windows" or false);
+ features = [ "std" ];
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ ];
+
+ };
+ "js-sys" = rec {
+ crateName = "js-sys";
+ version = "0.3.82";
+ edition = "2021";
+ sha256 = "0rcfkz7r28r01a8m6n2q13aglm44q5g6gzsw5nmjmninrk4fw4dh";
+ libName = "js_sys";
+ authors = [
+ "The wasm-bindgen Developers"
+ ];
+ dependencies = [
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "wasm-bindgen";
+ packageId = "wasm-bindgen";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "wasm-bindgen/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "json-escape-simd" = rec {
+ crateName = "json-escape-simd";
+ version = "3.0.1";
+ edition = "2024";
+ sha256 = "1x93kkpgp4v1vr8875dnkm7mdkx1qr0fywwrf50pqqxmnk0adhm3";
+ libName = "json_escape_simd";
+ features = {
+ "codspeed" = [ "criterion2/codspeed" ];
+ };
+ };
+ "lazy_static" = rec {
+ crateName = "lazy_static";
+ version = "1.5.0";
+ edition = "2015";
+ sha256 = "1zk6dqqni0193xg6iijh7i3i44sryglwgvx20spdvwk3r6sbrlmv";
+ authors = [
+ "Marvin Löbel <loebel.marvin@gmail.com>"
+ ];
+ features = {
+ "spin" = [ "dep:spin" ];
+ "spin_no_std" = [ "spin" ];
+ };
+ };
+ "leb128fmt" = rec {
+ crateName = "leb128fmt";
+ version = "0.1.0";
+ edition = "2021";
+ sha256 = "1chxm1484a0bly6anh6bd7a99sn355ymlagnwj3yajafnpldkv89";
+ authors = [
+ "Bryant Luk <code@bryantluk.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ };
+ "libc" = rec {
+ crateName = "libc";
+ version = "0.2.177";
+ edition = "2021";
+ sha256 = "0xjrn69cywaii1iq2lib201bhlvan7czmrm604h5qcm28yps4x18";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "rustc-dep-of-std" = [ "align" "rustc-std-workspace-core" ];
+ "rustc-std-workspace-core" = [ "dep:rustc-std-workspace-core" ];
+ "use_std" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "extra_traits" "std" ];
+ };
+ "libm" = rec {
+ crateName = "libm";
+ version = "0.2.15";
+ edition = "2021";
+ sha256 = "1plpzf0p829viazdj57yw5dhmlr8ywf3apayxc2f2bq5a6mvryzr";
+ authors = [
+ "Jorge Aparicio <jorge@japaric.io>"
+ ];
+ features = {
+ "default" = [ "arch" ];
+ "unstable" = [ "unstable-intrinsics" "unstable-float" ];
+ };
+ resolvedDefaultFeatures = [ "arch" "default" ];
+ };
+ "libpijul" = rec {
+ crateName = "libpijul";
+ version = "1.0.0-beta.10";
+ edition = "2021";
+ sha256 = "0yjii3hh8s7cvp5aihngh49266iz9h5bwlfrcyd1dglinyv0f213";
+ authors = [
+ "Pierre-Étienne Meunier <pe@pijul.org>"
+ ];
+ dependencies = [
+ {
+ name = "adler32";
+ packageId = "adler32";
+ }
+ {
+ name = "aes";
+ packageId = "aes 0.7.5";
+ features = [ "ctr" ];
+ }
+ {
+ name = "bincode";
+ packageId = "bincode 1.3.3";
+ }
+ {
+ name = "bitflags";
+ packageId = "bitflags 1.3.2";
+ }
+ {
+ name = "blake3";
+ packageId = "blake3";
+ }
+ {
+ name = "bs58";
+ packageId = "bs58 0.4.0";
+ }
+ {
+ name = "byteorder";
+ packageId = "byteorder";
+ }
+ {
+ name = "canonical-path";
+ packageId = "canonical-path";
+ optional = true;
+ }
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "chardetng";
+ packageId = "chardetng";
+ }
+ {
+ name = "chrono";
+ packageId = "chrono";
+ features = [ "serde" ];
+ }
+ {
+ name = "crossbeam-deque";
+ packageId = "crossbeam-deque";
+ }
+ {
+ name = "curve25519-dalek";
+ packageId = "curve25519-dalek";
+ features = [ "serde" ];
+ }
+ {
+ name = "data-encoding";
+ packageId = "data-encoding";
+ }
+ {
+ name = "diffs";
+ packageId = "diffs";
+ }
+ {
+ name = "ed25519-dalek";
+ packageId = "ed25519-dalek";
+ features = [ "serde" ];
+ }
+ {
+ name = "encoding_rs";
+ packageId = "encoding_rs";
+ }
+ {
+ name = "flate2";
+ packageId = "flate2";
+ optional = true;
+ }
+ {
+ name = "generic-array";
+ packageId = "generic-array";
+ }
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.2.16";
+ target = { target, features }: ("wasm32" == target."arch" or null);
+ features = [ "js" ];
+ }
+ {
+ name = "hmac";
+ packageId = "hmac 0.11.0";
+ }
+ {
+ name = "ignore";
+ packageId = "ignore";
+ optional = true;
+ }
+ {
+ name = "lazy_static";
+ packageId = "lazy_static";
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "lru-cache";
+ packageId = "lru-cache";
+ optional = true;
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ }
+ {
+ name = "nom";
+ packageId = "nom 7.1.3";
+ }
+ {
+ name = "parking_lot";
+ packageId = "parking_lot 0.11.2";
+ }
+ {
+ name = "path-slash";
+ packageId = "path-slash";
+ optional = true;
+ }
+ {
+ name = "pbkdf2";
+ packageId = "pbkdf2 0.9.0";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "pijul-macros";
+ packageId = "pijul-macros";
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.8.5";
+ }
+ {
+ name = "regex";
+ packageId = "regex";
+ }
+ {
+ name = "sanakirja";
+ packageId = "sanakirja";
+ usesDefaultFeatures = false;
+ features = [ "crc32" ];
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ {
+ name = "sha2";
+ packageId = "sha2 0.9.9";
+ }
+ {
+ name = "tar";
+ packageId = "tar";
+ optional = true;
+ }
+ {
+ name = "tempfile";
+ packageId = "tempfile";
+ optional = true;
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 1.0.69";
+ }
+ {
+ name = "toml";
+ packageId = "toml 0.5.11";
+ }
+ {
+ name = "twox-hash";
+ packageId = "twox-hash";
+ }
+ {
+ name = "zstd-seekable";
+ packageId = "zstd-seekable";
+ optional = true;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "rand";
+ packageId = "rand 0.8.5";
+ }
+ ];
+ features = {
+ "canonical-path" = [ "dep:canonical-path" ];
+ "default" = [ "ondisk-repos" "text-changes" ];
+ "flate2" = [ "dep:flate2" ];
+ "ignore" = [ "dep:ignore" ];
+ "lru-cache" = [ "dep:lru-cache" ];
+ "mmap" = [ "sanakirja/mmap" ];
+ "ondisk-repos" = [ "mmap" "zstd" "ignore" "canonical-path" "lru-cache" "tempfile" "path-slash" ];
+ "path-slash" = [ "dep:path-slash" ];
+ "tar" = [ "dep:tar" ];
+ "tarball" = [ "tar" "flate2" ];
+ "tempfile" = [ "dep:tempfile" ];
+ "zstd" = [ "zstd-seekable" ];
+ "zstd-seekable" = [ "dep:zstd-seekable" ];
+ };
+ resolvedDefaultFeatures = [ "canonical-path" "default" "flate2" "ignore" "lru-cache" "mmap" "ondisk-repos" "path-slash" "tar" "tarball" "tempfile" "text-changes" "zstd" "zstd-seekable" ];
+ };
+ "libredox" = rec {
+ crateName = "libredox";
+ version = "0.1.10";
+ edition = "2021";
+ sha256 = "1jswil4ai90s4rh91fg8580x8nikni1zl3wnch4h01nvidqpwvs1";
+ authors = [
+ "4lDO2 <4lDO2@protonmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ {
+ name = "redox_syscall";
+ packageId = "redox_syscall 0.5.18";
+ optional = true;
+ }
+ ];
+ features = {
+ "default" = [ "call" "std" "redox_syscall" ];
+ "ioslice" = [ "dep:ioslice" ];
+ "mkns" = [ "ioslice" ];
+ "redox_syscall" = [ "dep:redox_syscall" ];
+ };
+ resolvedDefaultFeatures = [ "call" "default" "redox_syscall" "std" ];
+ };
+ "libsodium-sys" = rec {
+ crateName = "libsodium-sys";
+ version = "0.2.7";
+ edition = "2015";
+ links = "sodium";
+ sha256 = "1zcjka23grayr8kjrgbada6vwagp0kkni9m45v0gpbanrn3r6xvb";
+ libName = "libsodium_sys";
+ authors = [
+ "dnaq"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "cc";
+ packageId = "cc";
+ target = {target, features}: (!("msvc" == target."env" or null));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = {target, features}: ("msvc" == target."env" or null);
+ }
+ {
+ name = "pkg-config";
+ packageId = "pkg-config";
+ }
+ {
+ name = "walkdir";
+ packageId = "walkdir";
+ }
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "use-pkg-config" ];
+ };
+ "lightningcss" = rec {
+ crateName = "lightningcss";
+ version = "1.0.0-alpha.68";
+ edition = "2021";
+ crateBin = [];
+ sha256 = "04d9h7qg0xgq2rpwx78ymi5wmygrv61aqn7adjldblb8hdkcl1xl";type = [ "rlib" ];
+ authors = [
+ "Devon Govett <devongovett@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "ahash";
+ packageId = "ahash 0.8.12";
+ }
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "const-str";
+ packageId = "const-str";
+ }
+ {
+ name = "cssparser";
+ packageId = "cssparser 0.33.0";
+ }
+ {
+ name = "cssparser-color";
+ packageId = "cssparser-color";
+ }
+ {
+ name = "dashmap";
+ packageId = "dashmap";
+ optional = true;
+ }
+ {
+ name = "data-encoding";
+ packageId = "data-encoding";
+ }
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.3.4";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("wasm32" == target."arch" or null);
+ }
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ features = [ "serde" ];
+ }
+ {
+ name = "itertools";
+ packageId = "itertools 0.10.5";
+ }
+ {
+ name = "lazy_static";
+ packageId = "lazy_static";
+ }
+ {
+ name = "lightningcss-derive";
+ packageId = "lightningcss-derive";
+ }
+ {
+ name = "parcel_selectors";
+ packageId = "parcel_selectors";
+ }
+ {
+ name = "parcel_sourcemap";
+ packageId = "parcel_sourcemap";
+ optional = true;
+ features = [ "json" ];
+ }
+ {
+ name = "pastey";
+ packageId = "pastey";
+ }
+ {
+ name = "pathdiff";
+ packageId = "pathdiff";
+ }
+ {
+ name = "rayon";
+ packageId = "rayon";
+ optional = true;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ features = [ "derive" ];
+ }
+ {
+ name = "serde-content";
+ packageId = "serde-content";
+ optional = true;
+ features = [ "serde" ];
+ }
+ {
+ name = "smallvec";
+ packageId = "smallvec";
+ features = [ "union" ];
+ }
+ ];
+ features = {
+ "atty" = [ "dep:atty" ];
+ "browserslist" = [ "browserslist-rs" ];
+ "browserslist-rs" = [ "dep:browserslist-rs" ];
+ "bundler" = [ "dashmap" "sourcemap" "rayon" ];
+ "clap" = [ "dep:clap" ];
+ "cli" = [ "atty" "clap" "serde_json" "browserslist" "jemallocator" ];
+ "dashmap" = [ "dep:dashmap" ];
+ "default" = [ "bundler" "nodejs" "sourcemap" ];
+ "into_owned" = [ "static-self" "static-self/smallvec" "static-self/indexmap" "parcel_selectors/into_owned" ];
+ "jemallocator" = [ "dep:jemallocator" ];
+ "jsonschema" = [ "schemars" "serde" "parcel_selectors/jsonschema" ];
+ "nodejs" = [ "dep:serde" "dep:serde-content" ];
+ "parcel_sourcemap" = [ "dep:parcel_sourcemap" ];
+ "rayon" = [ "dep:rayon" ];
+ "schemars" = [ "dep:schemars" ];
+ "serde" = [ "dep:serde" "dep:serde-content" "bitflags/serde" "smallvec/serde" "cssparser/serde" "parcel_selectors/serde" "into_owned" ];
+ "serde_json" = [ "dep:serde_json" ];
+ "sourcemap" = [ "parcel_sourcemap" ];
+ "static-self" = [ "dep:static-self" ];
+ "substitute_variables" = [ "visitor" "into_owned" ];
+ };
+ resolvedDefaultFeatures = [ "bundler" "dashmap" "default" "nodejs" "parcel_sourcemap" "rayon" "sourcemap" ];
+ };
+ "lightningcss-derive" = rec {
+ crateName = "lightningcss-derive";
+ version = "1.0.0-alpha.43";
+ edition = "2021";
+ sha256 = "0lh2hxppjs53hjdlzkgzn0zxa9f3jkq9wws1xp56g4r7s522ghc4";
+ procMacro = true;
+ libName = "lightningcss_derive";
+ authors = [
+ "Devon Govett <devongovett@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "convert_case";
+ packageId = "convert_case";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 1.0.109";
+ features = [ "extra-traits" ];
+ }
+ ];
+
+ };
+ "linked-hash-map" = rec {
+ crateName = "linked-hash-map";
+ version = "0.5.6";
+ edition = "2015";
+ sha256 = "03vpgw7x507g524nx5i1jf5dl8k3kv0fzg8v3ip6qqwbpkqww5q7";
+ libName = "linked_hash_map";
+ authors = [
+ "Stepan Koltsov <stepan.koltsov@gmail.com>"
+ "Andrew Paseltiner <apaseltiner@gmail.com>"
+ ];
+ features = {
+ "heapsize" = [ "dep:heapsize" ];
+ "heapsize_impl" = [ "heapsize" ];
+ "serde" = [ "dep:serde" ];
+ "serde_impl" = [ "serde" ];
+ };
+ };
+ "linux-raw-sys" = rec {
+ crateName = "linux-raw-sys";
+ version = "0.11.0";
+ edition = "2021";
+ sha256 = "0fghx0nn8nvbz5yzgizfcwd6ap2pislp68j8c1bwyr6sacxkq7fz";
+ libName = "linux_raw_sys";
+ authors = [
+ "Dan Gohman <dev@sunfishcode.online>"
+ ];
+ features = {
+ "core" = [ "dep:core" ];
+ "default" = [ "std" "general" "errno" ];
+ "rustc-dep-of-std" = [ "core" "no_std" ];
+ };
+ resolvedDefaultFeatures = [ "auxvec" "elf" "errno" "general" "ioctl" "no_std" ];
+ };
+ "litemap" = rec {
+ crateName = "litemap";
+ version = "0.8.1";
+ edition = "2021";
+ sha256 = "0xsy8pfp9s802rsj1bq2ys2kbk1g36w5dr3gkfip7gphb5x60wv3";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ features = {
+ "databake" = [ "dep:databake" ];
+ "default" = [ "alloc" ];
+ "serde" = [ "dep:serde_core" "alloc" ];
+ "testing" = [ "alloc" ];
+ "yoke" = [ "dep:yoke" ];
+ };
+ };
+ "lock_api" = rec {
+ crateName = "lock_api";
+ version = "0.4.14";
+ edition = "2021";
+ sha256 = "0rg9mhx7vdpajfxvdjmgmlyrn20ligzqvn8ifmaz7dc79gkrjhr2";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "scopeguard";
+ packageId = "scopeguard";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "atomic_usize" ];
+ "owning_ref" = [ "dep:owning_ref" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "atomic_usize" "default" ];
+ };
+ "log" = rec {
+ crateName = "log";
+ version = "0.4.28";
+ edition = "2021";
+ sha256 = "0cklpzrpxafbaq1nyxarhnmcw9z3xcjrad3ch55mmr58xw2ha21l";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ features = {
+ "kv_serde" = [ "kv_std" "value-bag/serde" "serde" ];
+ "kv_std" = [ "std" "kv" "value-bag/error" ];
+ "kv_sval" = [ "kv" "value-bag/sval" "sval" "sval_ref" ];
+ "kv_unstable" = [ "kv" "value-bag" ];
+ "kv_unstable_serde" = [ "kv_serde" "kv_unstable_std" ];
+ "kv_unstable_std" = [ "kv_std" "kv_unstable" ];
+ "kv_unstable_sval" = [ "kv_sval" "kv_unstable" ];
+ "serde" = [ "dep:serde" ];
+ "sval" = [ "dep:sval" ];
+ "sval_ref" = [ "dep:sval_ref" ];
+ "value-bag" = [ "dep:value-bag" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "lru-cache" = rec {
+ crateName = "lru-cache";
+ version = "0.1.2";
+ edition = "2015";
+ sha256 = "071viv6g2p3akwqmfb3c8vsycs5n7kr17b70l7la071jv0d4zqii";
+ libName = "lru_cache";
+ authors = [
+ "Stepan Koltsov <stepan.koltsov@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "linked-hash-map";
+ packageId = "linked-hash-map";
+ }
+ ];
+ features = {
+ "heapsize" = [ "dep:heapsize" ];
+ "heapsize_impl" = [ "heapsize" "linked-hash-map/heapsize_impl" ];
+ };
+ };
+ "mac" = rec {
+ crateName = "mac";
+ version = "0.1.1";
+ edition = "2015";
+ sha256 = "194vc7vrshqff72rl56f9xgb0cazyl4jda7qsv31m5l6xx7hq7n4";
+ authors = [
+ "Jonathan Reem <jonathan.reem@gmail.com>"
+ ];
+
+ };
+ "maplit" = rec {
+ crateName = "maplit";
+ version = "1.0.2";
+ edition = "2015";
+ sha256 = "07b5kjnhrrmfhgqm9wprjw8adx6i225lqp49gasgqg74lahnabiy";
+ authors = [
+ "bluss"
+ ];
+
+ };
+ "markup5ever 0.11.0" = rec {
+ crateName = "markup5ever";
+ version = "0.11.0";
+ edition = "2018";
+ sha256 = "05mhzsp6lfxla1fgd0ac283b405s6kyj27wj5r6d7wq42jxjj9ks";
+ libPath = "lib.rs";
+ authors = [
+ "The html5ever Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "phf";
+ packageId = "phf 0.10.1";
+ }
+ {
+ name = "string_cache";
+ packageId = "string_cache";
+ }
+ {
+ name = "tendril";
+ packageId = "tendril";
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "phf_codegen";
+ packageId = "phf_codegen 0.10.0";
+ }
+ {
+ name = "string_cache_codegen";
+ packageId = "string_cache_codegen";
+ }
+ ];
+
+ };
+ "markup5ever 0.35.0" = rec {
+ crateName = "markup5ever";
+ version = "0.35.0";
+ edition = "2021";
+ sha256 = "1hy1xh07jkm13j7vdnsphynl3z7hfmh99csjjvqzhl26jfffc7ri";
+ libPath = "lib.rs";
+ authors = [
+ "The html5ever Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "tendril";
+ packageId = "tendril";
+ }
+ {
+ name = "web_atoms";
+ packageId = "web_atoms";
+ }
+ ];
+
+ };
+ "match_token" = rec {
+ crateName = "match_token";
+ version = "0.35.0";
+ edition = "2021";
+ sha256 = "1ksqd8li4kdd463cb2qf10d7d4j1m416y62xbzf47k0g6qzzv15c";
+ procMacro = true;
+ authors = [
+ "The html5ever Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" ];
+ }
+ ];
+
+ };
+ "matchers" = rec {
+ crateName = "matchers";
+ version = "0.2.0";
+ edition = "2018";
+ sha256 = "1sasssspdj2vwcwmbq3ra18d3qniapkimfcbr47zmx6750m5llni";
+ authors = [
+ "Eliza Weisman <eliza@buoyant.io>"
+ ];
+ dependencies = [
+ {
+ name = "regex-automata";
+ packageId = "regex-automata";
+ usesDefaultFeatures = false;
+ features = [ "syntax" "dfa-build" "dfa-search" ];
+ }
+ ];
+ features = {
+ "unicode" = [ "regex-automata/unicode" ];
+ };
+ };
+ "matches" = rec {
+ crateName = "matches";
+ version = "0.1.10";
+ edition = "2015";
+ sha256 = "1994402fq4viys7pjhzisj4wcw894l53g798kkm2y74laxk0jci5";
+ libPath = "lib.rs";
+
+ };
+ "matchit" = rec {
+ crateName = "matchit";
+ version = "0.8.4";
+ edition = "2021";
+ sha256 = "1hzl48fwq1cn5dvshfly6vzkzqhfihya65zpj7nz7lfx82mgzqa7";
+ authors = [
+ "Ibraheem Ahmed <ibraheem@ibraheem.ca>"
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "maxminddb" = rec {
+ crateName = "maxminddb";
+ version = "0.26.0";
+ edition = "2021";
+ sha256 = "1fhbi3qlfld2v4jg5qagjnsdky4vnnq78v20ha38b2176927w69a";
+ libPath = "src/maxminddb/lib.rs";
+ authors = [
+ "Gregory J. Oschwald <oschwald@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "ipnetwork";
+ packageId = "ipnetwork";
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 2.0.17";
+ }
+ ];
+ features = {
+ "memmap2" = [ "dep:memmap2" ];
+ "mmap" = [ "memmap2" ];
+ "simdutf8" = [ "dep:simdutf8" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "md-5 0.10.6" = rec {
+ crateName = "md-5";
+ version = "0.10.6";
+ edition = "2018";
+ sha256 = "1kvq5rnpm4fzwmyv5nmnxygdhhb2369888a06gdc9pxyrzh7x7nq";
+ libName = "md5";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "digest";
+ packageId = "digest 0.10.7";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "digest";
+ packageId = "digest 0.10.7";
+ features = [ "dev" ];
+ }
+ ];
+ features = {
+ "asm" = [ "md5-asm" ];
+ "default" = [ "std" ];
+ "md5-asm" = [ "dep:md5-asm" ];
+ "oid" = [ "digest/oid" ];
+ "std" = [ "digest/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "md-5 0.9.1" = rec {
+ crateName = "md-5";
+ version = "0.9.1";
+ edition = "2018";
+ sha256 = "059ajjacz1q3cms7vl6cvhdqs4qdw2nnwj9dq99ryzv0p6djfnkv";
+ libName = "md5";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "block-buffer";
+ packageId = "block-buffer 0.9.0";
+ }
+ {
+ name = "digest";
+ packageId = "digest 0.9.0";
+ }
+ {
+ name = "opaque-debug";
+ packageId = "opaque-debug";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "digest";
+ packageId = "digest 0.9.0";
+ features = [ "dev" ];
+ }
+ ];
+ features = {
+ "asm" = [ "md5-asm" ];
+ "default" = [ "std" ];
+ "md5-asm" = [ "dep:md5-asm" ];
+ "std" = [ "digest/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "md5" = rec {
+ crateName = "md5";
+ version = "0.7.0";
+ edition = "2015";
+ sha256 = "0wcps37hrhz59fkhf8di1ppdnqld6l1w5sdy7jp7p51z0i4c8329";
+ authors = [
+ "Ivan Ukhov <ivan.ukhov@gmail.com>"
+ "Kamal Ahmad <shibe@openmailbox.org>"
+ "Konstantin Stepanov <milezv@gmail.com>"
+ "Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"
+ "Nathan Musoke <nathan.musoke@gmail.com>"
+ "Scott Mabin <scott@mabez.dev>"
+ "Tony Arcieri <bascule@gmail.com>"
+ "Wim de With <register@dewith.io>"
+ "Yosef Dinerstein <yosefdi@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "memchr" = rec {
+ crateName = "memchr";
+ version = "2.7.6";
+ edition = "2021";
+ sha256 = "0wy29kf6pb4fbhfksjbs05jy2f32r2f3r1ga6qkmpz31k79h0azm";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ "bluss"
+ ];
+ features = {
+ "core" = [ "dep:core" ];
+ "default" = [ "std" ];
+ "logging" = [ "dep:log" ];
+ "rustc-dep-of-std" = [ "core" ];
+ "std" = [ "alloc" ];
+ "use_std" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "memmap" = rec {
+ crateName = "memmap";
+ version = "0.7.0";
+ edition = "2015";
+ sha256 = "0ns7kkd1h4pijdkwfvw4qlbbmqmlmzwlq3g2676dcl5vwyazv1b5";
+ authors = [
+ "Dan Burkert <dan@danburkert.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "winapi";
+ packageId = "winapi";
+ target = { target, features }: (target."windows" or false);
+ features = [ "basetsd" "handleapi" "memoryapi" "minwindef" "std" "sysinfoapi" ];
+ }
+ ];
+
+ };
+ "memmap2" = rec {
+ crateName = "memmap2";
+ version = "0.9.9";
+ edition = "2021";
+ sha256 = "146lfx0mpib44wvws6hibahm4h2w867bzwsc6zhmi9p0l3j36hbl";
+ authors = [
+ "Dan Burkert <dan@danburkert.com>"
+ "Yevhenii Reizner <razrfalcon@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ ];
+ features = {
+ "stable_deref_trait" = [ "dep:stable_deref_trait" ];
+ };
+ };
+ "mime" = rec {
+ crateName = "mime";
+ version = "0.3.17";
+ edition = "2015";
+ sha256 = "16hkibgvb9klh0w0jk5crr5xv90l3wlf77ggymzjmvl1818vnxv8";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+
+ };
+ "minify-html" = rec {
+ crateName = "minify-html";
+ version = "0.18.1";
+ edition = "2018";
+ sha256 = "086inrjjxplxj6f12yv5p371wd96ppa35j83pkf70pvy8l8iak34";
+ libName = "minify_html";
+ authors = [
+ "Wilson Lin <code@wilsonl.in>"
+ ];
+ dependencies = [
+ {
+ name = "ahash";
+ packageId = "ahash 0.8.12";
+ }
+ {
+ name = "aho-corasick";
+ packageId = "aho-corasick";
+ }
+ {
+ name = "lightningcss";
+ packageId = "lightningcss";
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ }
+ {
+ name = "minify-html-common";
+ packageId = "minify-html-common";
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ }
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ }
+ {
+ name = "oxc_codegen";
+ packageId = "oxc_codegen";
+ }
+ {
+ name = "oxc_minifier";
+ packageId = "oxc_minifier";
+ }
+ {
+ name = "oxc_parser";
+ packageId = "oxc_parser";
+ }
+ {
+ name = "oxc_span";
+ packageId = "oxc_span";
+ }
+ ];
+
+ };
+ "minify-html-common" = rec {
+ crateName = "minify-html-common";
+ version = "0.0.3";
+ edition = "2018";
+ sha256 = "1b4scla9sdwvj8hfqsfwy93nigz1478xjzlk95ly7i01wcddghsk";
+ libName = "minify_html_common";
+ authors = [
+ "Wilson Lin <code@wilsonl.in>"
+ ];
+ dependencies = [
+ {
+ name = "ahash";
+ packageId = "ahash 0.8.12";
+ }
+ {
+ name = "aho-corasick";
+ packageId = "aho-corasick";
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "itertools";
+ packageId = "itertools 0.14.0";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ ];
+
+ };
+ "minimal-lexical" = rec {
+ crateName = "minimal-lexical";
+ version = "0.2.1";
+ edition = "2018";
+ sha256 = "16ppc5g84aijpri4jzv14rvcnslvlpphbszc7zzp6vfkddf4qdb8";
+ libName = "minimal_lexical";
+ authors = [
+ "Alex Huszagh <ahuszagh@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "miniz_oxide" = rec {
+ crateName = "miniz_oxide";
+ version = "0.8.9";
+ edition = "2021";
+ sha256 = "05k3pdg8bjjzayq3rf0qhpirq9k37pxnasfn4arbs17phqn6m9qz";
+ authors = [
+ "Frommi <daniil.liferenko@gmail.com>"
+ "oyvindln <oyvindln@users.noreply.github.com>"
+ "Rich Geldreich richgel99@gmail.com"
+ ];
+ dependencies = [
+ {
+ name = "adler2";
+ packageId = "adler2";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "simd-adler32";
+ packageId = "simd-adler32";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "dep:alloc" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "with-alloc" ];
+ "rustc-dep-of-std" = [ "core" "alloc" "adler2/rustc-dep-of-std" ];
+ "serde" = [ "dep:serde" ];
+ "simd" = [ "simd-adler32" ];
+ "simd-adler32" = [ "dep:simd-adler32" ];
+ };
+ resolvedDefaultFeatures = [ "simd" "simd-adler32" "with-alloc" ];
+ };
+ "mio" = rec {
+ crateName = "mio";
+ version = "1.1.0";
+ edition = "2021";
+ sha256 = "0wr816q3jrjwiajvw807lgi540i9s6r78a5fx4ycz3nwhq03pn39";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ "Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: ("hermit" == target."os" or null);
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: ("wasi" == target."os" or null);
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "wasi";
+ packageId = "wasi 0.11.1+wasi-snapshot-preview1";
+ target = { target, features }: ("wasi" == target."os" or null);
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.61.2";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Wdk_Foundation" "Wdk_Storage_FileSystem" "Wdk_System_IO" "Win32_Foundation" "Win32_Networking_WinSock" "Win32_Storage_FileSystem" "Win32_Security" "Win32_System_IO" "Win32_System_WindowsProgramming" ];
+ }
+ ];
+ features = {
+ "default" = [ "log" ];
+ "log" = [ "dep:log" ];
+ "os-ext" = [ "os-poll" "windows-sys/Win32_System_Pipes" "windows-sys/Win32_Security" ];
+ };
+ resolvedDefaultFeatures = [ "net" "os-ext" "os-poll" ];
+ };
+ "native-tls" = rec {
+ crateName = "native-tls";
+ version = "0.2.14";
+ edition = "2015";
+ sha256 = "03hga800x8bzkp8h7frnm7yp545dwwawgmaq673vx7byk1139pl7";
+ libName = "native_tls";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: ("apple" == target."vendor" or null);
+ }
+ {
+ name = "log";
+ packageId = "log";
+ target = { target, features }: (!(("windows" == target."os" or null) || ("apple" == target."vendor" or null)));
+ }
+ {
+ name = "openssl";
+ packageId = "openssl";
+ target = { target, features }: (!(("windows" == target."os" or null) || ("apple" == target."vendor" or null)));
+ }
+ {
+ name = "openssl-probe";
+ packageId = "openssl-probe";
+ target = { target, features }: (!(("windows" == target."os" or null) || ("apple" == target."vendor" or null)));
+ }
+ {
+ name = "openssl-sys";
+ packageId = "openssl-sys";
+ target = { target, features }: (!(("windows" == target."os" or null) || ("apple" == target."vendor" or null)));
+ }
+ {
+ name = "schannel";
+ packageId = "schannel";
+ target = { target, features }: ("windows" == target."os" or null);
+ }
+ {
+ name = "security-framework";
+ packageId = "security-framework";
+ target = { target, features }: ("apple" == target."vendor" or null);
+ }
+ {
+ name = "security-framework-sys";
+ packageId = "security-framework-sys";
+ target = { target, features }: ("apple" == target."vendor" or null);
+ }
+ {
+ name = "tempfile";
+ packageId = "tempfile";
+ target = { target, features }: ("macos" == target."os" or null);
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tempfile";
+ packageId = "tempfile";
+ }
+ ];
+ features = {
+ "alpn" = [ "security-framework/alpn" ];
+ "vendored" = [ "openssl/vendored" ];
+ };
+ };
+ "nest" = rec {
+ crateName = "nest";
+ version = "0.1.0";
+ edition = "2021";
+ crateBin = [
+ {
+ name = "nest";
+ path = "src/main.rs";
+ requiredFeatures = [ ];
+ }
+ ];
+ src = lib.cleanSourceWith { filter = sourceFilter; src = ./api; };
+ dependencies = [
+ {
+ name = "ammonia";
+ packageId = "ammonia";
+ }
+ {
+ name = "anyhow";
+ packageId = "anyhow";
+ }
+ {
+ name = "axum";
+ packageId = "axum";
+ features = [ "macros" ];
+ }
+ {
+ name = "axum-extra";
+ packageId = "axum-extra";
+ features = [ "cookie-signed" "cookie" "typed-header" ];
+ }
+ {
+ name = "axum-helmet";
+ packageId = "axum-helmet";
+ }
+ {
+ name = "axum-macros";
+ packageId = "axum-macros";
+ }
+ {
+ name = "axum-response-cache";
+ packageId = "axum-response-cache";
+ }
+ {
+ name = "axum-server";
+ packageId = "axum-server";
+ features = [ "tls-rustls" ];
+ }
+ {
+ name = "axum_csrf";
+ packageId = "axum_csrf";
+ }
+ {
+ name = "bincode";
+ packageId = "bincode 1.3.3";
+ }
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "bs58";
+ packageId = "bs58 0.5.1";
+ }
+ {
+ name = "byteorder";
+ packageId = "byteorder";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "chrono";
+ packageId = "chrono";
+ }
+ {
+ name = "ci";
+ packageId = "ci";
+ }
+ {
+ name = "clap";
+ packageId = "clap";
+ features = [ "derive" ];
+ }
+ {
+ name = "cuach";
+ packageId = "cuach";
+ }
+ {
+ name = "data-encoding";
+ packageId = "data-encoding";
+ }
+ {
+ name = "deadpool";
+ packageId = "deadpool";
+ }
+ {
+ name = "diesel";
+ packageId = "diesel";
+ features = [ "postgres_backend" "extras" "network-address" ];
+ }
+ {
+ name = "diesel-async";
+ packageId = "diesel-async";
+ features = [ "postgres" "deadpool" ];
+ }
+ {
+ name = "diesel-derive-enum";
+ packageId = "diesel-derive-enum";
+ features = [ "postgres" ];
+ }
+ {
+ name = "futures";
+ packageId = "futures";
+ }
+ {
+ name = "headers";
+ packageId = "headers";
+ }
+ {
+ name = "heapsize";
+ packageId = "heapsize";
+ }
+ {
+ name = "helmet-core";
+ packageId = "helmet-core";
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "http-body-util";
+ packageId = "http-body-util";
+ }
+ {
+ name = "httpdate";
+ packageId = "httpdate";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper 1.8.1";
+ }
+ {
+ name = "hyper-util";
+ packageId = "hyper-util";
+ }
+ {
+ name = "ipnetwork";
+ packageId = "ipnetwork";
+ }
+ {
+ name = "lazy_static";
+ packageId = "lazy_static";
+ }
+ {
+ name = "libpijul";
+ packageId = "libpijul";
+ }
+ {
+ name = "lru-cache";
+ packageId = "lru-cache";
+ }
+ {
+ name = "maxminddb";
+ packageId = "maxminddb";
+ }
+ {
+ name = "minify-html";
+ packageId = "minify-html";
+ }
+ {
+ name = "openssl";
+ packageId = "openssl";
+ }
+ {
+ name = "percent-encoding";
+ packageId = "percent-encoding";
+ }
+ {
+ name = "pijul-hooks";
+ packageId = "pijul-hooks";
+ }
+ {
+ name = "privdrop";
+ packageId = "privdrop";
+ }
+ {
+ name = "pulldown-cmark";
+ packageId = "pulldown-cmark";
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.9.2";
+ }
+ {
+ name = "rand_chacha";
+ packageId = "rand_chacha 0.9.0";
+ }
+ {
+ name = "regex";
+ packageId = "regex";
+ }
+ {
+ name = "replication";
+ packageId = "replication";
+ }
+ {
+ name = "reqwest";
+ packageId = "reqwest";
+ }
+ {
+ name = "rusoto_core";
+ packageId = "rusoto_core";
+ }
+ {
+ name = "rusoto_credential";
+ packageId = "rusoto_credential";
+ }
+ {
+ name = "rusoto_ses";
+ packageId = "rusoto_ses";
+ }
+ {
+ name = "sanakirja";
+ packageId = "sanakirja";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ {
+ name = "serde_urlencoded";
+ packageId = "serde_urlencoded";
+ }
+ {
+ name = "syntect";
+ packageId = "syntect";
+ }
+ {
+ name = "tempfile";
+ packageId = "tempfile";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 2.0.17";
+ }
+ {
+ name = "thrussh";
+ packageId = "thrussh";
+ features = [ "openssl" ];
+ }
+ {
+ name = "thrussh-keys";
+ packageId = "thrussh-keys";
+ features = [ "openssl" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "full" ];
+ }
+ {
+ name = "tokio-postgres";
+ packageId = "tokio-postgres";
+ }
+ {
+ name = "tokio-stream";
+ packageId = "tokio-stream";
+ }
+ {
+ name = "toml";
+ packageId = "toml 0.9.8";
+ }
+ {
+ name = "tower-http";
+ packageId = "tower-http";
+ features = [ "trace" "cors" "compression-br" "compression-gzip" "compression-zstd" "compression-deflate" ];
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ }
+ {
+ name = "tracing-subscriber";
+ packageId = "tracing-subscriber";
+ features = [ "env-filter" ];
+ }
+ {
+ name = "url";
+ packageId = "url";
+ }
+ {
+ name = "uuid";
+ packageId = "uuid";
+ }
+ {
+ name = "webauthn-rs";
+ packageId = "webauthn-rs";
+ }
+ {
+ name = "zstd-seekable";
+ packageId = "zstd-seekable";
+ }
+ ];
+
+ };
+ "new_debug_unreachable" = rec {
+ crateName = "new_debug_unreachable";
+ version = "1.0.6";
+ edition = "2021";
+ sha256 = "11phpf1mjxq6khk91yzcbd3ympm78m3ivl7xg6lg2c0lf66fy3k5";
+ libName = "debug_unreachable";
+ authors = [
+ "Matt Brubeck <mbrubeck@limpet.net>"
+ "Jonathan Reem <jonathan.reem@gmail.com>"
+ ];
+
+ };
+ "nix" = rec {
+ crateName = "nix";
+ version = "0.30.1";
+ edition = "2021";
+ sha256 = "1dixahq9hk191g0c2ydc0h1ppxj0xw536y6rl63vlnp06lx3ylkl";
+ authors = [
+ "The nix-rust Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ features = [ "extra_traits" ];
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "cfg_aliases";
+ packageId = "cfg_aliases";
+ }
+ ];
+ features = {
+ "aio" = [ "pin-utils" ];
+ "dir" = [ "fs" ];
+ "event" = [ "poll" ];
+ "memoffset" = [ "dep:memoffset" ];
+ "mount" = [ "uio" ];
+ "mqueue" = [ "fs" ];
+ "net" = [ "socket" ];
+ "pin-utils" = [ "dep:pin-utils" ];
+ "ptrace" = [ "process" ];
+ "sched" = [ "process" ];
+ "signal" = [ "process" ];
+ "socket" = [ "memoffset" ];
+ "ucontext" = [ "signal" ];
+ "user" = [ "feature" ];
+ "zerocopy" = [ "fs" "uio" ];
+ };
+ resolvedDefaultFeatures = [ "default" "feature" "fs" "user" ];
+ };
+ "nom 7.1.3" = rec {
+ crateName = "nom";
+ version = "7.1.3";
+ edition = "2018";
+ sha256 = "0jha9901wxam390jcf5pfa0qqfrgh8li787jx2ip0yk5b8y9hwyj";
+ authors = [
+ "contact@geoffroycouprie.com"
+ ];
+ dependencies = [
+ {
+ name = "memchr";
+ packageId = "memchr";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "minimal-lexical";
+ packageId = "minimal-lexical";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" "memchr/std" "minimal-lexical/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "nom 8.0.0" = rec {
+ crateName = "nom";
+ version = "8.0.0";
+ edition = "2021";
+ sha256 = "01cl5xng9d0gxf26h39m0l8lprgpa00fcc75ps1yzgbib1vn35yz";
+ authors = [
+ "contact@geoffroycouprie.com"
+ ];
+ dependencies = [
+ {
+ name = "memchr";
+ packageId = "memchr";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" "memchr/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "nonmax" = rec {
+ crateName = "nonmax";
+ version = "0.5.5";
+ edition = "2018";
+ sha256 = "0lfvyfz4falgmc9g1cbfi2wkys9wka2nfmdyga87zikf636ml2k1";
+ authors = [
+ "Lucien Greathouse <me@lpghatguy.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "nu-ansi-term" = rec {
+ crateName = "nu-ansi-term";
+ version = "0.50.3";
+ edition = "2021";
+ sha256 = "1ra088d885lbd21q1bxgpqdlk1zlndblmarn948jz2a40xsbjmvr";
+ libName = "nu_ansi_term";
+ authors = [
+ "ogham@bsago.me"
+ "Ryan Scheel (Havvy) <ryan.havvy@gmail.com>"
+ "Josh Triplett <josh@joshtriplett.org>"
+ "The Nushell Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.61.2";
+ rename = "windows";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_Foundation" "Win32_System_Console" "Win32_Storage_FileSystem" "Win32_Security" ];
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "derive_serde_style" = [ "serde" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "num-bigint" = rec {
+ crateName = "num-bigint";
+ version = "0.4.6";
+ edition = "2021";
+ sha256 = "1f903zd33i6hkjpsgwhqwi2wffnvkxbn6rv4mkgcjcqi7xr4zr55";
+ libName = "num_bigint";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "num-integer";
+ packageId = "num-integer";
+ usesDefaultFeatures = false;
+ features = [ "i128" ];
+ }
+ {
+ name = "num-traits";
+ packageId = "num-traits";
+ usesDefaultFeatures = false;
+ features = [ "i128" ];
+ }
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "default" = [ "std" ];
+ "quickcheck" = [ "dep:quickcheck" ];
+ "rand" = [ "dep:rand" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "num-integer/std" "num-traits/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "num-conv" = rec {
+ crateName = "num-conv";
+ version = "0.1.0";
+ edition = "2021";
+ sha256 = "1ndiyg82q73783jq18isi71a7mjh56wxrk52rlvyx0mi5z9ibmai";
+ libName = "num_conv";
+ authors = [
+ "Jacob Pratt <jacob@jhpratt.dev>"
+ ];
+
+ };
+ "num-integer" = rec {
+ crateName = "num-integer";
+ version = "0.1.46";
+ edition = "2018";
+ sha256 = "13w5g54a9184cqlbsq80rnxw4jj4s0d8wv75jsq5r2lms8gncsbr";
+ libName = "num_integer";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "num-traits";
+ packageId = "num-traits";
+ usesDefaultFeatures = false;
+ features = [ "i128" ];
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "num-traits/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "i128" "std" ];
+ };
+ "num-traits" = rec {
+ crateName = "num-traits";
+ version = "0.2.19";
+ edition = "2021";
+ sha256 = "0h984rhdkkqd4ny9cif7y2azl3xdfb7768hb9irhpsch4q3gq787";
+ libName = "num_traits";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ buildDependencies = [
+ {
+ name = "autocfg";
+ packageId = "autocfg";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "libm" = [ "dep:libm" ];
+ };
+ resolvedDefaultFeatures = [ "default" "i128" "std" ];
+ };
+ "num_cpus" = rec {
+ crateName = "num_cpus";
+ version = "1.17.0";
+ edition = "2015";
+ sha256 = "0fxjazlng4z8cgbmsvbzv411wrg7x3hyxdq8nxixgzjswyylppwi";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "hermit-abi";
+ packageId = "hermit-abi";
+ target = { target, features }: ("hermit" == target."os" or null);
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (!(target."windows" or false));
+ }
+ ];
+
+ };
+ "oid-registry" = rec {
+ crateName = "oid-registry";
+ version = "0.7.1";
+ edition = "2018";
+ sha256 = "1navxdy0gx7f92ymwr6n02x35fypp2izdfcf49wszkc9ji6h7n58";
+ libName = "oid_registry";
+ authors = [
+ "Pierre Chifflier <chifflier@wzdftpd.net>"
+ ];
+ dependencies = [
+ {
+ name = "asn1-rs";
+ packageId = "asn1-rs";
+ }
+ ];
+ features = {
+ "crypto" = [ "kdf" "pkcs1" "pkcs7" "pkcs9" "pkcs12" "nist_algs" "x962" ];
+ "default" = [ "registry" ];
+ };
+ resolvedDefaultFeatures = [ "crypto" "default" "kdf" "nist_algs" "pkcs1" "pkcs12" "pkcs7" "pkcs9" "registry" "x509" "x962" ];
+ };
+ "once_cell" = rec {
+ crateName = "once_cell";
+ version = "1.21.3";
+ edition = "2021";
+ sha256 = "0b9x77lb9f1j6nqgf5aka4s2qj0nly176bpbrv6f9iakk5ff3xa2";
+ authors = [
+ "Aleksey Kladov <aleksey.kladov@gmail.com>"
+ ];
+ features = {
+ "alloc" = [ "race" ];
+ "atomic-polyfill" = [ "critical-section" ];
+ "critical-section" = [ "dep:critical-section" "portable-atomic" ];
+ "default" = [ "std" ];
+ "parking_lot" = [ "dep:parking_lot_core" ];
+ "portable-atomic" = [ "dep:portable-atomic" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "race" "std" ];
+ };
+ "once_cell_polyfill" = rec {
+ crateName = "once_cell_polyfill";
+ version = "1.70.2";
+ edition = "2021";
+ sha256 = "1zmla628f0sk3fhjdjqzgxhalr2xrfna958s632z65bjsfv8ljrq";
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "onig" = rec {
+ crateName = "onig";
+ version = "6.5.1";
+ edition = "2021";
+ sha256 = "1w63vbzamn2v9jpnlj3wkglapqss0fcvhhd8pqafzkis8iirqsrk";
+ authors = [
+ "Will Speak <will@willspeak.me>"
+ "Ivan Ivashchenko <defuz@me.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."windows" or false);
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ }
+ {
+ name = "onig_sys";
+ packageId = "onig_sys";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "generate" ];
+ "generate" = [ "onig_sys/generate" ];
+ "posix-api" = [ "onig_sys/posix-api" ];
+ "print-debug" = [ "onig_sys/print-debug" ];
+ };
+ };
+ "onig_sys" = rec {
+ crateName = "onig_sys";
+ version = "69.9.1";
+ edition = "2021";
+ links = "onig";
+ sha256 = "1p17cxzqnpqzpzamh7aqwpagxlnbhzs6myxw4dgz2v9xxxp6ry67";
+ authors = [
+ "Will Speak <will@willspeak.me>"
+ "Ivan Ivashchenko <defuz@me.com>"
+ ];
+ buildDependencies = [
+ {
+ name = "cc";
+ packageId = "cc";
+ }
+ {
+ name = "pkg-config";
+ packageId = "pkg-config";
+ }
+ ];
+ features = {
+ "bindgen" = [ "dep:bindgen" ];
+ "default" = [ "generate" ];
+ "generate" = [ "bindgen" ];
+ };
+ };
+ "opaque-debug" = rec {
+ crateName = "opaque-debug";
+ version = "0.3.1";
+ edition = "2018";
+ sha256 = "10b3w0kydz5jf1ydyli5nv10gdfp97xh79bgz327d273bs46b3f0";
+ libName = "opaque_debug";
+ authors = [
+ "RustCrypto Developers"
+ ];
+
+ };
+ "openssl" = rec {
+ crateName = "openssl";
+ version = "0.10.75";
+ edition = "2021";
+ sha256 = "0a238gvrzjq0r62a7472i685hi5jjzgfj72kp1xd32ir46qqv0q8";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "foreign-types";
+ packageId = "foreign-types";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ }
+ {
+ name = "openssl-macros";
+ packageId = "openssl-macros";
+ }
+ {
+ name = "openssl-sys";
+ packageId = "openssl-sys";
+ rename = "ffi";
+ }
+ ];
+ features = {
+ "aws-lc" = [ "ffi/aws-lc" ];
+ "aws-lc-fips" = [ "ffi/aws-lc-fips" ];
+ "bindgen" = [ "ffi/bindgen" ];
+ "unstable_boringssl" = [ "ffi/unstable_boringssl" ];
+ "vendored" = [ "ffi/vendored" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "openssl-macros" = rec {
+ crateName = "openssl-macros";
+ version = "0.1.1";
+ edition = "2018";
+ sha256 = "173xxvfc63rr5ybwqwylsir0vq6xsj4kxiv4hmg4c3vscdmncj59";
+ procMacro = true;
+ libName = "openssl_macros";
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" ];
+ }
+ ];
+
+ };
+ "openssl-probe" = rec {
+ crateName = "openssl-probe";
+ version = "0.1.6";
+ edition = "2021";
+ sha256 = "0bl52x55laalqb707k009h8kfawliwp992rlsvkzy49n47p2fpnh";
+ libName = "openssl_probe";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+
+ };
+ "openssl-sys" = rec {
+ crateName = "openssl-sys";
+ version = "0.9.111";
+ edition = "2021";
+ links = "openssl";
+ sha256 = "08f3mpsabivfi3fd0qv9231qidqy68lr8a4qi32y6xda43av5jl2";
+ build = "build/main.rs";
+ libName = "openssl_sys";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "cc";
+ packageId = "cc";
+ }
+ {
+ name = "pkg-config";
+ packageId = "pkg-config";
+ }
+ {
+ name = "vcpkg";
+ packageId = "vcpkg";
+ }
+ ];
+ features = {
+ "aws-lc" = [ "dep:aws-lc-sys" ];
+ "aws-lc-fips" = [ "dep:aws-lc-fips-sys" ];
+ "bindgen" = [ "dep:bindgen" ];
+ "bssl-sys" = [ "dep:bssl-sys" ];
+ "openssl-src" = [ "dep:openssl-src" ];
+ "unstable_boringssl" = [ "bssl-sys" ];
+ "vendored" = [ "openssl-src" ];
+ };
+ };
+ "outref 0.1.0" = rec {
+ crateName = "outref";
+ version = "0.1.0";
+ edition = "2021";
+ sha256 = "1x61h7dl1cc6cj2f3zsalr8d98v0cw6497sykwxf74wjmqljh8kz";
+
+ };
+ "outref 0.5.2" = rec {
+ crateName = "outref";
+ version = "0.5.2";
+ edition = "2021";
+ sha256 = "03pzw9aj4qskqhh0fkagy2mkgfwgj5a1m67ajlba5hw80h68100s";
+
+ };
+ "owo-colors" = rec {
+ crateName = "owo-colors";
+ version = "4.2.3";
+ edition = "2021";
+ sha256 = "0ljavh4hfxmlyjr67hyii5875p55kjg24crkj6h937m7kxr02scw";
+ libName = "owo_colors";
+ authors = [
+ "jam1garner <8260240+jam1garner@users.noreply.github.com>"
+ ];
+ features = {
+ "supports-color" = [ "dep:supports-color" ];
+ "supports-colors" = [ "dep:supports-color-2" "supports-color" ];
+ };
+ };
+ "oxc-browserslist" = rec {
+ crateName = "oxc-browserslist";
+ version = "2.1.3";
+ edition = "2024";
+ sha256 = "02npmfwb6ai1hzikm0rja54wi335vj8pjjyj4r1sdqm5ii9vwy7r";
+ libName = "browserslist";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Pig Fang <g-plane@hotmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bincode";
+ packageId = "bincode 2.0.1";
+ }
+ {
+ name = "flate2";
+ packageId = "flate2";
+ }
+ {
+ name = "nom";
+ packageId = "nom 8.0.0";
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 2.0.17";
+ }
+ {
+ name = "time";
+ packageId = "time";
+ }
+ ];
+ features = {
+ "codspeed" = [ "criterion2/codspeed" ];
+ "js-sys" = [ "dep:js-sys" ];
+ "serde-wasm-bindgen" = [ "dep:serde-wasm-bindgen" ];
+ "wasm-bindgen" = [ "dep:wasm-bindgen" ];
+ "wasm_bindgen" = [ "js-sys" "serde-wasm-bindgen" "time/wasm-bindgen" "wasm-bindgen" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "oxc-miette" = rec {
+ crateName = "oxc-miette";
+ version = "2.6.0";
+ edition = "2024";
+ sha256 = "1l8ffdyqh14vkr0zprls0kcqswkp26q25j5l8h5ilxgkfnl0a8gh";
+ libName = "miette";
+ authors = [
+ "Boshen"
+ "Kat Marchán <kzm@zkat.tech>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "owo-colors";
+ packageId = "owo-colors";
+ optional = true;
+ }
+ {
+ name = "oxc-miette-derive";
+ packageId = "oxc-miette-derive";
+ optional = true;
+ }
+ {
+ name = "textwrap";
+ packageId = "textwrap";
+ optional = true;
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 2.0.17";
+ }
+ {
+ name = "unicode-segmentation";
+ packageId = "unicode-segmentation";
+ }
+ {
+ name = "unicode-width";
+ packageId = "unicode-width";
+ }
+ ];
+ features = {
+ "backtrace" = [ "dep:backtrace" ];
+ "backtrace-ext" = [ "dep:backtrace-ext" ];
+ "default" = [ "derive" ];
+ "derive" = [ "oxc-miette-derive" ];
+ "fancy" = [ "fancy-no-backtrace" "backtrace" "backtrace-ext" ];
+ "fancy-base" = [ "owo-colors" "textwrap" ];
+ "fancy-no-backtrace" = [ "fancy-base" "terminal_size" "supports-hyperlinks" "supports-color" "supports-unicode" ];
+ "fancy-no-syscall" = [ "fancy-base" ];
+ "owo-colors" = [ "dep:owo-colors" ];
+ "oxc-miette-derive" = [ "dep:oxc-miette-derive" ];
+ "serde" = [ "dep:serde" ];
+ "supports-color" = [ "dep:supports-color" ];
+ "supports-hyperlinks" = [ "dep:supports-hyperlinks" ];
+ "supports-unicode" = [ "dep:supports-unicode" ];
+ "terminal_size" = [ "dep:terminal_size" ];
+ "textwrap" = [ "dep:textwrap" ];
+ };
+ resolvedDefaultFeatures = [ "default" "derive" "fancy-base" "fancy-no-syscall" "owo-colors" "oxc-miette-derive" "textwrap" ];
+ };
+ "oxc-miette-derive" = rec {
+ crateName = "oxc-miette-derive";
+ version = "2.6.0";
+ edition = "2024";
+ sha256 = "0a92xj7pbln7444w8wdagly7w5cjv8shgyvk70c02rbzh894cfq0";
+ procMacro = true;
+ libName = "oxc_miette_derive";
+ authors = [
+ "Boshen"
+ "Kat Marchán <kzm@zkat.tech>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ }
+ ];
+
+ };
+ "oxc_allocator" = rec {
+ crateName = "oxc_allocator";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "16x4rxjcdl9gjj56bqvyz3mkakal7995m8kwk1fnhq5qb7318cj3";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "allocator-api2";
+ packageId = "allocator-api2";
+ }
+ {
+ name = "bumpalo";
+ packageId = "bumpalo";
+ features = [ "allocator-api2" "collections" ];
+ }
+ {
+ name = "hashbrown";
+ packageId = "hashbrown 0.16.1";
+ usesDefaultFeatures = false;
+ features = [ "inline-more" "allocator-api2" ];
+ }
+ {
+ name = "oxc_data_structures";
+ packageId = "oxc_data_structures";
+ features = [ "assert_unchecked" ];
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ ];
+ features = {
+ "fixed_size" = [ "from_raw_parts" "pool" "dep:oxc_ast_macros" ];
+ "oxc_estree" = [ "dep:oxc_estree" ];
+ "serialize" = [ "dep:serde" "oxc_estree/serialize" ];
+ };
+ resolvedDefaultFeatures = [ "bitset" ];
+ };
+ "oxc_ast" = rec {
+ crateName = "oxc_ast";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "0pb1da7vp1w0rndk8wgvyxnxj2yx6n31j2fmvhp0j89ms8jyly0f";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ }
+ {
+ name = "oxc_ast_macros";
+ packageId = "oxc_ast_macros";
+ }
+ {
+ name = "oxc_data_structures";
+ packageId = "oxc_data_structures";
+ features = [ "inline_string" ];
+ }
+ {
+ name = "oxc_diagnostics";
+ packageId = "oxc_diagnostics";
+ }
+ {
+ name = "oxc_estree";
+ packageId = "oxc_estree";
+ }
+ {
+ name = "oxc_regular_expression";
+ packageId = "oxc_regular_expression";
+ }
+ {
+ name = "oxc_span";
+ packageId = "oxc_span";
+ }
+ {
+ name = "oxc_syntax";
+ packageId = "oxc_syntax";
+ }
+ ];
+ features = {
+ "serialize" = [ "oxc_allocator/serialize" "oxc_span/serialize" "oxc_syntax/serialize" "oxc_estree/serialize" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "oxc_ast_macros" = rec {
+ crateName = "oxc_ast_macros";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "1vg3l57afb3w91qblfmnr4qc4k2197s3y3fkpdz1li9577w9pwnk";
+ procMacro = true;
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "phf";
+ packageId = "phf 0.13.1";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ usesDefaultFeatures = false;
+ features = [ "full" "parsing" "printing" "proc-macro" "clone-impls" ];
+ }
+ ];
+
+ };
+ "oxc_ast_visit" = rec {
+ crateName = "oxc_ast_visit";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "0nz968gw2mhhddgs7dk0pv673x6v91m1s9l7y569acck5ks65240";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ }
+ {
+ name = "oxc_ast";
+ packageId = "oxc_ast";
+ }
+ {
+ name = "oxc_span";
+ packageId = "oxc_span";
+ }
+ {
+ name = "oxc_syntax";
+ packageId = "oxc_syntax";
+ }
+ ];
+ features = {
+ "serialize" = [ "oxc_allocator/serialize" "oxc_ast/serialize" "oxc_span/serialize" "oxc_syntax/serialize" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "oxc_codegen" = rec {
+ crateName = "oxc_codegen";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "18jfgxlvyp089f738bqyl4z2bkxa2nzqlw2h8z9j3j9rhj9sn2s8";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "cow-utils";
+ packageId = "cow-utils";
+ }
+ {
+ name = "dragonbox_ecma";
+ packageId = "dragonbox_ecma";
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ }
+ {
+ name = "oxc_ast";
+ packageId = "oxc_ast";
+ }
+ {
+ name = "oxc_data_structures";
+ packageId = "oxc_data_structures";
+ features = [ "code_buffer" "slice_iter" "stack" ];
+ }
+ {
+ name = "oxc_index";
+ packageId = "oxc_index";
+ features = [ "nonmax" "serde" ];
+ }
+ {
+ name = "oxc_semantic";
+ packageId = "oxc_semantic";
+ }
+ {
+ name = "oxc_sourcemap";
+ packageId = "oxc_sourcemap";
+ }
+ {
+ name = "oxc_span";
+ packageId = "oxc_span";
+ }
+ {
+ name = "oxc_syntax";
+ packageId = "oxc_syntax";
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ ];
+
+ };
+ "oxc_compat" = rec {
+ crateName = "oxc_compat";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "1imh9b6023wd3wr0bld2gxb0r888260nzp0a86z37sgcb75va1mx";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "cow-utils";
+ packageId = "cow-utils";
+ }
+ {
+ name = "oxc-browserslist";
+ packageId = "oxc-browserslist";
+ }
+ {
+ name = "oxc_syntax";
+ packageId = "oxc_syntax";
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ ];
+
+ };
+ "oxc_data_structures" = rec {
+ crateName = "oxc_data_structures";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "0m5q6snjhwm0asjrqhbjl1418a5ikfxrla14yjaf7hb9ma40j2fx";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ features = {
+ "all" = [ "assert_unchecked" "box_macros" "code_buffer" "inline_string" "rope" "slice_iter" "stack" ];
+ "code_buffer" = [ "assert_unchecked" ];
+ "inline_string" = [ "assert_unchecked" ];
+ "rope" = [ "dep:ropey" ];
+ "slice_iter" = [ "assert_unchecked" ];
+ };
+ resolvedDefaultFeatures = [ "assert_unchecked" "code_buffer" "default" "inline_string" "slice_iter" "stack" ];
+ };
+ "oxc_diagnostics" = rec {
+ crateName = "oxc_diagnostics";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "1kl3n9hwchbccgw42n9plx9nzcmm6zdrq97hz8ipzviqimahk2lv";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "cow-utils";
+ packageId = "cow-utils";
+ }
+ {
+ name = "oxc-miette";
+ packageId = "oxc-miette";
+ rename = "miette";
+ features = [ "fancy-no-syscall" ];
+ }
+ {
+ name = "percent-encoding";
+ packageId = "percent-encoding";
+ }
+ ];
+
+ };
+ "oxc_ecmascript" = rec {
+ crateName = "oxc_ecmascript";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "0rkj636xz0y2hwxrb7ffmw0za31bap7kjgciaikalrn23k72w060";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "cow-utils";
+ packageId = "cow-utils";
+ }
+ {
+ name = "num-bigint";
+ packageId = "num-bigint";
+ }
+ {
+ name = "num-traits";
+ packageId = "num-traits";
+ }
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ }
+ {
+ name = "oxc_ast";
+ packageId = "oxc_ast";
+ }
+ {
+ name = "oxc_span";
+ packageId = "oxc_span";
+ }
+ {
+ name = "oxc_syntax";
+ packageId = "oxc_syntax";
+ features = [ "to_js_string" ];
+ }
+ ];
+
+ };
+ "oxc_estree" = rec {
+ crateName = "oxc_estree";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "0jd6gyzpqrlk740n4vqlpb0kc4pmja2d65ig4p5hrgqhgr5v51dg";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ features = {
+ "serialize" = [ "dep:oxc_data_structures" "dep:itoa" "dep:dragonbox_ecma" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "oxc_index" = rec {
+ crateName = "oxc_index";
+ version = "4.1.0";
+ edition = "2024";
+ sha256 = "0avc8488591cj2l34xjmjmzbn3j1kxyanph20fbyq9wnk4h62gpb";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "nonmax";
+ packageId = "nonmax";
+ optional = true;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ }
+ ];
+ features = {
+ "nonmax" = [ "dep:nonmax" ];
+ "rayon" = [ "dep:rayon" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "nonmax" "serde" ];
+ };
+ "oxc_mangler" = rec {
+ crateName = "oxc_mangler";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "07fx24d90sr1wxzwmwxc98sysnsxfpiyppvy6i3rb07hf4ciwxgv";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "itertools";
+ packageId = "itertools 0.14.0";
+ }
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ features = [ "bitset" ];
+ }
+ {
+ name = "oxc_ast";
+ packageId = "oxc_ast";
+ }
+ {
+ name = "oxc_data_structures";
+ packageId = "oxc_data_structures";
+ features = [ "inline_string" ];
+ }
+ {
+ name = "oxc_index";
+ packageId = "oxc_index";
+ features = [ "nonmax" "serde" ];
+ }
+ {
+ name = "oxc_semantic";
+ packageId = "oxc_semantic";
+ }
+ {
+ name = "oxc_span";
+ packageId = "oxc_span";
+ }
+ {
+ name = "oxc_syntax";
+ packageId = "oxc_syntax";
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ ];
+
+ };
+ "oxc_minifier" = rec {
+ crateName = "oxc_minifier";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "0k2s0q1m4lrzmfcqw30n66p69qfi1066pxgb7rhgk9pgdfiwldp8";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "cow-utils";
+ packageId = "cow-utils";
+ }
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ }
+ {
+ name = "oxc_ast";
+ packageId = "oxc_ast";
+ }
+ {
+ name = "oxc_ast_visit";
+ packageId = "oxc_ast_visit";
+ }
+ {
+ name = "oxc_codegen";
+ packageId = "oxc_codegen";
+ }
+ {
+ name = "oxc_compat";
+ packageId = "oxc_compat";
+ }
+ {
+ name = "oxc_data_structures";
+ packageId = "oxc_data_structures";
+ features = [ "stack" ];
+ }
+ {
+ name = "oxc_ecmascript";
+ packageId = "oxc_ecmascript";
+ }
+ {
+ name = "oxc_index";
+ packageId = "oxc_index";
+ features = [ "nonmax" "serde" ];
+ }
+ {
+ name = "oxc_mangler";
+ packageId = "oxc_mangler";
+ }
+ {
+ name = "oxc_parser";
+ packageId = "oxc_parser";
+ features = [ "regular_expression" ];
+ }
+ {
+ name = "oxc_regular_expression";
+ packageId = "oxc_regular_expression";
+ }
+ {
+ name = "oxc_semantic";
+ packageId = "oxc_semantic";
+ }
+ {
+ name = "oxc_span";
+ packageId = "oxc_span";
+ }
+ {
+ name = "oxc_syntax";
+ packageId = "oxc_syntax";
+ }
+ {
+ name = "oxc_traverse";
+ packageId = "oxc_traverse";
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "oxc_parser";
+ packageId = "oxc_parser";
+ features = [ "regular_expression" ];
+ }
+ ];
+
+ };
+ "oxc_parser" = rec {
+ crateName = "oxc_parser";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "0n41hljdg0v26v9salnxhjr9nw7sga29y47p3r3vqfzj7ywhlwzv";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "cow-utils";
+ packageId = "cow-utils";
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ }
+ {
+ name = "num-bigint";
+ packageId = "num-bigint";
+ }
+ {
+ name = "num-traits";
+ packageId = "num-traits";
+ }
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ }
+ {
+ name = "oxc_ast";
+ packageId = "oxc_ast";
+ }
+ {
+ name = "oxc_data_structures";
+ packageId = "oxc_data_structures";
+ features = [ "assert_unchecked" ];
+ }
+ {
+ name = "oxc_diagnostics";
+ packageId = "oxc_diagnostics";
+ }
+ {
+ name = "oxc_ecmascript";
+ packageId = "oxc_ecmascript";
+ }
+ {
+ name = "oxc_regular_expression";
+ packageId = "oxc_regular_expression";
+ optional = true;
+ }
+ {
+ name = "oxc_span";
+ packageId = "oxc_span";
+ }
+ {
+ name = "oxc_syntax";
+ packageId = "oxc_syntax";
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ {
+ name = "seq-macro";
+ packageId = "seq-macro";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "oxc_ast";
+ packageId = "oxc_ast";
+ features = [ "serialize" ];
+ }
+ ];
+ features = {
+ "default" = [ "regular_expression" ];
+ "regular_expression" = [ "dep:oxc_regular_expression" ];
+ };
+ resolvedDefaultFeatures = [ "default" "regular_expression" ];
+ };
+ "oxc_regular_expression" = rec {
+ crateName = "oxc_regular_expression";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "0iipm16f95yi2sx510l5n0hfazla22y7nvz5b9azxc736lqgrfi7";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ }
+ {
+ name = "oxc_ast_macros";
+ packageId = "oxc_ast_macros";
+ }
+ {
+ name = "oxc_diagnostics";
+ packageId = "oxc_diagnostics";
+ }
+ {
+ name = "oxc_span";
+ packageId = "oxc_span";
+ }
+ {
+ name = "phf";
+ packageId = "phf 0.13.1";
+ features = [ "macros" ];
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ {
+ name = "unicode-id-start";
+ packageId = "unicode-id-start";
+ }
+ ];
+
+ };
+ "oxc_semantic" = rec {
+ crateName = "oxc_semantic";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "1q6swfny3zwk9rnra99j7kz4ai89vz482v7s3wfqx8kmp6h5z3jp";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "itertools";
+ packageId = "itertools 0.14.0";
+ }
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ }
+ {
+ name = "oxc_ast";
+ packageId = "oxc_ast";
+ }
+ {
+ name = "oxc_ast_visit";
+ packageId = "oxc_ast_visit";
+ }
+ {
+ name = "oxc_data_structures";
+ packageId = "oxc_data_structures";
+ features = [ "assert_unchecked" ];
+ }
+ {
+ name = "oxc_diagnostics";
+ packageId = "oxc_diagnostics";
+ }
+ {
+ name = "oxc_ecmascript";
+ packageId = "oxc_ecmascript";
+ }
+ {
+ name = "oxc_index";
+ packageId = "oxc_index";
+ features = [ "nonmax" "serde" ];
+ }
+ {
+ name = "oxc_span";
+ packageId = "oxc_span";
+ }
+ {
+ name = "oxc_syntax";
+ packageId = "oxc_syntax";
+ }
+ {
+ name = "phf";
+ packageId = "phf 0.13.1";
+ features = [ "macros" ];
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ {
+ name = "self_cell";
+ packageId = "self_cell";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "phf";
+ packageId = "phf 0.13.1";
+ features = [ "macros" ];
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ ];
+ features = {
+ "cfg" = [ "dep:oxc_cfg" ];
+ "serialize" = [ "oxc_span/serialize" "oxc_syntax/serialize" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "oxc_sourcemap" = rec {
+ crateName = "oxc_sourcemap";
+ version = "6.0.1";
+ edition = "2024";
+ sha256 = "18x3dzkw97w81jx4crxf6k9m6nppxqw4wjb76c9zmwi5s2xiv01n";type = [ "lib" "cdylib" ];
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64-simd";
+ packageId = "base64-simd 0.8.0";
+ }
+ {
+ name = "json-escape-simd";
+ packageId = "json-escape-simd";
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ ];
+ features = {
+ "codspeed" = [ "criterion2/codspeed" ];
+ "napi" = [ "dep:napi" "dep:napi-derive" "dep:napi-build" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "oxc_span" = rec {
+ crateName = "oxc_span";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "1wrv0k42xs5vr7bmdc7kg2syx4hp0lfv2ajypsk72zz2xkhky93i";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "compact_str";
+ packageId = "compact_str";
+ }
+ {
+ name = "oxc-miette";
+ packageId = "oxc-miette";
+ rename = "miette";
+ features = [ "fancy-no-syscall" ];
+ }
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ }
+ {
+ name = "oxc_ast_macros";
+ packageId = "oxc_ast_macros";
+ }
+ {
+ name = "oxc_estree";
+ packageId = "oxc_estree";
+ }
+ ];
+ features = {
+ "schemars" = [ "dep:schemars" ];
+ "serialize" = [ "compact_str/serde" "dep:serde" "oxc_estree/serialize" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "oxc_syntax" = rec {
+ crateName = "oxc_syntax";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "0d4nsq0lgqimn3paqcr77q6hpfcgdymb47x70h8135ylbrarxjck";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "cow-utils";
+ packageId = "cow-utils";
+ }
+ {
+ name = "dragonbox_ecma";
+ packageId = "dragonbox_ecma";
+ optional = true;
+ }
+ {
+ name = "nonmax";
+ packageId = "nonmax";
+ }
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ }
+ {
+ name = "oxc_ast_macros";
+ packageId = "oxc_ast_macros";
+ }
+ {
+ name = "oxc_data_structures";
+ packageId = "oxc_data_structures";
+ features = [ "assert_unchecked" ];
+ }
+ {
+ name = "oxc_estree";
+ packageId = "oxc_estree";
+ }
+ {
+ name = "oxc_index";
+ packageId = "oxc_index";
+ features = [ "nonmax" "serde" ];
+ }
+ {
+ name = "oxc_span";
+ packageId = "oxc_span";
+ }
+ {
+ name = "phf";
+ packageId = "phf 0.13.1";
+ features = [ "macros" ];
+ }
+ {
+ name = "unicode-id-start";
+ packageId = "unicode-id-start";
+ }
+ ];
+ features = {
+ "serialize" = [ "bitflags/serde" "dep:serde" "oxc_estree/serialize" ];
+ "to_js_string" = [ "dep:dragonbox_ecma" ];
+ };
+ resolvedDefaultFeatures = [ "default" "to_js_string" ];
+ };
+ "oxc_traverse" = rec {
+ crateName = "oxc_traverse";
+ version = "0.95.0";
+ edition = "2024";
+ sha256 = "0yvvy0n9jvydm4rzn3kgf7ca3ndcri2glax0isc79x4f4ij05l38";
+ authors = [
+ "Boshen <boshenc@gmail.com>"
+ "Oxc contributors"
+ ];
+ dependencies = [
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ {
+ name = "oxc_allocator";
+ packageId = "oxc_allocator";
+ }
+ {
+ name = "oxc_ast";
+ packageId = "oxc_ast";
+ }
+ {
+ name = "oxc_ast_visit";
+ packageId = "oxc_ast_visit";
+ }
+ {
+ name = "oxc_data_structures";
+ packageId = "oxc_data_structures";
+ features = [ "stack" ];
+ }
+ {
+ name = "oxc_ecmascript";
+ packageId = "oxc_ecmascript";
+ }
+ {
+ name = "oxc_semantic";
+ packageId = "oxc_semantic";
+ }
+ {
+ name = "oxc_span";
+ packageId = "oxc_span";
+ }
+ {
+ name = "oxc_syntax";
+ packageId = "oxc_syntax";
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ ];
+
+ };
+ "parcel_selectors" = rec {
+ crateName = "parcel_selectors";
+ version = "0.28.2";
+ edition = "2021";
+ sha256 = "15m1hvl6rj8k0nkb28dlvgkkkmiviaklyhdpq4z6pjr6mpqh7zal";
+ libPath = "lib.rs";
+ authors = [
+ "The Servo Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "cssparser";
+ packageId = "cssparser 0.33.0";
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "phf";
+ packageId = "phf 0.11.3";
+ }
+ {
+ name = "precomputed-hash";
+ packageId = "precomputed-hash";
+ }
+ {
+ name = "rustc-hash";
+ packageId = "rustc-hash";
+ }
+ {
+ name = "smallvec";
+ packageId = "smallvec";
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "phf_codegen";
+ packageId = "phf_codegen 0.11.3";
+ }
+ ];
+ features = {
+ "into_owned" = [ "static-self" ];
+ "jsonschema" = [ "serde" "schemars" ];
+ "schemars" = [ "dep:schemars" ];
+ "serde" = [ "dep:serde" "smallvec/serde" ];
+ "smallvec" = [ "static-self/smallvec" ];
+ "static-self" = [ "dep:static-self" ];
+ };
+ };
+ "parcel_sourcemap" = rec {
+ crateName = "parcel_sourcemap";
+ version = "2.1.1";
+ edition = "2018";
+ sha256 = "1fsvw1mlqc5x4psj90jxrdbivq8sqvxi5zz3q2vv4s4047bp8ns8";
+ authors = [
+ "Jasper De Moor <jasperdemoor@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64-simd";
+ packageId = "base64-simd 0.7.0";
+ optional = true;
+ }
+ {
+ name = "data-url";
+ packageId = "data-url";
+ optional = true;
+ }
+ {
+ name = "rkyv";
+ packageId = "rkyv";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ features = [ "derive" ];
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ optional = true;
+ }
+ {
+ name = "vlq";
+ packageId = "vlq";
+ }
+ ];
+ features = {
+ "base64-simd" = [ "dep:base64-simd" ];
+ "data-url" = [ "dep:data-url" ];
+ "json" = [ "serde" "serde_json" "base64-simd" "data-url" ];
+ "serde" = [ "dep:serde" ];
+ "serde_json" = [ "dep:serde_json" ];
+ };
+ resolvedDefaultFeatures = [ "base64-simd" "data-url" "json" "serde" "serde_json" ];
+ };
+ "parking_lot 0.11.2" = rec {
+ crateName = "parking_lot";
+ version = "0.11.2";
+ edition = "2018";
+ sha256 = "16gzf41bxmm10x82bla8d6wfppy9ym3fxsmdjyvn61m66s0bf5vx";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "instant";
+ packageId = "instant";
+ }
+ {
+ name = "lock_api";
+ packageId = "lock_api";
+ }
+ {
+ name = "parking_lot_core";
+ packageId = "parking_lot_core 0.8.6";
+ }
+ ];
+ features = {
+ "arc_lock" = [ "lock_api/arc_lock" ];
+ "deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
+ "nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
+ "owning_ref" = [ "lock_api/owning_ref" ];
+ "serde" = [ "lock_api/serde" ];
+ "stdweb" = [ "instant/stdweb" ];
+ "wasm-bindgen" = [ "instant/wasm-bindgen" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "parking_lot 0.12.5" = rec {
+ crateName = "parking_lot";
+ version = "0.12.5";
+ edition = "2021";
+ sha256 = "06jsqh9aqmc94j2rlm8gpccilqm6bskbd67zf6ypfc0f4m9p91ck";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "lock_api";
+ packageId = "lock_api";
+ }
+ {
+ name = "parking_lot_core";
+ packageId = "parking_lot_core 0.9.12";
+ }
+ ];
+ features = {
+ "arc_lock" = [ "lock_api/arc_lock" ];
+ "deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
+ "nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
+ "owning_ref" = [ "lock_api/owning_ref" ];
+ "serde" = [ "lock_api/serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "parking_lot_core 0.8.6" = rec {
+ crateName = "parking_lot_core";
+ version = "0.8.6";
+ edition = "2018";
+ sha256 = "1p2nfcbr0b9lm9rglgm28k6mwyjwgm4knipsmqbgqaxdy3kcz8k0";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "instant";
+ packageId = "instant";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "redox_syscall";
+ packageId = "redox_syscall 0.2.16";
+ target = { target, features }: ("redox" == target."os" or null);
+ }
+ {
+ name = "smallvec";
+ packageId = "smallvec";
+ }
+ {
+ name = "winapi";
+ packageId = "winapi";
+ target = { target, features }: (target."windows" or false);
+ features = [ "winnt" "ntstatus" "minwindef" "winerror" "winbase" "errhandlingapi" "handleapi" ];
+ }
+ ];
+ features = {
+ "backtrace" = [ "dep:backtrace" ];
+ "deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ];
+ "petgraph" = [ "dep:petgraph" ];
+ "thread-id" = [ "dep:thread-id" ];
+ };
+ };
+ "parking_lot_core 0.9.12" = rec {
+ crateName = "parking_lot_core";
+ version = "0.9.12";
+ edition = "2021";
+ sha256 = "1hb4rggy70fwa1w9nb0svbyflzdc69h047482v2z3sx2hmcnh896";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "redox_syscall";
+ packageId = "redox_syscall 0.5.18";
+ target = { target, features }: ("redox" == target."os" or null);
+ }
+ {
+ name = "smallvec";
+ packageId = "smallvec";
+ }
+ {
+ name = "windows-link";
+ packageId = "windows-link";
+ target = { target, features }: (target."windows" or false);
+ }
+ ];
+ features = {
+ "backtrace" = [ "dep:backtrace" ];
+ "deadlock_detection" = [ "petgraph" "backtrace" ];
+ "petgraph" = [ "dep:petgraph" ];
+ };
+ };
+ "password-hash" = rec {
+ crateName = "password-hash";
+ version = "0.2.1";
+ edition = "2018";
+ sha256 = "10i2jp5d3cng482baqrfwz01i0p981ianjmqffpc3lh5qblx99f1";
+ libName = "password_hash";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "base64ct";
+ packageId = "base64ct";
+ }
+ {
+ name = "rand_core";
+ packageId = "rand_core 0.6.4";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "subtle";
+ packageId = "subtle";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "base64ct/alloc" ];
+ "default" = [ "rand_core" ];
+ "rand_core" = [ "dep:rand_core" ];
+ "std" = [ "alloc" "base64ct/std" ];
+ };
+ resolvedDefaultFeatures = [ "rand_core" ];
+ };
+ "pastey" = rec {
+ crateName = "pastey";
+ version = "0.1.1";
+ edition = "2018";
+ sha256 = "1v389jkifv757903flrrps67dvc6q6giwlyx3xi33hcfjmgjxyrm";
+ procMacro = true;
+ authors = [
+ "Aditya Kumar <git@adityais.dev>"
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+
+ };
+ "path-slash" = rec {
+ crateName = "path-slash";
+ version = "0.1.5";
+ edition = "2018";
+ sha256 = "15mni0f28mblwd97192c4zyyi6054yljmiqrdb6bx97ga69hk2j9";
+ libName = "path_slash";
+ authors = [
+ "rhysd <https://rhysd.github.io>"
+ ];
+
+ };
+ "pathdiff" = rec {
+ crateName = "pathdiff";
+ version = "0.2.3";
+ edition = "2018";
+ sha256 = "1lrqp4ip05df8dzldq6gb2c1sq2gs54gly8lcnv3rhav1qhwx56z";
+ authors = [
+ "Manish Goregaokar <manishsmail@gmail.com>"
+ ];
+ features = {
+ "camino" = [ "dep:camino" ];
+ };
+ };
+ "pbkdf2 0.12.2" = rec {
+ crateName = "pbkdf2";
+ version = "0.12.2";
+ edition = "2021";
+ sha256 = "1wms79jh4flpy1zi8xdp4h8ccxv4d85adc6zjagknvppc5vnmvgq";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "digest";
+ packageId = "digest 0.10.7";
+ features = [ "mac" ];
+ }
+ ];
+ features = {
+ "default" = [ "hmac" ];
+ "hmac" = [ "dep:hmac" ];
+ "parallel" = [ "rayon" "std" ];
+ "password-hash" = [ "dep:password-hash" ];
+ "rayon" = [ "dep:rayon" ];
+ "sha1" = [ "dep:sha1" ];
+ "sha2" = [ "dep:sha2" ];
+ "simple" = [ "hmac" "password-hash" "sha2" ];
+ "std" = [ "password-hash/std" ];
+ };
+ };
+ "pbkdf2 0.8.0" = rec {
+ crateName = "pbkdf2";
+ version = "0.8.0";
+ edition = "2018";
+ sha256 = "1ykgicvyjm41701mzqhrfmiz5sm5y0zwfg6csaapaqaf49a54pyr";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "base64ct";
+ packageId = "base64ct";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "crypto-mac";
+ packageId = "crypto-mac";
+ }
+ {
+ name = "hmac";
+ packageId = "hmac 0.11.0";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "password-hash";
+ packageId = "password-hash";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "rand_core" ];
+ }
+ {
+ name = "sha2";
+ packageId = "sha2 0.9.9";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "hmac";
+ packageId = "hmac 0.11.0";
+ }
+ {
+ name = "sha2";
+ packageId = "sha2 0.9.9";
+ }
+ ];
+ features = {
+ "base64ct" = [ "dep:base64ct" ];
+ "default" = [ "simple" ];
+ "hmac" = [ "dep:hmac" ];
+ "parallel" = [ "rayon" "std" ];
+ "password-hash" = [ "dep:password-hash" ];
+ "rayon" = [ "dep:rayon" ];
+ "sha1" = [ "dep:sha1" ];
+ "sha2" = [ "dep:sha2" ];
+ "simple" = [ "sha2" "hmac" "password-hash" "base64ct" ];
+ "std" = [ "password-hash/std" ];
+ };
+ resolvedDefaultFeatures = [ "base64ct" "default" "hmac" "password-hash" "sha2" "simple" ];
+ };
+ "pbkdf2 0.9.0" = rec {
+ crateName = "pbkdf2";
+ version = "0.9.0";
+ edition = "2018";
+ sha256 = "0fa7j0gdgghk64qlhzdv32yg52p0cfaz5ifhk7i4pfm1wsy98n7h";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "crypto-mac";
+ packageId = "crypto-mac";
+ }
+ ];
+ features = {
+ "default" = [ "simple" ];
+ "hmac" = [ "dep:hmac" ];
+ "parallel" = [ "rayon" "std" ];
+ "password-hash" = [ "dep:password-hash" ];
+ "rayon" = [ "dep:rayon" ];
+ "sha1" = [ "dep:sha1" ];
+ "sha2" = [ "dep:sha2" ];
+ "simple" = [ "hmac" "password-hash" "sha2" ];
+ "std" = [ "password-hash/std" ];
+ };
+ };
+ "percent-encoding" = rec {
+ crateName = "percent-encoding";
+ version = "2.3.2";
+ edition = "2018";
+ sha256 = "083jv1ai930azvawz2khv7w73xh8mnylk7i578cifndjn5y64kwv";
+ libName = "percent_encoding";
+ authors = [
+ "The rust-url developers"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "phf 0.10.1" = rec {
+ crateName = "phf";
+ version = "0.10.1";
+ edition = "2018";
+ sha256 = "0naj8n5nasv5hj5ldlva3cl6y3sv7zp3kfgqylhbrg55v3mg3fzs";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "phf_shared";
+ packageId = "phf_shared 0.10.0";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "macros" = [ "phf_macros" "proc-macro-hack" ];
+ "phf_macros" = [ "dep:phf_macros" ];
+ "proc-macro-hack" = [ "dep:proc-macro-hack" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "phf_shared/std" ];
+ "uncased" = [ "phf_shared/uncased" ];
+ "unicase" = [ "phf_shared/unicase" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "phf 0.11.3" = rec {
+ crateName = "phf";
+ version = "0.11.3";
+ edition = "2021";
+ sha256 = "0y6hxp1d48rx2434wgi5g8j1pr8s5jja29ha2b65435fh057imhz";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "phf_macros";
+ packageId = "phf_macros 0.11.3";
+ optional = true;
+ }
+ {
+ name = "phf_shared";
+ packageId = "phf_shared 0.11.3";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "macros" = [ "phf_macros" ];
+ "phf_macros" = [ "dep:phf_macros" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "phf_shared/std" ];
+ "uncased" = [ "phf_shared/uncased" ];
+ "unicase" = [ "phf_macros?/unicase" "phf_shared/unicase" ];
+ };
+ resolvedDefaultFeatures = [ "default" "macros" "phf_macros" "std" ];
+ };
+ "phf 0.13.1" = rec {
+ crateName = "phf";
+ version = "0.13.1";
+ edition = "2021";
+ sha256 = "1pzswx5gdglgjgp4azyzwyr4gh031r0kcnpqq6jblga72z3jsmn1";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "phf_macros";
+ packageId = "phf_macros 0.13.1";
+ optional = true;
+ }
+ {
+ name = "phf_shared";
+ packageId = "phf_shared 0.13.1";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "macros" = [ "phf_macros" ];
+ "phf_macros" = [ "dep:phf_macros" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "phf_shared/std" "serde?/std" ];
+ "uncased" = [ "phf_macros?/uncased" "phf_shared/uncased" ];
+ "unicase" = [ "phf_macros?/unicase" "phf_shared/unicase" ];
+ };
+ resolvedDefaultFeatures = [ "default" "macros" "phf_macros" "std" ];
+ };
+ "phf_codegen 0.10.0" = rec {
+ crateName = "phf_codegen";
+ version = "0.10.0";
+ edition = "2018";
+ sha256 = "1k8kdad9wk2d5972k6jmjki2xpdy2ky4zd19rv7ybm2dpjlc7cag";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "phf_generator";
+ packageId = "phf_generator 0.10.0";
+ }
+ {
+ name = "phf_shared";
+ packageId = "phf_shared 0.10.0";
+ }
+ ];
+
+ };
+ "phf_codegen 0.11.3" = rec {
+ crateName = "phf_codegen";
+ version = "0.11.3";
+ edition = "2021";
+ sha256 = "0si1n6zr93kzjs3wah04ikw8z6npsr39jw4dam8yi9czg2609y5f";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "phf_generator";
+ packageId = "phf_generator 0.11.3";
+ }
+ {
+ name = "phf_shared";
+ packageId = "phf_shared 0.11.3";
+ }
+ ];
+
+ };
+ "phf_generator 0.10.0" = rec {
+ crateName = "phf_generator";
+ version = "0.10.0";
+ edition = "2018";
+ crateBin = [];
+ sha256 = "1mlq6hlajsvlsx6rhw49g9ricsm017lrxmgmmbk85sxm7f4qaljx";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "phf_shared";
+ packageId = "phf_shared 0.10.0";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.8.5";
+ features = [ "small_rng" ];
+ }
+ ];
+ features = {
+ "criterion" = [ "dep:criterion" ];
+ };
+ };
+ "phf_generator 0.11.3" = rec {
+ crateName = "phf_generator";
+ version = "0.11.3";
+ edition = "2021";
+ crateBin = [];
+ sha256 = "0gc4np7s91ynrgw73s2i7iakhb4lzdv1gcyx7yhlc0n214a2701w";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "phf_shared";
+ packageId = "phf_shared 0.11.3";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.8.5";
+ usesDefaultFeatures = false;
+ features = [ "small_rng" ];
+ }
+ ];
+ features = {
+ "criterion" = [ "dep:criterion" ];
+ };
+ };
+ "phf_generator 0.13.1" = rec {
+ crateName = "phf_generator";
+ version = "0.13.1";
+ edition = "2021";
+ crateBin = [];
+ sha256 = "0dwpp11l41dy9mag4phkyyvhpf66lwbp79q3ik44wmhyfqxcwnhk";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "fastrand";
+ packageId = "fastrand";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "phf_shared";
+ packageId = "phf_shared 0.13.1";
+ usesDefaultFeatures = false;
+ }
+ ];
+
+ };
+ "phf_macros 0.11.3" = rec {
+ crateName = "phf_macros";
+ version = "0.11.3";
+ edition = "2021";
+ sha256 = "05kjfbyb439344rhmlzzw0f9bwk9fp95mmw56zs7yfn1552c0jpq";
+ procMacro = true;
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "phf_generator";
+ packageId = "phf_generator 0.11.3";
+ }
+ {
+ name = "phf_shared";
+ packageId = "phf_shared 0.11.3";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" ];
+ }
+ ];
+ features = {
+ "unicase" = [ "unicase_" "phf_shared/unicase" ];
+ "unicase_" = [ "dep:unicase_" ];
+ };
+ };
+ "phf_macros 0.13.1" = rec {
+ crateName = "phf_macros";
+ version = "0.13.1";
+ edition = "2021";
+ sha256 = "1vv9h8pr7xh18sigpvq1hxc8q9nmjmv6gdpqsp65krxiahmh6bw1";
+ procMacro = true;
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "phf_generator";
+ packageId = "phf_generator 0.13.1";
+ }
+ {
+ name = "phf_shared";
+ packageId = "phf_shared 0.13.1";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" ];
+ }
+ ];
+ features = {
+ "uncased" = [ "uncased_" "phf_shared/uncased" ];
+ "uncased_" = [ "dep:uncased_" ];
+ "unicase" = [ "unicase_" "phf_shared/unicase" ];
+ "unicase_" = [ "dep:unicase_" ];
+ };
+ };
+ "phf_shared 0.10.0" = rec {
+ crateName = "phf_shared";
+ version = "0.10.0";
+ edition = "2018";
+ sha256 = "15n02nc8yqpd8hbxngblar2g53p3nllc93d8s8ih3p5cf7bnlydn";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "siphasher";
+ packageId = "siphasher 0.3.11";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "uncased" = [ "dep:uncased" ];
+ "unicase" = [ "dep:unicase" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "phf_shared 0.11.3" = rec {
+ crateName = "phf_shared";
+ version = "0.11.3";
+ edition = "2021";
+ sha256 = "1rallyvh28jqd9i916gk5gk2igdmzlgvv5q0l3xbf3m6y8pbrsk7";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "siphasher";
+ packageId = "siphasher 1.0.1";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "uncased" = [ "dep:uncased" ];
+ "unicase" = [ "dep:unicase" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "phf_shared 0.13.1" = rec {
+ crateName = "phf_shared";
+ version = "0.13.1";
+ edition = "2021";
+ sha256 = "0rpjchnswm0x5l4mz9xqfpw0j4w68sjvyqrdrv13h7lqqmmyyzz5";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "siphasher";
+ packageId = "siphasher 1.0.1";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "uncased" = [ "dep:uncased" ];
+ "unicase" = [ "dep:unicase" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "pijul-hooks" = rec {
+ crateName = "pijul-hooks";
+ version = "0.1.2";
+ edition = "2021";
+ src = lib.cleanSourceWith { filter = sourceFilter; src = ./hooks; };
+ libName = "pijul_hooks";
+ authors = [
+ "Pierre-Étienne Meunier <pe@pijul.org>"
+ ];
+ dependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ }
+ ];
+
+ };
+ "pijul-macros" = rec {
+ crateName = "pijul-macros";
+ version = "0.5.0";
+ edition = "2018";
+ sha256 = "0r3hivav1mzpzdpk2rj8flhl4vgp2r85gdi0kw5x8r8bv0y79cy2";
+ procMacro = true;
+ libName = "pijul_macros";
+ authors = [
+ "Pierre-Étienne Meunier <pmeunier@mailbox.org>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "regex";
+ packageId = "regex";
+ }
+ {
+ name = "syn";
+ packageId = "syn 1.0.109";
+ }
+ ];
+
+ };
+ "pin-project" = rec {
+ crateName = "pin-project";
+ version = "1.1.10";
+ edition = "2021";
+ sha256 = "12kadbnfm1f43cyadw9gsbyln1cy7vj764wz5c8wxaiza3filzv7";
+ libName = "pin_project";
+ dependencies = [
+ {
+ name = "pin-project-internal";
+ packageId = "pin-project-internal";
+ }
+ ];
+
+ };
+ "pin-project-internal" = rec {
+ crateName = "pin-project-internal";
+ version = "1.1.10";
+ edition = "2021";
+ sha256 = "0qgqzfl0f4lzaz7yl5llhbg97g68r15kljzihaw9wm64z17qx4bf";
+ procMacro = true;
+ libName = "pin_project_internal";
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ usesDefaultFeatures = false;
+ features = [ "parsing" "printing" "clone-impls" "proc-macro" "full" "visit-mut" ];
+ }
+ ];
+
+ };
+ "pin-project-lite" = rec {
+ crateName = "pin-project-lite";
+ version = "0.2.16";
+ edition = "2018";
+ sha256 = "16wzc7z7dfkf9bmjin22f5282783f6mdksnr0nv0j5ym5f9gyg1v";
+ libName = "pin_project_lite";
+
+ };
+ "pin-utils" = rec {
+ crateName = "pin-utils";
+ version = "0.1.0";
+ edition = "2018";
+ sha256 = "117ir7vslsl2z1a7qzhws4pd01cg2d3338c47swjyvqv2n60v1wb";
+ libName = "pin_utils";
+ authors = [
+ "Josef Brandl <mail@josefbrandl.de>"
+ ];
+
+ };
+ "pkg-config" = rec {
+ crateName = "pkg-config";
+ version = "0.3.32";
+ edition = "2018";
+ sha256 = "0k4h3gnzs94sjb2ix6jyksacs52cf1fanpwsmlhjnwrdnp8dppby";
+ libName = "pkg_config";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+
+ };
+ "plist" = rec {
+ crateName = "plist";
+ version = "1.8.0";
+ edition = "2021";
+ sha256 = "01qyv51ljbvhjbg8mva5c802b3dzrr95y6nd23wjh52xbjhvw3kl";
+ authors = [
+ "Ed Barnard <eabarnard@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64";
+ packageId = "base64 0.22.1";
+ }
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ }
+ {
+ name = "quick-xml";
+ packageId = "quick-xml";
+ rename = "quick_xml";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ }
+ {
+ name = "time";
+ packageId = "time";
+ features = [ "parsing" "formatting" ];
+ }
+ ];
+ features = {
+ "default" = [ "serde" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "serde" ];
+ };
+ "polyval" = rec {
+ crateName = "polyval";
+ version = "0.6.2";
+ edition = "2021";
+ sha256 = "09gs56vm36ls6pyxgh06gw2875z2x77r8b2km8q28fql0q6yc7wx";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "cpufeatures";
+ packageId = "cpufeatures";
+ target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
+ }
+ {
+ name = "opaque-debug";
+ packageId = "opaque-debug";
+ }
+ {
+ name = "universal-hash";
+ packageId = "universal-hash";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "std" = [ "universal-hash/std" ];
+ "zeroize" = [ "dep:zeroize" ];
+ };
+ };
+ "portable-atomic" = rec {
+ crateName = "portable-atomic";
+ version = "1.11.1";
+ edition = "2018";
+ sha256 = "10s4cx9y3jvw0idip09ar52s2kymq8rq9a668f793shn1ar6fhpq";
+ libName = "portable_atomic";
+ features = {
+ "critical-section" = [ "dep:critical-section" ];
+ "default" = [ "fallback" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "require-cas" ];
+ };
+ "portable-atomic-util" = rec {
+ crateName = "portable-atomic-util";
+ version = "0.2.4";
+ edition = "2018";
+ sha256 = "01rmx1li07ixsx3sqg2bxqrkzk7b5n8pibwwf2589ms0s3cg18nq";
+ libName = "portable_atomic_util";
+ dependencies = [
+ {
+ name = "portable-atomic";
+ packageId = "portable-atomic";
+ usesDefaultFeatures = false;
+ features = [ "require-cas" ];
+ }
+ ];
+ features = {
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" ];
+ };
+ "postgres-derive" = rec {
+ crateName = "postgres-derive";
+ version = "0.4.7";
+ edition = "2021";
+ sha256 = "1rna7k5zxsk5sv4lkx2hwydal9bckrpi9pj91srd2w2377srdpsn";
+ procMacro = true;
+ libName = "postgres_derive";
+ authors = [
+ "Steven Fackler <sfackler@palantir.com>"
+ ];
+ dependencies = [
+ {
+ name = "heck";
+ packageId = "heck 0.5.0";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ }
+ ];
+
+ };
+ "postgres-openssl" = rec {
+ crateName = "postgres-openssl";
+ version = "0.5.2";
+ edition = "2021";
+ sha256 = "1834ln0801xaqbwv99nsszp27iszfw2nzkkqwblpc3spmmrz11lg";
+ libName = "postgres_openssl";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "openssl";
+ packageId = "openssl";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ }
+ {
+ name = "tokio-openssl";
+ packageId = "tokio-openssl";
+ }
+ {
+ name = "tokio-postgres";
+ packageId = "tokio-postgres";
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" "net" "rt" ];
+ }
+ ];
+ features = {
+ "default" = [ "runtime" ];
+ "runtime" = [ "tokio-postgres/runtime" ];
+ };
+ resolvedDefaultFeatures = [ "default" "runtime" ];
+ };
+ "postgres-protocol" = rec {
+ crateName = "postgres-protocol";
+ version = "0.6.9";
+ edition = "2021";
+ sha256 = "1m6g7zzcdj4pgw2gs3anh57ylzbabpynq9s8h23fn5mrar86bvzv";
+ libName = "postgres_protocol";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64";
+ packageId = "base64 0.22.1";
+ }
+ {
+ name = "byteorder";
+ packageId = "byteorder";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "fallible-iterator";
+ packageId = "fallible-iterator";
+ }
+ {
+ name = "hmac";
+ packageId = "hmac 0.12.1";
+ }
+ {
+ name = "md-5";
+ packageId = "md-5 0.10.6";
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.9.2";
+ }
+ {
+ name = "sha2";
+ packageId = "sha2 0.10.9";
+ }
+ {
+ name = "stringprep";
+ packageId = "stringprep";
+ }
+ ];
+ features = {
+ "getrandom" = [ "dep:getrandom" ];
+ "js" = [ "getrandom/wasm_js" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "postgres-types" = rec {
+ crateName = "postgres-types";
+ version = "0.2.11";
+ edition = "2021";
+ sha256 = "15bh03mqaclmv9jhzvrb3xdrgr1q0c6ardmfbg9ns1apq2vhaipg";
+ libName = "postgres_types";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "chrono";
+ packageId = "chrono";
+ rename = "chrono-04";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "clock" ];
+ }
+ {
+ name = "fallible-iterator";
+ packageId = "fallible-iterator";
+ }
+ {
+ name = "postgres-derive";
+ packageId = "postgres-derive";
+ optional = true;
+ }
+ {
+ name = "postgres-protocol";
+ packageId = "postgres-protocol";
+ }
+ {
+ name = "uuid";
+ packageId = "uuid";
+ rename = "uuid-1";
+ optional = true;
+ }
+ ];
+ features = {
+ "array-impls" = [ "array-init" ];
+ "array-init" = [ "dep:array-init" ];
+ "bit-vec-06" = [ "dep:bit-vec-06" ];
+ "bit-vec-07" = [ "dep:bit-vec-07" ];
+ "bit-vec-08" = [ "dep:bit-vec-08" ];
+ "chrono-04" = [ "dep:chrono-04" ];
+ "cidr-02" = [ "dep:cidr-02" ];
+ "cidr-03" = [ "dep:cidr-03" ];
+ "derive" = [ "postgres-derive" ];
+ "eui48-04" = [ "dep:eui48-04" ];
+ "eui48-1" = [ "dep:eui48-1" ];
+ "geo-types-06" = [ "dep:geo-types-06" ];
+ "geo-types-0_7" = [ "dep:geo-types-0_7" ];
+ "jiff-01" = [ "dep:jiff-01" ];
+ "jiff-02" = [ "dep:jiff-02" ];
+ "js" = [ "postgres-protocol/js" ];
+ "postgres-derive" = [ "dep:postgres-derive" ];
+ "serde-1" = [ "dep:serde-1" ];
+ "serde_json-1" = [ "dep:serde_json-1" ];
+ "smol_str-01" = [ "dep:smol_str-01" ];
+ "time-02" = [ "dep:time-02" ];
+ "time-03" = [ "dep:time-03" ];
+ "uuid-08" = [ "dep:uuid-08" ];
+ "uuid-1" = [ "dep:uuid-1" ];
+ "with-bit-vec-0_6" = [ "bit-vec-06" ];
+ "with-bit-vec-0_7" = [ "bit-vec-07" ];
+ "with-bit-vec-0_8" = [ "bit-vec-08" ];
+ "with-chrono-0_4" = [ "chrono-04" ];
+ "with-cidr-0_2" = [ "cidr-02" ];
+ "with-cidr-0_3" = [ "cidr-03" ];
+ "with-eui48-0_4" = [ "eui48-04" ];
+ "with-eui48-1" = [ "eui48-1" ];
+ "with-geo-types-0_6" = [ "geo-types-06" ];
+ "with-geo-types-0_7" = [ "geo-types-0_7" ];
+ "with-jiff-0_1" = [ "jiff-01" ];
+ "with-jiff-0_2" = [ "jiff-02" ];
+ "with-serde_json-1" = [ "serde-1" "serde_json-1" ];
+ "with-smol_str-01" = [ "smol_str-01" ];
+ "with-time-0_2" = [ "time-02" ];
+ "with-time-0_3" = [ "time-03" ];
+ "with-uuid-0_8" = [ "uuid-08" ];
+ "with-uuid-1" = [ "uuid-1" ];
+ };
+ resolvedDefaultFeatures = [ "chrono-04" "derive" "postgres-derive" "uuid-1" "with-chrono-0_4" "with-uuid-1" ];
+ };
+ "potential_utf" = rec {
+ crateName = "potential_utf";
+ version = "0.1.4";
+ edition = "2021";
+ sha256 = "0xxg0pkfpq299wvwln409z4fk80rbv55phh3f1jhjajy5x1ljfdp";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "serde_core?/alloc" "writeable/alloc" "zerovec?/alloc" ];
+ "databake" = [ "dep:databake" ];
+ "default" = [ "alloc" ];
+ "serde" = [ "dep:serde_core" ];
+ "writeable" = [ "dep:writeable" ];
+ "zerovec" = [ "dep:zerovec" ];
+ };
+ resolvedDefaultFeatures = [ "zerovec" ];
+ };
+ "powerfmt" = rec {
+ crateName = "powerfmt";
+ version = "0.2.0";
+ edition = "2021";
+ sha256 = "14ckj2xdpkhv3h6l5sdmb9f1d57z8hbfpdldjc2vl5givq2y77j3";
+ authors = [
+ "Jacob Pratt <jacob@jhpratt.dev>"
+ ];
+ features = {
+ "default" = [ "std" "macros" ];
+ "macros" = [ "dep:powerfmt-macros" ];
+ "std" = [ "alloc" ];
+ };
+ };
+ "ppv-lite86" = rec {
+ crateName = "ppv-lite86";
+ version = "0.2.21";
+ edition = "2021";
+ sha256 = "1abxx6qz5qnd43br1dd9b2savpihzjza8gb4fbzdql1gxp2f7sl5";
+ libName = "ppv_lite86";
+ authors = [
+ "The CryptoCorrosion Contributors"
+ ];
+ dependencies = [
+ {
+ name = "zerocopy";
+ packageId = "zerocopy";
+ features = [ "simd" ];
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "simd" "std" ];
+ };
+ "precomputed-hash" = rec {
+ crateName = "precomputed-hash";
+ version = "0.1.1";
+ edition = "2015";
+ sha256 = "075k9bfy39jhs53cb2fpb9klfakx2glxnf28zdw08ws6lgpq6lwj";
+ libName = "precomputed_hash";
+ authors = [
+ "Emilio Cobos Álvarez <emilio@crisal.io>"
+ ];
+
+ };
+ "prettyplease" = rec {
+ crateName = "prettyplease";
+ version = "0.2.37";
+ edition = "2021";
+ links = "prettyplease02";
+ sha256 = "0azn11i1kh0byabhsgab6kqs74zyrg69xkirzgqyhz6xmjnsi727";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ usesDefaultFeatures = false;
+ features = [ "full" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ usesDefaultFeatures = false;
+ features = [ "clone-impls" "extra-traits" "parsing" "printing" "visit-mut" ];
+ }
+ ];
+ features = {
+ "verbatim" = [ "syn/parsing" ];
+ };
+ };
+ "privdrop" = rec {
+ crateName = "privdrop";
+ version = "0.5.6";
+ edition = "2018";
+ sha256 = "03slfr61nl3zv9343qkldnp4vr8yim5vcsclily61j986xd2lwkh";
+ authors = [
+ "Frank Denis <github@pureftpd.org>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ {
+ name = "nix";
+ packageId = "nix";
+ features = [ "user" "fs" ];
+ }
+ ];
+
+ };
+ "proc-macro2" = rec {
+ crateName = "proc-macro2";
+ version = "1.0.103";
+ edition = "2021";
+ sha256 = "1s29bz20xl2qk5ffs2mbdqknaj43ri673dz86axdbf47xz25psay";
+ libName = "proc_macro2";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "unicode-ident";
+ packageId = "unicode-ident";
+ }
+ ];
+ features = {
+ "default" = [ "proc-macro" ];
+ };
+ resolvedDefaultFeatures = [ "default" "proc-macro" ];
+ };
+ "ptr_meta" = rec {
+ crateName = "ptr_meta";
+ version = "0.1.4";
+ edition = "2018";
+ sha256 = "1wd4wy0wxrcays4f1gy8gwcmxg7mskmivcv40p0hidh6xbvwqf07";
+ authors = [
+ "David Koloski <djkoloski@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "ptr_meta_derive";
+ packageId = "ptr_meta_derive";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "ptr_meta_derive" = rec {
+ crateName = "ptr_meta_derive";
+ version = "0.1.4";
+ edition = "2018";
+ sha256 = "1b69cav9wn67cixshizii0q5mlbl0lihx706vcrzm259zkdlbf0n";
+ procMacro = true;
+ authors = [
+ "David Koloski <djkoloski@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 1.0.109";
+ features = [ "full" ];
+ }
+ ];
+
+ };
+ "pulldown-cmark" = rec {
+ crateName = "pulldown-cmark";
+ version = "0.13.0";
+ edition = "2021";
+ crateBin = [];
+ sha256 = "183fg8lrdhvydrx0dmg446n108rwrvnzci0sd1ig7lkbjqdbx2qy";
+ libName = "pulldown_cmark";
+ authors = [
+ "Raph Levien <raph.levien@gmail.com>"
+ "Marcus Klaas de Vries <mail@marcusklaas.nl>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "getopts";
+ packageId = "getopts";
+ optional = true;
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ }
+ {
+ name = "pulldown-cmark-escape";
+ packageId = "pulldown-cmark-escape";
+ optional = true;
+ }
+ {
+ name = "unicase";
+ packageId = "unicase";
+ }
+ ];
+ features = {
+ "default" = [ "getopts" "html" ];
+ "getopts" = [ "dep:getopts" ];
+ "html" = [ "pulldown-cmark-escape" ];
+ "pulldown-cmark-escape" = [ "dep:pulldown-cmark-escape" ];
+ "serde" = [ "dep:serde" ];
+ "simd" = [ "pulldown-cmark-escape?/simd" ];
+ };
+ resolvedDefaultFeatures = [ "default" "getopts" "html" "pulldown-cmark-escape" ];
+ };
+ "pulldown-cmark-escape" = rec {
+ crateName = "pulldown-cmark-escape";
+ version = "0.11.0";
+ edition = "2021";
+ sha256 = "1bp13akkz52p43vh2ffpgv604l3xd9b67b4iykizidnsbpdqlz80";
+ libName = "pulldown_cmark_escape";
+ authors = [
+ "Raph Levien <raph.levien@gmail.com>"
+ "Marcus Klaas de Vries <mail@marcusklaas.nl>"
+ ];
+ features = {
+ };
+ };
+ "quick-xml" = rec {
+ crateName = "quick-xml";
+ version = "0.38.4";
+ edition = "2021";
+ sha256 = "0772siy4d9vlq77842012c8cycs3y0szxkv62rh9sh2sqmc20v5n";
+ libName = "quick_xml";
+ dependencies = [
+ {
+ name = "memchr";
+ packageId = "memchr";
+ }
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "async-tokio" = [ "tokio" ];
+ "document-features" = [ "dep:document-features" ];
+ "encoding" = [ "encoding_rs" ];
+ "encoding_rs" = [ "dep:encoding_rs" ];
+ "serde" = [ "dep:serde" ];
+ "serde-types" = [ "serde/derive" ];
+ "serialize" = [ "serde" ];
+ "tokio" = [ "dep:tokio" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "quote" = rec {
+ crateName = "quote";
+ version = "1.0.42";
+ edition = "2018";
+ sha256 = "0zq6yc7dhpap669m27rb4qfbiywxfah17z6fwvfccv3ys90wqf53";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "proc-macro" ];
+ "proc-macro" = [ "proc-macro2/proc-macro" ];
+ };
+ resolvedDefaultFeatures = [ "default" "proc-macro" ];
+ };
+ "r-efi" = rec {
+ crateName = "r-efi";
+ version = "5.3.0";
+ edition = "2018";
+ sha256 = "03sbfm3g7myvzyylff6qaxk4z6fy76yv860yy66jiswc2m6b7kb9";
+ libName = "r_efi";
+ features = {
+ "core" = [ "dep:core" ];
+ "examples" = [ "native" ];
+ "rustc-dep-of-std" = [ "core" ];
+ };
+ };
+ "r2d2" = rec {
+ crateName = "r2d2";
+ version = "0.8.10";
+ edition = "2018";
+ sha256 = "14qw32y4m564xb1f5ya8ii7dwqyknvk8bsx2r0lljlmn7zxqbpji";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "parking_lot";
+ packageId = "parking_lot 0.12.5";
+ }
+ {
+ name = "scheduled-thread-pool";
+ packageId = "scheduled-thread-pool";
+ }
+ ];
+
+ };
+ "radium" = rec {
+ crateName = "radium";
+ version = "0.7.0";
+ edition = "2018";
+ sha256 = "02cxfi3ky3c4yhyqx9axqwhyaca804ws46nn4gc1imbk94nzycyw";
+ authors = [
+ "Nika Layzell <nika@thelayzells.com>"
+ "myrrlyn <self@myrrlyn.dev>"
+ ];
+
+ };
+ "rand 0.7.3" = rec {
+ crateName = "rand";
+ version = "0.7.3";
+ edition = "2018";
+ sha256 = "00sdaimkbz491qgi6qxkv582yivl32m2jd401kzbn94vsiwicsva";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.1.16";
+ rename = "getrandom_package";
+ optional = true;
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "rand_chacha";
+ packageId = "rand_chacha 0.2.2";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!("emscripten" == target."os" or null));
+ }
+ {
+ name = "rand_core";
+ packageId = "rand_core 0.5.1";
+ }
+ {
+ name = "rand_hc";
+ packageId = "rand_hc";
+ target = { target, features }: ("emscripten" == target."os" or null);
+ }
+ ];
+ devDependencies = [
+ {
+ name = "rand_hc";
+ packageId = "rand_hc";
+ }
+ ];
+ features = {
+ "alloc" = [ "rand_core/alloc" ];
+ "default" = [ "std" ];
+ "getrandom" = [ "getrandom_package" "rand_core/getrandom" ];
+ "getrandom_package" = [ "dep:getrandom_package" ];
+ "libc" = [ "dep:libc" ];
+ "log" = [ "dep:log" ];
+ "nightly" = [ "simd_support" ];
+ "packed_simd" = [ "dep:packed_simd" ];
+ "rand_pcg" = [ "dep:rand_pcg" ];
+ "simd_support" = [ "packed_simd" ];
+ "small_rng" = [ "rand_pcg" ];
+ "std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ];
+ "stdweb" = [ "getrandom_package/stdweb" ];
+ "wasm-bindgen" = [ "getrandom_package/wasm-bindgen" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "getrandom" "getrandom_package" "libc" "std" ];
+ };
+ "rand 0.8.5" = rec {
+ crateName = "rand";
+ version = "0.8.5";
+ edition = "2018";
+ sha256 = "013l6931nn7gkc23jz5mm3qdhf93jjf0fg64nz2lp4i51qd8vbrl";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "rand_chacha";
+ packageId = "rand_chacha 0.3.1";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rand_core";
+ packageId = "rand_core 0.6.4";
+ }
+ ];
+ features = {
+ "alloc" = [ "rand_core/alloc" ];
+ "default" = [ "std" "std_rng" ];
+ "getrandom" = [ "rand_core/getrandom" ];
+ "libc" = [ "dep:libc" ];
+ "log" = [ "dep:log" ];
+ "packed_simd" = [ "dep:packed_simd" ];
+ "rand_chacha" = [ "dep:rand_chacha" ];
+ "serde" = [ "dep:serde" ];
+ "serde1" = [ "serde" "rand_core/serde1" ];
+ "simd_support" = [ "packed_simd" ];
+ "std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ];
+ "std_rng" = [ "rand_chacha" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "getrandom" "libc" "rand_chacha" "small_rng" "std" "std_rng" ];
+ };
+ "rand 0.9.2" = rec {
+ crateName = "rand";
+ version = "0.9.2";
+ edition = "2021";
+ sha256 = "1lah73ainvrgl7brcxx0pwhpnqa3sm3qaj672034jz8i0q7pgckd";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "rand_chacha";
+ packageId = "rand_chacha 0.9.0";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rand_core";
+ packageId = "rand_core 0.9.3";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" "std_rng" "os_rng" "small_rng" "thread_rng" ];
+ "log" = [ "dep:log" ];
+ "os_rng" = [ "rand_core/os_rng" ];
+ "serde" = [ "dep:serde" "rand_core/serde" ];
+ "std" = [ "rand_core/std" "rand_chacha?/std" "alloc" ];
+ "std_rng" = [ "dep:rand_chacha" ];
+ "thread_rng" = [ "std" "std_rng" "os_rng" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "os_rng" "small_rng" "std" "std_rng" "thread_rng" ];
+ };
+ "rand_chacha 0.2.2" = rec {
+ crateName = "rand_chacha";
+ version = "0.2.2";
+ edition = "2018";
+ sha256 = "00il36fkdbsmpr99p9ksmmp6dn1md7rmnwmz0rr77jbrca2yvj7l";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ "The CryptoCorrosion Contributors"
+ ];
+ dependencies = [
+ {
+ name = "ppv-lite86";
+ packageId = "ppv-lite86";
+ usesDefaultFeatures = false;
+ features = [ "simd" ];
+ }
+ {
+ name = "rand_core";
+ packageId = "rand_core 0.5.1";
+ }
+ ];
+ features = {
+ "default" = [ "std" "simd" ];
+ "std" = [ "ppv-lite86/std" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "rand_chacha 0.3.1" = rec {
+ crateName = "rand_chacha";
+ version = "0.3.1";
+ edition = "2018";
+ sha256 = "123x2adin558xbhvqb8w4f6syjsdkmqff8cxwhmjacpsl1ihmhg6";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ "The CryptoCorrosion Contributors"
+ ];
+ dependencies = [
+ {
+ name = "ppv-lite86";
+ packageId = "ppv-lite86";
+ usesDefaultFeatures = false;
+ features = [ "simd" ];
+ }
+ {
+ name = "rand_core";
+ packageId = "rand_core 0.6.4";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "serde1" = [ "serde" ];
+ "std" = [ "ppv-lite86/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "rand_chacha 0.9.0" = rec {
+ crateName = "rand_chacha";
+ version = "0.9.0";
+ edition = "2021";
+ sha256 = "1jr5ygix7r60pz0s1cv3ms1f6pd1i9pcdmnxzzhjc3zn3mgjn0nk";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ "The CryptoCorrosion Contributors"
+ ];
+ dependencies = [
+ {
+ name = "ppv-lite86";
+ packageId = "ppv-lite86";
+ usesDefaultFeatures = false;
+ features = [ "simd" ];
+ }
+ {
+ name = "rand_core";
+ packageId = "rand_core 0.9.3";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "rand_core";
+ packageId = "rand_core 0.9.3";
+ features = [ "os_rng" ];
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "os_rng" = [ "rand_core/os_rng" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "ppv-lite86/std" "rand_core/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "rand_core 0.5.1" = rec {
+ crateName = "rand_core";
+ version = "0.5.1";
+ edition = "2018";
+ sha256 = "06bdvx08v3rkz451cm7z59xwwqn1rkfh6v9ay77b14f8dwlybgch";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.1.16";
+ optional = true;
+ }
+ ];
+ features = {
+ "getrandom" = [ "dep:getrandom" ];
+ "serde" = [ "dep:serde" ];
+ "serde1" = [ "serde" ];
+ "std" = [ "alloc" "getrandom" "getrandom/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ];
+ };
+ "rand_core 0.6.4" = rec {
+ crateName = "rand_core";
+ version = "0.6.4";
+ edition = "2018";
+ sha256 = "0b4j2v4cb5krak1pv6kakv4sz6xcwbrmy2zckc32hsigbrwy82zc";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.2.16";
+ optional = true;
+ }
+ ];
+ features = {
+ "getrandom" = [ "dep:getrandom" ];
+ "serde" = [ "dep:serde" ];
+ "serde1" = [ "serde" ];
+ "std" = [ "alloc" "getrandom" "getrandom/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ];
+ };
+ "rand_core 0.9.3" = rec {
+ crateName = "rand_core";
+ version = "0.9.3";
+ edition = "2021";
+ sha256 = "0f3xhf16yks5ic6kmgxcpv1ngdhp48mmfy4ag82i1wnwh8ws3ncr";
+ authors = [
+ "The Rand Project Developers"
+ "The Rust Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.3.4";
+ optional = true;
+ }
+ ];
+ features = {
+ "os_rng" = [ "dep:getrandom" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "getrandom?/std" ];
+ };
+ resolvedDefaultFeatures = [ "os_rng" "std" ];
+ };
+ "rand_hc" = rec {
+ crateName = "rand_hc";
+ version = "0.2.0";
+ edition = "2018";
+ sha256 = "0g31sqwpmsirdlwr0svnacr4dbqyz339im4ssl9738cjgfpjjcfa";
+ authors = [
+ "The Rand Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "rand_core";
+ packageId = "rand_core 0.5.1";
+ }
+ ];
+
+ };
+ "rayon" = rec {
+ crateName = "rayon";
+ version = "1.11.0";
+ edition = "2021";
+ sha256 = "13x5fxb7rn4j2yw0cr26n7782jkc7rjzmdkg42qxk3xz0p8033rn";
+ dependencies = [
+ {
+ name = "either";
+ packageId = "either";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rayon-core";
+ packageId = "rayon-core";
+ }
+ ];
+ features = {
+ "web_spin_lock" = [ "dep:wasm_sync" "rayon-core/web_spin_lock" ];
+ };
+ };
+ "rayon-core" = rec {
+ crateName = "rayon-core";
+ version = "1.13.0";
+ edition = "2021";
+ links = "rayon-core";
+ sha256 = "14dbr0sq83a6lf1rfjq5xdpk5r6zgzvmzs5j6110vlv2007qpq92";
+ libName = "rayon_core";
+ dependencies = [
+ {
+ name = "crossbeam-deque";
+ packageId = "crossbeam-deque";
+ }
+ {
+ name = "crossbeam-utils";
+ packageId = "crossbeam-utils";
+ }
+ ];
+ features = {
+ "web_spin_lock" = [ "dep:wasm_sync" ];
+ };
+ };
+ "redox_syscall 0.2.16" = rec {
+ crateName = "redox_syscall";
+ version = "0.2.16";
+ edition = "2018";
+ sha256 = "16jicm96kjyzm802cxdd1k9jmcph0db1a4lhslcnhjsvhp0mhnpv";
+ libName = "syscall";
+ authors = [
+ "Jeremy Soller <jackpot51@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 1.3.2";
+ }
+ ];
+
+ };
+ "redox_syscall 0.5.18" = rec {
+ crateName = "redox_syscall";
+ version = "0.5.18";
+ edition = "2021";
+ sha256 = "0b9n38zsxylql36vybw18if68yc9jczxmbyzdwyhb9sifmag4azd";
+ libName = "syscall";
+ authors = [
+ "Jeremy Soller <jackpot51@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ ];
+ features = {
+ "core" = [ "dep:core" ];
+ "default" = [ "userspace" ];
+ "rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "userspace" ];
+ };
+ "redox_users" = rec {
+ crateName = "redox_users";
+ version = "0.4.6";
+ edition = "2021";
+ sha256 = "0hya2cxx6hxmjfxzv9n8rjl5igpychav7zfi1f81pz6i4krry05s";
+ authors = [
+ "Jose Narvaez <goyox86@gmail.com>"
+ "Wesley Hershberger <mggmugginsmc@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.2.16";
+ features = [ "std" ];
+ }
+ {
+ name = "libredox";
+ packageId = "libredox";
+ usesDefaultFeatures = false;
+ features = [ "std" "call" ];
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 1.0.69";
+ }
+ ];
+ features = {
+ "auth" = [ "rust-argon2" "zeroize" ];
+ "default" = [ "auth" ];
+ "rust-argon2" = [ "dep:rust-argon2" ];
+ "zeroize" = [ "dep:zeroize" ];
+ };
+ };
+ "regex" = rec {
+ crateName = "regex";
+ version = "1.12.2";
+ edition = "2021";
+ sha256 = "1m14zkg6xmkb0q5ah3y39cmggclsjdr1wpxfa4kf5wvm3wcw0fw4";
+ authors = [
+ "The Rust Project Developers"
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "aho-corasick";
+ packageId = "aho-corasick";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "regex-automata";
+ packageId = "regex-automata";
+ usesDefaultFeatures = false;
+ features = [ "alloc" "syntax" "meta" "nfa-pikevm" ];
+ }
+ {
+ name = "regex-syntax";
+ packageId = "regex-syntax";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" "perf" "unicode" "regex-syntax/default" ];
+ "logging" = [ "aho-corasick?/logging" "memchr?/logging" "regex-automata/logging" ];
+ "perf" = [ "perf-cache" "perf-dfa" "perf-onepass" "perf-backtrack" "perf-inline" "perf-literal" ];
+ "perf-backtrack" = [ "regex-automata/nfa-backtrack" ];
+ "perf-dfa" = [ "regex-automata/hybrid" ];
+ "perf-dfa-full" = [ "regex-automata/dfa-build" "regex-automata/dfa-search" ];
+ "perf-inline" = [ "regex-automata/perf-inline" ];
+ "perf-literal" = [ "dep:aho-corasick" "dep:memchr" "regex-automata/perf-literal" ];
+ "perf-onepass" = [ "regex-automata/dfa-onepass" ];
+ "std" = [ "aho-corasick?/std" "memchr?/std" "regex-automata/std" "regex-syntax/std" ];
+ "unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "regex-automata/unicode" "regex-syntax/unicode" ];
+ "unicode-age" = [ "regex-automata/unicode-age" "regex-syntax/unicode-age" ];
+ "unicode-bool" = [ "regex-automata/unicode-bool" "regex-syntax/unicode-bool" ];
+ "unicode-case" = [ "regex-automata/unicode-case" "regex-syntax/unicode-case" ];
+ "unicode-gencat" = [ "regex-automata/unicode-gencat" "regex-syntax/unicode-gencat" ];
+ "unicode-perl" = [ "regex-automata/unicode-perl" "regex-automata/unicode-word-boundary" "regex-syntax/unicode-perl" ];
+ "unicode-script" = [ "regex-automata/unicode-script" "regex-syntax/unicode-script" ];
+ "unicode-segment" = [ "regex-automata/unicode-segment" "regex-syntax/unicode-segment" ];
+ "unstable" = [ "pattern" ];
+ "use_std" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "perf" "perf-backtrack" "perf-cache" "perf-dfa" "perf-inline" "perf-literal" "perf-onepass" "std" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
+ };
+ "regex-automata" = rec {
+ crateName = "regex-automata";
+ version = "0.4.13";
+ edition = "2021";
+ sha256 = "070z0j23pjfidqz0z89id1fca4p572wxpcr20a0qsv68bbrclxjj";
+ libName = "regex_automata";
+ authors = [
+ "The Rust Project Developers"
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "aho-corasick";
+ packageId = "aho-corasick";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "regex-syntax";
+ packageId = "regex-syntax";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" "syntax" "perf" "unicode" "meta" "nfa" "dfa" "hybrid" ];
+ "dfa" = [ "dfa-build" "dfa-search" "dfa-onepass" ];
+ "dfa-build" = [ "nfa-thompson" "dfa-search" ];
+ "dfa-onepass" = [ "nfa-thompson" ];
+ "hybrid" = [ "alloc" "nfa-thompson" ];
+ "internal-instrument" = [ "internal-instrument-pikevm" ];
+ "internal-instrument-pikevm" = [ "logging" "std" ];
+ "logging" = [ "dep:log" "aho-corasick?/logging" "memchr?/logging" ];
+ "meta" = [ "syntax" "nfa-pikevm" ];
+ "nfa" = [ "nfa-thompson" "nfa-pikevm" "nfa-backtrack" ];
+ "nfa-backtrack" = [ "nfa-thompson" ];
+ "nfa-pikevm" = [ "nfa-thompson" ];
+ "nfa-thompson" = [ "alloc" ];
+ "perf" = [ "perf-inline" "perf-literal" ];
+ "perf-literal" = [ "perf-literal-substring" "perf-literal-multisubstring" ];
+ "perf-literal-multisubstring" = [ "dep:aho-corasick" ];
+ "perf-literal-substring" = [ "aho-corasick?/perf-literal" "dep:memchr" ];
+ "std" = [ "regex-syntax?/std" "memchr?/std" "aho-corasick?/std" "alloc" ];
+ "syntax" = [ "dep:regex-syntax" "alloc" ];
+ "unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" "regex-syntax?/unicode" ];
+ "unicode-age" = [ "regex-syntax?/unicode-age" ];
+ "unicode-bool" = [ "regex-syntax?/unicode-bool" ];
+ "unicode-case" = [ "regex-syntax?/unicode-case" ];
+ "unicode-gencat" = [ "regex-syntax?/unicode-gencat" ];
+ "unicode-perl" = [ "regex-syntax?/unicode-perl" ];
+ "unicode-script" = [ "regex-syntax?/unicode-script" ];
+ "unicode-segment" = [ "regex-syntax?/unicode-segment" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "dfa-build" "dfa-onepass" "dfa-search" "hybrid" "meta" "nfa" "nfa-backtrack" "nfa-pikevm" "nfa-thompson" "perf" "perf-inline" "perf-literal" "perf-literal-multisubstring" "perf-literal-substring" "std" "syntax" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" ];
+ };
+ "regex-syntax" = rec {
+ crateName = "regex-syntax";
+ version = "0.8.8";
+ edition = "2021";
+ sha256 = "0n7ggnpk0r32rzgnycy5xrc1yp2kq19m6pz98ch3c6dkaxw9hbbs";
+ libName = "regex_syntax";
+ authors = [
+ "The Rust Project Developers"
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "default" = [ "std" "unicode" ];
+ "unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
+ };
+ "rend" = rec {
+ crateName = "rend";
+ version = "0.4.2";
+ edition = "2018";
+ sha256 = "0z4rrkycva0lcw0hxq479h4amxj9syn5vq4vb2qid5v2ylj3izki";
+ authors = [
+ "David Koloski <djkoloski@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytecheck";
+ packageId = "bytecheck";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "bytecheck" = [ "dep:bytecheck" ];
+ "bytemuck" = [ "dep:bytemuck" ];
+ "default" = [ "std" ];
+ "std" = [ "bytecheck/std" ];
+ "validation" = [ "bytecheck" ];
+ };
+ resolvedDefaultFeatures = [ "bytecheck" "std" ];
+ };
+ "replication" = rec {
+ crateName = "replication";
+ version = "0.1.0";
+ edition = "2021";
+ src = lib.cleanSourceWith { filter = sourceFilter; src = ./replication; };
+ authors = [
+ "Pierre-Étienne Meunier <pmeunier@mailbox.org>"
+ ];
+ dependencies = [
+ {
+ name = "bincode";
+ packageId = "bincode 2.0.1";
+ }
+ {
+ name = "byteorder";
+ packageId = "byteorder";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "clap";
+ packageId = "clap";
+ }
+ {
+ name = "deadpool-postgres";
+ packageId = "deadpool-postgres";
+ }
+ {
+ name = "env_logger";
+ packageId = "env_logger";
+ }
+ {
+ name = "futures";
+ packageId = "futures";
+ }
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ }
+ {
+ name = "lazy_static";
+ packageId = "lazy_static";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ {
+ name = "libpijul";
+ packageId = "libpijul";
+ features = [ "tarball" ];
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "memmap";
+ packageId = "memmap";
+ }
+ {
+ name = "openssl";
+ packageId = "openssl";
+ }
+ {
+ name = "postgres-openssl";
+ packageId = "postgres-openssl";
+ }
+ {
+ name = "postgres-types";
+ packageId = "postgres-types";
+ features = [ "derive" ];
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.9.2";
+ }
+ {
+ name = "regex";
+ packageId = "regex";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 2.0.17";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "net" "time" "rt-multi-thread" "macros" "io-util" "fs" "sync" "signal" ];
+ }
+ {
+ name = "tokio-openssl";
+ packageId = "tokio-openssl";
+ }
+ {
+ name = "tokio-postgres";
+ packageId = "tokio-postgres";
+ features = [ "with-uuid-1" "with-chrono-0_4" ];
+ }
+ {
+ name = "toml";
+ packageId = "toml 0.9.8";
+ }
+ {
+ name = "uuid";
+ packageId = "uuid";
+ features = [ "v4" "serde" ];
+ }
+ {
+ name = "webpki";
+ packageId = "webpki";
+ }
+ ];
+
+ };
+ "reqwest" = rec {
+ crateName = "reqwest";
+ version = "0.12.24";
+ edition = "2021";
+ sha256 = "0vx3f2n6hfnv81y66v5wayrqh6jlzz4gakky88m0hywz1d0lc2cx";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64";
+ packageId = "base64 0.22.1";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "encoding_rs";
+ packageId = "encoding_rs";
+ optional = true;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "h2";
+ packageId = "h2 0.4.12";
+ optional = true;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body 1.0.1";
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "http-body-util";
+ packageId = "http-body-util";
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "hyper";
+ packageId = "hyper 1.8.1";
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ features = [ "http1" "client" ];
+ }
+ {
+ name = "hyper-rustls";
+ packageId = "hyper-rustls";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ features = [ "http1" "tls12" ];
+ }
+ {
+ name = "hyper-tls";
+ packageId = "hyper-tls 0.6.0";
+ optional = true;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "hyper-util";
+ packageId = "hyper-util";
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ features = [ "http1" "client" "client-legacy" "client-proxy" "tokio" ];
+ }
+ {
+ name = "js-sys";
+ packageId = "js-sys";
+ target = { target, features }: ("wasm32" == target."arch" or null);
+ }
+ {
+ name = "log";
+ packageId = "log";
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "mime";
+ packageId = "mime";
+ optional = true;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "native-tls";
+ packageId = "native-tls";
+ rename = "native-tls-crate";
+ optional = true;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "percent-encoding";
+ packageId = "percent-encoding";
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "rustls-pki-types";
+ packageId = "rustls-pki-types";
+ optional = true;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ features = [ "std" ];
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ optional = true;
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ target = { target, features }: ("wasm32" == target."arch" or null);
+ }
+ {
+ name = "serde_urlencoded";
+ packageId = "serde_urlencoded";
+ }
+ {
+ name = "sync_wrapper";
+ packageId = "sync_wrapper";
+ features = [ "futures" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ features = [ "net" "time" ];
+ }
+ {
+ name = "tokio-native-tls";
+ packageId = "tokio-native-tls";
+ optional = true;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ features = [ "retry" "timeout" "util" ];
+ }
+ {
+ name = "tower-http";
+ packageId = "tower-http";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ features = [ "follow-redirect" ];
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "url";
+ packageId = "url";
+ }
+ {
+ name = "wasm-bindgen";
+ packageId = "wasm-bindgen";
+ target = { target, features }: ("wasm32" == target."arch" or null);
+ }
+ {
+ name = "wasm-bindgen-futures";
+ packageId = "wasm-bindgen-futures";
+ target = { target, features }: ("wasm32" == target."arch" or null);
+ }
+ {
+ name = "web-sys";
+ packageId = "web-sys";
+ target = { target, features }: ("wasm32" == target."arch" or null);
+ features = [ "AbortController" "AbortSignal" "Headers" "Request" "RequestInit" "RequestMode" "Response" "Window" "FormData" "Blob" "BlobPropertyBag" "ServiceWorkerGlobalScope" "RequestCredentials" "File" "ReadableStream" "RequestCache" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "hyper";
+ packageId = "hyper 1.8.1";
+ usesDefaultFeatures = false;
+ target = {target, features}: (!("wasm32" == target."arch" or null));
+ features = [ "http1" "http2" "client" "server" ];
+ }
+ {
+ name = "hyper-util";
+ packageId = "hyper-util";
+ target = {target, features}: (!("wasm32" == target."arch" or null));
+ features = [ "http1" "http2" "client" "client-legacy" "server-auto" "server-graceful" "tokio" ];
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ target = {target, features}: (!("wasm32" == target."arch" or null));
+ features = [ "derive" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ usesDefaultFeatures = false;
+ target = {target, features}: (!("wasm32" == target."arch" or null));
+ features = [ "macros" "rt-multi-thread" ];
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ usesDefaultFeatures = false;
+ features = [ "limit" ];
+ }
+ {
+ name = "wasm-bindgen";
+ packageId = "wasm-bindgen";
+ target = {target, features}: ("wasm32" == target."arch" or null);
+ features = [ "serde-serialize" ];
+ }
+ ];
+ features = {
+ "__rustls" = [ "dep:hyper-rustls" "dep:tokio-rustls" "dep:rustls" "__tls" ];
+ "__rustls-ring" = [ "hyper-rustls?/ring" "tokio-rustls?/ring" "rustls?/ring" "quinn?/ring" ];
+ "__tls" = [ "dep:rustls-pki-types" "tokio/io-util" ];
+ "blocking" = [ "dep:futures-channel" "futures-channel?/sink" "dep:futures-util" "futures-util?/io" "futures-util?/sink" "tokio/sync" ];
+ "brotli" = [ "dep:async-compression" "async-compression?/brotli" "dep:futures-util" "dep:tokio-util" ];
+ "charset" = [ "dep:encoding_rs" "dep:mime" ];
+ "cookies" = [ "dep:cookie_crate" "dep:cookie_store" ];
+ "default" = [ "default-tls" "charset" "http2" "system-proxy" ];
+ "default-tls" = [ "dep:hyper-tls" "dep:native-tls-crate" "__tls" "dep:tokio-native-tls" ];
+ "deflate" = [ "dep:async-compression" "async-compression?/zlib" "dep:futures-util" "dep:tokio-util" ];
+ "gzip" = [ "dep:async-compression" "async-compression?/gzip" "dep:futures-util" "dep:tokio-util" ];
+ "h2" = [ "dep:h2" ];
+ "hickory-dns" = [ "dep:hickory-resolver" "dep:once_cell" ];
+ "http2" = [ "h2" "hyper/http2" "hyper-util/http2" "hyper-rustls?/http2" ];
+ "http3" = [ "rustls-tls-manual-roots" "dep:h3" "dep:h3-quinn" "dep:quinn" "tokio/macros" ];
+ "json" = [ "dep:serde_json" ];
+ "macos-system-configuration" = [ "system-proxy" ];
+ "multipart" = [ "dep:mime_guess" "dep:futures-util" ];
+ "native-tls" = [ "default-tls" ];
+ "native-tls-alpn" = [ "native-tls" "native-tls-crate?/alpn" "hyper-tls?/alpn" ];
+ "native-tls-vendored" = [ "native-tls" "native-tls-crate?/vendored" ];
+ "rustls-tls" = [ "rustls-tls-webpki-roots" ];
+ "rustls-tls-manual-roots" = [ "rustls-tls-manual-roots-no-provider" "__rustls-ring" ];
+ "rustls-tls-manual-roots-no-provider" = [ "__rustls" ];
+ "rustls-tls-native-roots" = [ "rustls-tls-native-roots-no-provider" "__rustls-ring" ];
+ "rustls-tls-native-roots-no-provider" = [ "dep:rustls-native-certs" "hyper-rustls?/native-tokio" "__rustls" ];
+ "rustls-tls-no-provider" = [ "rustls-tls-manual-roots-no-provider" ];
+ "rustls-tls-webpki-roots" = [ "rustls-tls-webpki-roots-no-provider" "__rustls-ring" ];
+ "rustls-tls-webpki-roots-no-provider" = [ "dep:webpki-roots" "hyper-rustls?/webpki-tokio" "__rustls" ];
+ "stream" = [ "tokio/fs" "dep:futures-util" "dep:tokio-util" "dep:wasm-streams" ];
+ "system-proxy" = [ "hyper-util/client-proxy-system" ];
+ "zstd" = [ "dep:async-compression" "async-compression?/zstd" "dep:futures-util" "dep:tokio-util" ];
+ };
+ resolvedDefaultFeatures = [ "__tls" "charset" "default" "default-tls" "h2" "http2" "system-proxy" ];
+ };
+ "ring" = rec {
+ crateName = "ring";
+ version = "0.17.14";
+ edition = "2021";
+ links = "ring_core_0_17_14_";
+ sha256 = "1dw32gv19ccq4hsx3ribhpdzri1vnrlcfqb2vj41xn4l49n9ws54";
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.2.16";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: ((("aarch64" == target."arch" or null) && ("little" == target."endian" or null)) && ("apple" == target."vendor" or null) && (("ios" == target."os" or null) || ("macos" == target."os" or null) || ("tvos" == target."os" or null) || ("visionos" == target."os" or null) || ("watchos" == target."os" or null)));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (((("aarch64" == target."arch" or null) && ("little" == target."endian" or null)) || (("arm" == target."arch" or null) && ("little" == target."endian" or null))) && (("android" == target."os" or null) || ("linux" == target."os" or null)));
+ }
+ {
+ name = "untrusted";
+ packageId = "untrusted";
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.52.0";
+ target = { target, features }: ((("aarch64" == target."arch" or null) && ("little" == target."endian" or null)) && ("windows" == target."os" or null));
+ features = [ "Win32_Foundation" "Win32_System_Threading" ];
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "cc";
+ packageId = "cc";
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = {target, features}: ((target."unix" or false) || (target."windows" or false) || ("wasi" == target."os" or null));
+ }
+ ];
+ features = {
+ "default" = [ "alloc" "dev_urandom_fallback" ];
+ "std" = [ "alloc" ];
+ "wasm32_unknown_unknown_js" = [ "getrandom/js" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" ];
+ };
+ "rkyv" = rec {
+ crateName = "rkyv";
+ version = "0.7.45";
+ edition = "2021";
+ sha256 = "16vp6m4sq41smhvym8ijy4id1hr3vm4na7wy4bc63qdrhmiws24h";
+ authors = [
+ "David Koloski <djkoloski@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitvec";
+ packageId = "bitvec";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "bytecheck";
+ packageId = "bytecheck";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "hashbrown";
+ packageId = "hashbrown 0.12.3";
+ optional = true;
+ }
+ {
+ name = "ptr_meta";
+ packageId = "ptr_meta";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rend";
+ packageId = "rend";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rkyv_derive";
+ packageId = "rkyv_derive";
+ }
+ {
+ name = "seahash";
+ packageId = "seahash";
+ }
+ {
+ name = "tinyvec";
+ packageId = "tinyvec";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "uuid";
+ packageId = "uuid";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "hashbrown" "bitvec?/alloc" "tinyvec?/alloc" ];
+ "arbitrary_enum_discriminant" = [ "rkyv_derive/arbitrary_enum_discriminant" ];
+ "archive_be" = [ "rend" "rkyv_derive/archive_be" ];
+ "archive_le" = [ "rend" "rkyv_derive/archive_le" ];
+ "arrayvec" = [ "dep:arrayvec" ];
+ "bitvec" = [ "dep:bitvec" ];
+ "bytecheck" = [ "dep:bytecheck" ];
+ "bytes" = [ "dep:bytes" ];
+ "copy" = [ "rkyv_derive/copy" ];
+ "default" = [ "size_32" "std" ];
+ "hashbrown" = [ "dep:hashbrown" ];
+ "indexmap" = [ "dep:indexmap" ];
+ "rend" = [ "dep:rend" ];
+ "smallvec" = [ "dep:smallvec" ];
+ "smol_str" = [ "dep:smol_str" ];
+ "std" = [ "alloc" "bytecheck?/std" "ptr_meta/std" "rend?/std" "uuid?/std" "bytes?/std" ];
+ "strict" = [ "rkyv_derive/strict" ];
+ "tinyvec" = [ "dep:tinyvec" ];
+ "uuid" = [ "dep:uuid" "bytecheck?/uuid" ];
+ "validation" = [ "alloc" "bytecheck" "rend/validation" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "hashbrown" "size_32" "std" ];
+ };
+ "rkyv_derive" = rec {
+ crateName = "rkyv_derive";
+ version = "0.7.45";
+ edition = "2021";
+ sha256 = "1h1jwmyivx7g88d41gzcjrqnax98m9algjd49hx0laqab4kisgah";
+ procMacro = true;
+ authors = [
+ "David Koloski <djkoloski@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 1.0.109";
+ }
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "rusoto_core" = rec {
+ crateName = "rusoto_core";
+ version = "0.48.0";
+ edition = "2018";
+ sha256 = "18ig9x4n68cgfvhzkyhl9w2qlhk945xczbb9c8r52dd79ss0vcqx";
+ authors = [
+ "Anthony DiMarco <ocramida@gmail.com>"
+ "Jimmy Cuadra <jimmy@jimmycuadra.com>"
+ "Matthew Mayer <matthewkmayer@gmail.com>"
+ "Nikita Pekin <contact@nikitapek.in>"
+ ];
+ dependencies = [
+ {
+ name = "async-trait";
+ packageId = "async-trait";
+ }
+ {
+ name = "base64";
+ packageId = "base64 0.13.1";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "crc32fast";
+ packageId = "crc32fast";
+ }
+ {
+ name = "futures";
+ packageId = "futures";
+ }
+ {
+ name = "http";
+ packageId = "http 0.2.12";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper 0.14.32";
+ features = [ "client" "http1" "http2" "tcp" ];
+ }
+ {
+ name = "hyper-tls";
+ packageId = "hyper-tls 0.5.0";
+ optional = true;
+ }
+ {
+ name = "lazy_static";
+ packageId = "lazy_static";
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "rusoto_credential";
+ packageId = "rusoto_credential";
+ }
+ {
+ name = "rusoto_signature";
+ packageId = "rusoto_signature";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "time" "io-util" ];
+ }
+ {
+ name = "xml-rs";
+ packageId = "xml-rs";
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "rustc_version";
+ packageId = "rustc_version";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" ];
+ }
+ ];
+ features = {
+ "default" = [ "native-tls" ];
+ "encoding" = [ "flate2" ];
+ "flate2" = [ "dep:flate2" ];
+ "hyper-rustls" = [ "dep:hyper-rustls" ];
+ "hyper-tls" = [ "dep:hyper-tls" ];
+ "native-tls" = [ "hyper-tls" ];
+ "nightly-testing" = [ "rusoto_credential/nightly-testing" ];
+ "rustls" = [ "hyper-rustls/native-tokio" ];
+ "rustls-webpki" = [ "hyper-rustls/webpki-tokio" ];
+ };
+ resolvedDefaultFeatures = [ "default" "hyper-tls" "native-tls" ];
+ };
+ "rusoto_credential" = rec {
+ crateName = "rusoto_credential";
+ version = "0.48.0";
+ edition = "2018";
+ sha256 = "019dq3aq6hnfg4xvxdfsnrba08dwvciz0km4nr3n1basvc9nq2pf";
+ authors = [
+ "Anthony DiMarco <ocramida@gmail.com>"
+ "Jimmy Cuadra <jimmy@jimmycuadra.com>"
+ "Matthew Mayer <matthewkmayer@gmail.com>"
+ "Nikita Pekin <contact@nikitapek.in>"
+ ];
+ dependencies = [
+ {
+ name = "async-trait";
+ packageId = "async-trait";
+ }
+ {
+ name = "chrono";
+ packageId = "chrono";
+ usesDefaultFeatures = false;
+ features = [ "clock" "serde" ];
+ }
+ {
+ name = "dirs-next";
+ packageId = "dirs-next";
+ }
+ {
+ name = "futures";
+ packageId = "futures";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper 0.14.32";
+ features = [ "client" "http1" "tcp" "stream" ];
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ {
+ name = "shlex";
+ packageId = "shlex";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "process" "sync" "time" ];
+ }
+ {
+ name = "zeroize";
+ packageId = "zeroize";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" "rt-multi-thread" ];
+ }
+ ];
+ features = {
+ };
+ };
+ "rusoto_ses" = rec {
+ crateName = "rusoto_ses";
+ version = "0.48.0";
+ edition = "2018";
+ sha256 = "1k86fiyxip6mjkh7zbbc49rdbqy2qqvi52hr8vs3zfgar0d60rf3";
+ authors = [
+ "Anthony DiMarco <ocramida@gmail.com>"
+ "Jimmy Cuadra <jimmy@jimmycuadra.com>"
+ "Matthew Mayer <matthewkmayer@gmail.com>"
+ "Nikita Pekin <contact@nikitapek.in>"
+ ];
+ dependencies = [
+ {
+ name = "async-trait";
+ packageId = "async-trait";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "futures";
+ packageId = "futures";
+ }
+ {
+ name = "rusoto_core";
+ packageId = "rusoto_core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde_urlencoded";
+ packageId = "serde_urlencoded";
+ }
+ {
+ name = "xml-rs";
+ packageId = "xml-rs";
+ }
+ ];
+ features = {
+ "default" = [ "native-tls" ];
+ "deserialize_structs" = [ "bytes/serde" "serde" "serde_derive" ];
+ "native-tls" = [ "rusoto_core/native-tls" ];
+ "rustls" = [ "rusoto_core/rustls" ];
+ "serde" = [ "dep:serde" ];
+ "serde_derive" = [ "dep:serde_derive" ];
+ "serialize_structs" = [ "bytes/serde" "serde" "serde_derive" ];
+ };
+ resolvedDefaultFeatures = [ "default" "native-tls" ];
+ };
+ "rusoto_signature" = rec {
+ crateName = "rusoto_signature";
+ version = "0.48.0";
+ edition = "2018";
+ sha256 = "0wjjn3n3a01xxc1kdwqkrbw6zkgc4w8ia6r93s9lfj4b3i4rbbm5";
+ authors = [
+ "Anthony DiMarco <ocramida@gmail.com>"
+ "Jimmy Cuadra <jimmy@jimmycuadra.com>"
+ "Matthew Mayer <matthewkmayer@gmail.com>"
+ "Nikita Pekin <contact@nikitapek.in>"
+ ];
+ dependencies = [
+ {
+ name = "base64";
+ packageId = "base64 0.13.1";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "chrono";
+ packageId = "chrono";
+ usesDefaultFeatures = false;
+ features = [ "clock" ];
+ }
+ {
+ name = "digest";
+ packageId = "digest 0.9.0";
+ }
+ {
+ name = "futures";
+ packageId = "futures";
+ }
+ {
+ name = "hex";
+ packageId = "hex";
+ }
+ {
+ name = "hmac";
+ packageId = "hmac 0.11.0";
+ }
+ {
+ name = "http";
+ packageId = "http 0.2.12";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper 0.14.32";
+ features = [ "stream" ];
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "md-5";
+ packageId = "md-5 0.9.1";
+ }
+ {
+ name = "percent-encoding";
+ packageId = "percent-encoding";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "rusoto_credential";
+ packageId = "rusoto_credential";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "sha2";
+ packageId = "sha2 0.9.9";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" "rt-multi-thread" ];
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "rustc_version";
+ packageId = "rustc_version";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "io-util" ];
+ }
+ ];
+
+ };
+ "rustc-hash" = rec {
+ crateName = "rustc-hash";
+ version = "2.1.1";
+ edition = "2021";
+ sha256 = "03gz5lvd9ghcwsal022cgkq67dmimcgdjghfb5yb5d352ga06xrm";
+ libName = "rustc_hash";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "rand" = [ "dep:rand" "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "rustc_version" = rec {
+ crateName = "rustc_version";
+ version = "0.4.1";
+ edition = "2018";
+ sha256 = "14lvdsmr5si5qbqzrajgb6vfn69k0sfygrvfvr2mps26xwi3mjyg";
+ dependencies = [
+ {
+ name = "semver";
+ packageId = "semver";
+ }
+ ];
+
+ };
+ "rusticata-macros" = rec {
+ crateName = "rusticata-macros";
+ version = "4.1.0";
+ edition = "2018";
+ sha256 = "0ch67lljmgl5pfrlb90bl5kkp2x6yby1qaxnpnd0p5g9xjkc9w7s";
+ libName = "rusticata_macros";
+ authors = [
+ "Pierre Chifflier <chifflier@wzdftpd.net>"
+ ];
+ dependencies = [
+ {
+ name = "nom";
+ packageId = "nom 7.1.3";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ ];
+
+ };
+ "rustix" = rec {
+ crateName = "rustix";
+ version = "1.1.2";
+ edition = "2021";
+ sha256 = "0gpz343xfzx16x82s1x336n0kr49j02cvhgxdvaq86jmqnigh5fd";
+ authors = [
+ "Dan Gohman <dev@sunfishcode.online>"
+ "Jakub Konka <kubkon@jakubkonka.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "errno";
+ packageId = "errno";
+ rename = "libc_errno";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
+ }
+ {
+ name = "errno";
+ packageId = "errno";
+ rename = "libc_errno";
+ usesDefaultFeatures = false;
+ target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
+ }
+ {
+ name = "errno";
+ packageId = "errno";
+ rename = "libc_errno";
+ usesDefaultFeatures = false;
+ target = { target, features }: (target."windows" or false);
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
+ }
+ {
+ name = "linux-raw-sys";
+ packageId = "linux-raw-sys";
+ usesDefaultFeatures = false;
+ target = { target, features }: ((("linux" == target."os" or null)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
+ features = [ "general" "ioctl" "no_std" ];
+ }
+ {
+ name = "linux-raw-sys";
+ packageId = "linux-raw-sys";
+ usesDefaultFeatures = false;
+ target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
+ features = [ "auxvec" "general" "errno" "ioctl" "no_std" "elf" ];
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.61.2";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_Foundation" "Win32_Networking_WinSock" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "errno";
+ packageId = "errno";
+ rename = "libc_errno";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ ];
+ features = {
+ "all-apis" = [ "event" "fs" "io_uring" "mm" "mount" "net" "param" "pipe" "process" "pty" "rand" "runtime" "shm" "stdio" "system" "termios" "thread" "time" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "std" ];
+ "io_uring" = [ "event" "fs" "net" "thread" "linux-raw-sys/io_uring" ];
+ "libc" = [ "dep:libc" ];
+ "libc_errno" = [ "dep:libc_errno" ];
+ "linux_5_1" = [ "linux_4_11" ];
+ "linux_5_11" = [ "linux_5_1" ];
+ "linux_latest" = [ "linux_5_11" ];
+ "net" = [ "linux-raw-sys/net" "linux-raw-sys/netlink" "linux-raw-sys/if_ether" "linux-raw-sys/xdp" ];
+ "process" = [ "linux-raw-sys/prctl" ];
+ "pty" = [ "fs" ];
+ "runtime" = [ "linux-raw-sys/prctl" ];
+ "rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" ];
+ "rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
+ "shm" = [ "fs" ];
+ "std" = [ "bitflags/std" "alloc" "libc?/std" "libc_errno?/std" ];
+ "system" = [ "linux-raw-sys/system" ];
+ "thread" = [ "linux-raw-sys/prctl" ];
+ "use-libc" = [ "libc_errno" "libc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "fs" "std" ];
+ };
+ "rustls" = rec {
+ crateName = "rustls";
+ version = "0.23.35";
+ edition = "2021";
+ sha256 = "13xxk2qqchibd7pr0laqq6pzayx9xm4rb45d8rz68kvxday58gsk";
+ dependencies = [
+ {
+ name = "aws-lc-rs";
+ packageId = "aws-lc-rs";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ usesDefaultFeatures = false;
+ features = [ "alloc" "race" ];
+ }
+ {
+ name = "rustls-pki-types";
+ packageId = "rustls-pki-types";
+ rename = "pki-types";
+ features = [ "alloc" ];
+ }
+ {
+ name = "rustls-webpki";
+ packageId = "rustls-webpki";
+ rename = "webpki";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "subtle";
+ packageId = "subtle";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zeroize";
+ packageId = "zeroize";
+ }
+ ];
+ features = {
+ "aws-lc-rs" = [ "aws_lc_rs" ];
+ "aws_lc_rs" = [ "dep:aws-lc-rs" "webpki/aws-lc-rs" "aws-lc-rs/aws-lc-sys" "aws-lc-rs/prebuilt-nasm" ];
+ "brotli" = [ "dep:brotli" "dep:brotli-decompressor" "std" ];
+ "default" = [ "aws_lc_rs" "logging" "prefer-post-quantum" "std" "tls12" ];
+ "fips" = [ "aws_lc_rs" "aws-lc-rs?/fips" "webpki/aws-lc-rs-fips" ];
+ "hashbrown" = [ "dep:hashbrown" ];
+ "log" = [ "dep:log" ];
+ "logging" = [ "log" ];
+ "prefer-post-quantum" = [ "aws_lc_rs" ];
+ "read_buf" = [ "rustversion" "std" ];
+ "ring" = [ "dep:ring" "webpki/ring" ];
+ "rustversion" = [ "dep:rustversion" ];
+ "std" = [ "webpki/std" "pki-types/std" "once_cell/std" ];
+ "zlib" = [ "dep:zlib-rs" ];
+ };
+ resolvedDefaultFeatures = [ "aws-lc-rs" "aws_lc_rs" "std" "tls12" ];
+ };
+ "rustls-pemfile" = rec {
+ crateName = "rustls-pemfile";
+ version = "2.2.0";
+ edition = "2018";
+ sha256 = "0l3f3mrfkgdjrava7ibwzgwc4h3dljw3pdkbsi9rkwz3zvji9qyw";
+ libName = "rustls_pemfile";
+ dependencies = [
+ {
+ name = "rustls-pki-types";
+ packageId = "rustls-pki-types";
+ rename = "pki-types";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "pki-types/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "rustls-pki-types" = rec {
+ crateName = "rustls-pki-types";
+ version = "1.13.0";
+ edition = "2021";
+ sha256 = "0yjzsnpv1sjbnfxbbmrnyimd23jip48nav6l9hr1rjd06vcjl64l";
+ libName = "rustls_pki_types";
+ dependencies = [
+ {
+ name = "zeroize";
+ packageId = "zeroize";
+ optional = true;
+ }
+ ];
+ features = {
+ "alloc" = [ "dep:zeroize" ];
+ "default" = [ "alloc" ];
+ "std" = [ "alloc" ];
+ "web" = [ "web-time" ];
+ "web-time" = [ "dep:web-time" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "rustls-webpki" = rec {
+ crateName = "rustls-webpki";
+ version = "0.103.8";
+ edition = "2021";
+ sha256 = "0lpymb84bi5d2pm017n39nbiaa5cd046hgz06ir29ql6a8pzmz9g";
+ libName = "webpki";
+ dependencies = [
+ {
+ name = "aws-lc-rs";
+ packageId = "aws-lc-rs";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "ring";
+ packageId = "ring";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rustls-pki-types";
+ packageId = "rustls-pki-types";
+ rename = "pki-types";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "untrusted";
+ packageId = "untrusted";
+ }
+ ];
+ features = {
+ "alloc" = [ "ring?/alloc" "pki-types/alloc" ];
+ "aws-lc-rs" = [ "dep:aws-lc-rs" "aws-lc-rs/aws-lc-sys" "aws-lc-rs/prebuilt-nasm" ];
+ "aws-lc-rs-fips" = [ "dep:aws-lc-rs" "aws-lc-rs/fips" ];
+ "aws-lc-rs-unstable" = [ "aws-lc-rs" "aws-lc-rs/unstable" ];
+ "default" = [ "std" ];
+ "ring" = [ "dep:ring" ];
+ "std" = [ "alloc" "pki-types/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "aws-lc-rs" "std" ];
+ };
+ "rustversion" = rec {
+ crateName = "rustversion";
+ version = "1.0.22";
+ edition = "2018";
+ sha256 = "0vfl70jhv72scd9rfqgr2n11m5i9l1acnk684m2w83w0zbqdx75k";
+ procMacro = true;
+ build = "build/build.rs";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+
+ };
+ "ryu" = rec {
+ crateName = "ryu";
+ version = "1.0.20";
+ edition = "2018";
+ sha256 = "07s855l8sb333h6bpn24pka5sp7hjk2w667xy6a0khkf6sqv5lr8";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ features = {
+ "no-panic" = [ "dep:no-panic" ];
+ };
+ };
+ "same-file" = rec {
+ crateName = "same-file";
+ version = "1.0.6";
+ edition = "2018";
+ sha256 = "00h5j1w87dmhnvbv9l8bic3y7xxsnjmssvifw2ayvgx9mb1ivz4k";
+ libName = "same_file";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "winapi-util";
+ packageId = "winapi-util";
+ target = { target, features }: (target."windows" or false);
+ }
+ ];
+
+ };
+ "sanakirja" = rec {
+ crateName = "sanakirja";
+ version = "1.4.3";
+ edition = "2018";
+ sha256 = "04bdmhs3y35w3ip265mm4yiyf2493vcizl04kwh248af0q6zgal1";
+ authors = [
+ "Pierre-Étienne Meunier"
+ ];
+ dependencies = [
+ {
+ name = "crc32fast";
+ packageId = "crc32fast";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "fs2";
+ packageId = "fs2";
+ optional = true;
+ }
+ {
+ name = "lazy_static";
+ packageId = "lazy_static";
+ optional = true;
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "memmap2";
+ packageId = "memmap2";
+ optional = true;
+ }
+ {
+ name = "parking_lot";
+ packageId = "parking_lot 0.11.2";
+ }
+ {
+ name = "sanakirja-core";
+ packageId = "sanakirja-core";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 1.0.69";
+ }
+ ];
+ features = {
+ "crc32" = [ "crc32fast" "lazy_static" "sanakirja-core/crc32" ];
+ "crc32fast" = [ "dep:crc32fast" ];
+ "default" = [ "mmap" ];
+ "ed25519" = [ "sanakirja-core/ed25519" ];
+ "fs2" = [ "dep:fs2" ];
+ "lazy_static" = [ "dep:lazy_static" ];
+ "memmap2" = [ "dep:memmap2" ];
+ "mmap" = [ "memmap2" "fs2" ];
+ "std" = [ "sanakirja-core/std" ];
+ "uuid" = [ "sanakirja-core/uuid" ];
+ };
+ resolvedDefaultFeatures = [ "crc32" "crc32fast" "default" "fs2" "lazy_static" "memmap2" "mmap" ];
+ };
+ "sanakirja-core" = rec {
+ crateName = "sanakirja-core";
+ version = "1.4.1";
+ edition = "2018";
+ crateBin = [];
+ sha256 = "1xcb4d9gaxp61na4dyz9iiq3n1shhiivqs0iv5xnxb1ymqsdnxl3";
+ libName = "sanakirja_core";
+ authors = [
+ "Pierre-Étienne Meunier"
+ "Florent Becker"
+ ];
+ dependencies = [
+ {
+ name = "crc32fast";
+ packageId = "crc32fast";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "crc32" = [ "crc32fast" ];
+ "crc32fast" = [ "dep:crc32fast" ];
+ "ed25519" = [ "ed25519-zebra" "ed25519-zebra/serde" ];
+ "ed25519-zebra" = [ "dep:ed25519-zebra" ];
+ "sha2" = [ "dep:sha2" ];
+ "typeids" = [ "sha2" ];
+ "uuid" = [ "dep:uuid" ];
+ };
+ resolvedDefaultFeatures = [ "crc32" "crc32fast" ];
+ };
+ "schannel" = rec {
+ crateName = "schannel";
+ version = "0.1.28";
+ edition = "2018";
+ sha256 = "1qb6s5gyxfz2inz753a4z3mc1d266mwvz0c5w7ppd3h44swq27c9";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ "Steffen Butzer <steffen.butzer@outlook.com>"
+ ];
+ dependencies = [
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.61.2";
+ features = [ "Win32_Foundation" "Win32_Security_Cryptography" "Win32_Security_Authentication_Identity" "Win32_Security_Credentials" "Win32_System_LibraryLoader" "Win32_System_Memory" "Win32_System_SystemInformation" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.61.2";
+ features = [ "Win32_System_SystemInformation" "Win32_System_Time" ];
+ }
+ ];
+
+ };
+ "scheduled-thread-pool" = rec {
+ crateName = "scheduled-thread-pool";
+ version = "0.2.7";
+ edition = "2018";
+ sha256 = "068s77f9xcpvzl70nsxk8750dzzc6f9pixajhd979815cj0ndg1w";
+ libName = "scheduled_thread_pool";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "parking_lot";
+ packageId = "parking_lot 0.12.5";
+ }
+ ];
+
+ };
+ "scoped-futures" = rec {
+ crateName = "scoped-futures";
+ version = "0.1.4";
+ edition = "2021";
+ sha256 = "14ch6bc4bn56lqkrnsanwz2i37b60h6fzmg9b7rk0rb3s3ial90v";
+ libName = "scoped_futures";
+ dependencies = [
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "scopeguard" = rec {
+ crateName = "scopeguard";
+ version = "1.2.0";
+ edition = "2015";
+ sha256 = "0jcz9sd47zlsgcnm1hdw0664krxwb5gczlif4qngj2aif8vky54l";
+ authors = [
+ "bluss"
+ ];
+ features = {
+ "default" = [ "use_std" ];
+ };
+ };
+ "seahash" = rec {
+ crateName = "seahash";
+ version = "4.1.0";
+ edition = "2015";
+ sha256 = "0sxsb64np6bvnppjz5hg4rqpnkczhsl8w8kf2a5lr1c08xppn40w";
+ authors = [
+ "ticki <ticki@users.noreply.github.com>"
+ "Tom Almeida <tom@tommoa.me>"
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "security-framework" = rec {
+ crateName = "security-framework";
+ version = "2.11.1";
+ edition = "2021";
+ sha256 = "00ldclwx78dm61v7wkach9lcx76awlrv0fdgjdwch4dmy12j4yw9";
+ libName = "security_framework";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ "Kornel <kornel@geekhood.net>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "core-foundation";
+ packageId = "core-foundation";
+ }
+ {
+ name = "core-foundation-sys";
+ packageId = "core-foundation-sys";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ {
+ name = "security-framework-sys";
+ packageId = "security-framework-sys";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "OSX_10_10" = [ "OSX_10_9" "security-framework-sys/OSX_10_10" ];
+ "OSX_10_11" = [ "OSX_10_10" "security-framework-sys/OSX_10_11" ];
+ "OSX_10_12" = [ "OSX_10_11" "security-framework-sys/OSX_10_12" ];
+ "OSX_10_13" = [ "OSX_10_12" "security-framework-sys/OSX_10_13" "alpn" "session-tickets" "serial-number-bigint" ];
+ "OSX_10_14" = [ "OSX_10_13" "security-framework-sys/OSX_10_14" ];
+ "OSX_10_15" = [ "OSX_10_14" "security-framework-sys/OSX_10_15" ];
+ "OSX_10_9" = [ "security-framework-sys/OSX_10_9" ];
+ "default" = [ "OSX_10_12" ];
+ "log" = [ "dep:log" ];
+ "serial-number-bigint" = [ "dep:num-bigint" ];
+ };
+ resolvedDefaultFeatures = [ "OSX_10_10" "OSX_10_11" "OSX_10_12" "OSX_10_9" "default" ];
+ };
+ "security-framework-sys" = rec {
+ crateName = "security-framework-sys";
+ version = "2.15.0";
+ edition = "2021";
+ sha256 = "1h6mijxnfrwvl1y4dzwn3m877j6dqp9qn3g37i954j5czazhq7yc";
+ libName = "security_framework_sys";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ "Kornel <kornel@geekhood.net>"
+ ];
+ dependencies = [
+ {
+ name = "core-foundation-sys";
+ packageId = "core-foundation-sys";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ ];
+ features = {
+ "OSX_10_10" = [ "OSX_10_9" ];
+ "OSX_10_11" = [ "OSX_10_10" ];
+ "OSX_10_12" = [ "OSX_10_11" ];
+ "OSX_10_13" = [ "OSX_10_12" ];
+ "OSX_10_14" = [ "OSX_10_13" ];
+ "OSX_10_15" = [ "OSX_10_14" ];
+ "default" = [ "OSX_10_12" ];
+ };
+ resolvedDefaultFeatures = [ "OSX_10_10" "OSX_10_11" "OSX_10_12" "OSX_10_9" "default" ];
+ };
+ "self_cell" = rec {
+ crateName = "self_cell";
+ version = "1.2.1";
+ edition = "2018";
+ sha256 = "0czb22p9c35lyy5r2kh82qyclqmc3l2xw7mp454xnzjp8chzihhn";
+ authors = [
+ "Lukas Bergdoll <lukas.bergdoll@gmail.com>"
+ ];
+ features = {
+ "old_rust" = [ "rustversion" ];
+ "rustversion" = [ "dep:rustversion" ];
+ };
+ };
+ "semver" = rec {
+ crateName = "semver";
+ version = "1.0.27";
+ edition = "2018";
+ sha256 = "1qmi3akfrnqc2hfkdgcxhld5bv961wbk8my3ascv5068mc5fnryp";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "seq-macro" = rec {
+ crateName = "seq-macro";
+ version = "0.3.6";
+ edition = "2018";
+ sha256 = "1k4sshn0x2i6a9g97sy5jl7ghlqgmmh3n76aj3rrjwxy1x0i3iqv";
+ procMacro = true;
+ libName = "seq_macro";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+
+ };
+ "serde" = rec {
+ crateName = "serde";
+ version = "1.0.228";
+ edition = "2021";
+ sha256 = "17mf4hhjxv5m90g42wmlbc61hdhlm6j9hwfkpcnd72rpgzm993ls";
+ authors = [
+ "Erick Tryzelaar <erick.tryzelaar@gmail.com>"
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "serde_core";
+ packageId = "serde_core";
+ usesDefaultFeatures = false;
+ features = [ "result" ];
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ optional = true;
+ }
+ ];
+ features = {
+ "alloc" = [ "serde_core/alloc" ];
+ "default" = [ "std" ];
+ "derive" = [ "serde_derive" ];
+ "rc" = [ "serde_core/rc" ];
+ "serde_derive" = [ "dep:serde_derive" ];
+ "std" = [ "serde_core/std" ];
+ "unstable" = [ "serde_core/unstable" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "derive" "serde_derive" "std" ];
+ };
+ "serde-content" = rec {
+ crateName = "serde-content";
+ version = "0.1.2";
+ edition = "2021";
+ sha256 = "1ih9np0g2byfkgh12bpgr6457ib3bras6ik11g895yjhyc2cllrp";
+ libName = "serde_content";
+ authors = [
+ "rushmorem <rushmore@surrealdb.com>"
+ ];
+ dependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ ];
+ features = {
+ "default" = [ "std" "derive" ];
+ "derive" = [ "serde/derive" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "derive" "serde" "std" ];
+ };
+ "serde_bytes" = rec {
+ crateName = "serde_bytes";
+ version = "0.11.19";
+ edition = "2018";
+ sha256 = "1a1y1v0r9akqyvprxnmpgc0i8wybqqpvgi01mi8qxn3rkrq41m55";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ usesDefaultFeatures = false;
+ target = { target, features }: false;
+ }
+ {
+ name = "serde_core";
+ packageId = "serde_core";
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ ];
+ features = {
+ "alloc" = [ "serde_core/alloc" ];
+ "default" = [ "std" ];
+ "std" = [ "serde_core/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "serde_cbor_2" = rec {
+ crateName = "serde_cbor_2";
+ version = "0.13.0";
+ edition = "2021";
+ sha256 = "0b28infkbbcr8xfxngzvr5ispav7x54diawhf03qw1z9kmqc5bil";
+ authors = [
+ "William Brown <william@blackhats.net.au>"
+ "James Hodgkinson <james@terminaloutcomes.com>"
+ ];
+ dependencies = [
+ {
+ name = "half";
+ packageId = "half";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "serde/alloc" ];
+ "default" = [ "std" ];
+ "std" = [ "serde/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "serde_core" = rec {
+ crateName = "serde_core";
+ version = "1.0.228";
+ edition = "2021";
+ sha256 = "1bb7id2xwx8izq50098s5j2sqrrvk31jbbrjqygyan6ask3qbls1";
+ authors = [
+ "Erick Tryzelaar <erick.tryzelaar@gmail.com>"
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ target = { target, features }: false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ }
+ ];
+ features = {
+ "default" = [ "std" "result" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "result" "std" ];
+ };
+ "serde_derive" = rec {
+ crateName = "serde_derive";
+ version = "1.0.228";
+ edition = "2021";
+ sha256 = "0y8xm7fvmr2kjcd029g9fijpndh8csv5m20g4bd76w8qschg4h6m";
+ procMacro = true;
+ authors = [
+ "Erick Tryzelaar <erick.tryzelaar@gmail.com>"
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ usesDefaultFeatures = false;
+ features = [ "proc-macro" ];
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ usesDefaultFeatures = false;
+ features = [ "proc-macro" ];
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ usesDefaultFeatures = false;
+ features = [ "clone-impls" "derive" "parsing" "printing" "proc-macro" ];
+ }
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "serde_json" = rec {
+ crateName = "serde_json";
+ version = "1.0.145";
+ edition = "2021";
+ sha256 = "1767y6kxjf7gwpbv8bkhgwc50nhg46mqwm9gy9n122f7v1k6yaj0";
+ authors = [
+ "Erick Tryzelaar <erick.tryzelaar@gmail.com>"
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ {
+ name = "memchr";
+ packageId = "memchr";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "ryu";
+ packageId = "ryu";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ usesDefaultFeatures = false;
+ target = { target, features }: false;
+ }
+ {
+ name = "serde_core";
+ packageId = "serde_core";
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "serde_core/alloc" ];
+ "default" = [ "std" ];
+ "indexmap" = [ "dep:indexmap" ];
+ "preserve_order" = [ "indexmap" "std" ];
+ "std" = [ "memchr/std" "serde_core/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "raw_value" "std" ];
+ };
+ "serde_path_to_error" = rec {
+ crateName = "serde_path_to_error";
+ version = "0.1.20";
+ edition = "2021";
+ sha256 = "0mxls44p2ycmnxh03zpnlxxygq42w61ws7ir7r0ba6rp5s1gza8h";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ usesDefaultFeatures = false;
+ target = { target, features }: false;
+ }
+ {
+ name = "serde_core";
+ packageId = "serde_core";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ ];
+
+ };
+ "serde_spanned" = rec {
+ crateName = "serde_spanned";
+ version = "1.0.3";
+ edition = "2021";
+ sha256 = "14j32cqcs6jjdl1c111lz6s0hr913dnmy2kpfd75k2761ym4ahz2";
+ dependencies = [
+ {
+ name = "serde_core";
+ packageId = "serde_core";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "serde_core?/alloc" ];
+ "default" = [ "std" "serde" ];
+ "serde" = [ "dep:serde_core" ];
+ "std" = [ "alloc" "serde_core?/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "serde" "std" ];
+ };
+ "serde_urlencoded" = rec {
+ crateName = "serde_urlencoded";
+ version = "0.7.1";
+ edition = "2018";
+ sha256 = "1zgklbdaysj3230xivihs30qi5vkhigg323a9m62k8jwf4a1qjfk";
+ authors = [
+ "Anthony Ramine <n.oxyde@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "form_urlencoded";
+ packageId = "form_urlencoded";
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ {
+ name = "ryu";
+ packageId = "ryu";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ ];
+
+ };
+ "sha1" = rec {
+ crateName = "sha1";
+ version = "0.10.6";
+ edition = "2018";
+ sha256 = "1fnnxlfg08xhkmwf2ahv634as30l1i3xhlhkvxflmasi5nd85gz3";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "cpufeatures";
+ packageId = "cpufeatures";
+ target = { target, features }: (("aarch64" == target."arch" or null) || ("x86" == target."arch" or null) || ("x86_64" == target."arch" or null));
+ }
+ {
+ name = "digest";
+ packageId = "digest 0.10.7";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "digest";
+ packageId = "digest 0.10.7";
+ features = [ "dev" ];
+ }
+ ];
+ features = {
+ "asm" = [ "sha1-asm" ];
+ "default" = [ "std" ];
+ "oid" = [ "digest/oid" ];
+ "sha1-asm" = [ "dep:sha1-asm" ];
+ "std" = [ "digest/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "sha2 0.10.9" = rec {
+ crateName = "sha2";
+ version = "0.10.9";
+ edition = "2018";
+ sha256 = "10xjj843v31ghsksd9sl9y12qfc48157j1xpb8v1ml39jy0psl57";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "cpufeatures";
+ packageId = "cpufeatures";
+ target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
+ }
+ {
+ name = "digest";
+ packageId = "digest 0.10.7";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "digest";
+ packageId = "digest 0.10.7";
+ features = [ "dev" ];
+ }
+ ];
+ features = {
+ "asm" = [ "sha2-asm" ];
+ "asm-aarch64" = [ "asm" ];
+ "default" = [ "std" ];
+ "oid" = [ "digest/oid" ];
+ "sha2-asm" = [ "dep:sha2-asm" ];
+ "std" = [ "digest/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "sha2 0.9.9" = rec {
+ crateName = "sha2";
+ version = "0.9.9";
+ edition = "2018";
+ sha256 = "006q2f0ar26xcjxqz8zsncfgz86zqa5dkwlwv03rhx1rpzhs2n2d";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "block-buffer";
+ packageId = "block-buffer 0.9.0";
+ }
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "cpufeatures";
+ packageId = "cpufeatures";
+ target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
+ }
+ {
+ name = "digest";
+ packageId = "digest 0.9.0";
+ }
+ {
+ name = "opaque-debug";
+ packageId = "opaque-debug";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "digest";
+ packageId = "digest 0.9.0";
+ features = [ "dev" ];
+ }
+ ];
+ features = {
+ "asm" = [ "sha2-asm" ];
+ "asm-aarch64" = [ "asm" ];
+ "default" = [ "std" ];
+ "sha2-asm" = [ "dep:sha2-asm" ];
+ "std" = [ "digest/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "sharded-slab" = rec {
+ crateName = "sharded-slab";
+ version = "0.1.7";
+ edition = "2018";
+ sha256 = "1xipjr4nqsgw34k7a2cgj9zaasl2ds6jwn89886kww93d32a637l";
+ libName = "sharded_slab";
+ authors = [
+ "Eliza Weisman <eliza@buoyant.io>"
+ ];
+ dependencies = [
+ {
+ name = "lazy_static";
+ packageId = "lazy_static";
+ }
+ ];
+ features = {
+ "loom" = [ "dep:loom" ];
+ };
+ };
+ "shlex" = rec {
+ crateName = "shlex";
+ version = "1.3.0";
+ edition = "2015";
+ sha256 = "0r1y6bv26c1scpxvhg2cabimrmwgbp4p3wy6syj9n0c4s3q2znhg";
+ authors = [
+ "comex <comexk@gmail.com>"
+ "Fenhl <fenhl@fenhl.net>"
+ "Adrian Taylor <adetaylor@chromium.org>"
+ "Alex Touchet <alextouchet@outlook.com>"
+ "Daniel Parks <dp+git@oxidized.org>"
+ "Garrett Berg <googberg@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "signal-hook-registry" = rec {
+ crateName = "signal-hook-registry";
+ version = "1.4.7";
+ edition = "2015";
+ sha256 = "1bgdimrfqcldbplryknv87gywcdj9v29l3nwqbybs5p6p2ca0r3n";
+ libName = "signal_hook_registry";
+ authors = [
+ "Michal 'vorner' Vaner <vorner@vorner.cz>"
+ "Masaki Hara <ackie.h.gmai@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ ];
+
+ };
+ "signature" = rec {
+ crateName = "signature";
+ version = "1.6.4";
+ edition = "2021";
+ sha256 = "0z3xg405pg827g6hfdprnszsdqkkbrsfx7f1dl04nv9g7cxks8vl";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "derive-preview" = [ "digest-preview" "signature_derive" ];
+ "digest" = [ "dep:digest" ];
+ "digest-preview" = [ "digest" ];
+ "rand-preview" = [ "rand_core" ];
+ "rand_core" = [ "dep:rand_core" ];
+ "signature_derive" = [ "dep:signature_derive" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "simd-abstraction" = rec {
+ crateName = "simd-abstraction";
+ version = "0.7.1";
+ edition = "2021";
+ sha256 = "11v9hy8qg0b4qypz2p75ijv41ln1rssk6qilz0gwbbfaayfb5bcw";
+ libName = "simd_abstraction";
+ dependencies = [
+ {
+ name = "outref";
+ packageId = "outref 0.1.0";
+ }
+ ];
+ features = {
+ "detect" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "detect" "std" ];
+ };
+ "simd-adler32" = rec {
+ crateName = "simd-adler32";
+ version = "0.3.7";
+ edition = "2018";
+ sha256 = "1zkq40c3iajcnr5936gjp9jjh1lpzhy44p3dq3fiw75iwr1w2vfn";
+ libName = "simd_adler32";
+ authors = [
+ "Marvin Countryman <me@maar.vin>"
+ ];
+ features = {
+ "default" = [ "std" "const-generics" ];
+ };
+ };
+ "simdutf8" = rec {
+ crateName = "simdutf8";
+ version = "0.1.5";
+ edition = "2018";
+ sha256 = "0vmpf7xaa0dnaikib5jlx6y4dxd3hxqz6l830qb079g7wcsgxag3";
+ authors = [
+ "Hans Kratz <hans@appfour.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "siphasher 0.3.11" = rec {
+ crateName = "siphasher";
+ version = "0.3.11";
+ edition = "2018";
+ sha256 = "03axamhmwsrmh0psdw3gf7c0zc4fyl5yjxfifz9qfka6yhkqid9q";
+ authors = [
+ "Frank Denis <github@pureftpd.org>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "serde_json" = [ "dep:serde_json" ];
+ "serde_no_std" = [ "serde/alloc" ];
+ "serde_std" = [ "std" "serde/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "siphasher 1.0.1" = rec {
+ crateName = "siphasher";
+ version = "1.0.1";
+ edition = "2018";
+ sha256 = "17f35782ma3fn6sh21c027kjmd227xyrx06ffi8gw4xzv9yry6an";
+ authors = [
+ "Frank Denis <github@pureftpd.org>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "serde_json" = [ "dep:serde_json" ];
+ "serde_no_std" = [ "serde/alloc" ];
+ "serde_std" = [ "std" "serde/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "slab" = rec {
+ crateName = "slab";
+ version = "0.4.11";
+ edition = "2018";
+ sha256 = "12bm4s88rblq02jjbi1dw31984w61y2ldn13ifk5gsqgy97f8aks";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "smallvec" = rec {
+ crateName = "smallvec";
+ version = "1.15.1";
+ edition = "2018";
+ sha256 = "00xxdxxpgyq5vjnpljvkmy99xij5rxgh913ii1v16kzynnivgcb7";
+ authors = [
+ "The Servo Project Developers"
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "bincode" = [ "dep:bincode" ];
+ "const_new" = [ "const_generics" ];
+ "drain_keep_rest" = [ "drain_filter" ];
+ "impl_bincode" = [ "bincode" "unty" ];
+ "malloc_size_of" = [ "dep:malloc_size_of" ];
+ "serde" = [ "dep:serde" ];
+ "unty" = [ "dep:unty" ];
+ };
+ resolvedDefaultFeatures = [ "const_generics" "const_new" "union" ];
+ };
+ "smawk" = rec {
+ crateName = "smawk";
+ version = "0.3.2";
+ edition = "2021";
+ sha256 = "0344z1la39incggwn6nl45k8cbw2x10mr5j0qz85cdz9np0qihxp";
+ authors = [
+ "Martin Geisler <martin@geisler.net>"
+ ];
+ features = {
+ "ndarray" = [ "dep:ndarray" ];
+ };
+ };
+ "socket2 0.5.10" = rec {
+ crateName = "socket2";
+ version = "0.5.10";
+ edition = "2021";
+ sha256 = "0y067ki5q946w91xlz2sb175pnfazizva6fi3kfp639mxnmpc8z2";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ "Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.52.0";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" ];
+ }
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "all" ];
+ };
+ "socket2 0.6.1" = rec {
+ crateName = "socket2";
+ version = "0.6.1";
+ edition = "2021";
+ sha256 = "109qn0kjhqi5zds84qyqi5wn72g8azjhmf4b04fkgkrkd48rw4hp";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ "Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.60.2";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" ];
+ }
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "all" ];
+ };
+ "ssh-libsodium" = rec {
+ crateName = "ssh-libsodium";
+ version = "0.4.0";
+ edition = "2018";
+ sha256 = "0sy7qm5s9gsz1gcgazybr0b51qqqb86r4xdbnb7v1dp9zzmmiv4q";
+ libName = "ssh_libsodium";
+ authors = [
+ "pe@pijul.org <pe@pijul.org>"
+ ];
+ dependencies = [
+ {
+ name = "lazy_static";
+ packageId = "lazy_static";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ {
+ name = "libsodium-sys";
+ packageId = "libsodium-sys";
+ features = [ "use-pkg-config" ];
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "pkg-config";
+ packageId = "pkg-config";
+ }
+ {
+ name = "vcpkg";
+ packageId = "vcpkg";
+ }
+ ];
+
+ };
+ "stable_deref_trait" = rec {
+ crateName = "stable_deref_trait";
+ version = "1.2.1";
+ edition = "2015";
+ sha256 = "15h5h73ppqyhdhx6ywxfj88azmrpml9gl6zp3pwy2malqa6vxqkc";
+ authors = [
+ "Robert Grosse <n210241048576@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ };
+ "static_assertions" = rec {
+ crateName = "static_assertions";
+ version = "1.1.0";
+ edition = "2015";
+ sha256 = "0gsl6xmw10gvn3zs1rv99laj5ig7ylffnh71f9l34js4nr4r7sx2";
+ authors = [
+ "Nikolai Vazquez"
+ ];
+ features = {
+ };
+ };
+ "string_cache" = rec {
+ crateName = "string_cache";
+ version = "0.8.9";
+ edition = "2018";
+ sha256 = "03z7km2kzlwiv2r2qifq5riv4g8phazwng9wnvs3py3lzainnxxz";
+ authors = [
+ "The Servo Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "new_debug_unreachable";
+ packageId = "new_debug_unreachable";
+ }
+ {
+ name = "parking_lot";
+ packageId = "parking_lot 0.12.5";
+ }
+ {
+ name = "phf_shared";
+ packageId = "phf_shared 0.11.3";
+ }
+ {
+ name = "precomputed-hash";
+ packageId = "precomputed-hash";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ }
+ ];
+ features = {
+ "default" = [ "serde_support" ];
+ "malloc_size_of" = [ "dep:malloc_size_of" ];
+ "serde" = [ "dep:serde" ];
+ "serde_support" = [ "serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "serde" "serde_support" ];
+ };
+ "string_cache_codegen" = rec {
+ crateName = "string_cache_codegen";
+ version = "0.5.4";
+ edition = "2018";
+ sha256 = "181ir4d6y053s1kka2idpjx5g9d9jgll6fy517jhzzpi2n3r44f7";
+ libPath = "lib.rs";
+ authors = [
+ "The Servo Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "phf_generator";
+ packageId = "phf_generator 0.11.3";
+ }
+ {
+ name = "phf_shared";
+ packageId = "phf_shared 0.11.3";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ ];
+
+ };
+ "stringprep" = rec {
+ crateName = "stringprep";
+ version = "0.1.5";
+ edition = "2015";
+ sha256 = "1cb3jis4h2b767csk272zw92lc6jzfzvh8d6m1cd86yqjb9z6kbv";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "unicode-bidi";
+ packageId = "unicode-bidi";
+ }
+ {
+ name = "unicode-normalization";
+ packageId = "unicode-normalization";
+ }
+ {
+ name = "unicode-properties";
+ packageId = "unicode-properties";
+ }
+ ];
+
+ };
+ "strsim" = rec {
+ crateName = "strsim";
+ version = "0.11.1";
+ edition = "2015";
+ sha256 = "0kzvqlw8hxqb7y598w1s0hxlnmi84sg5vsipp3yg5na5d1rvba3x";
+ authors = [
+ "Danny Guo <danny@dannyguo.com>"
+ "maxbachmann <oss@maxbachmann.de>"
+ ];
+
+ };
+ "subtle" = rec {
+ crateName = "subtle";
+ version = "2.6.1";
+ edition = "2018";
+ sha256 = "14ijxaymghbl1p0wql9cib5zlwiina7kall6w7g89csprkgbvhhk";
+ authors = [
+ "Isis Lovecruft <isis@patternsinthevoid.net>"
+ "Henry de Valence <hdevalence@hdevalence.ca>"
+ ];
+ features = {
+ "default" = [ "std" "i128" ];
+ };
+ resolvedDefaultFeatures = [ "default" "i128" "std" ];
+ };
+ "syn 1.0.109" = rec {
+ crateName = "syn";
+ version = "1.0.109";
+ edition = "2018";
+ sha256 = "0ds2if4600bd59wsv7jjgfkayfzy3hnazs394kz6zdkmna8l3dkj";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "unicode-ident";
+ packageId = "unicode-ident";
+ }
+ ];
+ features = {
+ "default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
+ "printing" = [ "quote" ];
+ "proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ];
+ "quote" = [ "dep:quote" ];
+ "test" = [ "syn-test-suite/all-features" ];
+ };
+ resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "fold" "full" "parsing" "printing" "proc-macro" "quote" ];
+ };
+ "syn 2.0.111" = rec {
+ crateName = "syn";
+ version = "2.0.111";
+ edition = "2021";
+ sha256 = "11rf9l6435w525vhqmnngcnwsly7x4xx369fmaqvswdbjjicj31r";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "unicode-ident";
+ packageId = "unicode-ident";
+ }
+ ];
+ features = {
+ "default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
+ "printing" = [ "dep:quote" ];
+ "proc-macro" = [ "proc-macro2/proc-macro" "quote?/proc-macro" ];
+ "test" = [ "syn-test-suite/all-features" ];
+ };
+ resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "fold" "full" "parsing" "printing" "proc-macro" "visit" "visit-mut" ];
+ };
+ "sync_wrapper" = rec {
+ crateName = "sync_wrapper";
+ version = "1.0.2";
+ edition = "2021";
+ sha256 = "0qvjyasd6w18mjg5xlaq5jgy84jsjfsvmnn12c13gypxbv75dwhb";
+ authors = [
+ "Actyx AG <developer@actyx.io>"
+ ];
+ dependencies = [
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "futures" = [ "futures-core" ];
+ "futures-core" = [ "dep:futures-core" ];
+ };
+ resolvedDefaultFeatures = [ "futures" "futures-core" ];
+ };
+ "synstructure" = rec {
+ crateName = "synstructure";
+ version = "0.13.2";
+ edition = "2018";
+ sha256 = "1lh9lx3r3jb18f8sbj29am5hm9jymvbwh6jb1izsnnxgvgrp12kj";
+ authors = [
+ "Nika Layzell <nika@thelayzells.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ usesDefaultFeatures = false;
+ features = [ "derive" "parsing" "printing" "clone-impls" "visit" "extra-traits" ];
+ }
+ ];
+ features = {
+ "default" = [ "proc-macro" ];
+ "proc-macro" = [ "proc-macro2/proc-macro" "syn/proc-macro" "quote/proc-macro" ];
+ };
+ resolvedDefaultFeatures = [ "default" "proc-macro" ];
+ };
+ "syntect" = rec {
+ crateName = "syntect";
+ version = "5.3.0";
+ edition = "2021";
+ sha256 = "09f9j0hlsz5zmc0fkjdp64sjnyzcvp86pvxfk51p19cmbp04asv5";
+ authors = [
+ "Tristan Hume <tristan@thume.ca>"
+ ];
+ dependencies = [
+ {
+ name = "bincode";
+ packageId = "bincode 1.3.3";
+ optional = true;
+ }
+ {
+ name = "flate2";
+ packageId = "flate2";
+ optional = true;
+ }
+ {
+ name = "fnv";
+ packageId = "fnv";
+ optional = true;
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ }
+ {
+ name = "onig";
+ packageId = "onig";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "plist";
+ packageId = "plist";
+ optional = true;
+ }
+ {
+ name = "regex-syntax";
+ packageId = "regex-syntax";
+ optional = true;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ optional = true;
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 2.0.17";
+ }
+ {
+ name = "walkdir";
+ packageId = "walkdir";
+ }
+ {
+ name = "yaml-rust";
+ packageId = "yaml-rust";
+ optional = true;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ ];
+ features = {
+ "bincode" = [ "dep:bincode" ];
+ "default" = [ "default-onig" ];
+ "default-fancy" = [ "parsing" "default-syntaxes" "default-themes" "html" "plist-load" "yaml-load" "dump-load" "dump-create" "regex-fancy" ];
+ "default-onig" = [ "parsing" "default-syntaxes" "default-themes" "html" "plist-load" "yaml-load" "dump-load" "dump-create" "regex-onig" ];
+ "default-syntaxes" = [ "parsing" "dump-load" ];
+ "default-themes" = [ "dump-load" ];
+ "dump-create" = [ "flate2" "bincode" ];
+ "dump-load" = [ "flate2" "bincode" ];
+ "fancy-regex" = [ "dep:fancy-regex" ];
+ "flate2" = [ "dep:flate2" ];
+ "fnv" = [ "dep:fnv" ];
+ "html" = [ "parsing" ];
+ "metadata" = [ "parsing" "plist-load" "dep:serde_json" ];
+ "onig" = [ "dep:onig" ];
+ "parsing" = [ "regex-syntax" "fnv" "dump-create" "dump-load" ];
+ "plist" = [ "dep:plist" ];
+ "plist-load" = [ "plist" "dep:serde_json" ];
+ "regex-fancy" = [ "fancy-regex" ];
+ "regex-onig" = [ "onig" ];
+ "regex-syntax" = [ "dep:regex-syntax" ];
+ "yaml-load" = [ "yaml-rust" "parsing" ];
+ "yaml-rust" = [ "dep:yaml-rust" ];
+ };
+ resolvedDefaultFeatures = [ "bincode" "default" "default-onig" "default-syntaxes" "default-themes" "dump-create" "dump-load" "flate2" "fnv" "html" "onig" "parsing" "plist" "plist-load" "regex-onig" "regex-syntax" "yaml-load" "yaml-rust" ];
+ };
+ "system-configuration" = rec {
+ crateName = "system-configuration";
+ version = "0.6.1";
+ edition = "2021";
+ sha256 = "0sxslml567zm0v8g732314vd2gk9sd3k4xj22xk6p64xir29v1rw";
+ libName = "system_configuration";
+ authors = [
+ "Mullvad VPN"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "core-foundation";
+ packageId = "core-foundation";
+ }
+ {
+ name = "system-configuration-sys";
+ packageId = "system-configuration-sys";
+ }
+ ];
+
+ };
+ "system-configuration-sys" = rec {
+ crateName = "system-configuration-sys";
+ version = "0.6.0";
+ edition = "2021";
+ sha256 = "1i5sqrmgy58l4704hibjbl36hclddglh73fb3wx95jnmrq81n7cf";
+ libName = "system_configuration_sys";
+ authors = [
+ "Mullvad VPN"
+ ];
+ dependencies = [
+ {
+ name = "core-foundation-sys";
+ packageId = "core-foundation-sys";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ ];
+
+ };
+ "tap" = rec {
+ crateName = "tap";
+ version = "1.0.1";
+ edition = "2015";
+ sha256 = "0sc3gl4nldqpvyhqi3bbd0l9k7fngrcl4zs47n314nqqk4bpx4sm";
+ authors = [
+ "Elliott Linder <elliott.darfink@gmail.com>"
+ "myrrlyn <self@myrrlyn.dev>"
+ ];
+
+ };
+ "tar" = rec {
+ crateName = "tar";
+ version = "0.4.44";
+ edition = "2021";
+ sha256 = "0yk69a8j9xv51mdcy0853jai5zh1pd9yn456q4cpmj0js9w3i1hx";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "filetime";
+ packageId = "filetime";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "xattr";
+ packageId = "xattr";
+ optional = true;
+ target = { target, features }: (target."unix" or false);
+ }
+ ];
+ features = {
+ "default" = [ "xattr" ];
+ "xattr" = [ "dep:xattr" ];
+ };
+ resolvedDefaultFeatures = [ "default" "xattr" ];
+ };
+ "tempfile" = rec {
+ crateName = "tempfile";
+ version = "3.23.0";
+ edition = "2021";
+ sha256 = "05igl2gml6z6i2va1bv49f9f1wb3f752c2i63lvlb9s2vxxwfc9d";
+ authors = [
+ "Steven Allen <steven@stebalien.com>"
+ "The Rust Project Developers"
+ "Ashley Mannix <ashleymannix@live.com.au>"
+ "Jason White <me@jasonwhite.io>"
+ ];
+ dependencies = [
+ {
+ name = "fastrand";
+ packageId = "fastrand";
+ }
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.3.4";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: ((target."unix" or false) || (target."windows" or false) || ("wasi" == target."os" or null));
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "rustix";
+ packageId = "rustix";
+ target = { target, features }: ((target."unix" or false) || ("wasi" == target."os" or null));
+ features = [ "fs" ];
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.61.2";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_Storage_FileSystem" "Win32_Foundation" ];
+ }
+ ];
+ features = {
+ "default" = [ "getrandom" ];
+ "getrandom" = [ "dep:getrandom" ];
+ };
+ resolvedDefaultFeatures = [ "default" "getrandom" ];
+ };
+ "tendril" = rec {
+ crateName = "tendril";
+ version = "0.4.3";
+ edition = "2015";
+ sha256 = "1c3vip59sqwxn148i714nmkrvjzbk7105vj0h92s6r64bw614jnj";
+ authors = [
+ "Keegan McAllister <mcallister.keegan@gmail.com>"
+ "Simon Sapin <simon.sapin@exyr.org>"
+ "Chris Morgan <me@chrismorgan.info>"
+ ];
+ dependencies = [
+ {
+ name = "futf";
+ packageId = "futf";
+ }
+ {
+ name = "mac";
+ packageId = "mac";
+ }
+ {
+ name = "utf-8";
+ packageId = "utf-8";
+ }
+ ];
+ features = {
+ "encoding" = [ "dep:encoding" ];
+ "encoding_rs" = [ "dep:encoding_rs" ];
+ };
+ };
+ "textwrap" = rec {
+ crateName = "textwrap";
+ version = "0.16.2";
+ edition = "2021";
+ sha256 = "0mrhd8q0dnh5hwbwhiv89c6i41yzmhw4clwa592rrp24b9hlfdf1";
+ authors = [
+ "Martin Geisler <martin@geisler.net>"
+ ];
+ dependencies = [
+ {
+ name = "smawk";
+ packageId = "smawk";
+ optional = true;
+ }
+ {
+ name = "unicode-linebreak";
+ packageId = "unicode-linebreak";
+ optional = true;
+ }
+ {
+ name = "unicode-width";
+ packageId = "unicode-width";
+ optional = true;
+ }
+ ];
+ features = {
+ "default" = [ "unicode-linebreak" "unicode-width" "smawk" ];
+ "hyphenation" = [ "dep:hyphenation" ];
+ "smawk" = [ "dep:smawk" ];
+ "terminal_size" = [ "dep:terminal_size" ];
+ "unicode-linebreak" = [ "dep:unicode-linebreak" ];
+ "unicode-width" = [ "dep:unicode-width" ];
+ };
+ resolvedDefaultFeatures = [ "default" "smawk" "unicode-linebreak" "unicode-width" ];
+ };
+ "thiserror 1.0.69" = rec {
+ crateName = "thiserror";
+ version = "1.0.69";
+ edition = "2021";
+ sha256 = "0lizjay08agcr5hs9yfzzj6axs53a2rgx070a1dsi3jpkcrzbamn";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "thiserror-impl";
+ packageId = "thiserror-impl 1.0.69";
+ }
+ ];
+
+ };
+ "thiserror 2.0.17" = rec {
+ crateName = "thiserror";
+ version = "2.0.17";
+ edition = "2021";
+ sha256 = "1j2gixhm2c3s6g96vd0b01v0i0qz1101vfmw0032mdqj1z58fdgn";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "thiserror-impl";
+ packageId = "thiserror-impl 2.0.17";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "thiserror-impl 1.0.69" = rec {
+ crateName = "thiserror-impl";
+ version = "1.0.69";
+ edition = "2021";
+ sha256 = "1h84fmn2nai41cxbhk6pqf46bxqq1b344v8yz089w1chzi76rvjg";
+ procMacro = true;
+ libName = "thiserror_impl";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ }
+ ];
+
+ };
+ "thiserror-impl 2.0.17" = rec {
+ crateName = "thiserror-impl";
+ version = "2.0.17";
+ edition = "2021";
+ sha256 = "04y92yjwg1a4piwk9nayzjfs07sps8c4vq9jnsfq9qvxrn75rw9z";
+ procMacro = true;
+ libName = "thiserror_impl";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ }
+ ];
+
+ };
+ "thread_local" = rec {
+ crateName = "thread_local";
+ version = "1.1.9";
+ edition = "2021";
+ sha256 = "1191jvl8d63agnq06pcnarivf63qzgpws5xa33hgc92gjjj4c0pn";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ ];
+ features = {
+ };
+ };
+ "threadpool" = rec {
+ crateName = "threadpool";
+ version = "1.8.1";
+ edition = "2015";
+ sha256 = "1amgfyzvynbm8pacniivzq9r0fh3chhs7kijic81j76l6c5ycl6h";
+ authors = [
+ "The Rust Project Developers"
+ "Corey Farwell <coreyf@rwell.org>"
+ "Stefan Schindler <dns2utf8@estada.ch>"
+ ];
+ dependencies = [
+ {
+ name = "num_cpus";
+ packageId = "num_cpus";
+ }
+ ];
+
+ };
+ "thrussh" = rec {
+ crateName = "thrussh";
+ version = "0.40.4";
+ edition = "2024";
+ sha256 = "1pdwlm1zziapx42by29ydcw0b2sscc8f9anzq170k26sf02sxblv";
+ authors = [
+ "Pierre-Étienne Meunier <pe@pijul.org>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 1.3.2";
+ }
+ {
+ name = "byteorder";
+ packageId = "byteorder";
+ }
+ {
+ name = "cryptovec";
+ packageId = "cryptovec";
+ }
+ {
+ name = "digest";
+ packageId = "digest 0.9.0";
+ }
+ {
+ name = "flate2";
+ packageId = "flate2";
+ optional = true;
+ }
+ {
+ name = "futures";
+ packageId = "futures";
+ }
+ {
+ name = "generic-array";
+ packageId = "generic-array";
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "openssl";
+ packageId = "openssl";
+ optional = true;
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.9.2";
+ }
+ {
+ name = "sha2";
+ packageId = "sha2 0.9.9";
+ }
+ {
+ name = "ssh-libsodium";
+ packageId = "ssh-libsodium";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 1.0.69";
+ }
+ {
+ name = "thrussh-keys";
+ packageId = "thrussh-keys";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "io-util" "rt-multi-thread" "time" "net" "sync" "macros" "process" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "io-util" "rt-multi-thread" "time" "net" "sync" "macros" ];
+ }
+ ];
+ features = {
+ "default" = [ "flate2" ];
+ "flate2" = [ "dep:flate2" ];
+ "openssl" = [ "thrussh-keys/openssl" "dep:openssl" ];
+ "p256" = [ "thrussh-keys/p256" ];
+ };
+ resolvedDefaultFeatures = [ "default" "flate2" "openssl" ];
+ };
+ "thrussh-keys" = rec {
+ crateName = "thrussh-keys";
+ version = "0.23.2";
+ edition = "2018";
+ sha256 = "0m37x90vnskpk9lmw5sy7ibml86fxh5v0nmkihzrz734zzbb1s2s";
+ libName = "thrussh_keys";
+ authors = [
+ "Pierre-Étienne Meunier <pe@pijul.org>"
+ ];
+ dependencies = [
+ {
+ name = "aes";
+ packageId = "aes 0.7.5";
+ features = [ "ctr" ];
+ }
+ {
+ name = "bcrypt-pbkdf";
+ packageId = "bcrypt-pbkdf";
+ }
+ {
+ name = "bit-vec";
+ packageId = "bit-vec";
+ }
+ {
+ name = "block-modes";
+ packageId = "block-modes";
+ }
+ {
+ name = "byteorder";
+ packageId = "byteorder";
+ }
+ {
+ name = "cryptovec";
+ packageId = "cryptovec";
+ }
+ {
+ name = "data-encoding";
+ packageId = "data-encoding";
+ }
+ {
+ name = "dirs";
+ packageId = "dirs";
+ }
+ {
+ name = "futures";
+ packageId = "futures";
+ }
+ {
+ name = "hmac";
+ packageId = "hmac 0.11.0";
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "md5";
+ packageId = "md5";
+ }
+ {
+ name = "num-bigint";
+ packageId = "num-bigint";
+ }
+ {
+ name = "num-integer";
+ packageId = "num-integer";
+ }
+ {
+ name = "openssl";
+ packageId = "openssl";
+ optional = true;
+ }
+ {
+ name = "pbkdf2";
+ packageId = "pbkdf2 0.8.0";
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.8.5";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ }
+ {
+ name = "sha2";
+ packageId = "sha2 0.9.9";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 1.0.69";
+ }
+ {
+ name = "thrussh-libsodium";
+ packageId = "thrussh-libsodium";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "io-util" "rt-multi-thread" "time" "net" ];
+ }
+ {
+ name = "tokio-stream";
+ packageId = "tokio-stream";
+ features = [ "net" ];
+ }
+ {
+ name = "yasna";
+ packageId = "yasna";
+ features = [ "bit-vec" "num-bigint" ];
+ }
+ ];
+ features = {
+ "openssl" = [ "dep:openssl" ];
+ "p256" = [ "dep:p256" ];
+ };
+ resolvedDefaultFeatures = [ "openssl" ];
+ };
+ "thrussh-libsodium" = rec {
+ crateName = "thrussh-libsodium";
+ version = "0.4.0";
+ edition = "2018";
+ sha256 = "0jnyxw7xm9yz86vmsjc1irl7s93jd97nw3nk1isfjvxrrl17sz64";
+ libName = "thrussh_libsodium";
+ authors = [
+ "pe@pijul.org <pe@pijul.org>"
+ ];
+ dependencies = [
+ {
+ name = "lazy_static";
+ packageId = "lazy_static";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ {
+ name = "libsodium-sys";
+ packageId = "libsodium-sys";
+ features = [ "use-pkg-config" ];
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "pkg-config";
+ packageId = "pkg-config";
+ }
+ {
+ name = "vcpkg";
+ packageId = "vcpkg";
+ }
+ ];
+
+ };
+ "time" = rec {
+ crateName = "time";
+ version = "0.3.44";
+ edition = "2021";
+ sha256 = "179awlwb36zly3nmz5h9awai1h4pbf1d83g2pmvlw4v1pgixkrwi";
+ authors = [
+ "Jacob Pratt <open-source@jhpratt.dev>"
+ "Time contributors"
+ ];
+ dependencies = [
+ {
+ name = "deranged";
+ packageId = "deranged";
+ features = [ "powerfmt" ];
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ optional = true;
+ }
+ {
+ name = "num-conv";
+ packageId = "num-conv";
+ }
+ {
+ name = "powerfmt";
+ packageId = "powerfmt";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "time-core";
+ packageId = "time-core";
+ }
+ {
+ name = "time-macros";
+ packageId = "time-macros";
+ optional = true;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "num-conv";
+ packageId = "num-conv";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ {
+ name = "time-macros";
+ packageId = "time-macros";
+ }
+ ];
+ features = {
+ "alloc" = [ "serde?/alloc" ];
+ "default" = [ "std" ];
+ "formatting" = [ "dep:itoa" "std" "time-macros?/formatting" ];
+ "large-dates" = [ "time-macros?/large-dates" ];
+ "local-offset" = [ "std" "dep:libc" "dep:num_threads" ];
+ "macros" = [ "dep:time-macros" ];
+ "parsing" = [ "time-macros?/parsing" ];
+ "quickcheck" = [ "dep:quickcheck" "alloc" "deranged/quickcheck" ];
+ "rand" = [ "rand08" "rand09" ];
+ "rand08" = [ "dep:rand08" "deranged/rand08" ];
+ "rand09" = [ "dep:rand09" "deranged/rand09" ];
+ "serde" = [ "dep:serde" "time-macros?/serde" "deranged/serde" ];
+ "serde-human-readable" = [ "serde" "formatting" "parsing" ];
+ "serde-well-known" = [ "serde" "formatting" "parsing" ];
+ "std" = [ "alloc" ];
+ "wasm-bindgen" = [ "dep:js-sys" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "formatting" "macros" "parsing" "std" ];
+ };
+ "time-core" = rec {
+ crateName = "time-core";
+ version = "0.1.6";
+ edition = "2021";
+ sha256 = "0sqwhg7n47gbffyr0zhipqcnskxgcgzz1ix8wirqs2rg3my8x1j0";
+ libName = "time_core";
+ authors = [
+ "Jacob Pratt <open-source@jhpratt.dev>"
+ "Time contributors"
+ ];
+
+ };
+ "time-macros" = rec {
+ crateName = "time-macros";
+ version = "0.2.24";
+ edition = "2021";
+ sha256 = "1wzb6hnl35856f58cx259q7ijc4c7yis0qsnydvw5n8jbw9b1krh";
+ procMacro = true;
+ libName = "time_macros";
+ authors = [
+ "Jacob Pratt <open-source@jhpratt.dev>"
+ "Time contributors"
+ ];
+ dependencies = [
+ {
+ name = "num-conv";
+ packageId = "num-conv";
+ }
+ {
+ name = "time-core";
+ packageId = "time-core";
+ }
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "formatting" "parsing" ];
+ };
+ "tinystr" = rec {
+ crateName = "tinystr";
+ version = "0.8.2";
+ edition = "2021";
+ sha256 = "0sa8z88axdsf088hgw5p4xcyi6g3w3sgbb6qdp81bph9bk2fkls2";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "serde_core?/alloc" "zerovec?/alloc" ];
+ "databake" = [ "dep:databake" ];
+ "default" = [ "alloc" ];
+ "serde" = [ "dep:serde_core" ];
+ "zerovec" = [ "dep:zerovec" ];
+ };
+ resolvedDefaultFeatures = [ "zerovec" ];
+ };
+ "tinyvec" = rec {
+ crateName = "tinyvec";
+ version = "1.10.0";
+ edition = "2018";
+ sha256 = "1yhk0qdqyiaa4v2j9h8pzax5gxgwpz4da0lcphfil6g6pk1zv9dz";
+ authors = [
+ "Lokathor <zefria@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "tinyvec_macros";
+ packageId = "tinyvec_macros";
+ optional = true;
+ }
+ ];
+ features = {
+ "alloc" = [ "tinyvec_macros" ];
+ "arbitrary" = [ "dep:arbitrary" ];
+ "borsh" = [ "dep:borsh" ];
+ "generic-array" = [ "dep:generic-array" ];
+ "latest_stable_rust" = [ "rustc_1_61" ];
+ "real_blackbox" = [ "criterion/real_blackbox" ];
+ "rustc_1_61" = [ "rustc_1_57" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "alloc" ];
+ "tinyvec_macros" = [ "dep:tinyvec_macros" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "grab_spare_slice" "std" "tinyvec_macros" ];
+ };
+ "tinyvec_macros" = rec {
+ crateName = "tinyvec_macros";
+ version = "0.1.1";
+ edition = "2018";
+ sha256 = "081gag86208sc3y6sdkshgw3vysm5d34p431dzw0bshz66ncng0z";
+ authors = [
+ "Soveu <marx.tomasz@gmail.com>"
+ ];
+
+ };
+ "tokio" = rec {
+ crateName = "tokio";
+ version = "1.48.0";
+ edition = "2021";
+ sha256 = "0244qva5pksy8gam6llf7bd6wbk2vkab9lx26yyf08dix810wdpz";
+ authors = [
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ optional = true;
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ optional = true;
+ target = { target, features }: ((target."tokio_unstable" or false) && ("linux" == target."os" or null));
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ optional = true;
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "mio";
+ packageId = "mio";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "mio";
+ packageId = "mio";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: ((target."tokio_unstable" or false) && ("linux" == target."os" or null));
+ features = [ "os-poll" "os-ext" ];
+ }
+ {
+ name = "parking_lot";
+ packageId = "parking_lot 0.12.5";
+ optional = true;
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "signal-hook-registry";
+ packageId = "signal-hook-registry";
+ optional = true;
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "socket2";
+ packageId = "socket2 0.6.1";
+ optional = true;
+ target = { target, features }: (!(builtins.elem "wasm" target."family"));
+ features = [ "all" ];
+ }
+ {
+ name = "tokio-macros";
+ packageId = "tokio-macros";
+ optional = true;
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.61.2";
+ optional = true;
+ target = { target, features }: (target."windows" or false);
+ }
+ ];
+ devDependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = {target, features}: (target."unix" or false);
+ }
+ {
+ name = "socket2";
+ packageId = "socket2 0.6.1";
+ target = {target, features}: (!(builtins.elem "wasm" target."family"));
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.61.2";
+ target = {target, features}: (target."windows" or false);
+ features = [ "Win32_Foundation" "Win32_Security_Authorization" ];
+ }
+ ];
+ features = {
+ "bytes" = [ "dep:bytes" ];
+ "full" = [ "fs" "io-util" "io-std" "macros" "net" "parking_lot" "process" "rt" "rt-multi-thread" "signal" "sync" "time" ];
+ "io-uring" = [ "dep:io-uring" "libc" "mio/os-poll" "mio/os-ext" "dep:slab" ];
+ "io-util" = [ "bytes" ];
+ "libc" = [ "dep:libc" ];
+ "macros" = [ "tokio-macros" ];
+ "mio" = [ "dep:mio" ];
+ "net" = [ "libc" "mio/os-poll" "mio/os-ext" "mio/net" "socket2" "windows-sys/Win32_Foundation" "windows-sys/Win32_Security" "windows-sys/Win32_Storage_FileSystem" "windows-sys/Win32_System_Pipes" "windows-sys/Win32_System_SystemServices" ];
+ "parking_lot" = [ "dep:parking_lot" ];
+ "process" = [ "bytes" "libc" "mio/os-poll" "mio/os-ext" "mio/net" "signal-hook-registry" "windows-sys/Win32_Foundation" "windows-sys/Win32_System_Threading" "windows-sys/Win32_System_WindowsProgramming" ];
+ "rt-multi-thread" = [ "rt" ];
+ "signal" = [ "libc" "mio/os-poll" "mio/net" "mio/os-ext" "signal-hook-registry" "windows-sys/Win32_Foundation" "windows-sys/Win32_System_Console" ];
+ "signal-hook-registry" = [ "dep:signal-hook-registry" ];
+ "socket2" = [ "dep:socket2" ];
+ "taskdump" = [ "dep:backtrace" ];
+ "test-util" = [ "rt" "sync" "time" ];
+ "tokio-macros" = [ "dep:tokio-macros" ];
+ "tracing" = [ "dep:tracing" ];
+ "windows-sys" = [ "dep:windows-sys" ];
+ };
+ resolvedDefaultFeatures = [ "bytes" "default" "fs" "full" "io-std" "io-util" "libc" "macros" "mio" "net" "parking_lot" "process" "rt" "rt-multi-thread" "signal" "signal-hook-registry" "socket2" "sync" "time" "tokio-macros" "windows-sys" ];
+ };
+ "tokio-macros" = rec {
+ crateName = "tokio-macros";
+ version = "2.6.0";
+ edition = "2021";
+ sha256 = "19czvgliginbzyhhfbmj77wazqn2y8g27y2nirfajdlm41bphh5g";
+ procMacro = true;
+ libName = "tokio_macros";
+ authors = [
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" ];
+ }
+ ];
+
+ };
+ "tokio-native-tls" = rec {
+ crateName = "tokio-native-tls";
+ version = "0.3.1";
+ edition = "2018";
+ sha256 = "1wkfg6zn85zckmv4im7mv20ca6b1vmlib5xwz9p7g19wjfmpdbmv";
+ libName = "tokio_native_tls";
+ authors = [
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "native-tls";
+ packageId = "native-tls";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" "rt" "rt-multi-thread" "io-util" "net" ];
+ }
+ ];
+ features = {
+ "vendored" = [ "native-tls/vendored" ];
+ };
+ };
+ "tokio-openssl" = rec {
+ crateName = "tokio-openssl";
+ version = "0.6.5";
+ edition = "2018";
+ sha256 = "1pga4xm5fcms6k1rqg4hsl8mmna7qiizhdlsgxbbffx4r94nipsr";
+ libName = "tokio_openssl";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "openssl";
+ packageId = "openssl";
+ }
+ {
+ name = "openssl-sys";
+ packageId = "openssl-sys";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "full" ];
+ }
+ ];
+
+ };
+ "tokio-postgres" = rec {
+ crateName = "tokio-postgres";
+ version = "0.7.15";
+ edition = "2021";
+ sha256 = "17kc1zr0j7dsqvkb1lxvvn77w92qiqv0jd0p52v09zickdnxch1b";
+ libName = "tokio_postgres";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "async-trait";
+ packageId = "async-trait";
+ }
+ {
+ name = "byteorder";
+ packageId = "byteorder";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "fallible-iterator";
+ packageId = "fallible-iterator";
+ }
+ {
+ name = "futures-channel";
+ packageId = "futures-channel";
+ features = [ "sink" ];
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ features = [ "sink" ];
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "parking_lot";
+ packageId = "parking_lot 0.12.5";
+ }
+ {
+ name = "percent-encoding";
+ packageId = "percent-encoding";
+ }
+ {
+ name = "phf";
+ packageId = "phf 0.13.1";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "postgres-protocol";
+ packageId = "postgres-protocol";
+ }
+ {
+ name = "postgres-types";
+ packageId = "postgres-types";
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.9.2";
+ }
+ {
+ name = "socket2";
+ packageId = "socket2 0.6.1";
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ features = [ "all" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "io-util" ];
+ }
+ {
+ name = "tokio-util";
+ packageId = "tokio-util";
+ features = [ "codec" ];
+ }
+ {
+ name = "whoami";
+ packageId = "whoami";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ features = [ "async-await-macro" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" "net" "rt" "rt-multi-thread" "time" ];
+ }
+ ];
+ features = {
+ "array-impls" = [ "postgres-types/array-impls" ];
+ "default" = [ "runtime" ];
+ "js" = [ "postgres-protocol/js" "postgres-types/js" ];
+ "runtime" = [ "tokio/net" "tokio/time" ];
+ "with-bit-vec-0_6" = [ "postgres-types/with-bit-vec-0_6" ];
+ "with-bit-vec-0_7" = [ "postgres-types/with-bit-vec-0_7" ];
+ "with-bit-vec-0_8" = [ "postgres-types/with-bit-vec-0_8" ];
+ "with-chrono-0_4" = [ "postgres-types/with-chrono-0_4" ];
+ "with-cidr-0_2" = [ "postgres-types/with-cidr-0_2" ];
+ "with-cidr-0_3" = [ "postgres-types/with-cidr-0_3" ];
+ "with-eui48-0_4" = [ "postgres-types/with-eui48-0_4" ];
+ "with-eui48-1" = [ "postgres-types/with-eui48-1" ];
+ "with-geo-types-0_6" = [ "postgres-types/with-geo-types-0_6" ];
+ "with-geo-types-0_7" = [ "postgres-types/with-geo-types-0_7" ];
+ "with-jiff-0_1" = [ "postgres-types/with-jiff-0_1" ];
+ "with-jiff-0_2" = [ "postgres-types/with-jiff-0_2" ];
+ "with-serde_json-1" = [ "postgres-types/with-serde_json-1" ];
+ "with-smol_str-01" = [ "postgres-types/with-smol_str-01" ];
+ "with-time-0_2" = [ "postgres-types/with-time-0_2" ];
+ "with-time-0_3" = [ "postgres-types/with-time-0_3" ];
+ "with-uuid-0_8" = [ "postgres-types/with-uuid-0_8" ];
+ "with-uuid-1" = [ "postgres-types/with-uuid-1" ];
+ };
+ resolvedDefaultFeatures = [ "default" "runtime" "with-chrono-0_4" "with-uuid-1" ];
+ };
+ "tokio-rustls" = rec {
+ crateName = "tokio-rustls";
+ version = "0.26.4";
+ edition = "2021";
+ sha256 = "0qggwknz9w4bbsv1z158hlnpkm97j3w8v31586jipn99byaala8p";
+ libName = "tokio_rustls";
+ dependencies = [
+ {
+ name = "rustls";
+ packageId = "rustls";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "full" ];
+ }
+ ];
+ features = {
+ "aws-lc-rs" = [ "aws_lc_rs" ];
+ "aws_lc_rs" = [ "rustls/aws_lc_rs" ];
+ "brotli" = [ "rustls/brotli" ];
+ "default" = [ "logging" "tls12" "aws_lc_rs" ];
+ "fips" = [ "rustls/fips" ];
+ "logging" = [ "rustls/logging" ];
+ "ring" = [ "rustls/ring" ];
+ "tls12" = [ "rustls/tls12" ];
+ "zlib" = [ "rustls/zlib" ];
+ };
+ resolvedDefaultFeatures = [ "tls12" ];
+ };
+ "tokio-stream" = rec {
+ crateName = "tokio-stream";
+ version = "0.1.17";
+ edition = "2021";
+ sha256 = "0ix0770hfp4x5rh5bl7vsnr3d4iz4ms43i522xw70xaap9xqv9gc";
+ libName = "tokio_stream";
+ authors = [
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "sync" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "full" "test-util" ];
+ }
+ ];
+ features = {
+ "default" = [ "time" ];
+ "fs" = [ "tokio/fs" ];
+ "full" = [ "time" "net" "io-util" "fs" "sync" "signal" ];
+ "io-util" = [ "tokio/io-util" ];
+ "net" = [ "tokio/net" ];
+ "signal" = [ "tokio/signal" ];
+ "sync" = [ "tokio/sync" "tokio-util" ];
+ "time" = [ "tokio/time" ];
+ "tokio-util" = [ "dep:tokio-util" ];
+ };
+ resolvedDefaultFeatures = [ "default" "net" "time" ];
+ };
+ "tokio-util" = rec {
+ crateName = "tokio-util";
+ version = "0.7.17";
+ edition = "2021";
+ sha256 = "152m2rp40bjphca5j581csczarvvr974zvwpzpldcwv0wygi9yif";
+ libName = "tokio_util";
+ authors = [
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ }
+ {
+ name = "futures-sink";
+ packageId = "futures-sink";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "sync" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "full" ];
+ }
+ ];
+ features = {
+ "__docs_rs" = [ "futures-util" ];
+ "compat" = [ "futures-io" ];
+ "full" = [ "codec" "compat" "io-util" "time" "net" "rt" "join-map" ];
+ "futures-io" = [ "dep:futures-io" ];
+ "futures-util" = [ "dep:futures-util" ];
+ "hashbrown" = [ "dep:hashbrown" ];
+ "io-util" = [ "io" "tokio/rt" "tokio/io-util" ];
+ "join-map" = [ "rt" "hashbrown" ];
+ "net" = [ "tokio/net" ];
+ "rt" = [ "tokio/rt" "tokio/sync" "futures-util" ];
+ "slab" = [ "dep:slab" ];
+ "time" = [ "tokio/time" "slab" ];
+ "tracing" = [ "dep:tracing" ];
+ };
+ resolvedDefaultFeatures = [ "codec" "default" "io" ];
+ };
+ "toml 0.5.11" = rec {
+ crateName = "toml";
+ version = "0.5.11";
+ edition = "2018";
+ sha256 = "0d2266nx8b3n22c7k24x4428z6di8n83a9n466jm7a2hipfz1xzl";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ ];
+ features = {
+ "indexmap" = [ "dep:indexmap" ];
+ "preserve_order" = [ "indexmap" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "toml 0.9.8" = rec {
+ crateName = "toml";
+ version = "0.9.8";
+ edition = "2021";
+ sha256 = "1n569s0dgdmqjy21wf85df7kx3vb1zgin3pc2rvy4j8lnqgqpp7h";
+ dependencies = [
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde_core";
+ packageId = "serde_core";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "serde_spanned";
+ packageId = "serde_spanned";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "toml_datetime";
+ packageId = "toml_datetime";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "toml_parser";
+ packageId = "toml_parser";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "toml_writer";
+ packageId = "toml_writer";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "winnow";
+ packageId = "winnow";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "debug" = [ "std" "toml_parser?/debug" "dep:anstream" "dep:anstyle" ];
+ "default" = [ "std" "serde" "parse" "display" ];
+ "display" = [ "dep:toml_writer" ];
+ "fast_hash" = [ "preserve_order" "dep:foldhash" ];
+ "parse" = [ "dep:toml_parser" "dep:winnow" ];
+ "preserve_order" = [ "dep:indexmap" "std" ];
+ "serde" = [ "dep:serde_core" "toml_datetime/serde" "serde_spanned/serde" ];
+ "std" = [ "indexmap?/std" "serde_core?/std" "toml_parser?/std" "toml_writer?/std" "toml_datetime/std" "serde_spanned/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "display" "parse" "serde" "std" ];
+ };
+ "toml_datetime" = rec {
+ crateName = "toml_datetime";
+ version = "0.7.3";
+ edition = "2021";
+ sha256 = "0cs5f8y4rdsmmwipjclmq97lrwppjy2qa3vja4f9d5xwxcwvdkgj";
+ dependencies = [
+ {
+ name = "serde_core";
+ packageId = "serde_core";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "serde_core?/alloc" ];
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde_core" ];
+ "std" = [ "alloc" "serde_core?/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "serde" "std" ];
+ };
+ "toml_parser" = rec {
+ crateName = "toml_parser";
+ version = "1.0.4";
+ edition = "2021";
+ sha256 = "03l0750d1cyliij9vac4afpp1syh1a6yhbbalnslpnsvsdlf5jy0";
+ dependencies = [
+ {
+ name = "winnow";
+ packageId = "winnow";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "debug" = [ "std" "dep:anstream" "dep:anstyle" ];
+ "default" = [ "std" ];
+ "simd" = [ "winnow/simd" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "std" ];
+ };
+ "toml_writer" = rec {
+ crateName = "toml_writer";
+ version = "1.0.4";
+ edition = "2021";
+ sha256 = "1wkvcdy1ymp2qfipmb74fv3xa7m7qz7ps9hndllasx1nfda2p2yz";
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "std" ];
+ };
+ "tower" = rec {
+ crateName = "tower";
+ version = "0.5.2";
+ edition = "2018";
+ sha256 = "1ybmd59nm4abl9bsvy6rx31m4zvzp5rja2slzpn712y9b68ssffh";
+ authors = [
+ "Tower Maintainers <team@tower-rs.com>"
+ ];
+ dependencies = [
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ optional = true;
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ optional = true;
+ }
+ {
+ name = "sync_wrapper";
+ packageId = "sync_wrapper";
+ optional = true;
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ optional = true;
+ features = [ "sync" ];
+ }
+ {
+ name = "tower-layer";
+ packageId = "tower-layer";
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" "sync" "test-util" "rt-multi-thread" ];
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ ];
+ features = {
+ "__common" = [ "futures-core" "pin-project-lite" ];
+ "balance" = [ "discover" "load" "ready-cache" "make" "slab" "util" ];
+ "buffer" = [ "__common" "tokio/sync" "tokio/rt" "tokio-util" "tracing" ];
+ "discover" = [ "__common" ];
+ "filter" = [ "__common" "futures-util" ];
+ "full" = [ "balance" "buffer" "discover" "filter" "hedge" "limit" "load" "load-shed" "make" "ready-cache" "reconnect" "retry" "spawn-ready" "steer" "timeout" "util" ];
+ "futures-core" = [ "dep:futures-core" ];
+ "futures-util" = [ "dep:futures-util" ];
+ "hdrhistogram" = [ "dep:hdrhistogram" ];
+ "hedge" = [ "util" "filter" "futures-util" "hdrhistogram" "tokio/time" "tracing" ];
+ "indexmap" = [ "dep:indexmap" ];
+ "limit" = [ "__common" "tokio/time" "tokio/sync" "tokio-util" "tracing" ];
+ "load" = [ "__common" "tokio/time" "tracing" ];
+ "load-shed" = [ "__common" ];
+ "log" = [ "tracing/log" ];
+ "make" = [ "futures-util" "pin-project-lite" "tokio/io-std" ];
+ "pin-project-lite" = [ "dep:pin-project-lite" ];
+ "ready-cache" = [ "futures-core" "futures-util" "indexmap" "tokio/sync" "tracing" "pin-project-lite" ];
+ "reconnect" = [ "make" "tokio/io-std" "tracing" ];
+ "retry" = [ "__common" "tokio/time" "util" ];
+ "slab" = [ "dep:slab" ];
+ "spawn-ready" = [ "__common" "futures-util" "tokio/sync" "tokio/rt" "util" "tracing" ];
+ "sync_wrapper" = [ "dep:sync_wrapper" ];
+ "timeout" = [ "pin-project-lite" "tokio/time" ];
+ "tokio" = [ "dep:tokio" ];
+ "tokio-stream" = [ "dep:tokio-stream" ];
+ "tokio-util" = [ "dep:tokio-util" ];
+ "tracing" = [ "dep:tracing" ];
+ "util" = [ "__common" "futures-util" "pin-project-lite" "sync_wrapper" ];
+ };
+ resolvedDefaultFeatures = [ "__common" "futures-core" "futures-util" "log" "make" "pin-project-lite" "retry" "sync_wrapper" "timeout" "tokio" "tracing" "util" ];
+ };
+ "tower-http" = rec {
+ crateName = "tower-http";
+ version = "0.6.7";
+ edition = "2018";
+ sha256 = "0mk4f1iai048f84px4avhfkxkjnkrjcdgxc5wml8wbj4kpwldwcw";
+ libName = "tower_http";
+ authors = [
+ "Tower Maintainers <team@tower-rs.com>"
+ ];
+ dependencies = [
+ {
+ name = "async-compression";
+ packageId = "async-compression";
+ optional = true;
+ features = [ "tokio" ];
+ }
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "http";
+ packageId = "http 1.4.0";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body 1.0.1";
+ optional = true;
+ }
+ {
+ name = "iri-string";
+ packageId = "iri-string";
+ optional = true;
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "tokio-util";
+ packageId = "tokio-util";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "io" ];
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ optional = true;
+ }
+ {
+ name = "tower-layer";
+ packageId = "tower-layer";
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes";
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body 1.0.1";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "full" ];
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ features = [ "buffer" "util" "retry" "make" "timeout" ];
+ }
+ ];
+ features = {
+ "async-compression" = [ "dep:async-compression" ];
+ "auth" = [ "base64" "validate-request" ];
+ "base64" = [ "dep:base64" ];
+ "catch-panic" = [ "tracing" "futures-util/std" "dep:http-body" "dep:http-body-util" ];
+ "compression-br" = [ "async-compression/brotli" "futures-core" "dep:http-body" "tokio-util" "tokio" ];
+ "compression-deflate" = [ "async-compression/zlib" "futures-core" "dep:http-body" "tokio-util" "tokio" ];
+ "compression-full" = [ "compression-br" "compression-deflate" "compression-gzip" "compression-zstd" ];
+ "compression-gzip" = [ "async-compression/gzip" "futures-core" "dep:http-body" "tokio-util" "tokio" ];
+ "compression-zstd" = [ "async-compression/zstd" "futures-core" "dep:http-body" "tokio-util" "tokio" ];
+ "decompression-br" = [ "async-compression/brotli" "futures-core" "dep:http-body" "dep:http-body-util" "tokio-util" "tokio" ];
+ "decompression-deflate" = [ "async-compression/zlib" "futures-core" "dep:http-body" "dep:http-body-util" "tokio-util" "tokio" ];
+ "decompression-full" = [ "decompression-br" "decompression-deflate" "decompression-gzip" "decompression-zstd" ];
+ "decompression-gzip" = [ "async-compression/gzip" "futures-core" "dep:http-body" "dep:http-body-util" "tokio-util" "tokio" ];
+ "decompression-zstd" = [ "async-compression/zstd" "futures-core" "dep:http-body" "dep:http-body-util" "tokio-util" "tokio" ];
+ "follow-redirect" = [ "futures-util" "dep:http-body" "iri-string" "tower/util" ];
+ "fs" = [ "futures-core" "futures-util" "dep:http-body" "dep:http-body-util" "tokio/fs" "tokio-util/io" "tokio/io-util" "dep:http-range-header" "mime_guess" "mime" "percent-encoding" "httpdate" "set-status" "futures-util/alloc" "tracing" ];
+ "full" = [ "add-extension" "auth" "catch-panic" "compression-full" "cors" "decompression-full" "follow-redirect" "fs" "limit" "map-request-body" "map-response-body" "metrics" "normalize-path" "propagate-header" "redirect" "request-id" "sensitive-headers" "set-header" "set-status" "timeout" "trace" "util" "validate-request" ];
+ "futures-core" = [ "dep:futures-core" ];
+ "futures-util" = [ "dep:futures-util" ];
+ "httpdate" = [ "dep:httpdate" ];
+ "iri-string" = [ "dep:iri-string" ];
+ "limit" = [ "dep:http-body" "dep:http-body-util" ];
+ "metrics" = [ "dep:http-body" "tokio/time" ];
+ "mime" = [ "dep:mime" ];
+ "mime_guess" = [ "dep:mime_guess" ];
+ "percent-encoding" = [ "dep:percent-encoding" ];
+ "request-id" = [ "uuid" ];
+ "timeout" = [ "dep:http-body" "tokio/time" ];
+ "tokio" = [ "dep:tokio" ];
+ "tokio-util" = [ "dep:tokio-util" ];
+ "tower" = [ "dep:tower" ];
+ "trace" = [ "dep:http-body" "tracing" ];
+ "tracing" = [ "dep:tracing" ];
+ "util" = [ "tower" ];
+ "uuid" = [ "dep:uuid" ];
+ "validate-request" = [ "mime" ];
+ };
+ resolvedDefaultFeatures = [ "async-compression" "compression-br" "compression-deflate" "compression-gzip" "compression-zstd" "cors" "default" "follow-redirect" "futures-core" "futures-util" "iri-string" "tokio" "tokio-util" "tower" "trace" "tracing" ];
+ };
+ "tower-layer" = rec {
+ crateName = "tower-layer";
+ version = "0.3.3";
+ edition = "2018";
+ sha256 = "03kq92fdzxin51w8iqix06dcfgydyvx7yr6izjq0p626v9n2l70j";
+ libName = "tower_layer";
+ authors = [
+ "Tower Maintainers <team@tower-rs.com>"
+ ];
+
+ };
+ "tower-service" = rec {
+ crateName = "tower-service";
+ version = "0.3.3";
+ edition = "2018";
+ sha256 = "1hzfkvkci33ra94xjx64vv3pp0sq346w06fpkcdwjcid7zhvdycd";
+ libName = "tower_service";
+ authors = [
+ "Tower Maintainers <team@tower-rs.com>"
+ ];
+
+ };
+ "tracing" = rec {
+ crateName = "tracing";
+ version = "0.1.41";
+ edition = "2018";
+ sha256 = "1l5xrzyjfyayrwhvhldfnwdyligi1mpqm8mzbi2m1d6y6p2hlkkq";
+ authors = [
+ "Eliza Weisman <eliza@buoyant.io>"
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "log";
+ packageId = "log";
+ optional = true;
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "tracing-attributes";
+ packageId = "tracing-attributes";
+ optional = true;
+ }
+ {
+ name = "tracing-core";
+ packageId = "tracing-core";
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "log";
+ packageId = "log";
+ }
+ ];
+ features = {
+ "attributes" = [ "tracing-attributes" ];
+ "default" = [ "std" "attributes" ];
+ "log" = [ "dep:log" ];
+ "log-always" = [ "log" ];
+ "std" = [ "tracing-core/std" ];
+ "tracing-attributes" = [ "dep:tracing-attributes" ];
+ "valuable" = [ "tracing-core/valuable" ];
+ };
+ resolvedDefaultFeatures = [ "attributes" "default" "log" "std" "tracing-attributes" ];
+ };
+ "tracing-attributes" = rec {
+ crateName = "tracing-attributes";
+ version = "0.1.30";
+ edition = "2018";
+ sha256 = "00v9bhfgfg3v101nmmy7s3vdwadb7ngc8c1iw6wai9vj9sv3lf41";
+ procMacro = true;
+ libName = "tracing_attributes";
+ authors = [
+ "Tokio Contributors <team@tokio.rs>"
+ "Eliza Weisman <eliza@buoyant.io>"
+ "David Barsky <dbarsky@amazon.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ usesDefaultFeatures = false;
+ features = [ "full" "parsing" "printing" "visit-mut" "clone-impls" "extra-traits" "proc-macro" ];
+ }
+ ];
+ features = {
+ };
+ };
+ "tracing-core" = rec {
+ crateName = "tracing-core";
+ version = "0.1.34";
+ edition = "2018";
+ sha256 = "0y3nc4mpnr79rzkrcylv5f5bnjjp19lsxwis9l4kzs97ya0jbldr";
+ libName = "tracing_core";
+ authors = [
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ optional = true;
+ }
+ {
+ name = "valuable";
+ packageId = "valuable";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: (target."tracing_unstable" or false);
+ }
+ ];
+ features = {
+ "default" = [ "std" "valuable?/std" ];
+ "once_cell" = [ "dep:once_cell" ];
+ "std" = [ "once_cell" ];
+ "valuable" = [ "dep:valuable" ];
+ };
+ resolvedDefaultFeatures = [ "default" "once_cell" "std" ];
+ };
+ "tracing-futures" = rec {
+ crateName = "tracing-futures";
+ version = "0.2.5";
+ edition = "2018";
+ sha256 = "1wimg0iwa2ldq7xv98lvivvf3q9ykfminig8r1bs0ig22np9bl4p";
+ libName = "tracing_futures";
+ authors = [
+ "Eliza Weisman <eliza@buoyant.io>"
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "pin-project";
+ packageId = "pin-project";
+ optional = true;
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std-future" "std" ];
+ "futures" = [ "dep:futures" ];
+ "futures-01" = [ "futures_01" "std" ];
+ "futures-03" = [ "std-future" "futures" "futures-task" "std" ];
+ "futures-task" = [ "dep:futures-task" ];
+ "futures_01" = [ "dep:futures_01" ];
+ "pin-project" = [ "dep:pin-project" ];
+ "std" = [ "tracing/std" ];
+ "std-future" = [ "pin-project" ];
+ "tokio" = [ "dep:tokio" ];
+ "tokio-executor" = [ "dep:tokio-executor" ];
+ };
+ resolvedDefaultFeatures = [ "default" "pin-project" "std" "std-future" ];
+ };
+ "tracing-log" = rec {
+ crateName = "tracing-log";
+ version = "0.2.0";
+ edition = "2018";
+ sha256 = "1hs77z026k730ij1a9dhahzrl0s073gfa2hm5p0fbl0b80gmz1gf";
+ libName = "tracing_log";
+ authors = [
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ }
+ {
+ name = "tracing-core";
+ packageId = "tracing-core";
+ }
+ ];
+ features = {
+ "ahash" = [ "dep:ahash" ];
+ "default" = [ "log-tracer" "std" ];
+ "interest-cache" = [ "lru" "ahash" ];
+ "lru" = [ "dep:lru" ];
+ "std" = [ "log/std" ];
+ };
+ resolvedDefaultFeatures = [ "log-tracer" "std" ];
+ };
+ "tracing-subscriber" = rec {
+ crateName = "tracing-subscriber";
+ version = "0.3.20";
+ edition = "2018";
+ sha256 = "1m9447bxq7236avgl6n5yb2aqwplrghm61dgipw03mh7ad7s2m10";
+ libName = "tracing_subscriber";
+ authors = [
+ "Eliza Weisman <eliza@buoyant.io>"
+ "David Barsky <me@davidbarsky.com>"
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "matchers";
+ packageId = "matchers";
+ optional = true;
+ }
+ {
+ name = "nu-ansi-term";
+ packageId = "nu-ansi-term";
+ optional = true;
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ optional = true;
+ }
+ {
+ name = "regex-automata";
+ packageId = "regex-automata";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "sharded-slab";
+ packageId = "sharded-slab";
+ optional = true;
+ }
+ {
+ name = "smallvec";
+ packageId = "smallvec";
+ optional = true;
+ }
+ {
+ name = "thread_local";
+ packageId = "thread_local";
+ optional = true;
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "tracing-core";
+ packageId = "tracing-core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "tracing-log";
+ packageId = "tracing-log";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "log-tracer" "std" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tracing";
+ packageId = "tracing";
+ }
+ {
+ name = "tracing-log";
+ packageId = "tracing-log";
+ }
+ ];
+ features = {
+ "ansi" = [ "fmt" "nu-ansi-term" ];
+ "chrono" = [ "dep:chrono" ];
+ "default" = [ "smallvec" "fmt" "ansi" "tracing-log" "std" ];
+ "env-filter" = [ "matchers" "once_cell" "tracing" "std" "thread_local" "dep:regex-automata" ];
+ "fmt" = [ "registry" "std" ];
+ "json" = [ "tracing-serde" "serde" "serde_json" ];
+ "local-time" = [ "time/local-offset" ];
+ "matchers" = [ "dep:matchers" ];
+ "nu-ansi-term" = [ "dep:nu-ansi-term" ];
+ "once_cell" = [ "dep:once_cell" ];
+ "parking_lot" = [ "dep:parking_lot" ];
+ "registry" = [ "sharded-slab" "thread_local" "std" ];
+ "serde" = [ "dep:serde" ];
+ "serde_json" = [ "dep:serde_json" ];
+ "sharded-slab" = [ "dep:sharded-slab" ];
+ "smallvec" = [ "dep:smallvec" ];
+ "std" = [ "alloc" "tracing-core/std" ];
+ "thread_local" = [ "dep:thread_local" ];
+ "time" = [ "dep:time" ];
+ "tracing" = [ "dep:tracing" ];
+ "tracing-log" = [ "dep:tracing-log" ];
+ "tracing-serde" = [ "dep:tracing-serde" ];
+ "valuable" = [ "tracing-core/valuable" "valuable_crate" "valuable-serde" "tracing-serde/valuable" ];
+ "valuable-serde" = [ "dep:valuable-serde" ];
+ "valuable_crate" = [ "dep:valuable_crate" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "ansi" "default" "env-filter" "fmt" "matchers" "nu-ansi-term" "once_cell" "registry" "sharded-slab" "smallvec" "std" "thread_local" "tracing" "tracing-log" ];
+ };
+ "try-lock" = rec {
+ crateName = "try-lock";
+ version = "0.2.5";
+ edition = "2015";
+ sha256 = "0jqijrrvm1pyq34zn1jmy2vihd4jcrjlvsh4alkjahhssjnsn8g4";
+ libName = "try_lock";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+
+ };
+ "twox-hash" = rec {
+ crateName = "twox-hash";
+ version = "1.6.3";
+ edition = "2018";
+ crateBin = [];
+ sha256 = "0xgn72j36a270l5ls1jk88n7bmq2dhlfkbhdh5554hbagjsydzlp";
+ libName = "twox_hash";
+ authors = [
+ "Jake Goulding <jake.goulding@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.8.5";
+ optional = true;
+ }
+ {
+ name = "static_assertions";
+ packageId = "static_assertions";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "digest" = [ "dep:digest" ];
+ "digest_0_10" = [ "dep:digest_0_10" ];
+ "digest_0_9" = [ "dep:digest_0_9" ];
+ "rand" = [ "dep:rand" ];
+ "serde" = [ "dep:serde" ];
+ "serialize" = [ "serde" ];
+ "std" = [ "rand" ];
+ };
+ resolvedDefaultFeatures = [ "default" "rand" "std" ];
+ };
+ "typenum" = rec {
+ crateName = "typenum";
+ version = "1.19.0";
+ edition = "2018";
+ sha256 = "1fw2mpbn2vmqan56j1b3fbpcdg80mz26fm53fs16bq5xcq84hban";
+ authors = [
+ "Paho Lurie-Gregg <paho@paholg.com>"
+ "Andre Bogus <bogusandre@gmail.com>"
+ ];
+ features = {
+ "scale-info" = [ "dep:scale-info" ];
+ "scale_info" = [ "scale-info/derive" ];
+ };
+ };
+ "unicase" = rec {
+ crateName = "unicase";
+ version = "2.8.1";
+ edition = "2018";
+ sha256 = "0fd5ddbhpva7wrln2iah054ar2pc1drqjcll0f493vj3fv8l9f3m";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ features = {
+ };
+ };
+ "unicode-bidi" = rec {
+ crateName = "unicode-bidi";
+ version = "0.3.18";
+ edition = "2018";
+ sha256 = "1xcxwbsqa24b8vfchhzyyzgj0l6bn51ib5v8j6krha0m77dva72w";
+ libName = "unicode_bidi";
+ authors = [
+ "The Servo Project Developers"
+ ];
+ features = {
+ "default" = [ "std" "hardcoded-data" ];
+ "flame" = [ "dep:flame" ];
+ "flame_it" = [ "flame" "flamer" ];
+ "flamer" = [ "dep:flamer" ];
+ "serde" = [ "dep:serde" ];
+ "smallvec" = [ "dep:smallvec" ];
+ "with_serde" = [ "serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "hardcoded-data" "std" ];
+ };
+ "unicode-id-start" = rec {
+ crateName = "unicode-id-start";
+ version = "1.4.0";
+ edition = "2018";
+ sha256 = "01v0ig6a5dy75r9wwhnjfw1fzcj3nhcqj3q2c11dw6aykg99mdw1";
+ libName = "unicode_id_start";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ "Boshen <boshenc@gmail.com>"
+ ];
+
+ };
+ "unicode-ident" = rec {
+ crateName = "unicode-ident";
+ version = "1.0.22";
+ edition = "2018";
+ sha256 = "1x8xrz17vqi6qmkkcqr8cyf0an76ig7390j9cnqnk47zyv2gf4lk";
+ libName = "unicode_ident";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+
+ };
+ "unicode-linebreak" = rec {
+ crateName = "unicode-linebreak";
+ version = "0.1.5";
+ edition = "2021";
+ sha256 = "07spj2hh3daajg335m4wdav6nfkl0f6c0q72lc37blr97hych29v";
+ libName = "unicode_linebreak";
+ authors = [
+ "Axel Forsman <axelsfor@gmail.com>"
+ ];
+
+ };
+ "unicode-normalization" = rec {
+ crateName = "unicode-normalization";
+ version = "0.1.25";
+ edition = "2018";
+ sha256 = "1s76dcrxw7vs32yhpi0p074apdc3s7lak7809f3qvclwij3zdm2z";
+ libName = "unicode_normalization";
+ authors = [
+ "kwantam <kwantam@gmail.com>"
+ "Manish Goregaokar <manishsmail@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "tinyvec";
+ packageId = "tinyvec";
+ features = [ "alloc" ];
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "unicode-properties" = rec {
+ crateName = "unicode-properties";
+ version = "0.1.4";
+ edition = "2021";
+ sha256 = "07fpm3sqq7lm9gmgpxa93z31q933h3c3ypfwy4cdh6l42g3miw3x";
+ libName = "unicode_properties";
+ authors = [
+ "Charles Lew <crlf0710@gmail.com>"
+ "Manish Goregaokar <manishsmail@gmail.com>"
+ ];
+ features = {
+ "default" = [ "general-category" "emoji" ];
+ };
+ resolvedDefaultFeatures = [ "default" "emoji" "general-category" ];
+ };
+ "unicode-segmentation" = rec {
+ crateName = "unicode-segmentation";
+ version = "1.12.0";
+ edition = "2018";
+ sha256 = "14qla2jfx74yyb9ds3d2mpwpa4l4lzb9z57c6d2ba511458z5k7n";
+ libName = "unicode_segmentation";
+ authors = [
+ "kwantam <kwantam@gmail.com>"
+ "Manish Goregaokar <manishsmail@gmail.com>"
+ ];
+ features = {
+ };
+ };
+ "unicode-width" = rec {
+ crateName = "unicode-width";
+ version = "0.2.2";
+ edition = "2021";
+ sha256 = "0m7jjzlcccw716dy9423xxh0clys8pfpllc5smvfxrzdf66h9b5l";
+ libName = "unicode_width";
+ authors = [
+ "kwantam <kwantam@gmail.com>"
+ "Manish Goregaokar <manishsmail@gmail.com>"
+ ];
+ features = {
+ "core" = [ "dep:core" ];
+ "default" = [ "cjk" ];
+ "rustc-dep-of-std" = [ "std" "core" ];
+ "std" = [ "dep:std" ];
+ };
+ resolvedDefaultFeatures = [ "cjk" "default" ];
+ };
+ "unicode-xid" = rec {
+ crateName = "unicode-xid";
+ version = "0.2.6";
+ edition = "2015";
+ sha256 = "0lzqaky89fq0bcrh6jj6bhlz37scfd8c7dsj5dq7y32if56c1hgb";
+ libName = "unicode_xid";
+ authors = [
+ "erick.tryzelaar <erick.tryzelaar@gmail.com>"
+ "kwantam <kwantam@gmail.com>"
+ "Manish Goregaokar <manishsmail@gmail.com>"
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "universal-hash" = rec {
+ crateName = "universal-hash";
+ version = "0.5.1";
+ edition = "2021";
+ sha256 = "1sh79x677zkncasa95wz05b36134822w6qxmi1ck05fwi33f47gw";
+ libName = "universal_hash";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "crypto-common";
+ packageId = "crypto-common";
+ }
+ {
+ name = "subtle";
+ packageId = "subtle";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "std" = [ "crypto-common/std" ];
+ };
+ };
+ "untrusted" = rec {
+ crateName = "untrusted";
+ version = "0.9.0";
+ edition = "2018";
+ sha256 = "1ha7ib98vkc538x0z60gfn0fc5whqdd85mb87dvisdcaifi6vjwf";
+ authors = [
+ "Brian Smith <brian@briansmith.org>"
+ ];
+
+ };
+ "unty" = rec {
+ crateName = "unty";
+ version = "0.0.4";
+ edition = "2021";
+ sha256 = "1blhyv01qiv5sb72sal3xa1l8nzck3answawxkkiw3fd2x1phjbd";
+ authors = [
+ "Victor Koenders <bincode@trang.ar>"
+ ];
+
+ };
+ "url" = rec {
+ crateName = "url";
+ version = "2.5.7";
+ edition = "2018";
+ sha256 = "0nzghdv0kcksyvri0npxbjzyx2ihprks5k590y77bld355m17g08";
+ authors = [
+ "The rust-url developers"
+ ];
+ dependencies = [
+ {
+ name = "form_urlencoded";
+ packageId = "form_urlencoded";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "idna";
+ packageId = "idna";
+ usesDefaultFeatures = false;
+ features = [ "alloc" "compiled_data" ];
+ }
+ {
+ name = "percent-encoding";
+ packageId = "percent-encoding";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "idna/std" "percent-encoding/std" "form_urlencoded/std" "serde/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "serde" "std" ];
+ };
+ "utf-8" = rec {
+ crateName = "utf-8";
+ version = "0.7.6";
+ edition = "2015";
+ sha256 = "1a9ns3fvgird0snjkd3wbdhwd3zdpc2h5gpyybrfr6ra5pkqxk09";
+ libName = "utf8";
+ authors = [
+ "Simon Sapin <simon.sapin@exyr.org>"
+ ];
+
+ };
+ "utf8_iter" = rec {
+ crateName = "utf8_iter";
+ version = "1.0.4";
+ edition = "2021";
+ sha256 = "1gmna9flnj8dbyd8ba17zigrp9c4c3zclngf5lnb5yvz1ri41hdn";
+ authors = [
+ "Henri Sivonen <hsivonen@hsivonen.fi>"
+ ];
+
+ };
+ "utf8parse" = rec {
+ crateName = "utf8parse";
+ version = "0.2.2";
+ edition = "2018";
+ sha256 = "088807qwjq46azicqwbhlmzwrbkz7l4hpw43sdkdyyk524vdxaq6";
+ authors = [
+ "Joe Wilm <joe@jwilm.com>"
+ "Christian Duerr <contact@christianduerr.com>"
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "uuid" = rec {
+ crateName = "uuid";
+ version = "1.21.0";
+ edition = "2021";
+ sha256 = "1nsxfd17gfkvl1jmwcy5lnq6z32b8kf19is04byl6b95an2k6wmn";
+ authors = [
+ "Ashley Mannix<ashleymannix@live.com.au>"
+ "Dylan DPC<dylan.dpc@gmail.com>"
+ "Hunar Roop Kahlon<hunar.roop@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.4.1";
+ optional = true;
+ target = { target, features }: (!(("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null))));
+ }
+ {
+ name = "js-sys";
+ packageId = "js-sys";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: (("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null)) && (builtins.elem "atomics" targetFeatures));
+ }
+ {
+ name = "serde_core";
+ packageId = "serde_core";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "wasm-bindgen";
+ packageId = "wasm-bindgen";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: (("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null)));
+ features = [ "msrv" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "wasm-bindgen";
+ packageId = "wasm-bindgen";
+ target = {target, features}: (("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null)));
+ }
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "atomic" = [ "dep:atomic" ];
+ "borsh" = [ "dep:borsh" "dep:borsh-derive" ];
+ "bytemuck" = [ "dep:bytemuck" ];
+ "default" = [ "std" ];
+ "fast-rng" = [ "rng" "dep:rand" ];
+ "js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
+ "md5" = [ "dep:md-5" ];
+ "rng" = [ "dep:getrandom" ];
+ "rng-getrandom" = [ "rng" "dep:getrandom" "uuid-rng-internal-lib" "uuid-rng-internal-lib/getrandom" ];
+ "rng-rand" = [ "rng" "dep:rand" "uuid-rng-internal-lib" "uuid-rng-internal-lib/rand" ];
+ "serde" = [ "dep:serde_core" ];
+ "sha1" = [ "dep:sha1_smol" ];
+ "slog" = [ "dep:slog" ];
+ "std" = [ "wasm-bindgen?/std" "js-sys?/std" ];
+ "uuid-rng-internal-lib" = [ "dep:uuid-rng-internal-lib" ];
+ "v1" = [ "atomic" ];
+ "v3" = [ "md5" ];
+ "v4" = [ "rng" ];
+ "v5" = [ "sha1" ];
+ "v6" = [ "atomic" ];
+ "v7" = [ "rng" ];
+ "zerocopy" = [ "dep:zerocopy" ];
+ };
+ resolvedDefaultFeatures = [ "default" "rng" "serde" "std" "v4" ];
+ };
+ "v_htmlescape" = rec {
+ crateName = "v_htmlescape";
+ version = "0.15.8";
+ edition = "2021";
+ sha256 = "135inp4x7cc32k0hzrymlz1baf0rj0ah5h82nrpa9w0hqpxmg0jf";
+ authors = [
+ "Juan Aguilar Santillana <mhpoin@gmail.com>"
+ ];
+ features = {
+ "buf-min" = [ "dep:buf-min" ];
+ "bytes-buf" = [ "buf-min" ];
+ };
+ };
+ "valuable" = rec {
+ crateName = "valuable";
+ version = "0.1.1";
+ edition = "2021";
+ sha256 = "0r9srp55v7g27s5bg7a2m095fzckrcdca5maih6dy9bay6fflwxs";
+ features = {
+ "default" = [ "std" ];
+ "derive" = [ "valuable-derive" ];
+ "std" = [ "alloc" ];
+ "valuable-derive" = [ "dep:valuable-derive" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "std" ];
+ };
+ "vcpkg" = rec {
+ crateName = "vcpkg";
+ version = "0.2.15";
+ edition = "2015";
+ sha256 = "09i4nf5y8lig6xgj3f7fyrvzd3nlaw4znrihw8psidvv5yk4xkdc";
+ authors = [
+ "Jim McGrath <jimmc2@gmail.com>"
+ ];
+
+ };
+ "version_check" = rec {
+ crateName = "version_check";
+ version = "0.9.5";
+ edition = "2015";
+ sha256 = "0nhhi4i5x89gm911azqbn7avs9mdacw2i3vcz3cnmz3mv4rqz4hb";
+ authors = [
+ "Sergio Benitez <sb@sergio.bz>"
+ ];
+
+ };
+ "virtue" = rec {
+ crateName = "virtue";
+ version = "0.0.18";
+ edition = "2021";
+ sha256 = "1cgp79pzzs117kjlc3jnnkixbyaqri12j40mx2an41qhrymv27h5";
+ features = {
+ "proc-macro2" = [ "dep:proc-macro2" ];
+ };
+ };
+ "vlq" = rec {
+ crateName = "vlq";
+ version = "0.5.1";
+ edition = "2015";
+ sha256 = "1zygijgl47gasi0zx34ak1jq2n4qmk0cx2zpn13shba157npxpb5";
+ authors = [
+ "Tom Tromey <tom@tromey.com>"
+ "Nick Fitzgerald <fitzgen@gmail.com>"
+ ];
+
+ };
+ "vsimd" = rec {
+ crateName = "vsimd";
+ version = "0.8.0";
+ edition = "2021";
+ sha256 = "0r4wn54jxb12r0x023r5yxcrqk785akmbddqkcafz9fm03584c2w";
+ features = {
+ "detect" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "detect" "std" ];
+ };
+ "walkdir" = rec {
+ crateName = "walkdir";
+ version = "2.5.0";
+ edition = "2018";
+ sha256 = "0jsy7a710qv8gld5957ybrnc07gavppp963gs32xk4ag8130jy99";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "same-file";
+ packageId = "same-file";
+ }
+ {
+ name = "winapi-util";
+ packageId = "winapi-util";
+ target = { target, features }: (target."windows" or false);
+ }
+ ];
+
+ };
+ "want" = rec {
+ crateName = "want";
+ version = "0.3.1";
+ edition = "2018";
+ sha256 = "03hbfrnvqqdchb5kgxyavb9jabwza0dmh2vw5kg0dq8rxl57d9xz";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "try-lock";
+ packageId = "try-lock";
+ }
+ ];
+
+ };
+ "wasi 0.11.1+wasi-snapshot-preview1" = rec {
+ crateName = "wasi";
+ version = "0.11.1+wasi-snapshot-preview1";
+ edition = "2018";
+ sha256 = "0jx49r7nbkbhyfrfyhz0bm4817yrnxgd3jiwwwfv0zl439jyrwyc";
+ authors = [
+ "The Cranelift Project Developers"
+ ];
+ features = {
+ "core" = [ "dep:core" ];
+ "default" = [ "std" ];
+ "rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" ];
+ "rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "wasi 0.9.0+wasi-snapshot-preview1" = rec {
+ crateName = "wasi";
+ version = "0.9.0+wasi-snapshot-preview1";
+ edition = "2018";
+ sha256 = "06g5v3vrdapfzvfq662cij7v8a1flwr2my45nnncdv2galrdzkfc";
+ authors = [
+ "The Cranelift Project Developers"
+ ];
+ features = {
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "std" ];
+ "rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ];
+ "rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "wasip2" = rec {
+ crateName = "wasip2";
+ version = "1.0.1+wasi-0.2.4";
+ edition = "2021";
+ sha256 = "1rsqmpspwy0zja82xx7kbkbg9fv34a4a2if3sbd76dy64a244qh5";
+ dependencies = [
+ {
+ name = "wit-bindgen";
+ packageId = "wit-bindgen 0.46.0";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "dep:alloc" ];
+ "bitflags" = [ "wit-bindgen/bitflags" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "std" "bitflags" ];
+ "rustc-dep-of-std" = [ "core" "alloc" "wit-bindgen/rustc-dep-of-std" ];
+ };
+ };
+ "wasip3" = rec {
+ crateName = "wasip3";
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06";
+ edition = "2021";
+ sha256 = "19dc8p0y2mfrvgk3qw3c3240nfbylv22mvyxz84dqpgai2zzha2l";
+ dependencies = [
+ {
+ name = "wit-bindgen";
+ packageId = "wit-bindgen 0.51.0";
+ usesDefaultFeatures = false;
+ features = [ "async" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "wit-bindgen";
+ packageId = "wit-bindgen 0.51.0";
+ usesDefaultFeatures = false;
+ features = [ "async-spawn" ];
+ }
+ ];
+ features = {
+ "http-compat" = [ "dep:bytes" "dep:http-body" "dep:http" "dep:thiserror" "wit-bindgen/async-spawn" ];
+ };
+ };
+ "wasite" = rec {
+ crateName = "wasite";
+ version = "0.1.0";
+ edition = "2018";
+ sha256 = "0nw5h9nmcl4fyf4j5d4mfdjfgvwi1cakpi349wc4zrr59wxxinmq";
+
+ };
+ "wasm-bindgen" = rec {
+ crateName = "wasm-bindgen";
+ version = "0.2.105";
+ edition = "2021";
+ sha256 = "0q7aqnjwl9dn5sql46nbhzz63v3q0mdp3rsv7zcvn7s1zhypk5fs";
+ libName = "wasm_bindgen";
+ authors = [
+ "The wasm-bindgen Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "wasm-bindgen-macro";
+ packageId = "wasm-bindgen-macro";
+ }
+ {
+ name = "wasm-bindgen-shared";
+ packageId = "wasm-bindgen-shared";
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "rustversion";
+ packageId = "rustversion";
+ rename = "rustversion-compat";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "enable-interning" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "serde-serialize" = [ "serde" "serde_json" "std" ];
+ "serde_json" = [ "dep:serde_json" ];
+ "strict-macro" = [ "wasm-bindgen-macro/strict-macro" ];
+ };
+ resolvedDefaultFeatures = [ "default" "msrv" "std" ];
+ };
+ "wasm-bindgen-futures" = rec {
+ crateName = "wasm-bindgen-futures";
+ version = "0.4.55";
+ edition = "2021";
+ sha256 = "186l2nhznpbxcl2475dlm1pd7dfk5lqnz8frgk67qpkddh88h7sm";
+ libName = "wasm_bindgen_futures";
+ authors = [
+ "The wasm-bindgen Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "js-sys";
+ packageId = "js-sys";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "wasm-bindgen";
+ packageId = "wasm-bindgen";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "web-sys";
+ packageId = "web-sys";
+ usesDefaultFeatures = false;
+ target = { target, features }: (builtins.elem "atomics" targetFeatures);
+ features = [ "MessageEvent" "Worker" ];
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "futures-core" = [ "dep:futures-core" ];
+ "futures-core-03-stream" = [ "futures-core" ];
+ "std" = [ "wasm-bindgen/std" "js-sys/std" "web-sys/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "wasm-bindgen-macro" = rec {
+ crateName = "wasm-bindgen-macro";
+ version = "0.2.105";
+ edition = "2021";
+ sha256 = "1hjrmfnnjcksmf4kizsb78a0apr6ym73iwlhhszsf14ya0s469h4";
+ procMacro = true;
+ libName = "wasm_bindgen_macro";
+ authors = [
+ "The wasm-bindgen Developers"
+ ];
+ dependencies = [
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "wasm-bindgen-macro-support";
+ packageId = "wasm-bindgen-macro-support";
+ }
+ ];
+ features = {
+ "strict-macro" = [ "wasm-bindgen-macro-support/strict-macro" ];
+ };
+ };
+ "wasm-bindgen-macro-support" = rec {
+ crateName = "wasm-bindgen-macro-support";
+ version = "0.2.105";
+ edition = "2021";
+ sha256 = "1g3ydkp5js5qg56a30w9v090v5byslay2lidjiifa8pkv4ww62s2";
+ libName = "wasm_bindgen_macro_support";
+ authors = [
+ "The wasm-bindgen Developers"
+ ];
+ dependencies = [
+ {
+ name = "bumpalo";
+ packageId = "bumpalo";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "visit" "visit-mut" "full" ];
+ }
+ {
+ name = "wasm-bindgen-shared";
+ packageId = "wasm-bindgen-shared";
+ }
+ ];
+ features = {
+ "extra-traits" = [ "syn/extra-traits" ];
+ };
+ };
+ "wasm-bindgen-shared" = rec {
+ crateName = "wasm-bindgen-shared";
+ version = "0.2.105";
+ edition = "2021";
+ links = "wasm_bindgen";
+ sha256 = "0xmgnvf5m91lw6avjxha1v76bm27g2q5jw7c4lyb7g44ijiiiwkn";
+ libName = "wasm_bindgen_shared";
+ authors = [
+ "The wasm-bindgen Developers"
+ ];
+ dependencies = [
+ {
+ name = "unicode-ident";
+ packageId = "unicode-ident";
+ }
+ ];
+
+ };
+ "wasm-encoder" = rec {
+ crateName = "wasm-encoder";
+ version = "0.244.0";
+ edition = "2021";
+ sha256 = "06c35kv4h42vk3k51xjz1x6hn3mqwfswycmr6ziky033zvr6a04r";
+ libName = "wasm_encoder";
+ authors = [
+ "Nick Fitzgerald <fitzgen@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "leb128fmt";
+ packageId = "leb128fmt";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "wasmparser";
+ packageId = "wasmparser";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "simd" "simd" ];
+ }
+ ];
+ features = {
+ "component-model" = [ "wasmparser?/component-model" ];
+ "default" = [ "std" "component-model" ];
+ "std" = [ "wasmparser?/std" ];
+ "wasmparser" = [ "dep:wasmparser" ];
+ };
+ resolvedDefaultFeatures = [ "component-model" "std" "wasmparser" ];
+ };
+ "wasm-metadata" = rec {
+ crateName = "wasm-metadata";
+ version = "0.244.0";
+ edition = "2021";
+ sha256 = "02f9dhlnryd2l7zf03whlxai5sv26x4spfibjdvc3g9gd8z3a3mv";
+ libName = "wasm_metadata";
+ dependencies = [
+ {
+ name = "anyhow";
+ packageId = "anyhow";
+ }
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ usesDefaultFeatures = false;
+ features = [ "serde" ];
+ }
+ {
+ name = "wasm-encoder";
+ packageId = "wasm-encoder";
+ usesDefaultFeatures = false;
+ features = [ "std" "component-model" ];
+ }
+ {
+ name = "wasmparser";
+ packageId = "wasmparser";
+ usesDefaultFeatures = false;
+ features = [ "simd" "std" "component-model" "hash-collections" ];
+ }
+ ];
+ features = {
+ "clap" = [ "dep:clap" ];
+ "default" = [ "oci" "serde" ];
+ "oci" = [ "dep:auditable-serde" "dep:flate2" "dep:url" "dep:spdx" "dep:serde_json" "serde" ];
+ "serde" = [ "dep:serde_derive" "dep:serde" ];
+ };
+ };
+ "wasmparser" = rec {
+ crateName = "wasmparser";
+ version = "0.244.0";
+ edition = "2021";
+ sha256 = "1zi821hrlsxfhn39nqpmgzc0wk7ax3dv6vrs5cw6kb0v5v3hgf27";
+ authors = [
+ "Yury Delendik <ydelendik@mozilla.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "hashbrown";
+ packageId = "hashbrown 0.15.5";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "default-hasher" ];
+ }
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "semver";
+ packageId = "semver";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "component-model" = [ "dep:semver" ];
+ "default" = [ "std" "validate" "serde" "features" "component-model" "hash-collections" "simd" ];
+ "hash-collections" = [ "dep:hashbrown" "dep:indexmap" ];
+ "serde" = [ "dep:serde" "indexmap?/serde" "hashbrown?/serde" ];
+ "std" = [ "indexmap?/std" ];
+ };
+ resolvedDefaultFeatures = [ "component-model" "features" "hash-collections" "simd" "std" "validate" ];
+ };
+ "web-sys" = rec {
+ crateName = "web-sys";
+ version = "0.3.82";
+ edition = "2021";
+ sha256 = "18d9k5f92czaj27zmw20nzcnax5rdcx68r3s3ypg8irss309a7rs";
+ libName = "web_sys";
+ authors = [
+ "The wasm-bindgen Developers"
+ ];
+ dependencies = [
+ {
+ name = "js-sys";
+ packageId = "js-sys";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "wasm-bindgen";
+ packageId = "wasm-bindgen";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "AbortSignal" = [ "EventTarget" ];
+ "AnalyserNode" = [ "AudioNode" "EventTarget" ];
+ "Animation" = [ "EventTarget" ];
+ "AnimationEvent" = [ "Event" ];
+ "AnimationPlaybackEvent" = [ "Event" ];
+ "Attr" = [ "EventTarget" "Node" ];
+ "AudioBufferSourceNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
+ "AudioContext" = [ "BaseAudioContext" "EventTarget" ];
+ "AudioDestinationNode" = [ "AudioNode" "EventTarget" ];
+ "AudioNode" = [ "EventTarget" ];
+ "AudioProcessingEvent" = [ "Event" ];
+ "AudioScheduledSourceNode" = [ "AudioNode" "EventTarget" ];
+ "AudioStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
+ "AudioTrackList" = [ "EventTarget" ];
+ "AudioWorklet" = [ "Worklet" ];
+ "AudioWorkletGlobalScope" = [ "WorkletGlobalScope" ];
+ "AudioWorkletNode" = [ "AudioNode" "EventTarget" ];
+ "AuthenticatorAssertionResponse" = [ "AuthenticatorResponse" ];
+ "AuthenticatorAttestationResponse" = [ "AuthenticatorResponse" ];
+ "BaseAudioContext" = [ "EventTarget" ];
+ "BatteryManager" = [ "EventTarget" ];
+ "BeforeUnloadEvent" = [ "Event" ];
+ "BiquadFilterNode" = [ "AudioNode" "EventTarget" ];
+ "BlobEvent" = [ "Event" ];
+ "Bluetooth" = [ "EventTarget" ];
+ "BluetoothAdvertisingEvent" = [ "Event" ];
+ "BluetoothDevice" = [ "EventTarget" ];
+ "BluetoothPermissionResult" = [ "EventTarget" "PermissionStatus" ];
+ "BluetoothRemoteGattCharacteristic" = [ "EventTarget" ];
+ "BluetoothRemoteGattService" = [ "EventTarget" ];
+ "BroadcastChannel" = [ "EventTarget" ];
+ "CanvasCaptureMediaStream" = [ "EventTarget" "MediaStream" ];
+ "CanvasCaptureMediaStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
+ "CdataSection" = [ "CharacterData" "EventTarget" "Node" "Text" ];
+ "ChannelMergerNode" = [ "AudioNode" "EventTarget" ];
+ "ChannelSplitterNode" = [ "AudioNode" "EventTarget" ];
+ "CharacterData" = [ "EventTarget" "Node" ];
+ "ChromeWorker" = [ "EventTarget" "Worker" ];
+ "Clipboard" = [ "EventTarget" ];
+ "ClipboardEvent" = [ "Event" ];
+ "CloseEvent" = [ "Event" ];
+ "Comment" = [ "CharacterData" "EventTarget" "Node" ];
+ "CompositionEvent" = [ "Event" "UiEvent" ];
+ "ConstantSourceNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
+ "ConvolverNode" = [ "AudioNode" "EventTarget" ];
+ "CookieChangeEvent" = [ "Event" ];
+ "CookieStore" = [ "EventTarget" ];
+ "CssAnimation" = [ "Animation" "EventTarget" ];
+ "CssConditionRule" = [ "CssGroupingRule" "CssRule" ];
+ "CssCounterStyleRule" = [ "CssRule" ];
+ "CssFontFaceRule" = [ "CssRule" ];
+ "CssFontFeatureValuesRule" = [ "CssRule" ];
+ "CssGroupingRule" = [ "CssRule" ];
+ "CssImportRule" = [ "CssRule" ];
+ "CssKeyframeRule" = [ "CssRule" ];
+ "CssKeyframesRule" = [ "CssRule" ];
+ "CssMediaRule" = [ "CssConditionRule" "CssGroupingRule" "CssRule" ];
+ "CssNamespaceRule" = [ "CssRule" ];
+ "CssPageRule" = [ "CssRule" ];
+ "CssStyleRule" = [ "CssRule" ];
+ "CssStyleSheet" = [ "StyleSheet" ];
+ "CssSupportsRule" = [ "CssConditionRule" "CssGroupingRule" "CssRule" ];
+ "CssTransition" = [ "Animation" "EventTarget" ];
+ "CustomEvent" = [ "Event" ];
+ "DedicatedWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
+ "DelayNode" = [ "AudioNode" "EventTarget" ];
+ "DeviceLightEvent" = [ "Event" ];
+ "DeviceMotionEvent" = [ "Event" ];
+ "DeviceOrientationEvent" = [ "Event" ];
+ "DeviceProximityEvent" = [ "Event" ];
+ "Document" = [ "EventTarget" "Node" ];
+ "DocumentFragment" = [ "EventTarget" "Node" ];
+ "DocumentTimeline" = [ "AnimationTimeline" ];
+ "DocumentType" = [ "EventTarget" "Node" ];
+ "DomMatrix" = [ "DomMatrixReadOnly" ];
+ "DomPoint" = [ "DomPointReadOnly" ];
+ "DomRect" = [ "DomRectReadOnly" ];
+ "DomRequest" = [ "EventTarget" ];
+ "DragEvent" = [ "Event" "MouseEvent" "UiEvent" ];
+ "DynamicsCompressorNode" = [ "AudioNode" "EventTarget" ];
+ "Element" = [ "EventTarget" "Node" ];
+ "ErrorEvent" = [ "Event" ];
+ "EventSource" = [ "EventTarget" ];
+ "ExtendableCookieChangeEvent" = [ "Event" "ExtendableEvent" ];
+ "ExtendableEvent" = [ "Event" ];
+ "ExtendableMessageEvent" = [ "Event" "ExtendableEvent" ];
+ "FetchEvent" = [ "Event" "ExtendableEvent" ];
+ "FetchObserver" = [ "EventTarget" ];
+ "File" = [ "Blob" ];
+ "FileReader" = [ "EventTarget" ];
+ "FileSystemDirectoryEntry" = [ "FileSystemEntry" ];
+ "FileSystemDirectoryHandle" = [ "FileSystemHandle" ];
+ "FileSystemFileEntry" = [ "FileSystemEntry" ];
+ "FileSystemFileHandle" = [ "FileSystemHandle" ];
+ "FileSystemWritableFileStream" = [ "WritableStream" ];
+ "FocusEvent" = [ "Event" "UiEvent" ];
+ "FontFaceSet" = [ "EventTarget" ];
+ "FontFaceSetLoadEvent" = [ "Event" ];
+ "GainNode" = [ "AudioNode" "EventTarget" ];
+ "GamepadEvent" = [ "Event" ];
+ "GestureEvent" = [ "Event" "UiEvent" ];
+ "GpuDevice" = [ "EventTarget" ];
+ "GpuInternalError" = [ "GpuError" ];
+ "GpuOutOfMemoryError" = [ "GpuError" ];
+ "GpuPipelineError" = [ "DomException" ];
+ "GpuUncapturedErrorEvent" = [ "Event" ];
+ "GpuValidationError" = [ "GpuError" ];
+ "HashChangeEvent" = [ "Event" ];
+ "Hid" = [ "EventTarget" ];
+ "HidConnectionEvent" = [ "Event" ];
+ "HidDevice" = [ "EventTarget" ];
+ "HidInputReportEvent" = [ "Event" ];
+ "HtmlAnchorElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlAreaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlAudioElement" = [ "Element" "EventTarget" "HtmlElement" "HtmlMediaElement" "Node" ];
+ "HtmlBaseElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlBodyElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlBrElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlButtonElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlCanvasElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlDListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlDataElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlDataListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlDetailsElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlDialogElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlDirectoryElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlDivElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlDocument" = [ "Document" "EventTarget" "Node" ];
+ "HtmlElement" = [ "Element" "EventTarget" "Node" ];
+ "HtmlEmbedElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlFieldSetElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlFontElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlFormControlsCollection" = [ "HtmlCollection" ];
+ "HtmlFormElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlFrameElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlFrameSetElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlHeadElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlHeadingElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlHrElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlHtmlElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlIFrameElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlImageElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlInputElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlLabelElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlLegendElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlLiElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlLinkElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlMapElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlMediaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlMenuElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlMenuItemElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlMetaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlMeterElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlModElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlOListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlObjectElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlOptGroupElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlOptionElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlOptionsCollection" = [ "HtmlCollection" ];
+ "HtmlOutputElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlParagraphElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlParamElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlPictureElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlPreElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlProgressElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlQuoteElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlScriptElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlSelectElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlSlotElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlSourceElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlSpanElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlStyleElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlTableCaptionElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlTableCellElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlTableColElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlTableElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlTableRowElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlTableSectionElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlTemplateElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlTextAreaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlTimeElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlTitleElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlTrackElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlUListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlUnknownElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
+ "HtmlVideoElement" = [ "Element" "EventTarget" "HtmlElement" "HtmlMediaElement" "Node" ];
+ "IdbCursorWithValue" = [ "IdbCursor" ];
+ "IdbDatabase" = [ "EventTarget" ];
+ "IdbFileHandle" = [ "EventTarget" ];
+ "IdbFileRequest" = [ "DomRequest" "EventTarget" ];
+ "IdbLocaleAwareKeyRange" = [ "IdbKeyRange" ];
+ "IdbMutableFile" = [ "EventTarget" ];
+ "IdbOpenDbRequest" = [ "EventTarget" "IdbRequest" ];
+ "IdbRequest" = [ "EventTarget" ];
+ "IdbTransaction" = [ "EventTarget" ];
+ "IdbVersionChangeEvent" = [ "Event" ];
+ "IirFilterNode" = [ "AudioNode" "EventTarget" ];
+ "ImageCaptureErrorEvent" = [ "Event" ];
+ "ImageTrack" = [ "EventTarget" ];
+ "InputDeviceInfo" = [ "MediaDeviceInfo" ];
+ "InputEvent" = [ "Event" "UiEvent" ];
+ "KeyFrameRequestEvent" = [ "Event" ];
+ "KeyboardEvent" = [ "Event" "UiEvent" ];
+ "KeyframeEffect" = [ "AnimationEffect" ];
+ "LocalMediaStream" = [ "EventTarget" "MediaStream" ];
+ "MathMlElement" = [ "Element" "EventTarget" "Node" ];
+ "MediaDevices" = [ "EventTarget" ];
+ "MediaElementAudioSourceNode" = [ "AudioNode" "EventTarget" ];
+ "MediaEncryptedEvent" = [ "Event" ];
+ "MediaKeyError" = [ "Event" ];
+ "MediaKeyMessageEvent" = [ "Event" ];
+ "MediaKeySession" = [ "EventTarget" ];
+ "MediaQueryList" = [ "EventTarget" ];
+ "MediaQueryListEvent" = [ "Event" ];
+ "MediaRecorder" = [ "EventTarget" ];
+ "MediaRecorderErrorEvent" = [ "Event" ];
+ "MediaSource" = [ "EventTarget" ];
+ "MediaStream" = [ "EventTarget" ];
+ "MediaStreamAudioDestinationNode" = [ "AudioNode" "EventTarget" ];
+ "MediaStreamAudioSourceNode" = [ "AudioNode" "EventTarget" ];
+ "MediaStreamEvent" = [ "Event" ];
+ "MediaStreamTrack" = [ "EventTarget" ];
+ "MediaStreamTrackEvent" = [ "Event" ];
+ "MediaStreamTrackGenerator" = [ "EventTarget" "MediaStreamTrack" ];
+ "MessageEvent" = [ "Event" ];
+ "MessagePort" = [ "EventTarget" ];
+ "MidiAccess" = [ "EventTarget" ];
+ "MidiConnectionEvent" = [ "Event" ];
+ "MidiInput" = [ "EventTarget" "MidiPort" ];
+ "MidiMessageEvent" = [ "Event" ];
+ "MidiOutput" = [ "EventTarget" "MidiPort" ];
+ "MidiPort" = [ "EventTarget" ];
+ "MouseEvent" = [ "Event" "UiEvent" ];
+ "MouseScrollEvent" = [ "Event" "MouseEvent" "UiEvent" ];
+ "MutationEvent" = [ "Event" ];
+ "NetworkInformation" = [ "EventTarget" ];
+ "Node" = [ "EventTarget" ];
+ "Notification" = [ "EventTarget" ];
+ "NotificationEvent" = [ "Event" "ExtendableEvent" ];
+ "OfflineAudioCompletionEvent" = [ "Event" ];
+ "OfflineAudioContext" = [ "BaseAudioContext" "EventTarget" ];
+ "OfflineResourceList" = [ "EventTarget" ];
+ "OffscreenCanvas" = [ "EventTarget" ];
+ "OscillatorNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
+ "PageTransitionEvent" = [ "Event" ];
+ "PaintWorkletGlobalScope" = [ "WorkletGlobalScope" ];
+ "PannerNode" = [ "AudioNode" "EventTarget" ];
+ "PaymentMethodChangeEvent" = [ "Event" "PaymentRequestUpdateEvent" ];
+ "PaymentRequestUpdateEvent" = [ "Event" ];
+ "Performance" = [ "EventTarget" ];
+ "PerformanceMark" = [ "PerformanceEntry" ];
+ "PerformanceMeasure" = [ "PerformanceEntry" ];
+ "PerformanceNavigationTiming" = [ "PerformanceEntry" "PerformanceResourceTiming" ];
+ "PerformanceResourceTiming" = [ "PerformanceEntry" ];
+ "PermissionStatus" = [ "EventTarget" ];
+ "PictureInPictureEvent" = [ "Event" ];
+ "PictureInPictureWindow" = [ "EventTarget" ];
+ "PointerEvent" = [ "Event" "MouseEvent" "UiEvent" ];
+ "PopStateEvent" = [ "Event" ];
+ "PopupBlockedEvent" = [ "Event" ];
+ "PresentationAvailability" = [ "EventTarget" ];
+ "PresentationConnection" = [ "EventTarget" ];
+ "PresentationConnectionAvailableEvent" = [ "Event" ];
+ "PresentationConnectionCloseEvent" = [ "Event" ];
+ "PresentationConnectionList" = [ "EventTarget" ];
+ "PresentationRequest" = [ "EventTarget" ];
+ "ProcessingInstruction" = [ "CharacterData" "EventTarget" "Node" ];
+ "ProgressEvent" = [ "Event" ];
+ "PromiseRejectionEvent" = [ "Event" ];
+ "PublicKeyCredential" = [ "Credential" ];
+ "PushEvent" = [ "Event" "ExtendableEvent" ];
+ "RadioNodeList" = [ "NodeList" ];
+ "RtcDataChannel" = [ "EventTarget" ];
+ "RtcDataChannelEvent" = [ "Event" ];
+ "RtcPeerConnection" = [ "EventTarget" ];
+ "RtcPeerConnectionIceErrorEvent" = [ "Event" ];
+ "RtcPeerConnectionIceEvent" = [ "Event" ];
+ "RtcRtpScriptTransformer" = [ "EventTarget" ];
+ "RtcTrackEvent" = [ "Event" ];
+ "RtcTransformEvent" = [ "Event" ];
+ "RtcdtmfSender" = [ "EventTarget" ];
+ "RtcdtmfToneChangeEvent" = [ "Event" ];
+ "SFrameTransform" = [ "EventTarget" ];
+ "SFrameTransformErrorEvent" = [ "Event" ];
+ "Screen" = [ "EventTarget" ];
+ "ScreenOrientation" = [ "EventTarget" ];
+ "ScriptProcessorNode" = [ "AudioNode" "EventTarget" ];
+ "ScrollAreaEvent" = [ "Event" "UiEvent" ];
+ "SecurityPolicyViolationEvent" = [ "Event" ];
+ "Serial" = [ "EventTarget" ];
+ "SerialPort" = [ "EventTarget" ];
+ "ServiceWorker" = [ "EventTarget" ];
+ "ServiceWorkerContainer" = [ "EventTarget" ];
+ "ServiceWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
+ "ServiceWorkerRegistration" = [ "EventTarget" ];
+ "ShadowRoot" = [ "DocumentFragment" "EventTarget" "Node" ];
+ "SharedWorker" = [ "EventTarget" ];
+ "SharedWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
+ "SourceBuffer" = [ "EventTarget" ];
+ "SourceBufferList" = [ "EventTarget" ];
+ "SpeechRecognition" = [ "EventTarget" ];
+ "SpeechRecognitionError" = [ "Event" ];
+ "SpeechRecognitionEvent" = [ "Event" ];
+ "SpeechSynthesis" = [ "EventTarget" ];
+ "SpeechSynthesisErrorEvent" = [ "Event" "SpeechSynthesisEvent" ];
+ "SpeechSynthesisEvent" = [ "Event" ];
+ "SpeechSynthesisUtterance" = [ "EventTarget" ];
+ "StereoPannerNode" = [ "AudioNode" "EventTarget" ];
+ "StorageEvent" = [ "Event" ];
+ "SubmitEvent" = [ "Event" ];
+ "SvgAnimateElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
+ "SvgAnimateMotionElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
+ "SvgAnimateTransformElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
+ "SvgAnimationElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgCircleElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
+ "SvgClipPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgComponentTransferFunctionElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgDefsElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
+ "SvgDescElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgElement" = [ "Element" "EventTarget" "Node" ];
+ "SvgEllipseElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
+ "SvgFilterElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgForeignObjectElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
+ "SvgGeometryElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
+ "SvgGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgGraphicsElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgImageElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
+ "SvgLineElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
+ "SvgLinearGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGradientElement" ];
+ "SvgMarkerElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgMaskElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgMetadataElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
+ "SvgPathSegArcAbs" = [ "SvgPathSeg" ];
+ "SvgPathSegArcRel" = [ "SvgPathSeg" ];
+ "SvgPathSegClosePath" = [ "SvgPathSeg" ];
+ "SvgPathSegCurvetoCubicAbs" = [ "SvgPathSeg" ];
+ "SvgPathSegCurvetoCubicRel" = [ "SvgPathSeg" ];
+ "SvgPathSegCurvetoCubicSmoothAbs" = [ "SvgPathSeg" ];
+ "SvgPathSegCurvetoCubicSmoothRel" = [ "SvgPathSeg" ];
+ "SvgPathSegCurvetoQuadraticAbs" = [ "SvgPathSeg" ];
+ "SvgPathSegCurvetoQuadraticRel" = [ "SvgPathSeg" ];
+ "SvgPathSegCurvetoQuadraticSmoothAbs" = [ "SvgPathSeg" ];
+ "SvgPathSegCurvetoQuadraticSmoothRel" = [ "SvgPathSeg" ];
+ "SvgPathSegLinetoAbs" = [ "SvgPathSeg" ];
+ "SvgPathSegLinetoHorizontalAbs" = [ "SvgPathSeg" ];
+ "SvgPathSegLinetoHorizontalRel" = [ "SvgPathSeg" ];
+ "SvgPathSegLinetoRel" = [ "SvgPathSeg" ];
+ "SvgPathSegLinetoVerticalAbs" = [ "SvgPathSeg" ];
+ "SvgPathSegLinetoVerticalRel" = [ "SvgPathSeg" ];
+ "SvgPathSegMovetoAbs" = [ "SvgPathSeg" ];
+ "SvgPathSegMovetoRel" = [ "SvgPathSeg" ];
+ "SvgPatternElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgPolygonElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
+ "SvgPolylineElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
+ "SvgRadialGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGradientElement" ];
+ "SvgRectElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
+ "SvgScriptElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgSetElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
+ "SvgStopElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgStyleElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgSwitchElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
+ "SvgSymbolElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgTextContentElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
+ "SvgTextElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" "SvgTextPositioningElement" ];
+ "SvgTextPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" ];
+ "SvgTextPositioningElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" ];
+ "SvgTitleElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgUseElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
+ "SvgViewElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgaElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
+ "SvgfeBlendElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeColorMatrixElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeComponentTransferElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeCompositeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeConvolveMatrixElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeDiffuseLightingElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeDisplacementMapElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeDistantLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeDropShadowElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeFloodElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeFuncAElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
+ "SvgfeFuncBElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
+ "SvgfeFuncGElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
+ "SvgfeFuncRElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
+ "SvgfeGaussianBlurElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeImageElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeMergeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeMergeNodeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeMorphologyElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeOffsetElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfePointLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeSpecularLightingElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeSpotLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeTileElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgfeTurbulenceElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvggElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
+ "SvgmPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
+ "SvgsvgElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
+ "SvgtSpanElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" "SvgTextPositioningElement" ];
+ "TaskController" = [ "AbortController" ];
+ "TaskPriorityChangeEvent" = [ "Event" ];
+ "TaskSignal" = [ "AbortSignal" "EventTarget" ];
+ "TcpServerSocket" = [ "EventTarget" ];
+ "TcpServerSocketEvent" = [ "Event" ];
+ "TcpSocket" = [ "EventTarget" ];
+ "TcpSocketErrorEvent" = [ "Event" ];
+ "TcpSocketEvent" = [ "Event" ];
+ "Text" = [ "CharacterData" "EventTarget" "Node" ];
+ "TextTrack" = [ "EventTarget" ];
+ "TextTrackCue" = [ "EventTarget" ];
+ "TextTrackList" = [ "EventTarget" ];
+ "TimeEvent" = [ "Event" ];
+ "ToggleEvent" = [ "Event" ];
+ "TouchEvent" = [ "Event" "UiEvent" ];
+ "TrackEvent" = [ "Event" ];
+ "TransitionEvent" = [ "Event" ];
+ "UiEvent" = [ "Event" ];
+ "Usb" = [ "EventTarget" ];
+ "UsbConnectionEvent" = [ "Event" ];
+ "UsbPermissionResult" = [ "EventTarget" "PermissionStatus" ];
+ "UserProximityEvent" = [ "Event" ];
+ "ValueEvent" = [ "Event" ];
+ "VideoStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
+ "VideoTrackList" = [ "EventTarget" ];
+ "VisualViewport" = [ "EventTarget" ];
+ "VrDisplay" = [ "EventTarget" ];
+ "VttCue" = [ "EventTarget" "TextTrackCue" ];
+ "WakeLockSentinel" = [ "EventTarget" ];
+ "WaveShaperNode" = [ "AudioNode" "EventTarget" ];
+ "WebGlContextEvent" = [ "Event" ];
+ "WebKitCssMatrix" = [ "DomMatrix" "DomMatrixReadOnly" ];
+ "WebSocket" = [ "EventTarget" ];
+ "WebTransportError" = [ "DomException" ];
+ "WebTransportReceiveStream" = [ "ReadableStream" ];
+ "WebTransportSendStream" = [ "WritableStream" ];
+ "WheelEvent" = [ "Event" "MouseEvent" "UiEvent" ];
+ "Window" = [ "EventTarget" ];
+ "WindowClient" = [ "Client" ];
+ "Worker" = [ "EventTarget" ];
+ "WorkerDebuggerGlobalScope" = [ "EventTarget" ];
+ "WorkerGlobalScope" = [ "EventTarget" ];
+ "XmlDocument" = [ "Document" "EventTarget" "Node" ];
+ "XmlHttpRequest" = [ "EventTarget" "XmlHttpRequestEventTarget" ];
+ "XmlHttpRequestEventTarget" = [ "EventTarget" ];
+ "XmlHttpRequestUpload" = [ "EventTarget" "XmlHttpRequestEventTarget" ];
+ "XrBoundedReferenceSpace" = [ "EventTarget" "XrReferenceSpace" "XrSpace" ];
+ "XrInputSourceEvent" = [ "Event" ];
+ "XrInputSourcesChangeEvent" = [ "Event" ];
+ "XrJointPose" = [ "XrPose" ];
+ "XrJointSpace" = [ "EventTarget" "XrSpace" ];
+ "XrLayer" = [ "EventTarget" ];
+ "XrPermissionStatus" = [ "EventTarget" "PermissionStatus" ];
+ "XrReferenceSpace" = [ "EventTarget" "XrSpace" ];
+ "XrReferenceSpaceEvent" = [ "Event" ];
+ "XrSession" = [ "EventTarget" ];
+ "XrSessionEvent" = [ "Event" ];
+ "XrSpace" = [ "EventTarget" ];
+ "XrSystem" = [ "EventTarget" ];
+ "XrViewerPose" = [ "XrPose" ];
+ "XrWebGlLayer" = [ "EventTarget" "XrLayer" ];
+ "default" = [ "std" ];
+ "std" = [ "wasm-bindgen/std" "js-sys/std" ];
+ };
+ resolvedDefaultFeatures = [ "AbortController" "AbortSignal" "Blob" "BlobPropertyBag" "Document" "Event" "EventTarget" "File" "FormData" "Headers" "Location" "MessageEvent" "Navigator" "Node" "ReadableStream" "Request" "RequestCache" "RequestCredentials" "RequestInit" "RequestMode" "Response" "ServiceWorkerGlobalScope" "Window" "Worker" "WorkerGlobalScope" "default" "std" ];
+ };
+ "web-time" = rec {
+ crateName = "web-time";
+ version = "1.1.0";
+ edition = "2021";
+ sha256 = "1fx05yqx83dhx628wb70fyy10yjfq1jpl20qfqhdkymi13rq0ras";
+ libName = "web_time";
+ dependencies = [
+ {
+ name = "js-sys";
+ packageId = "js-sys";
+ target = { target, features }: ((builtins.elem "wasm" target."family") && ("unknown" == target."os" or null));
+ }
+ {
+ name = "wasm-bindgen";
+ packageId = "wasm-bindgen";
+ usesDefaultFeatures = false;
+ target = { target, features }: ((builtins.elem "wasm" target."family") && ("unknown" == target."os" or null));
+ }
+ ];
+ features = {
+ "serde" = [ "dep:serde" ];
+ };
+ };
+ "web_atoms" = rec {
+ crateName = "web_atoms";
+ version = "0.1.3";
+ edition = "2021";
+ sha256 = "056lg00xm67d2yiyi1fh3x15jpi3idk0acifk7wvsh0jq0fxxzsp";
+ libPath = "lib.rs";
+ authors = [
+ "The html5ever Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "phf";
+ packageId = "phf 0.11.3";
+ }
+ {
+ name = "string_cache";
+ packageId = "string_cache";
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "phf_codegen";
+ packageId = "phf_codegen 0.11.3";
+ }
+ {
+ name = "string_cache_codegen";
+ packageId = "string_cache_codegen";
+ }
+ ];
+
+ };
+ "webauthn-attestation-ca" = rec {
+ crateName = "webauthn-attestation-ca";
+ version = "0.5.3";
+ edition = "2021";
+ sha256 = "01gjnjs1kc9dsgc13nka6jfa1bazn38smnfs91n2w0s4xj92hypp";
+ libName = "webauthn_attestation_ca";
+ authors = [
+ "William Brown <william@blackhats.net.au>"
+ "Michael Farrell <micolous+git@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64urlsafedata";
+ packageId = "base64urlsafedata";
+ }
+ {
+ name = "openssl";
+ packageId = "openssl";
+ }
+ {
+ name = "openssl-sys";
+ packageId = "openssl-sys";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ }
+ {
+ name = "uuid";
+ packageId = "uuid";
+ features = [ "serde" ];
+ }
+ ];
+
+ };
+ "webauthn-rs" = rec {
+ crateName = "webauthn-rs";
+ version = "0.5.3";
+ edition = "2021";
+ sha256 = "13kvjd0imaa21d3p8pg59l3sla1srxxl5gbvwhjdbpcbkhpklz7b";
+ libName = "webauthn_rs";
+ authors = [
+ "William Brown <william@blackhats.net.au>"
+ "Michael Farrell <micolous+git@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64urlsafedata";
+ packageId = "base64urlsafedata";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ }
+ {
+ name = "url";
+ packageId = "url";
+ features = [ "serde" ];
+ }
+ {
+ name = "uuid";
+ packageId = "uuid";
+ features = [ "v4" "serde" ];
+ }
+ {
+ name = "webauthn-rs-core";
+ packageId = "webauthn-rs-core";
+ }
+ ];
+ features = {
+ "default" = [ "attestation" ];
+ "preview-features" = [ "conditional-ui" ];
+ };
+ resolvedDefaultFeatures = [ "attestation" "default" ];
+ };
+ "webauthn-rs-core" = rec {
+ crateName = "webauthn-rs-core";
+ version = "0.5.3";
+ edition = "2021";
+ sha256 = "1i3z6lwwsxwk7y2dfki02nh1697b1xfsp8vhzqljaf26647xiw8r";
+ libName = "webauthn_rs_core";
+ authors = [
+ "William Brown <william@blackhats.net.au>"
+ "Michael Farrell <micolous+git@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64";
+ packageId = "base64 0.21.7";
+ }
+ {
+ name = "base64urlsafedata";
+ packageId = "base64urlsafedata";
+ }
+ {
+ name = "der-parser";
+ packageId = "der-parser";
+ }
+ {
+ name = "hex";
+ packageId = "hex";
+ }
+ {
+ name = "nom";
+ packageId = "nom 7.1.3";
+ }
+ {
+ name = "openssl";
+ packageId = "openssl";
+ }
+ {
+ name = "openssl-sys";
+ packageId = "openssl-sys";
+ }
+ {
+ name = "rand";
+ packageId = "rand 0.8.5";
+ }
+ {
+ name = "rand_chacha";
+ packageId = "rand_chacha 0.3.1";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ {
+ name = "serde_cbor_2";
+ packageId = "serde_cbor_2";
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 1.0.69";
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ }
+ {
+ name = "url";
+ packageId = "url";
+ features = [ "serde" ];
+ }
+ {
+ name = "uuid";
+ packageId = "uuid";
+ features = [ "serde" ];
+ }
+ {
+ name = "webauthn-attestation-ca";
+ packageId = "webauthn-attestation-ca";
+ }
+ {
+ name = "webauthn-rs-proto";
+ packageId = "webauthn-rs-proto";
+ }
+ {
+ name = "x509-parser";
+ packageId = "x509-parser";
+ }
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "webauthn-rs-proto" = rec {
+ crateName = "webauthn-rs-proto";
+ version = "0.5.3";
+ edition = "2021";
+ sha256 = "1ga7a35dbwvn3i94bq42hg4j6rr3f2b5bxn5y6mbkb4zz2a6hy4y";
+ libName = "webauthn_rs_proto";
+ authors = [
+ "William Brown <william@blackhats.net.au>"
+ "Michael Farrell <micolous+git@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64";
+ packageId = "base64 0.21.7";
+ }
+ {
+ name = "base64urlsafedata";
+ packageId = "base64urlsafedata";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ {
+ name = "url";
+ packageId = "url";
+ features = [ "serde" ];
+ }
+ ];
+ features = {
+ "js-sys" = [ "dep:js-sys" ];
+ "serde-wasm-bindgen" = [ "dep:serde-wasm-bindgen" ];
+ "wasm" = [ "wasm-bindgen" "web-sys" "js-sys" "serde-wasm-bindgen" ];
+ "wasm-bindgen" = [ "dep:wasm-bindgen" ];
+ "web-sys" = [ "dep:web-sys" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "webpki" = rec {
+ crateName = "webpki";
+ version = "0.22.4";
+ edition = "2018";
+ sha256 = "0lwv7jdlcqjjqqhxcrapnyk5bz4lvr12q444b50gzl3krsjswqzd";
+ authors = [
+ "Brian Smith <brian@briansmith.org>"
+ ];
+ dependencies = [
+ {
+ name = "ring";
+ packageId = "ring";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "untrusted";
+ packageId = "untrusted";
+ }
+ ];
+ features = {
+ "alloc" = [ "ring/alloc" ];
+ "std" = [ "alloc" ];
+ };
+ };
+ "whoami" = rec {
+ crateName = "whoami";
+ version = "1.6.1";
+ edition = "2018";
+ sha256 = "0zg9sz669vhqyxysn4lymnianj29jxs2vl6k2lqcl0kp0yslsjjx";
+ dependencies = [
+ {
+ name = "libredox";
+ packageId = "libredox";
+ target = { target, features }: (("redox" == target."os" or null) && (!("wasm32" == target."arch" or null)));
+ }
+ {
+ name = "wasite";
+ packageId = "wasite";
+ target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null));
+ }
+ {
+ name = "web-sys";
+ packageId = "web-sys";
+ optional = true;
+ target = { target, features }: (("wasm32" == target."arch" or null) && (!("wasi" == target."os" or null)) && (!(target."daku" or false)));
+ features = [ "Navigator" "Document" "Window" "Location" ];
+ }
+ ];
+ features = {
+ "default" = [ "web" ];
+ "web" = [ "web-sys" ];
+ "web-sys" = [ "dep:web-sys" ];
+ };
+ resolvedDefaultFeatures = [ "default" "web" "web-sys" ];
+ };
+ "winapi" = rec {
+ crateName = "winapi";
+ version = "0.3.9";
+ edition = "2015";
+ sha256 = "06gl025x418lchw1wxj64ycr7gha83m44cjr5sarhynd9xkrm0sw";
+ authors = [
+ "Peter Atashian <retep998@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "winapi-i686-pc-windows-gnu";
+ packageId = "winapi-i686-pc-windows-gnu";
+ target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnu");
+ }
+ {
+ name = "winapi-x86_64-pc-windows-gnu";
+ packageId = "winapi-x86_64-pc-windows-gnu";
+ target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnu");
+ }
+ ];
+ features = {
+ "debug" = [ "impl-debug" ];
+ };
+ resolvedDefaultFeatures = [ "basetsd" "errhandlingapi" "fileapi" "handleapi" "heapapi" "knownfolders" "memoryapi" "minwindef" "ntstatus" "objbase" "processthreadsapi" "shlobj" "std" "sysinfoapi" "winbase" "winerror" "winnt" ];
+ };
+ "winapi-i686-pc-windows-gnu" = rec {
+ crateName = "winapi-i686-pc-windows-gnu";
+ version = "0.4.0";
+ edition = "2015";
+ sha256 = "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc";
+ libName = "winapi_i686_pc_windows_gnu";
+ authors = [
+ "Peter Atashian <retep998@gmail.com>"
+ ];
+
+ };
+ "winapi-util" = rec {
+ crateName = "winapi-util";
+ version = "0.1.11";
+ edition = "2021";
+ sha256 = "08hdl7mkll7pz8whg869h58c1r9y7in0w0pk8fm24qc77k0b39y2";
+ libName = "winapi_util";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.61.2";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_Foundation" "Win32_Storage_FileSystem" "Win32_System_Console" "Win32_System_SystemInformation" ];
+ }
+ ];
+
+ };
+ "winapi-x86_64-pc-windows-gnu" = rec {
+ crateName = "winapi-x86_64-pc-windows-gnu";
+ version = "0.4.0";
+ edition = "2015";
+ sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki";
+ libName = "winapi_x86_64_pc_windows_gnu";
+ authors = [
+ "Peter Atashian <retep998@gmail.com>"
+ ];
+
+ };
+ "windows-core" = rec {
+ crateName = "windows-core";
+ version = "0.62.2";
+ edition = "2021";
+ sha256 = "1swxpv1a8qvn3bkxv8cn663238h2jccq35ff3nsj61jdsca3ms5q";
+ libName = "windows_core";
+ dependencies = [
+ {
+ name = "windows-implement";
+ packageId = "windows-implement";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "windows-interface";
+ packageId = "windows-interface";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "windows-link";
+ packageId = "windows-link";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "windows-result";
+ packageId = "windows-result";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "windows-strings";
+ packageId = "windows-strings";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "windows-result/std" "windows-strings/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "windows-implement" = rec {
+ crateName = "windows-implement";
+ version = "0.60.2";
+ edition = "2021";
+ sha256 = "1psxhmklzcf3wjs4b8qb42qb6znvc142cb5pa74rsyxm1822wgh5";
+ procMacro = true;
+ libName = "windows_implement";
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ usesDefaultFeatures = false;
+ features = [ "parsing" "proc-macro" "printing" "full" "clone-impls" ];
+ }
+ ];
+
+ };
+ "windows-interface" = rec {
+ crateName = "windows-interface";
+ version = "0.59.3";
+ edition = "2021";
+ sha256 = "0n73cwrn4247d0axrk7gjp08p34x1723483jxjxjdfkh4m56qc9z";
+ procMacro = true;
+ libName = "windows_interface";
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ usesDefaultFeatures = false;
+ features = [ "parsing" "proc-macro" "printing" "full" "clone-impls" ];
+ }
+ ];
+
+ };
+ "windows-link" = rec {
+ crateName = "windows-link";
+ version = "0.2.1";
+ edition = "2021";
+ sha256 = "1rag186yfr3xx7piv5rg8b6im2dwcf8zldiflvb22xbzwli5507h";
+ libName = "windows_link";
+
+ };
+ "windows-registry" = rec {
+ crateName = "windows-registry";
+ version = "0.6.1";
+ edition = "2021";
+ sha256 = "082p7l615qk8a4g8g15yipc5lghga6cgfhm74wm7zknwzgvjnx82";
+ libName = "windows_registry";
+ dependencies = [
+ {
+ name = "windows-link";
+ packageId = "windows-link";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "windows-result";
+ packageId = "windows-result";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "windows-strings";
+ packageId = "windows-strings";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "windows-result/std" "windows-strings/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "windows-result" = rec {
+ crateName = "windows-result";
+ version = "0.4.1";
+ edition = "2021";
+ sha256 = "1d9yhmrmmfqh56zlj751s5wfm9a2aa7az9rd7nn5027nxa4zm0bp";
+ libName = "windows_result";
+ dependencies = [
+ {
+ name = "windows-link";
+ packageId = "windows-link";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "windows-strings" = rec {
+ crateName = "windows-strings";
+ version = "0.5.1";
+ edition = "2021";
+ sha256 = "14bhng9jqv4fyl7lqjz3az7vzh8pw0w4am49fsqgcz67d67x0dvq";
+ libName = "windows_strings";
+ dependencies = [
+ {
+ name = "windows-link";
+ packageId = "windows-link";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "windows-sys 0.52.0" = rec {
+ crateName = "windows-sys";
+ version = "0.52.0";
+ edition = "2021";
+ sha256 = "0gd3v4ji88490zgb6b5mq5zgbvwv7zx1ibn8v3x83rwcdbryaar8";
+ libName = "windows_sys";
+ authors = [
+ "Microsoft"
+ ];
+ dependencies = [
+ {
+ name = "windows-targets";
+ packageId = "windows-targets 0.52.6";
+ }
+ ];
+ features = {
+ "Wdk_Foundation" = [ "Wdk" ];
+ "Wdk_Graphics" = [ "Wdk" ];
+ "Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
+ "Wdk_Storage" = [ "Wdk" ];
+ "Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
+ "Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
+ "Wdk_System" = [ "Wdk" ];
+ "Wdk_System_IO" = [ "Wdk_System" ];
+ "Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
+ "Wdk_System_Registry" = [ "Wdk_System" ];
+ "Wdk_System_SystemInformation" = [ "Wdk_System" ];
+ "Wdk_System_SystemServices" = [ "Wdk_System" ];
+ "Wdk_System_Threading" = [ "Wdk_System" ];
+ "Win32_Data" = [ "Win32" ];
+ "Win32_Data_HtmlHelp" = [ "Win32_Data" ];
+ "Win32_Data_RightsManagement" = [ "Win32_Data" ];
+ "Win32_Devices" = [ "Win32" ];
+ "Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
+ "Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
+ "Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
+ "Win32_Devices_Communication" = [ "Win32_Devices" ];
+ "Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
+ "Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
+ "Win32_Devices_Display" = [ "Win32_Devices" ];
+ "Win32_Devices_Enumeration" = [ "Win32_Devices" ];
+ "Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
+ "Win32_Devices_Fax" = [ "Win32_Devices" ];
+ "Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
+ "Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
+ "Win32_Devices_Properties" = [ "Win32_Devices" ];
+ "Win32_Devices_Pwm" = [ "Win32_Devices" ];
+ "Win32_Devices_Sensors" = [ "Win32_Devices" ];
+ "Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
+ "Win32_Devices_Tapi" = [ "Win32_Devices" ];
+ "Win32_Devices_Usb" = [ "Win32_Devices" ];
+ "Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
+ "Win32_Foundation" = [ "Win32" ];
+ "Win32_Gaming" = [ "Win32" ];
+ "Win32_Globalization" = [ "Win32" ];
+ "Win32_Graphics" = [ "Win32" ];
+ "Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
+ "Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
+ "Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
+ "Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
+ "Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
+ "Win32_Graphics_Printing" = [ "Win32_Graphics" ];
+ "Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
+ "Win32_Management" = [ "Win32" ];
+ "Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
+ "Win32_Media" = [ "Win32" ];
+ "Win32_Media_Audio" = [ "Win32_Media" ];
+ "Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
+ "Win32_Media_KernelStreaming" = [ "Win32_Media" ];
+ "Win32_Media_Multimedia" = [ "Win32_Media" ];
+ "Win32_Media_Streaming" = [ "Win32_Media" ];
+ "Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
+ "Win32_NetworkManagement" = [ "Win32" ];
+ "Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
+ "Win32_Networking" = [ "Win32" ];
+ "Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
+ "Win32_Networking_Clustering" = [ "Win32_Networking" ];
+ "Win32_Networking_HttpServer" = [ "Win32_Networking" ];
+ "Win32_Networking_Ldap" = [ "Win32_Networking" ];
+ "Win32_Networking_WebSocket" = [ "Win32_Networking" ];
+ "Win32_Networking_WinHttp" = [ "Win32_Networking" ];
+ "Win32_Networking_WinInet" = [ "Win32_Networking" ];
+ "Win32_Networking_WinSock" = [ "Win32_Networking" ];
+ "Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
+ "Win32_Security" = [ "Win32" ];
+ "Win32_Security_AppLocker" = [ "Win32_Security" ];
+ "Win32_Security_Authentication" = [ "Win32_Security" ];
+ "Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
+ "Win32_Security_Authorization" = [ "Win32_Security" ];
+ "Win32_Security_Credentials" = [ "Win32_Security" ];
+ "Win32_Security_Cryptography" = [ "Win32_Security" ];
+ "Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
+ "Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
+ "Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
+ "Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
+ "Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
+ "Win32_Security_DirectoryServices" = [ "Win32_Security" ];
+ "Win32_Security_EnterpriseData" = [ "Win32_Security" ];
+ "Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
+ "Win32_Security_Isolation" = [ "Win32_Security" ];
+ "Win32_Security_LicenseProtection" = [ "Win32_Security" ];
+ "Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
+ "Win32_Security_WinTrust" = [ "Win32_Security" ];
+ "Win32_Security_WinWlx" = [ "Win32_Security" ];
+ "Win32_Storage" = [ "Win32" ];
+ "Win32_Storage_Cabinets" = [ "Win32_Storage" ];
+ "Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
+ "Win32_Storage_Compression" = [ "Win32_Storage" ];
+ "Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
+ "Win32_Storage_FileHistory" = [ "Win32_Storage" ];
+ "Win32_Storage_FileSystem" = [ "Win32_Storage" ];
+ "Win32_Storage_Imapi" = [ "Win32_Storage" ];
+ "Win32_Storage_IndexServer" = [ "Win32_Storage" ];
+ "Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
+ "Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
+ "Win32_Storage_Jet" = [ "Win32_Storage" ];
+ "Win32_Storage_Nvme" = [ "Win32_Storage" ];
+ "Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
+ "Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
+ "Win32_Storage_Packaging" = [ "Win32_Storage" ];
+ "Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
+ "Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
+ "Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
+ "Win32_Storage_Vhd" = [ "Win32_Storage" ];
+ "Win32_Storage_Xps" = [ "Win32_Storage" ];
+ "Win32_System" = [ "Win32" ];
+ "Win32_System_AddressBook" = [ "Win32_System" ];
+ "Win32_System_Antimalware" = [ "Win32_System" ];
+ "Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
+ "Win32_System_ApplicationVerifier" = [ "Win32_System" ];
+ "Win32_System_ClrHosting" = [ "Win32_System" ];
+ "Win32_System_Com" = [ "Win32_System" ];
+ "Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
+ "Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
+ "Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
+ "Win32_System_ComponentServices" = [ "Win32_System" ];
+ "Win32_System_Console" = [ "Win32_System" ];
+ "Win32_System_CorrelationVector" = [ "Win32_System" ];
+ "Win32_System_DataExchange" = [ "Win32_System" ];
+ "Win32_System_DeploymentServices" = [ "Win32_System" ];
+ "Win32_System_DeveloperLicensing" = [ "Win32_System" ];
+ "Win32_System_Diagnostics" = [ "Win32_System" ];
+ "Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
+ "Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
+ "Win32_System_Environment" = [ "Win32_System" ];
+ "Win32_System_ErrorReporting" = [ "Win32_System" ];
+ "Win32_System_EventCollector" = [ "Win32_System" ];
+ "Win32_System_EventLog" = [ "Win32_System" ];
+ "Win32_System_EventNotificationService" = [ "Win32_System" ];
+ "Win32_System_GroupPolicy" = [ "Win32_System" ];
+ "Win32_System_HostCompute" = [ "Win32_System" ];
+ "Win32_System_HostComputeNetwork" = [ "Win32_System" ];
+ "Win32_System_HostComputeSystem" = [ "Win32_System" ];
+ "Win32_System_Hypervisor" = [ "Win32_System" ];
+ "Win32_System_IO" = [ "Win32_System" ];
+ "Win32_System_Iis" = [ "Win32_System" ];
+ "Win32_System_Ioctl" = [ "Win32_System" ];
+ "Win32_System_JobObjects" = [ "Win32_System" ];
+ "Win32_System_Js" = [ "Win32_System" ];
+ "Win32_System_Kernel" = [ "Win32_System" ];
+ "Win32_System_LibraryLoader" = [ "Win32_System" ];
+ "Win32_System_Mailslots" = [ "Win32_System" ];
+ "Win32_System_Mapi" = [ "Win32_System" ];
+ "Win32_System_Memory" = [ "Win32_System" ];
+ "Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
+ "Win32_System_MessageQueuing" = [ "Win32_System" ];
+ "Win32_System_MixedReality" = [ "Win32_System" ];
+ "Win32_System_Ole" = [ "Win32_System" ];
+ "Win32_System_PasswordManagement" = [ "Win32_System" ];
+ "Win32_System_Performance" = [ "Win32_System" ];
+ "Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
+ "Win32_System_Pipes" = [ "Win32_System" ];
+ "Win32_System_Power" = [ "Win32_System" ];
+ "Win32_System_ProcessStatus" = [ "Win32_System" ];
+ "Win32_System_Recovery" = [ "Win32_System" ];
+ "Win32_System_Registry" = [ "Win32_System" ];
+ "Win32_System_RemoteDesktop" = [ "Win32_System" ];
+ "Win32_System_RemoteManagement" = [ "Win32_System" ];
+ "Win32_System_RestartManager" = [ "Win32_System" ];
+ "Win32_System_Restore" = [ "Win32_System" ];
+ "Win32_System_Rpc" = [ "Win32_System" ];
+ "Win32_System_Search" = [ "Win32_System" ];
+ "Win32_System_Search_Common" = [ "Win32_System_Search" ];
+ "Win32_System_SecurityCenter" = [ "Win32_System" ];
+ "Win32_System_Services" = [ "Win32_System" ];
+ "Win32_System_SetupAndMigration" = [ "Win32_System" ];
+ "Win32_System_Shutdown" = [ "Win32_System" ];
+ "Win32_System_StationsAndDesktops" = [ "Win32_System" ];
+ "Win32_System_SubsystemForLinux" = [ "Win32_System" ];
+ "Win32_System_SystemInformation" = [ "Win32_System" ];
+ "Win32_System_SystemServices" = [ "Win32_System" ];
+ "Win32_System_Threading" = [ "Win32_System" ];
+ "Win32_System_Time" = [ "Win32_System" ];
+ "Win32_System_TpmBaseServices" = [ "Win32_System" ];
+ "Win32_System_UserAccessLogging" = [ "Win32_System" ];
+ "Win32_System_Variant" = [ "Win32_System" ];
+ "Win32_System_VirtualDosMachines" = [ "Win32_System" ];
+ "Win32_System_WindowsProgramming" = [ "Win32_System" ];
+ "Win32_System_Wmi" = [ "Win32_System" ];
+ "Win32_UI" = [ "Win32" ];
+ "Win32_UI_Accessibility" = [ "Win32_UI" ];
+ "Win32_UI_ColorSystem" = [ "Win32_UI" ];
+ "Win32_UI_Controls" = [ "Win32_UI" ];
+ "Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
+ "Win32_UI_HiDpi" = [ "Win32_UI" ];
+ "Win32_UI_Input" = [ "Win32_UI" ];
+ "Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
+ "Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
+ "Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
+ "Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
+ "Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
+ "Win32_UI_InteractionContext" = [ "Win32_UI" ];
+ "Win32_UI_Magnification" = [ "Win32_UI" ];
+ "Win32_UI_Shell" = [ "Win32_UI" ];
+ "Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
+ "Win32_UI_TabletPC" = [ "Win32_UI" ];
+ "Win32_UI_TextServices" = [ "Win32_UI" ];
+ "Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
+ "Win32_Web" = [ "Win32" ];
+ "Win32_Web_InternetExplorer" = [ "Win32_Web" ];
+ };
+ resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_Networking" "Win32_Networking_WinSock" "Win32_System" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
+ };
+ "windows-sys 0.60.2" = rec {
+ crateName = "windows-sys";
+ version = "0.60.2";
+ edition = "2021";
+ sha256 = "1jrbc615ihqnhjhxplr2kw7rasrskv9wj3lr80hgfd42sbj01xgj";
+ libName = "windows_sys";
+ authors = [
+ "Microsoft"
+ ];
+ dependencies = [
+ {
+ name = "windows-targets";
+ packageId = "windows-targets 0.53.5";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "Wdk" = [ "Win32_Foundation" ];
+ "Wdk_Devices" = [ "Wdk" ];
+ "Wdk_Devices_Bluetooth" = [ "Wdk_Devices" ];
+ "Wdk_Devices_HumanInterfaceDevice" = [ "Wdk_Devices" ];
+ "Wdk_Foundation" = [ "Wdk" ];
+ "Wdk_Graphics" = [ "Wdk" ];
+ "Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
+ "Wdk_NetworkManagement" = [ "Wdk" ];
+ "Wdk_NetworkManagement_Ndis" = [ "Wdk_NetworkManagement" ];
+ "Wdk_NetworkManagement_WindowsFilteringPlatform" = [ "Wdk_NetworkManagement" ];
+ "Wdk_Storage" = [ "Wdk" ];
+ "Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
+ "Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
+ "Wdk_System" = [ "Wdk" ];
+ "Wdk_System_IO" = [ "Wdk_System" ];
+ "Wdk_System_Memory" = [ "Wdk_System" ];
+ "Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
+ "Wdk_System_Registry" = [ "Wdk_System" ];
+ "Wdk_System_SystemInformation" = [ "Wdk_System" ];
+ "Wdk_System_SystemServices" = [ "Wdk_System" ];
+ "Wdk_System_Threading" = [ "Wdk_System" ];
+ "Win32" = [ "Win32_Foundation" ];
+ "Win32_Data" = [ "Win32" ];
+ "Win32_Data_HtmlHelp" = [ "Win32_Data" ];
+ "Win32_Data_RightsManagement" = [ "Win32_Data" ];
+ "Win32_Devices" = [ "Win32" ];
+ "Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
+ "Win32_Devices_Beep" = [ "Win32_Devices" ];
+ "Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
+ "Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
+ "Win32_Devices_Cdrom" = [ "Win32_Devices" ];
+ "Win32_Devices_Communication" = [ "Win32_Devices" ];
+ "Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
+ "Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
+ "Win32_Devices_Display" = [ "Win32_Devices" ];
+ "Win32_Devices_Dvd" = [ "Win32_Devices" ];
+ "Win32_Devices_Enumeration" = [ "Win32_Devices" ];
+ "Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
+ "Win32_Devices_Fax" = [ "Win32_Devices" ];
+ "Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
+ "Win32_Devices_Nfc" = [ "Win32_Devices" ];
+ "Win32_Devices_Nfp" = [ "Win32_Devices" ];
+ "Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
+ "Win32_Devices_Properties" = [ "Win32_Devices" ];
+ "Win32_Devices_Pwm" = [ "Win32_Devices" ];
+ "Win32_Devices_Sensors" = [ "Win32_Devices" ];
+ "Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
+ "Win32_Devices_Tapi" = [ "Win32_Devices" ];
+ "Win32_Devices_Usb" = [ "Win32_Devices" ];
+ "Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
+ "Win32_Foundation" = [ "Win32" ];
+ "Win32_Gaming" = [ "Win32" ];
+ "Win32_Globalization" = [ "Win32" ];
+ "Win32_Graphics" = [ "Win32" ];
+ "Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
+ "Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
+ "Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
+ "Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
+ "Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
+ "Win32_Graphics_Printing" = [ "Win32_Graphics" ];
+ "Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
+ "Win32_Management" = [ "Win32" ];
+ "Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
+ "Win32_Media" = [ "Win32" ];
+ "Win32_Media_Audio" = [ "Win32_Media" ];
+ "Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
+ "Win32_Media_KernelStreaming" = [ "Win32_Media" ];
+ "Win32_Media_Multimedia" = [ "Win32_Media" ];
+ "Win32_Media_Streaming" = [ "Win32_Media" ];
+ "Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
+ "Win32_NetworkManagement" = [ "Win32" ];
+ "Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
+ "Win32_Networking" = [ "Win32" ];
+ "Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
+ "Win32_Networking_Clustering" = [ "Win32_Networking" ];
+ "Win32_Networking_HttpServer" = [ "Win32_Networking" ];
+ "Win32_Networking_Ldap" = [ "Win32_Networking" ];
+ "Win32_Networking_WebSocket" = [ "Win32_Networking" ];
+ "Win32_Networking_WinHttp" = [ "Win32_Networking" ];
+ "Win32_Networking_WinInet" = [ "Win32_Networking" ];
+ "Win32_Networking_WinSock" = [ "Win32_Networking" ];
+ "Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
+ "Win32_Security" = [ "Win32" ];
+ "Win32_Security_AppLocker" = [ "Win32_Security" ];
+ "Win32_Security_Authentication" = [ "Win32_Security" ];
+ "Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
+ "Win32_Security_Authorization" = [ "Win32_Security" ];
+ "Win32_Security_Credentials" = [ "Win32_Security" ];
+ "Win32_Security_Cryptography" = [ "Win32_Security" ];
+ "Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
+ "Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
+ "Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
+ "Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
+ "Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
+ "Win32_Security_DirectoryServices" = [ "Win32_Security" ];
+ "Win32_Security_EnterpriseData" = [ "Win32_Security" ];
+ "Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
+ "Win32_Security_Isolation" = [ "Win32_Security" ];
+ "Win32_Security_LicenseProtection" = [ "Win32_Security" ];
+ "Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
+ "Win32_Security_WinTrust" = [ "Win32_Security" ];
+ "Win32_Security_WinWlx" = [ "Win32_Security" ];
+ "Win32_Storage" = [ "Win32" ];
+ "Win32_Storage_Cabinets" = [ "Win32_Storage" ];
+ "Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
+ "Win32_Storage_Compression" = [ "Win32_Storage" ];
+ "Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
+ "Win32_Storage_FileHistory" = [ "Win32_Storage" ];
+ "Win32_Storage_FileSystem" = [ "Win32_Storage" ];
+ "Win32_Storage_Imapi" = [ "Win32_Storage" ];
+ "Win32_Storage_IndexServer" = [ "Win32_Storage" ];
+ "Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
+ "Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
+ "Win32_Storage_Jet" = [ "Win32_Storage" ];
+ "Win32_Storage_Nvme" = [ "Win32_Storage" ];
+ "Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
+ "Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
+ "Win32_Storage_Packaging" = [ "Win32_Storage" ];
+ "Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
+ "Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
+ "Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
+ "Win32_Storage_Vhd" = [ "Win32_Storage" ];
+ "Win32_Storage_Xps" = [ "Win32_Storage" ];
+ "Win32_System" = [ "Win32" ];
+ "Win32_System_AddressBook" = [ "Win32_System" ];
+ "Win32_System_Antimalware" = [ "Win32_System" ];
+ "Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
+ "Win32_System_ApplicationVerifier" = [ "Win32_System" ];
+ "Win32_System_ClrHosting" = [ "Win32_System" ];
+ "Win32_System_Com" = [ "Win32_System" ];
+ "Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
+ "Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
+ "Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
+ "Win32_System_ComponentServices" = [ "Win32_System" ];
+ "Win32_System_Console" = [ "Win32_System" ];
+ "Win32_System_CorrelationVector" = [ "Win32_System" ];
+ "Win32_System_DataExchange" = [ "Win32_System" ];
+ "Win32_System_DeploymentServices" = [ "Win32_System" ];
+ "Win32_System_DeveloperLicensing" = [ "Win32_System" ];
+ "Win32_System_Diagnostics" = [ "Win32_System" ];
+ "Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
+ "Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_TraceLogging" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
+ "Win32_System_Environment" = [ "Win32_System" ];
+ "Win32_System_ErrorReporting" = [ "Win32_System" ];
+ "Win32_System_EventCollector" = [ "Win32_System" ];
+ "Win32_System_EventLog" = [ "Win32_System" ];
+ "Win32_System_EventNotificationService" = [ "Win32_System" ];
+ "Win32_System_GroupPolicy" = [ "Win32_System" ];
+ "Win32_System_HostCompute" = [ "Win32_System" ];
+ "Win32_System_HostComputeNetwork" = [ "Win32_System" ];
+ "Win32_System_HostComputeSystem" = [ "Win32_System" ];
+ "Win32_System_Hypervisor" = [ "Win32_System" ];
+ "Win32_System_IO" = [ "Win32_System" ];
+ "Win32_System_Iis" = [ "Win32_System" ];
+ "Win32_System_Ioctl" = [ "Win32_System" ];
+ "Win32_System_JobObjects" = [ "Win32_System" ];
+ "Win32_System_Js" = [ "Win32_System" ];
+ "Win32_System_Kernel" = [ "Win32_System" ];
+ "Win32_System_LibraryLoader" = [ "Win32_System" ];
+ "Win32_System_Mailslots" = [ "Win32_System" ];
+ "Win32_System_Mapi" = [ "Win32_System" ];
+ "Win32_System_Memory" = [ "Win32_System" ];
+ "Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
+ "Win32_System_MessageQueuing" = [ "Win32_System" ];
+ "Win32_System_MixedReality" = [ "Win32_System" ];
+ "Win32_System_Ole" = [ "Win32_System" ];
+ "Win32_System_PasswordManagement" = [ "Win32_System" ];
+ "Win32_System_Performance" = [ "Win32_System" ];
+ "Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
+ "Win32_System_Pipes" = [ "Win32_System" ];
+ "Win32_System_Power" = [ "Win32_System" ];
+ "Win32_System_ProcessStatus" = [ "Win32_System" ];
+ "Win32_System_Recovery" = [ "Win32_System" ];
+ "Win32_System_Registry" = [ "Win32_System" ];
+ "Win32_System_RemoteDesktop" = [ "Win32_System" ];
+ "Win32_System_RemoteManagement" = [ "Win32_System" ];
+ "Win32_System_RestartManager" = [ "Win32_System" ];
+ "Win32_System_Restore" = [ "Win32_System" ];
+ "Win32_System_Rpc" = [ "Win32_System" ];
+ "Win32_System_Search" = [ "Win32_System" ];
+ "Win32_System_Search_Common" = [ "Win32_System_Search" ];
+ "Win32_System_SecurityCenter" = [ "Win32_System" ];
+ "Win32_System_Services" = [ "Win32_System" ];
+ "Win32_System_SetupAndMigration" = [ "Win32_System" ];
+ "Win32_System_Shutdown" = [ "Win32_System" ];
+ "Win32_System_StationsAndDesktops" = [ "Win32_System" ];
+ "Win32_System_SubsystemForLinux" = [ "Win32_System" ];
+ "Win32_System_SystemInformation" = [ "Win32_System" ];
+ "Win32_System_SystemServices" = [ "Win32_System" ];
+ "Win32_System_Threading" = [ "Win32_System" ];
+ "Win32_System_Time" = [ "Win32_System" ];
+ "Win32_System_TpmBaseServices" = [ "Win32_System" ];
+ "Win32_System_UserAccessLogging" = [ "Win32_System" ];
+ "Win32_System_Variant" = [ "Win32_System" ];
+ "Win32_System_VirtualDosMachines" = [ "Win32_System" ];
+ "Win32_System_WindowsProgramming" = [ "Win32_System" ];
+ "Win32_System_Wmi" = [ "Win32_System" ];
+ "Win32_UI" = [ "Win32" ];
+ "Win32_UI_Accessibility" = [ "Win32_UI" ];
+ "Win32_UI_ColorSystem" = [ "Win32_UI" ];
+ "Win32_UI_Controls" = [ "Win32_UI" ];
+ "Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
+ "Win32_UI_HiDpi" = [ "Win32_UI" ];
+ "Win32_UI_Input" = [ "Win32_UI" ];
+ "Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
+ "Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
+ "Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
+ "Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
+ "Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
+ "Win32_UI_InteractionContext" = [ "Win32_UI" ];
+ "Win32_UI_Magnification" = [ "Win32_UI" ];
+ "Win32_UI_Shell" = [ "Win32_UI" ];
+ "Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
+ "Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
+ "Win32_UI_TabletPC" = [ "Win32_UI" ];
+ "Win32_UI_TextServices" = [ "Win32_UI" ];
+ "Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
+ "Win32_Web" = [ "Win32" ];
+ "Win32_Web_InternetExplorer" = [ "Win32_Web" ];
+ };
+ resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
+ };
+ "windows-sys 0.61.2" = rec {
+ crateName = "windows-sys";
+ version = "0.61.2";
+ edition = "2021";
+ sha256 = "1z7k3y9b6b5h52kid57lvmvm05362zv1v8w0gc7xyv5xphlp44xf";
+ libName = "windows_sys";
+ dependencies = [
+ {
+ name = "windows-link";
+ packageId = "windows-link";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "Wdk" = [ "Win32_Foundation" ];
+ "Wdk_Devices" = [ "Wdk" ];
+ "Wdk_Devices_Bluetooth" = [ "Wdk_Devices" ];
+ "Wdk_Devices_HumanInterfaceDevice" = [ "Wdk_Devices" ];
+ "Wdk_Foundation" = [ "Wdk" ];
+ "Wdk_Graphics" = [ "Wdk" ];
+ "Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
+ "Wdk_NetworkManagement" = [ "Wdk" ];
+ "Wdk_NetworkManagement_Ndis" = [ "Wdk_NetworkManagement" ];
+ "Wdk_NetworkManagement_WindowsFilteringPlatform" = [ "Wdk_NetworkManagement" ];
+ "Wdk_Storage" = [ "Wdk" ];
+ "Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
+ "Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
+ "Wdk_System" = [ "Wdk" ];
+ "Wdk_System_IO" = [ "Wdk_System" ];
+ "Wdk_System_Memory" = [ "Wdk_System" ];
+ "Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
+ "Wdk_System_Registry" = [ "Wdk_System" ];
+ "Wdk_System_SystemInformation" = [ "Wdk_System" ];
+ "Wdk_System_SystemServices" = [ "Wdk_System" ];
+ "Wdk_System_Threading" = [ "Wdk_System" ];
+ "Win32" = [ "Win32_Foundation" ];
+ "Win32_Data" = [ "Win32" ];
+ "Win32_Data_HtmlHelp" = [ "Win32_Data" ];
+ "Win32_Data_RightsManagement" = [ "Win32_Data" ];
+ "Win32_Devices" = [ "Win32" ];
+ "Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
+ "Win32_Devices_Beep" = [ "Win32_Devices" ];
+ "Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
+ "Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
+ "Win32_Devices_Cdrom" = [ "Win32_Devices" ];
+ "Win32_Devices_Communication" = [ "Win32_Devices" ];
+ "Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
+ "Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
+ "Win32_Devices_Display" = [ "Win32_Devices" ];
+ "Win32_Devices_Dvd" = [ "Win32_Devices" ];
+ "Win32_Devices_Enumeration" = [ "Win32_Devices" ];
+ "Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
+ "Win32_Devices_Fax" = [ "Win32_Devices" ];
+ "Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
+ "Win32_Devices_Nfc" = [ "Win32_Devices" ];
+ "Win32_Devices_Nfp" = [ "Win32_Devices" ];
+ "Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
+ "Win32_Devices_Properties" = [ "Win32_Devices" ];
+ "Win32_Devices_Pwm" = [ "Win32_Devices" ];
+ "Win32_Devices_Sensors" = [ "Win32_Devices" ];
+ "Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
+ "Win32_Devices_Tapi" = [ "Win32_Devices" ];
+ "Win32_Devices_Usb" = [ "Win32_Devices" ];
+ "Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
+ "Win32_Foundation" = [ "Win32" ];
+ "Win32_Gaming" = [ "Win32" ];
+ "Win32_Globalization" = [ "Win32" ];
+ "Win32_Graphics" = [ "Win32" ];
+ "Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
+ "Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
+ "Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
+ "Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
+ "Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
+ "Win32_Graphics_Printing" = [ "Win32_Graphics" ];
+ "Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
+ "Win32_Management" = [ "Win32" ];
+ "Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
+ "Win32_Media" = [ "Win32" ];
+ "Win32_Media_Audio" = [ "Win32_Media" ];
+ "Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
+ "Win32_Media_KernelStreaming" = [ "Win32_Media" ];
+ "Win32_Media_Multimedia" = [ "Win32_Media" ];
+ "Win32_Media_Streaming" = [ "Win32_Media" ];
+ "Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
+ "Win32_NetworkManagement" = [ "Win32" ];
+ "Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
+ "Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
+ "Win32_Networking" = [ "Win32" ];
+ "Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
+ "Win32_Networking_Clustering" = [ "Win32_Networking" ];
+ "Win32_Networking_HttpServer" = [ "Win32_Networking" ];
+ "Win32_Networking_Ldap" = [ "Win32_Networking" ];
+ "Win32_Networking_WebSocket" = [ "Win32_Networking" ];
+ "Win32_Networking_WinHttp" = [ "Win32_Networking" ];
+ "Win32_Networking_WinInet" = [ "Win32_Networking" ];
+ "Win32_Networking_WinSock" = [ "Win32_Networking" ];
+ "Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
+ "Win32_Security" = [ "Win32" ];
+ "Win32_Security_AppLocker" = [ "Win32_Security" ];
+ "Win32_Security_Authentication" = [ "Win32_Security" ];
+ "Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
+ "Win32_Security_Authorization" = [ "Win32_Security" ];
+ "Win32_Security_Credentials" = [ "Win32_Security" ];
+ "Win32_Security_Cryptography" = [ "Win32_Security" ];
+ "Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
+ "Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
+ "Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
+ "Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
+ "Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
+ "Win32_Security_DirectoryServices" = [ "Win32_Security" ];
+ "Win32_Security_EnterpriseData" = [ "Win32_Security" ];
+ "Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
+ "Win32_Security_Isolation" = [ "Win32_Security" ];
+ "Win32_Security_LicenseProtection" = [ "Win32_Security" ];
+ "Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
+ "Win32_Security_WinTrust" = [ "Win32_Security" ];
+ "Win32_Security_WinWlx" = [ "Win32_Security" ];
+ "Win32_Storage" = [ "Win32" ];
+ "Win32_Storage_Cabinets" = [ "Win32_Storage" ];
+ "Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
+ "Win32_Storage_Compression" = [ "Win32_Storage" ];
+ "Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
+ "Win32_Storage_FileHistory" = [ "Win32_Storage" ];
+ "Win32_Storage_FileSystem" = [ "Win32_Storage" ];
+ "Win32_Storage_Imapi" = [ "Win32_Storage" ];
+ "Win32_Storage_IndexServer" = [ "Win32_Storage" ];
+ "Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
+ "Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
+ "Win32_Storage_Jet" = [ "Win32_Storage" ];
+ "Win32_Storage_Nvme" = [ "Win32_Storage" ];
+ "Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
+ "Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
+ "Win32_Storage_Packaging" = [ "Win32_Storage" ];
+ "Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
+ "Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
+ "Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
+ "Win32_Storage_Vhd" = [ "Win32_Storage" ];
+ "Win32_Storage_Xps" = [ "Win32_Storage" ];
+ "Win32_System" = [ "Win32" ];
+ "Win32_System_AddressBook" = [ "Win32_System" ];
+ "Win32_System_Antimalware" = [ "Win32_System" ];
+ "Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
+ "Win32_System_ApplicationVerifier" = [ "Win32_System" ];
+ "Win32_System_ClrHosting" = [ "Win32_System" ];
+ "Win32_System_Com" = [ "Win32_System" ];
+ "Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
+ "Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
+ "Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
+ "Win32_System_ComponentServices" = [ "Win32_System" ];
+ "Win32_System_Console" = [ "Win32_System" ];
+ "Win32_System_CorrelationVector" = [ "Win32_System" ];
+ "Win32_System_DataExchange" = [ "Win32_System" ];
+ "Win32_System_DeploymentServices" = [ "Win32_System" ];
+ "Win32_System_DeveloperLicensing" = [ "Win32_System" ];
+ "Win32_System_Diagnostics" = [ "Win32_System" ];
+ "Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
+ "Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_Diagnostics_TraceLogging" = [ "Win32_System_Diagnostics" ];
+ "Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
+ "Win32_System_Environment" = [ "Win32_System" ];
+ "Win32_System_ErrorReporting" = [ "Win32_System" ];
+ "Win32_System_EventCollector" = [ "Win32_System" ];
+ "Win32_System_EventLog" = [ "Win32_System" ];
+ "Win32_System_EventNotificationService" = [ "Win32_System" ];
+ "Win32_System_GroupPolicy" = [ "Win32_System" ];
+ "Win32_System_HostCompute" = [ "Win32_System" ];
+ "Win32_System_HostComputeNetwork" = [ "Win32_System" ];
+ "Win32_System_HostComputeSystem" = [ "Win32_System" ];
+ "Win32_System_Hypervisor" = [ "Win32_System" ];
+ "Win32_System_IO" = [ "Win32_System" ];
+ "Win32_System_Iis" = [ "Win32_System" ];
+ "Win32_System_Ioctl" = [ "Win32_System" ];
+ "Win32_System_JobObjects" = [ "Win32_System" ];
+ "Win32_System_Js" = [ "Win32_System" ];
+ "Win32_System_Kernel" = [ "Win32_System" ];
+ "Win32_System_LibraryLoader" = [ "Win32_System" ];
+ "Win32_System_Mailslots" = [ "Win32_System" ];
+ "Win32_System_Mapi" = [ "Win32_System" ];
+ "Win32_System_Memory" = [ "Win32_System" ];
+ "Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
+ "Win32_System_MessageQueuing" = [ "Win32_System" ];
+ "Win32_System_MixedReality" = [ "Win32_System" ];
+ "Win32_System_Ole" = [ "Win32_System" ];
+ "Win32_System_PasswordManagement" = [ "Win32_System" ];
+ "Win32_System_Performance" = [ "Win32_System" ];
+ "Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
+ "Win32_System_Pipes" = [ "Win32_System" ];
+ "Win32_System_Power" = [ "Win32_System" ];
+ "Win32_System_ProcessStatus" = [ "Win32_System" ];
+ "Win32_System_Recovery" = [ "Win32_System" ];
+ "Win32_System_Registry" = [ "Win32_System" ];
+ "Win32_System_RemoteDesktop" = [ "Win32_System" ];
+ "Win32_System_RemoteManagement" = [ "Win32_System" ];
+ "Win32_System_RestartManager" = [ "Win32_System" ];
+ "Win32_System_Restore" = [ "Win32_System" ];
+ "Win32_System_Rpc" = [ "Win32_System" ];
+ "Win32_System_Search" = [ "Win32_System" ];
+ "Win32_System_Search_Common" = [ "Win32_System_Search" ];
+ "Win32_System_SecurityCenter" = [ "Win32_System" ];
+ "Win32_System_Services" = [ "Win32_System" ];
+ "Win32_System_SetupAndMigration" = [ "Win32_System" ];
+ "Win32_System_Shutdown" = [ "Win32_System" ];
+ "Win32_System_StationsAndDesktops" = [ "Win32_System" ];
+ "Win32_System_SubsystemForLinux" = [ "Win32_System" ];
+ "Win32_System_SystemInformation" = [ "Win32_System" ];
+ "Win32_System_SystemServices" = [ "Win32_System" ];
+ "Win32_System_Threading" = [ "Win32_System" ];
+ "Win32_System_Time" = [ "Win32_System" ];
+ "Win32_System_TpmBaseServices" = [ "Win32_System" ];
+ "Win32_System_UserAccessLogging" = [ "Win32_System" ];
+ "Win32_System_Variant" = [ "Win32_System" ];
+ "Win32_System_VirtualDosMachines" = [ "Win32_System" ];
+ "Win32_System_WindowsProgramming" = [ "Win32_System" ];
+ "Win32_System_Wmi" = [ "Win32_System" ];
+ "Win32_UI" = [ "Win32" ];
+ "Win32_UI_Accessibility" = [ "Win32_UI" ];
+ "Win32_UI_ColorSystem" = [ "Win32_UI" ];
+ "Win32_UI_Controls" = [ "Win32_UI" ];
+ "Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
+ "Win32_UI_HiDpi" = [ "Win32_UI" ];
+ "Win32_UI_Input" = [ "Win32_UI" ];
+ "Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
+ "Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
+ "Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
+ "Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
+ "Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
+ "Win32_UI_InteractionContext" = [ "Win32_UI" ];
+ "Win32_UI_Magnification" = [ "Win32_UI" ];
+ "Win32_UI_Shell" = [ "Win32_UI" ];
+ "Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
+ "Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
+ "Win32_UI_TabletPC" = [ "Win32_UI" ];
+ "Win32_UI_TextServices" = [ "Win32_UI" ];
+ "Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
+ "Win32_Web" = [ "Win32" ];
+ "Win32_Web_InternetExplorer" = [ "Win32_Web" ];
+ };
+ resolvedDefaultFeatures = [ "Wdk" "Wdk_Foundation" "Wdk_Storage" "Wdk_Storage_FileSystem" "Wdk_System" "Wdk_System_IO" "Win32" "Win32_Foundation" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Security_Authentication" "Win32_Security_Authentication_Identity" "Win32_Security_Credentials" "Win32_Security_Cryptography" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Console" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "Win32_System_IO" "Win32_System_LibraryLoader" "Win32_System_Memory" "Win32_System_Pipes" "Win32_System_SystemInformation" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
+ };
+ "windows-targets 0.52.6" = rec {
+ crateName = "windows-targets";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "0wwrx625nwlfp7k93r2rra568gad1mwd888h1jwnl0vfg5r4ywlv";
+ libName = "windows_targets";
+ authors = [
+ "Microsoft"
+ ];
+ dependencies = [
+ {
+ name = "windows_aarch64_gnullvm";
+ packageId = "windows_aarch64_gnullvm 0.52.6";
+ target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-gnullvm");
+ }
+ {
+ name = "windows_aarch64_msvc";
+ packageId = "windows_aarch64_msvc 0.52.6";
+ target = { target, features }: (("aarch64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
+ }
+ {
+ name = "windows_i686_gnu";
+ packageId = "windows_i686_gnu 0.52.6";
+ target = { target, features }: (("x86" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
+ }
+ {
+ name = "windows_i686_gnullvm";
+ packageId = "windows_i686_gnullvm 0.52.6";
+ target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnullvm");
+ }
+ {
+ name = "windows_i686_msvc";
+ packageId = "windows_i686_msvc 0.52.6";
+ target = { target, features }: (("x86" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
+ }
+ {
+ name = "windows_x86_64_gnu";
+ packageId = "windows_x86_64_gnu 0.52.6";
+ target = { target, features }: (("x86_64" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
+ }
+ {
+ name = "windows_x86_64_gnullvm";
+ packageId = "windows_x86_64_gnullvm 0.52.6";
+ target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnullvm");
+ }
+ {
+ name = "windows_x86_64_msvc";
+ packageId = "windows_x86_64_msvc 0.52.6";
+ target = { target, features }: ((("x86_64" == target."arch" or null) || ("arm64ec" == target."arch" or null)) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
+ }
+ ];
+
+ };
+ "windows-targets 0.53.5" = rec {
+ crateName = "windows-targets";
+ version = "0.53.5";
+ edition = "2021";
+ sha256 = "1wv9j2gv3l6wj3gkw5j1kr6ymb5q6dfc42yvydjhv3mqa7szjia9";
+ libName = "windows_targets";
+ dependencies = [
+ {
+ name = "windows-link";
+ packageId = "windows-link";
+ usesDefaultFeatures = false;
+ target = { target, features }: (target."windows_raw_dylib" or false);
+ }
+ {
+ name = "windows_aarch64_gnullvm";
+ packageId = "windows_aarch64_gnullvm 0.53.1";
+ target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-gnullvm");
+ }
+ {
+ name = "windows_aarch64_msvc";
+ packageId = "windows_aarch64_msvc 0.53.1";
+ target = { target, features }: (("aarch64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
+ }
+ {
+ name = "windows_i686_gnu";
+ packageId = "windows_i686_gnu 0.53.1";
+ target = { target, features }: (("x86" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
+ }
+ {
+ name = "windows_i686_gnullvm";
+ packageId = "windows_i686_gnullvm 0.53.1";
+ target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnullvm");
+ }
+ {
+ name = "windows_i686_msvc";
+ packageId = "windows_i686_msvc 0.53.1";
+ target = { target, features }: (("x86" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
+ }
+ {
+ name = "windows_x86_64_gnu";
+ packageId = "windows_x86_64_gnu 0.53.1";
+ target = { target, features }: (("x86_64" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
+ }
+ {
+ name = "windows_x86_64_gnullvm";
+ packageId = "windows_x86_64_gnullvm 0.53.1";
+ target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnullvm");
+ }
+ {
+ name = "windows_x86_64_msvc";
+ packageId = "windows_x86_64_msvc 0.53.1";
+ target = { target, features }: ((("x86_64" == target."arch" or null) || ("arm64ec" == target."arch" or null)) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
+ }
+ ];
+
+ };
+ "windows_aarch64_gnullvm 0.52.6" = rec {
+ crateName = "windows_aarch64_gnullvm";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "1lrcq38cr2arvmz19v32qaggvj8bh1640mdm9c2fr877h0hn591j";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_aarch64_gnullvm 0.53.1" = rec {
+ crateName = "windows_aarch64_gnullvm";
+ version = "0.53.1";
+ edition = "2021";
+ sha256 = "0lqvdm510mka9w26vmga7hbkmrw9glzc90l4gya5qbxlm1pl3n59";
+
+ };
+ "windows_aarch64_msvc 0.52.6" = rec {
+ crateName = "windows_aarch64_msvc";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "0sfl0nysnz32yyfh773hpi49b1q700ah6y7sacmjbqjjn5xjmv09";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_aarch64_msvc 0.53.1" = rec {
+ crateName = "windows_aarch64_msvc";
+ version = "0.53.1";
+ edition = "2021";
+ sha256 = "01jh2adlwx043rji888b22whx4bm8alrk3khjpik5xn20kl85mxr";
+
+ };
+ "windows_i686_gnu 0.52.6" = rec {
+ crateName = "windows_i686_gnu";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "02zspglbykh1jh9pi7gn8g1f97jh1rrccni9ivmrfbl0mgamm6wf";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_i686_gnu 0.53.1" = rec {
+ crateName = "windows_i686_gnu";
+ version = "0.53.1";
+ edition = "2021";
+ sha256 = "18wkcm82ldyg4figcsidzwbg1pqd49jpm98crfz0j7nqd6h6s3ln";
+
+ };
+ "windows_i686_gnullvm 0.52.6" = rec {
+ crateName = "windows_i686_gnullvm";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "0rpdx1537mw6slcpqa0rm3qixmsb79nbhqy5fsm3q2q9ik9m5vhf";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_i686_gnullvm 0.53.1" = rec {
+ crateName = "windows_i686_gnullvm";
+ version = "0.53.1";
+ edition = "2021";
+ sha256 = "030qaxqc4salz6l4immfb6sykc6gmhyir9wzn2w8mxj8038mjwzs";
+
+ };
+ "windows_i686_msvc 0.52.6" = rec {
+ crateName = "windows_i686_msvc";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "0rkcqmp4zzmfvrrrx01260q3xkpzi6fzi2x2pgdcdry50ny4h294";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_i686_msvc 0.53.1" = rec {
+ crateName = "windows_i686_msvc";
+ version = "0.53.1";
+ edition = "2021";
+ sha256 = "1hi6scw3mn2pbdl30ji5i4y8vvspb9b66l98kkz350pig58wfyhy";
+
+ };
+ "windows_x86_64_gnu 0.52.6" = rec {
+ crateName = "windows_x86_64_gnu";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "0y0sifqcb56a56mvn7xjgs8g43p33mfqkd8wj1yhrgxzma05qyhl";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_x86_64_gnu 0.53.1" = rec {
+ crateName = "windows_x86_64_gnu";
+ version = "0.53.1";
+ edition = "2021";
+ sha256 = "16d4yiysmfdlsrghndr97y57gh3kljkwhfdbcs05m1jasz6l4f4w";
+
+ };
+ "windows_x86_64_gnullvm 0.52.6" = rec {
+ crateName = "windows_x86_64_gnullvm";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "03gda7zjx1qh8k9nnlgb7m3w3s1xkysg55hkd1wjch8pqhyv5m94";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_x86_64_gnullvm 0.53.1" = rec {
+ crateName = "windows_x86_64_gnullvm";
+ version = "0.53.1";
+ edition = "2021";
+ sha256 = "1qbspgv4g3q0vygkg8rnql5c6z3caqv38japiynyivh75ng1gyhg";
+
+ };
+ "windows_x86_64_msvc 0.52.6" = rec {
+ crateName = "windows_x86_64_msvc";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "1v7rb5cibyzx8vak29pdrk8nx9hycsjs4w0jgms08qk49jl6v7sq";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_x86_64_msvc 0.53.1" = rec {
+ crateName = "windows_x86_64_msvc";
+ version = "0.53.1";
+ edition = "2021";
+ sha256 = "0l6npq76vlq4ksn4bwsncpr8508mk0gmznm6wnhjg95d19gzzfyn";
+
+ };
+ "winnow" = rec {
+ crateName = "winnow";
+ version = "0.7.13";
+ edition = "2021";
+ sha256 = "1krrjc1wj2vx0r57m9nwnlc1zrhga3fq41d8w9hysvvqb5mj7811";
+ features = {
+ "debug" = [ "std" "dep:anstream" "dep:anstyle" "dep:is_terminal_polyfill" "dep:terminal_size" ];
+ "default" = [ "std" ];
+ "simd" = [ "dep:memchr" ];
+ "std" = [ "alloc" "memchr?/std" ];
+ "unstable-doc" = [ "alloc" "std" "simd" "unstable-recover" ];
+ };
+ };
+ "wit-bindgen 0.46.0" = rec {
+ crateName = "wit-bindgen";
+ version = "0.46.0";
+ edition = "2021";
+ sha256 = "0ngysw50gp2wrrfxbwgp6dhw1g6sckknsn3wm7l00vaf7n48aypi";
+ libName = "wit_bindgen";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ "async" = [ "macros" "std" "dep:futures" "dep:once_cell" "wit-bindgen-rust-macro/async" ];
+ "bitflags" = [ "dep:bitflags" ];
+ "default" = [ "macros" "realloc" "async" "std" "bitflags" ];
+ "macros" = [ "dep:wit-bindgen-rust-macro" ];
+ "rustc-dep-of-std" = [ "dep:core" "dep:alloc" ];
+ };
+ };
+ "wit-bindgen 0.51.0" = rec {
+ crateName = "wit-bindgen";
+ version = "0.51.0";
+ edition = "2024";
+ sha256 = "19fazgch8sq5cvjv3ynhhfh5d5x08jq2pkw8jfb05vbcyqcr496p";
+ libName = "wit_bindgen";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "wit-bindgen-rust-macro";
+ packageId = "wit-bindgen-rust-macro";
+ optional = true;
+ }
+ ];
+ features = {
+ "async" = [ "std" "wit-bindgen-rust-macro?/async" ];
+ "async-spawn" = [ "async" "dep:futures" ];
+ "bitflags" = [ "dep:bitflags" ];
+ "default" = [ "macros" "realloc" "async" "std" "bitflags" ];
+ "inter-task-wakeup" = [ "async" ];
+ "macros" = [ "dep:wit-bindgen-rust-macro" ];
+ "rustc-dep-of-std" = [ "dep:core" "dep:alloc" ];
+ };
+ resolvedDefaultFeatures = [ "async" "std" ];
+ };
+ "wit-bindgen-core" = rec {
+ crateName = "wit-bindgen-core";
+ version = "0.51.0";
+ edition = "2024";
+ sha256 = "1p2jszqsqbx8k7y8nwvxg65wqzxjm048ba5phaq8r9iy9ildwqga";
+ libName = "wit_bindgen_core";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "anyhow";
+ packageId = "anyhow";
+ }
+ {
+ name = "heck";
+ packageId = "heck 0.5.0";
+ }
+ {
+ name = "wit-parser";
+ packageId = "wit-parser";
+ }
+ ];
+ features = {
+ "clap" = [ "dep:clap" ];
+ "serde" = [ "dep:serde" ];
+ };
+ };
+ "wit-bindgen-rust" = rec {
+ crateName = "wit-bindgen-rust";
+ version = "0.51.0";
+ edition = "2024";
+ sha256 = "08bzn5fsvkb9x9wyvyx98qglknj2075xk1n7c5jxv15jykh6didp";
+ libName = "wit_bindgen_rust";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "anyhow";
+ packageId = "anyhow";
+ }
+ {
+ name = "heck";
+ packageId = "heck 0.5.0";
+ }
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ }
+ {
+ name = "prettyplease";
+ packageId = "prettyplease";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "printing" ];
+ }
+ {
+ name = "wasm-metadata";
+ packageId = "wasm-metadata";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "wit-bindgen-core";
+ packageId = "wit-bindgen-core";
+ }
+ {
+ name = "wit-component";
+ packageId = "wit-component";
+ }
+ ];
+ features = {
+ "clap" = [ "dep:clap" "wit-bindgen-core/clap" ];
+ "serde" = [ "dep:serde" "wit-bindgen-core/serde" ];
+ };
+ };
+ "wit-bindgen-rust-macro" = rec {
+ crateName = "wit-bindgen-rust-macro";
+ version = "0.51.0";
+ edition = "2024";
+ sha256 = "0ymizapzv2id89igxsz2n587y2hlfypf6n8kyp68x976fzyrn3qc";
+ procMacro = true;
+ libName = "wit_bindgen_rust_macro";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "anyhow";
+ packageId = "anyhow";
+ }
+ {
+ name = "prettyplease";
+ packageId = "prettyplease";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "printing" ];
+ }
+ {
+ name = "wit-bindgen-core";
+ packageId = "wit-bindgen-core";
+ }
+ {
+ name = "wit-bindgen-rust";
+ packageId = "wit-bindgen-rust";
+ }
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "async" ];
+ };
+ "wit-component" = rec {
+ crateName = "wit-component";
+ version = "0.244.0";
+ edition = "2021";
+ sha256 = "1clwxgsgdns3zj2fqnrjcp8y5gazwfa1k0sy5cbk0fsmx4hflrlx";
+ libName = "wit_component";
+ authors = [
+ "Peter Huene <peter@huene.dev>"
+ ];
+ dependencies = [
+ {
+ name = "anyhow";
+ packageId = "anyhow";
+ }
+ {
+ name = "bitflags";
+ packageId = "bitflags 2.10.0";
+ }
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ {
+ name = "wasm-encoder";
+ packageId = "wasm-encoder";
+ usesDefaultFeatures = false;
+ features = [ "std" "wasmparser" ];
+ }
+ {
+ name = "wasm-metadata";
+ packageId = "wasm-metadata";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "wasmparser";
+ packageId = "wasmparser";
+ usesDefaultFeatures = false;
+ features = [ "simd" "std" "component-model" "simd" ];
+ }
+ {
+ name = "wit-parser";
+ packageId = "wit-parser";
+ features = [ "decoding" "serde" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "wasm-metadata";
+ packageId = "wasm-metadata";
+ usesDefaultFeatures = false;
+ features = [ "oci" ];
+ }
+ {
+ name = "wasmparser";
+ packageId = "wasmparser";
+ usesDefaultFeatures = false;
+ features = [ "simd" "std" "component-model" "features" ];
+ }
+ ];
+ features = {
+ "dummy-module" = [ "dep:wat" ];
+ "semver-check" = [ "dummy-module" ];
+ "wat" = [ "dep:wast" "dep:wat" ];
+ };
+ };
+ "wit-parser" = rec {
+ crateName = "wit-parser";
+ version = "0.244.0";
+ edition = "2021";
+ sha256 = "0dm7avvdxryxd5b02l0g5h6933z1cw5z0d4wynvq2cywq55srj7c";
+ libName = "wit_parser";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "anyhow";
+ packageId = "anyhow";
+ }
+ {
+ name = "id-arena";
+ packageId = "id-arena";
+ }
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "semver";
+ packageId = "semver";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ optional = true;
+ }
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ optional = true;
+ }
+ {
+ name = "unicode-xid";
+ packageId = "unicode-xid";
+ }
+ {
+ name = "wasmparser";
+ packageId = "wasmparser";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "simd" "std" "validate" "component-model" "features" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde_json";
+ packageId = "serde_json";
+ }
+ ];
+ features = {
+ "decoding" = [ "dep:wasmparser" ];
+ "default" = [ "serde" "decoding" ];
+ "serde" = [ "dep:serde" "dep:serde_derive" "indexmap/serde" "serde_json" ];
+ "serde_json" = [ "dep:serde_json" ];
+ "wat" = [ "decoding" "dep:wat" ];
+ };
+ resolvedDefaultFeatures = [ "decoding" "default" "serde" "serde_json" ];
+ };
+ "writeable" = rec {
+ crateName = "writeable";
+ version = "0.6.2";
+ edition = "2021";
+ sha256 = "1fg08y97n6vk7l0rnjggw3xyrii6dcqg54wqaxldrlk98zdy1pcy";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ features = {
+ "default" = [ "alloc" ];
+ "either" = [ "dep:either" ];
+ };
+ };
+ "wyz" = rec {
+ crateName = "wyz";
+ version = "0.5.1";
+ edition = "2018";
+ sha256 = "1vdrfy7i2bznnzjdl9vvrzljvs4s3qm8bnlgqwln6a941gy61wq5";
+ authors = [
+ "myrrlyn <self@myrrlyn.dev>"
+ ];
+ dependencies = [
+ {
+ name = "tap";
+ packageId = "tap";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "garbage" = [ "once_cell" "typemap" ];
+ "once_cell" = [ "dep:once_cell" ];
+ "std" = [ "alloc" ];
+ "typemap" = [ "dep:typemap" ];
+ };
+ };
+ "x509-parser" = rec {
+ crateName = "x509-parser";
+ version = "0.16.0";
+ edition = "2018";
+ sha256 = "0s8zyl6fafkzpylcpcn08bmcmrzzcb6gfjx2h8zny3bh60pidg7w";
+ libName = "x509_parser";
+ authors = [
+ "Pierre Chifflier <chifflier@wzdftpd.net>"
+ ];
+ dependencies = [
+ {
+ name = "asn1-rs";
+ packageId = "asn1-rs";
+ features = [ "datetime" ];
+ }
+ {
+ name = "data-encoding";
+ packageId = "data-encoding";
+ }
+ {
+ name = "der-parser";
+ packageId = "der-parser";
+ features = [ "bigint" ];
+ }
+ {
+ name = "lazy_static";
+ packageId = "lazy_static";
+ }
+ {
+ name = "nom";
+ packageId = "nom 7.1.3";
+ }
+ {
+ name = "oid-registry";
+ packageId = "oid-registry";
+ features = [ "crypto" "x509" "x962" ];
+ }
+ {
+ name = "rusticata-macros";
+ packageId = "rusticata-macros";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 1.0.69";
+ }
+ {
+ name = "time";
+ packageId = "time";
+ features = [ "formatting" ];
+ }
+ ];
+ features = {
+ "ring" = [ "dep:ring" ];
+ "verify" = [ "ring" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "xattr" = rec {
+ crateName = "xattr";
+ version = "1.6.1";
+ edition = "2021";
+ sha256 = "0ml1mb43gqasawillql6b344m0zgq8mz0isi11wj8vbg43a5mr1j";
+ authors = [
+ "Steven Allen <steven@stebalien.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (("freebsd" == target."os" or null) || ("netbsd" == target."os" or null));
+ }
+ {
+ name = "rustix";
+ packageId = "rustix";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("android" == target."os" or null) || ("linux" == target."os" or null) || ("macos" == target."os" or null) || ("hurd" == target."os" or null));
+ features = [ "fs" "std" ];
+ }
+ ];
+ features = {
+ "default" = [ "unsupported" ];
+ };
+ resolvedDefaultFeatures = [ "default" "unsupported" ];
+ };
+ "xml-rs" = rec {
+ crateName = "xml-rs";
+ version = "0.8.28";
+ edition = "2021";
+ crateBin = [];
+ sha256 = "0grdj7xwbki5zrkalrg8dljyf14y4yj3wrj34sbzqp06i9zk7s1s";
+ libName = "xml";
+ authors = [
+ "Vladimir Matveev <vmatveev@citrine.cc>"
+ ];
+
+ };
+ "yaml-rust" = rec {
+ crateName = "yaml-rust";
+ version = "0.4.5";
+ edition = "2018";
+ sha256 = "118wbqrr4n6wgk5rjjnlrdlahawlxc1bdsx146mwk8f79in97han";
+ libName = "yaml_rust";
+ authors = [
+ "Yuheng Chen <yuhengchen@sensetime.com>"
+ ];
+ dependencies = [
+ {
+ name = "linked-hash-map";
+ packageId = "linked-hash-map";
+ }
+ ];
+
+ };
+ "yasna" = rec {
+ crateName = "yasna";
+ version = "0.4.0";
+ edition = "2018";
+ sha256 = "0xgsvxqnycdakh6j3hg4dk3mylrpnba50w0d36vg5k311sfs4qp2";
+ authors = [
+ "Masaki Hara <ackie.h.gmai@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bit-vec";
+ packageId = "bit-vec";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "num-bigint";
+ packageId = "num-bigint";
+ optional = true;
+ }
+ ];
+ features = {
+ "bit-vec" = [ "dep:bit-vec" ];
+ "chrono" = [ "dep:chrono" ];
+ "num-bigint" = [ "dep:num-bigint" ];
+ };
+ resolvedDefaultFeatures = [ "bit-vec" "default" "num-bigint" ];
+ };
+ "yoke" = rec {
+ crateName = "yoke";
+ version = "0.8.1";
+ edition = "2021";
+ sha256 = "0m29dm0bf5iakxgma0bj6dbmc3b8qi9b1vaw9sa76kdqmz3fbmkj";
+ authors = [
+ "Manish Goregaokar <manishsmail@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "stable_deref_trait";
+ packageId = "stable_deref_trait";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "yoke-derive";
+ packageId = "yoke-derive";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zerofrom";
+ packageId = "zerofrom";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "stable_deref_trait/alloc" "zerofrom/alloc" ];
+ "default" = [ "alloc" "zerofrom" ];
+ "derive" = [ "dep:yoke-derive" "zerofrom/derive" ];
+ "zerofrom" = [ "dep:zerofrom" ];
+ };
+ resolvedDefaultFeatures = [ "derive" "zerofrom" ];
+ };
+ "yoke-derive" = rec {
+ crateName = "yoke-derive";
+ version = "0.8.1";
+ edition = "2021";
+ sha256 = "0pbyja133jnng4mrhimzdq4a0y26421g734ybgz8wsgbfhl0andn";
+ procMacro = true;
+ libName = "yoke_derive";
+ authors = [
+ "Manish Goregaokar <manishsmail@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "fold" ];
+ }
+ {
+ name = "synstructure";
+ packageId = "synstructure";
+ }
+ ];
+
+ };
+ "zerocopy" = rec {
+ crateName = "zerocopy";
+ version = "0.8.30";
+ edition = "2021";
+ sha256 = "0p063618ffkgnf1p7sb58mlprx1ll95vn5pgbyra5s5g8k4pka2f";
+ authors = [
+ "Joshua Liebow-Feeser <joshlf@google.com>"
+ "Jack Wrenn <jswrenn@amazon.com>"
+ ];
+ dependencies = [
+ {
+ name = "zerocopy-derive";
+ packageId = "zerocopy-derive";
+ optional = true;
+ }
+ {
+ name = "zerocopy-derive";
+ packageId = "zerocopy-derive";
+ target = { target, features }: false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "zerocopy-derive";
+ packageId = "zerocopy-derive";
+ }
+ ];
+ features = {
+ "__internal_use_only_features_that_work_on_stable" = [ "alloc" "derive" "simd" "std" ];
+ "derive" = [ "zerocopy-derive" ];
+ "simd-nightly" = [ "simd" ];
+ "std" = [ "alloc" ];
+ "zerocopy-derive" = [ "dep:zerocopy-derive" ];
+ };
+ resolvedDefaultFeatures = [ "derive" "simd" "zerocopy-derive" ];
+ };
+ "zerocopy-derive" = rec {
+ crateName = "zerocopy-derive";
+ version = "0.8.30";
+ edition = "2021";
+ sha256 = "1x9l3xy9xay4pc4wp8rb4znhl0xi9i2894wfviq0y16n0jlmm5fg";
+ procMacro = true;
+ libName = "zerocopy_derive";
+ authors = [
+ "Joshua Liebow-Feeser <joshlf@google.com>"
+ "Jack Wrenn <jswrenn@amazon.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" ];
+ }
+ ];
+
+ };
+ "zerofrom" = rec {
+ crateName = "zerofrom";
+ version = "0.1.6";
+ edition = "2021";
+ sha256 = "19dyky67zkjichsb7ykhv0aqws3q0jfvzww76l66c19y6gh45k2h";
+ authors = [
+ "Manish Goregaokar <manishsmail@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "zerofrom-derive";
+ packageId = "zerofrom-derive";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "default" = [ "alloc" ];
+ "derive" = [ "dep:zerofrom-derive" ];
+ };
+ resolvedDefaultFeatures = [ "derive" ];
+ };
+ "zerofrom-derive" = rec {
+ crateName = "zerofrom-derive";
+ version = "0.1.6";
+ edition = "2021";
+ sha256 = "00l5niw7c1b0lf1vhvajpjmcnbdp2vn96jg4nmkhq2db0rp5s7np";
+ procMacro = true;
+ libName = "zerofrom_derive";
+ authors = [
+ "Manish Goregaokar <manishsmail@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "fold" ];
+ }
+ {
+ name = "synstructure";
+ packageId = "synstructure";
+ }
+ ];
+
+ };
+ "zeroize" = rec {
+ crateName = "zeroize";
+ version = "1.8.2";
+ edition = "2021";
+ sha256 = "1l48zxgcv34d7kjskr610zqsm6j2b4fcr2vfh9jm9j1jgvk58wdr";
+ authors = [
+ "The RustCrypto Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "zeroize_derive";
+ packageId = "zeroize_derive";
+ optional = true;
+ }
+ ];
+ features = {
+ "default" = [ "alloc" ];
+ "derive" = [ "zeroize_derive" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "alloc" ];
+ "zeroize_derive" = [ "dep:zeroize_derive" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "zeroize_derive" ];
+ };
+ "zeroize_derive" = rec {
+ crateName = "zeroize_derive";
+ version = "1.4.2";
+ edition = "2021";
+ sha256 = "0sczjlqjdmrp3wn62g7mw6p438c9j4jgp2f9zamd56991mdycdnf";
+ procMacro = true;
+ authors = [
+ "The RustCrypto Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "full" "extra-traits" "visit" ];
+ }
+ ];
+
+ };
+ "zerotrie" = rec {
+ crateName = "zerotrie";
+ version = "0.2.3";
+ edition = "2021";
+ sha256 = "0lbqznlqazmrwwzslw0ci7p3pqxykrbfhq29npj0gmb2amxc2n9a";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "yoke";
+ packageId = "yoke";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ {
+ name = "zerofrom";
+ packageId = "zerofrom";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "databake" = [ "dep:databake" "zerovec?/databake" ];
+ "litemap" = [ "dep:litemap" "alloc" ];
+ "serde" = [ "dep:serde_core" "dep:litemap" "alloc" "litemap/serde" "zerovec?/serde" ];
+ "yoke" = [ "dep:yoke" ];
+ "zerofrom" = [ "dep:zerofrom" ];
+ "zerovec" = [ "dep:zerovec" ];
+ };
+ resolvedDefaultFeatures = [ "yoke" "zerofrom" ];
+ };
+ "zerovec" = rec {
+ crateName = "zerovec";
+ version = "0.11.5";
+ edition = "2021";
+ sha256 = "00m0p47k2g9mkv505hky5xh3r6ps7v8qc0dy4pspg542jj972a3c";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "yoke";
+ packageId = "yoke";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zerofrom";
+ packageId = "zerofrom";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zerovec-derive";
+ packageId = "zerovec-derive";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "serde?/alloc" ];
+ "databake" = [ "dep:databake" ];
+ "derive" = [ "dep:zerovec-derive" ];
+ "hashmap" = [ "dep:twox-hash" "alloc" ];
+ "serde" = [ "dep:serde" ];
+ "yoke" = [ "dep:yoke" ];
+ };
+ resolvedDefaultFeatures = [ "derive" "yoke" ];
+ };
+ "zerovec-derive" = rec {
+ crateName = "zerovec-derive";
+ version = "0.11.2";
+ edition = "2021";
+ sha256 = "1wsig4h5j7a1scd5hrlnragnazjny9qjc44hancb6p6a76ay7p7a";
+ procMacro = true;
+ libName = "zerovec_derive";
+ authors = [
+ "Manish Goregaokar <manishsmail@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn 2.0.111";
+ features = [ "extra-traits" ];
+ }
+ ];
+
+ };
+ "zstd" = rec {
+ crateName = "zstd";
+ version = "0.13.3";
+ edition = "2018";
+ sha256 = "12n0h4w9l526li7jl972rxpyf012jw3nwmji2qbjghv9ll8y67p9";
+ authors = [
+ "Alexandre Bury <alexandre.bury@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "zstd-safe";
+ packageId = "zstd-safe";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ ];
+ features = {
+ "arrays" = [ "zstd-safe/arrays" ];
+ "bindgen" = [ "zstd-safe/bindgen" ];
+ "debug" = [ "zstd-safe/debug" ];
+ "default" = [ "legacy" "arrays" "zdict_builder" ];
+ "experimental" = [ "zstd-safe/experimental" ];
+ "fat-lto" = [ "zstd-safe/fat-lto" ];
+ "legacy" = [ "zstd-safe/legacy" ];
+ "no_asm" = [ "zstd-safe/no_asm" ];
+ "pkg-config" = [ "zstd-safe/pkg-config" ];
+ "thin" = [ "zstd-safe/thin" ];
+ "thin-lto" = [ "zstd-safe/thin-lto" ];
+ "zdict_builder" = [ "zstd-safe/zdict_builder" ];
+ "zstdmt" = [ "zstd-safe/zstdmt" ];
+ };
+ };
+ "zstd-safe" = rec {
+ crateName = "zstd-safe";
+ version = "7.2.4";
+ edition = "2018";
+ sha256 = "179vxmkzhpz6cq6mfzvgwc99bpgllkr6lwxq7ylh5dmby3aw8jcg";
+ libName = "zstd_safe";
+ authors = [
+ "Alexandre Bury <alexandre.bury@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "zstd-sys";
+ packageId = "zstd-sys";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "bindgen" = [ "zstd-sys/bindgen" ];
+ "debug" = [ "zstd-sys/debug" ];
+ "default" = [ "legacy" "arrays" "zdict_builder" ];
+ "experimental" = [ "zstd-sys/experimental" ];
+ "fat-lto" = [ "zstd-sys/fat-lto" ];
+ "legacy" = [ "zstd-sys/legacy" ];
+ "no_asm" = [ "zstd-sys/no_asm" ];
+ "pkg-config" = [ "zstd-sys/pkg-config" ];
+ "seekable" = [ "zstd-sys/seekable" ];
+ "std" = [ "zstd-sys/std" ];
+ "thin" = [ "zstd-sys/thin" ];
+ "thin-lto" = [ "zstd-sys/thin-lto" ];
+ "zdict_builder" = [ "zstd-sys/zdict_builder" ];
+ "zstdmt" = [ "zstd-sys/zstdmt" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "zstd-seekable" = rec {
+ crateName = "zstd-seekable";
+ version = "0.1.23";
+ edition = "2018";
+ sha256 = "1hn3lry2p1fzjlx6shwq1k5bcpx4lqckmvl16gqx326vbiy12jjp";
+ libName = "zstd_seekable";
+ authors = [
+ "Pierre-Étienne Meunier <pe@pijul.org>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror 1.0.69";
+ }
+ {
+ name = "threadpool";
+ packageId = "threadpool";
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "bincode";
+ packageId = "bincode 1.3.3";
+ }
+ {
+ name = "cc";
+ packageId = "cc";
+ }
+ {
+ name = "pkg-config";
+ packageId = "pkg-config";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ }
+ ];
+
+ };
+ "zstd-sys" = rec {
+ crateName = "zstd-sys";
+ version = "2.0.16+zstd.1.5.7";
+ edition = "2018";
+ links = "zstd";
+ sha256 = "0j1pd2iaqpvaxlgqmmijj68wma7xwdv9grrr63j873yw5ay9xqci";
+ libName = "zstd_sys";
+ authors = [
+ "Alexandre Bury <alexandre.bury@gmail.com>"
+ ];
+ buildDependencies = [
+ {
+ name = "cc";
+ packageId = "cc";
+ features = [ "parallel" ];
+ }
+ {
+ name = "pkg-config";
+ packageId = "pkg-config";
+ }
+ ];
+ features = {
+ "bindgen" = [ "dep:bindgen" ];
+ "default" = [ "legacy" "zdict_builder" "bindgen" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ };
+
+ #
+ # crate2nix/default.nix (excerpt start)
+ #
+
+ /* Target (platform) data for conditional dependencies.
+ This corresponds roughly to what buildRustCrate is setting.
+ */
+ makeDefaultTarget = platform: {
+ unix = platform.isUnix;
+ windows = platform.isWindows;
+ fuchsia = true;
+ test = false;
+
+ inherit (platform.rust.platform)
+ arch
+ os
+ vendor;
+ family = platform.rust.platform.target-family;
+ env = "gnu";
+ endian =
+ if platform.parsed.cpu.significantByte.name == "littleEndian"
+ then "little" else "big";
+ pointer_width = toString platform.parsed.cpu.bits;
+ debug_assertions = false;
+ };
+
+ /* Filters common temp files and build files. */
+ # TODO(pkolloch): Substitute with gitignore filter
+ sourceFilter = name: type:
+ let
+ baseName = builtins.baseNameOf (builtins.toString name);
+ in
+ ! (
+ # Filter out git
+ baseName == ".gitignore"
+ || (type == "directory" && baseName == ".git")
+
+ # Filter out build results
+ || (
+ type == "directory" && (
+ baseName == "target"
+ || baseName == "_site"
+ || baseName == ".sass-cache"
+ || baseName == ".jekyll-metadata"
+ || baseName == "build-artifacts"
+ )
+ )
+
+ # Filter out nix-build result symlinks
+ || (
+ type == "symlink" && lib.hasPrefix "result" baseName
+ )
+
+ # Filter out IDE config
+ || (
+ type == "directory" && (
+ baseName == ".idea" || baseName == ".vscode"
+ )
+ ) || lib.hasSuffix ".iml" baseName
+
+ # Filter out nix build files
+ || baseName == "Cargo.nix"
+
+ # Filter out editor backup / swap files.
+ || lib.hasSuffix "~" baseName
+ || builtins.match "^\\.sw[a-z]$$" baseName != null
+ || builtins.match "^\\..*\\.sw[a-z]$$" baseName != null
+ || lib.hasSuffix ".tmp" baseName
+ || lib.hasSuffix ".bak" baseName
+ || baseName == "tests.nix"
+ );
+
+ /* Returns a crate which depends on successful test execution
+ of crate given as the second argument.
+
+ testCrateFlags: list of flags to pass to the test exectuable
+ testInputs: list of packages that should be available during test execution
+ */
+ crateWithTest = { crate, testCrate, testCrateFlags, testInputs, testPreRun, testPostRun }:
+ assert builtins.typeOf testCrateFlags == "list";
+ assert builtins.typeOf testInputs == "list";
+ assert builtins.typeOf testPreRun == "string";
+ assert builtins.typeOf testPostRun == "string";
+ let
+ # override the `crate` so that it will build and execute tests instead of
+ # building the actual lib and bin targets We just have to pass `--test`
+ # to rustc and it will do the right thing. We execute the tests and copy
+ # their log and the test executables to $out for later inspection.
+ test =
+ let
+ drv = testCrate.override
+ (
+ _: {
+ buildTests = true;
+ }
+ );
+ # If the user hasn't set any pre/post commands, we don't want to
+ # insert empty lines. This means that any existing users of crate2nix
+ # don't get a spurious rebuild unless they set these explicitly.
+ testCommand = pkgs.lib.concatStringsSep "\n"
+ (pkgs.lib.filter (s: s != "") [
+ testPreRun
+ "$f $testCrateFlags 2>&1 | tee -a $out"
+ testPostRun
+ ]);
+ in
+ pkgs.runCommand "run-tests-${testCrate.name}"
+ {
+ inherit testCrateFlags;
+ buildInputs = testInputs;
+ } ''
+ set -e
+
+ export RUST_BACKTRACE=1
+
+ # recreate a file hierarchy as when running tests with cargo
+
+ # the source for test data
+ # It's necessary to locate the source in $NIX_BUILD_TOP/source/
+ # instead of $NIX_BUILD_TOP/
+ # because we compiled those test binaries in the former and not the latter.
+ # So all paths will expect source tree to be there and not in the build top directly.
+ # For example: $NIX_BUILD_TOP := /build in general, if you ask yourself.
+ # NOTE: There could be edge cases if `crate.sourceRoot` does exist but
+ # it's very hard to reason about them.
+ # Open a bug if you run into this!
+ mkdir -p source/
+ cd source/
+
+ ${pkgs.buildPackages.xorg.lndir}/bin/lndir ${crate.src}
+
+ # build outputs
+ testRoot=target/debug
+ mkdir -p $testRoot
+
+ # executables of the crate
+ # we copy to prevent std::env::current_exe() to resolve to a store location
+ for i in ${crate}/bin/*; do
+ cp "$i" "$testRoot"
+ done
+ chmod +w -R .
+
+ # test harness executables are suffixed with a hash, like cargo does
+ # this allows to prevent name collision with the main
+ # executables of the crate
+ hash=$(basename $out)
+ for file in ${drv}/tests/*; do
+ f=$testRoot/$(basename $file)-$hash
+ cp $file $f
+ ${testCommand}
+ done
+ '';
+ in
+ pkgs.runCommand "${crate.name}-linked"
+ {
+ inherit (crate) outputs crateName;
+ passthru = (crate.passthru or { }) // {
+ inherit test;
+ };
+ }
+ (lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
+ echo tested by ${test}
+ '' + ''
+ ${lib.concatMapStringsSep "\n" (output: "ln -s ${crate.${output}} ${"$"}${output}") crate.outputs}
+ '');
+
+ /* A restricted overridable version of builtRustCratesWithFeatures. */
+ buildRustCrateWithFeatures =
+ { packageId
+ , features ? rootFeatures
+ , crateOverrides ? defaultCrateOverrides
+ , buildRustCrateForPkgsFunc ? null
+ , runTests ? false
+ , testCrateFlags ? [ ]
+ , testInputs ? [ ]
+ # Any command to run immediatelly before a test is executed.
+ , testPreRun ? ""
+ # Any command run immediatelly after a test is executed.
+ , testPostRun ? ""
+ }:
+ lib.makeOverridable
+ (
+ { features
+ , crateOverrides
+ , runTests
+ , testCrateFlags
+ , testInputs
+ , testPreRun
+ , testPostRun
+ }:
+ let
+ buildRustCrateForPkgsFuncOverriden =
+ if buildRustCrateForPkgsFunc != null
+ then buildRustCrateForPkgsFunc
+ else
+ (
+ if crateOverrides == pkgs.defaultCrateOverrides
+ then buildRustCrateForPkgs
+ else
+ pkgs: (buildRustCrateForPkgs pkgs).override {
+ defaultCrateOverrides = crateOverrides;
+ }
+ );
+ builtRustCrates = builtRustCratesWithFeatures {
+ inherit packageId features;
+ buildRustCrateForPkgsFunc = buildRustCrateForPkgsFuncOverriden;
+ runTests = false;
+ };
+ builtTestRustCrates = builtRustCratesWithFeatures {
+ inherit packageId features;
+ buildRustCrateForPkgsFunc = buildRustCrateForPkgsFuncOverriden;
+ runTests = true;
+ };
+ drv = builtRustCrates.crates.${packageId};
+ testDrv = builtTestRustCrates.crates.${packageId};
+ derivation =
+ if runTests then
+ crateWithTest
+ {
+ crate = drv;
+ testCrate = testDrv;
+ inherit testCrateFlags testInputs testPreRun testPostRun;
+ }
+ else drv;
+ in
+ derivation
+ )
+ { inherit features crateOverrides runTests testCrateFlags testInputs testPreRun testPostRun; };
+
+ /* Returns an attr set with packageId mapped to the result of buildRustCrateForPkgsFunc
+ for the corresponding crate.
+ */
+ builtRustCratesWithFeatures =
+ { packageId
+ , features
+ , crateConfigs ? crates
+ , buildRustCrateForPkgsFunc
+ , runTests
+ , makeTarget ? makeDefaultTarget
+ } @ args:
+ assert (builtins.isAttrs crateConfigs);
+ assert (builtins.isString packageId);
+ assert (builtins.isList features);
+ assert (builtins.isAttrs (makeTarget stdenv.hostPlatform));
+ assert (builtins.isBool runTests);
+ let
+ rootPackageId = packageId;
+ mergedFeatures = mergePackageFeatures
+ (
+ args // {
+ inherit rootPackageId;
+ target = makeTarget stdenv.hostPlatform // { test = runTests; };
+ }
+ );
+ # Memoize built packages so that reappearing packages are only built once.
+ builtByPackageIdByPkgs = mkBuiltByPackageIdByPkgs pkgs;
+ mkBuiltByPackageIdByPkgs = pkgs:
+ let
+ self = {
+ crates = lib.mapAttrs (packageId: value: buildByPackageIdForPkgsImpl self pkgs packageId) crateConfigs;
+ target = makeTarget stdenv.hostPlatform;
+ build = mkBuiltByPackageIdByPkgs pkgs.buildPackages;
+ };
+ in
+ self;
+ buildByPackageIdForPkgsImpl = self: pkgs: packageId:
+ let
+ features = mergedFeatures."${packageId}" or [ ];
+ crateConfig' = crateConfigs."${packageId}";
+ crateConfig =
+ builtins.removeAttrs crateConfig' [ "resolvedDefaultFeatures" "devDependencies" ];
+ devDependencies =
+ lib.optionals
+ (runTests && packageId == rootPackageId)
+ (crateConfig'.devDependencies or [ ]);
+ dependencies =
+ dependencyDerivations {
+ inherit features;
+ inherit (self) target;
+ buildByPackageId = depPackageId:
+ # proc_macro crates must be compiled for the build architecture
+ if crateConfigs.${depPackageId}.procMacro or false
+ then self.build.crates.${depPackageId}
+ else self.crates.${depPackageId};
+ dependencies =
+ (crateConfig.dependencies or [ ])
+ ++ devDependencies;
+ };
+ buildDependencies =
+ dependencyDerivations {
+ inherit features;
+ inherit (self.build) target;
+ buildByPackageId = depPackageId:
+ self.build.crates.${depPackageId};
+ dependencies = crateConfig.buildDependencies or [ ];
+ };
+ dependenciesWithRenames =
+ let
+ buildDeps = filterEnabledDependencies {
+ inherit features;
+ inherit (self) target;
+ dependencies = crateConfig.dependencies or [ ] ++ devDependencies;
+ };
+ hostDeps = filterEnabledDependencies {
+ inherit features;
+ inherit (self.build) target;
+ dependencies = crateConfig.buildDependencies or [ ];
+ };
+ in
+ lib.filter (d: d ? "rename") (hostDeps ++ buildDeps);
+ # Crate renames have the form:
+ #
+ # {
+ # crate_name = [
+ # { version = "1.2.3"; rename = "crate_name01"; }
+ # ];
+ # # ...
+ # }
+ crateRenames =
+ let
+ grouped =
+ lib.groupBy
+ (dependency: dependency.name)
+ dependenciesWithRenames;
+ versionAndRename = dep:
+ let
+ package = crateConfigs."${dep.packageId}";
+ in
+ { inherit (dep) rename; inherit (package) version; };
+ in
+ lib.mapAttrs (name: builtins.map versionAndRename) grouped;
+ in
+ buildRustCrateForPkgsFunc pkgs
+ (
+ crateConfig // {
+ src = crateConfig.src or (
+ pkgs.fetchurl rec {
+ name = "${crateConfig.crateName}-${crateConfig.version}.tar.gz";
+ # https://www.pietroalbini.org/blog/downloading-crates-io/
+ # Not rate-limited, CDN URL.
+ url = "https://static.crates.io/crates/${crateConfig.crateName}/${crateConfig.crateName}-${crateConfig.version}.crate";
+ sha256 =
+ assert (lib.assertMsg (crateConfig ? sha256) "Missing sha256 for ${name}");
+ crateConfig.sha256;
+ }
+ );
+ extraRustcOpts = lib.lists.optional (targetFeatures != [ ]) "-C target-feature=${lib.concatMapStringsSep "," (x: "+${x}") targetFeatures}";
+ inherit features dependencies buildDependencies crateRenames release;
+ }
+ );
+ in
+ builtByPackageIdByPkgs;
+
+ /* Returns the actual derivations for the given dependencies. */
+ dependencyDerivations =
+ { buildByPackageId
+ , features
+ , dependencies
+ , target
+ }:
+ assert (builtins.isList features);
+ assert (builtins.isList dependencies);
+ assert (builtins.isAttrs target);
+ let
+ enabledDependencies = filterEnabledDependencies {
+ inherit dependencies features target;
+ };
+ depDerivation = dependency: buildByPackageId dependency.packageId;
+ in
+ map depDerivation enabledDependencies;
+
+ /* Returns a sanitized version of val with all values substituted that cannot
+ be serialized as JSON.
+ */
+ sanitizeForJson = val:
+ if builtins.isAttrs val
+ then lib.mapAttrs (n: sanitizeForJson) val
+ else if builtins.isList val
+ then builtins.map sanitizeForJson val
+ else if builtins.isFunction val
+ then "function"
+ else val;
+
+ /* Returns various tools to debug a crate. */
+ debugCrate = { packageId, target ? makeDefaultTarget stdenv.hostPlatform }:
+ assert (builtins.isString packageId);
+ let
+ debug = rec {
+ # The built tree as passed to buildRustCrate.
+ buildTree = buildRustCrateWithFeatures {
+ buildRustCrateForPkgsFunc = _: lib.id;
+ inherit packageId;
+ };
+ sanitizedBuildTree = sanitizeForJson buildTree;
+ dependencyTree = sanitizeForJson
+ (
+ buildRustCrateWithFeatures {
+ buildRustCrateForPkgsFunc = _: crate: {
+ "01_crateName" = crate.crateName or false;
+ "02_features" = crate.features or [ ];
+ "03_dependencies" = crate.dependencies or [ ];
+ };
+ inherit packageId;
+ }
+ );
+ mergedPackageFeatures = mergePackageFeatures {
+ features = rootFeatures;
+ inherit packageId target;
+ };
+ diffedDefaultPackageFeatures = diffDefaultPackageFeatures {
+ inherit packageId target;
+ };
+ };
+ in
+ { internal = debug; };
+
+ /* Returns differences between cargo default features and crate2nix default
+ features.
+
+ This is useful for verifying the feature resolution in crate2nix.
+ */
+ diffDefaultPackageFeatures =
+ { crateConfigs ? crates
+ , packageId
+ , target
+ }:
+ assert (builtins.isAttrs crateConfigs);
+ let
+ prefixValues = prefix: lib.mapAttrs (n: v: { "${prefix}" = v; });
+ mergedFeatures =
+ prefixValues
+ "crate2nix"
+ (mergePackageFeatures { inherit crateConfigs packageId target; features = [ "default" ]; });
+ configs = prefixValues "cargo" crateConfigs;
+ combined = lib.foldAttrs (a: b: a // b) { } [ mergedFeatures configs ];
+ onlyInCargo =
+ builtins.attrNames
+ (lib.filterAttrs (n: v: !(v ? "crate2nix") && (v ? "cargo")) combined);
+ onlyInCrate2Nix =
+ builtins.attrNames
+ (lib.filterAttrs (n: v: (v ? "crate2nix") && !(v ? "cargo")) combined);
+ differentFeatures = lib.filterAttrs
+ (
+ n: v:
+ (v ? "crate2nix")
+ && (v ? "cargo")
+ && (v.crate2nix.features or [ ]) != (v."cargo".resolved_default_features or [ ])
+ )
+ combined;
+ in
+ builtins.toJSON {
+ inherit onlyInCargo onlyInCrate2Nix differentFeatures;
+ };
+
+ /* Returns an attrset mapping packageId to the list of enabled features.
+
+ If multiple paths to a dependency enable different features, the
+ corresponding feature sets are merged. Features in rust are additive.
+ */
+ mergePackageFeatures =
+ { crateConfigs ? crates
+ , packageId
+ , rootPackageId ? packageId
+ , features ? rootFeatures
+ , dependencyPath ? [ crates.${packageId}.crateName ]
+ , featuresByPackageId ? { }
+ , target
+ # Adds devDependencies to the crate with rootPackageId.
+ , runTests ? false
+ , ...
+ } @ args:
+ assert (builtins.isAttrs crateConfigs);
+ assert (builtins.isString packageId);
+ assert (builtins.isString rootPackageId);
+ assert (builtins.isList features);
+ assert (builtins.isList dependencyPath);
+ assert (builtins.isAttrs featuresByPackageId);
+ assert (builtins.isAttrs target);
+ assert (builtins.isBool runTests);
+ let
+ crateConfig = crateConfigs."${packageId}" or (builtins.throw "Package not found: ${packageId}");
+ expandedFeatures = expandFeatures (crateConfig.features or { }) features;
+ enabledFeatures = enableFeatures (crateConfig.dependencies or [ ]) expandedFeatures;
+ depWithResolvedFeatures = dependency:
+ let
+ inherit (dependency) packageId;
+ features = dependencyFeatures enabledFeatures dependency;
+ in
+ { inherit packageId features; };
+ resolveDependencies = cache: path: dependencies:
+ assert (builtins.isAttrs cache);
+ assert (builtins.isList dependencies);
+ let
+ enabledDependencies = filterEnabledDependencies {
+ inherit dependencies target;
+ features = enabledFeatures;
+ };
+ directDependencies = map depWithResolvedFeatures enabledDependencies;
+ foldOverCache = op: lib.foldl op cache directDependencies;
+ in
+ foldOverCache
+ (
+ cache: { packageId, features }:
+ let
+ cacheFeatures = cache.${packageId} or [ ];
+ combinedFeatures = sortedUnique (cacheFeatures ++ features);
+ in
+ if cache ? ${packageId} && cache.${packageId} == combinedFeatures
+ then cache
+ else
+ mergePackageFeatures {
+ features = combinedFeatures;
+ featuresByPackageId = cache;
+ inherit crateConfigs packageId target runTests rootPackageId;
+ }
+ );
+ cacheWithSelf =
+ let
+ cacheFeatures = featuresByPackageId.${packageId} or [ ];
+ combinedFeatures = sortedUnique (cacheFeatures ++ enabledFeatures);
+ in
+ featuresByPackageId // {
+ "${packageId}" = combinedFeatures;
+ };
+ cacheWithDependencies =
+ resolveDependencies cacheWithSelf "dep"
+ (
+ crateConfig.dependencies or [ ]
+ ++ lib.optionals
+ (runTests && packageId == rootPackageId)
+ (crateConfig.devDependencies or [ ])
+ );
+ cacheWithAll =
+ resolveDependencies
+ cacheWithDependencies "build"
+ (crateConfig.buildDependencies or [ ]);
+ in
+ cacheWithAll;
+
+ /* Returns the enabled dependencies given the enabled features. */
+ filterEnabledDependencies = { dependencies, features, target }:
+ assert (builtins.isList dependencies);
+ assert (builtins.isList features);
+ assert (builtins.isAttrs target);
+
+ lib.filter
+ (
+ dep:
+ let
+ targetFunc = dep.target or (features: true);
+ in
+ targetFunc { inherit features target; }
+ && (
+ !(dep.optional or false)
+ || builtins.any (doesFeatureEnableDependency dep) features
+ )
+ )
+ dependencies;
+
+ /* Returns whether the given feature should enable the given dependency. */
+ doesFeatureEnableDependency = dependency: feature:
+ let
+ name = dependency.rename or dependency.name;
+ prefix = "${name}/";
+ len = builtins.stringLength prefix;
+ startsWithPrefix = builtins.substring 0 len feature == prefix;
+ in
+ feature == name || feature == "dep:" + name || startsWithPrefix;
+
+ /* Returns the expanded features for the given inputFeatures by applying the
+ rules in featureMap.
+
+ featureMap is an attribute set which maps feature names to lists of further
+ feature names to enable in case this feature is selected.
+ */
+ expandFeatures = featureMap: inputFeatures:
+ assert (builtins.isAttrs featureMap);
+ assert (builtins.isList inputFeatures);
+ let
+ expandFeaturesNoCycle = oldSeen: inputFeatures:
+ if inputFeatures != [ ]
+ then
+ let
+ # The feature we're currently expanding.
+ feature = builtins.head inputFeatures;
+ # All the features we've seen/expanded so far, including the one
+ # we're currently processing.
+ seen = oldSeen // { ${feature} = 1; };
+ # Expand the feature but be careful to not re-introduce a feature
+ # that we've already seen: this can easily cause a cycle, see issue
+ # #209.
+ enables = builtins.filter (f: !(seen ? "${f}")) (featureMap."${feature}" or [ ]);
+ in
+ [ feature ] ++ (expandFeaturesNoCycle seen (builtins.tail inputFeatures ++ enables))
+ # No more features left, nothing to expand to.
+ else [ ];
+ outFeatures = expandFeaturesNoCycle { } inputFeatures;
+ in
+ sortedUnique outFeatures;
+
+ /* This function adds optional dependencies as features if they are enabled
+ indirectly by dependency features. This function mimics Cargo's behavior
+ described in a note at:
+ https://doc.rust-lang.org/nightly/cargo/reference/features.html#dependency-features
+ */
+ enableFeatures = dependencies: features:
+ assert (builtins.isList features);
+ assert (builtins.isList dependencies);
+ let
+ additionalFeatures = lib.concatMap
+ (
+ dependency:
+ assert (builtins.isAttrs dependency);
+ let
+ enabled = builtins.any (doesFeatureEnableDependency dependency) features;
+ in
+ if (dependency.optional or false) && enabled
+ then [ (dependency.rename or dependency.name) ]
+ else [ ]
+ )
+ dependencies;
+ in
+ sortedUnique (features ++ additionalFeatures);
+
+ /*
+ Returns the actual features for the given dependency.
+
+ features: The features of the crate that refers this dependency.
+ */
+ dependencyFeatures = features: dependency:
+ assert (builtins.isList features);
+ assert (builtins.isAttrs dependency);
+ let
+ defaultOrNil =
+ if dependency.usesDefaultFeatures or true
+ then [ "default" ]
+ else [ ];
+ explicitFeatures = dependency.features or [ ];
+ additionalDependencyFeatures =
+ let
+ name = dependency.rename or dependency.name;
+ stripPrefixMatch = prefix: s:
+ if lib.hasPrefix prefix s
+ then lib.removePrefix prefix s
+ else null;
+ extractFeature = feature: lib.findFirst
+ (f: f != null)
+ null
+ (map (prefix: stripPrefixMatch prefix feature) [
+ (name + "/")
+ (name + "?/")
+ ]);
+ dependencyFeatures = lib.filter (f: f != null) (map extractFeature features);
+ in
+ dependencyFeatures;
+ in
+ defaultOrNil ++ explicitFeatures ++ additionalDependencyFeatures;
+
+ /* Sorts and removes duplicates from a list of strings. */
+ sortedUnique = features:
+ assert (builtins.isList features);
+ assert (builtins.all builtins.isString features);
+ let
+ outFeaturesSet = lib.foldl (set: feature: set // { "${feature}" = 1; }) { } features;
+ outFeaturesUnique = builtins.attrNames outFeaturesSet;
+ in
+ builtins.sort (a: b: a < b) outFeaturesUnique;
+
+ deprecationWarning = message: value:
+ if strictDeprecation
+ then builtins.throw "strictDeprecation enabled, aborting: ${message}"
+ else builtins.trace message value;
+
+ #
+ # crate2nix/default.nix (excerpt end)
+ #
+ };
+ }
+