+
+ # 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 = {
+ "elfedit" = rec {
+ packageId = "elfedit";
+ build = internal.buildRustCrateWithFeatures {
+ packageId = "elfedit";
+ };
+
+ # Debug support which might change between releases.
+ # File a bug if you depend on any for non-debug work!
+ debug = internal.debugCrate { inherit packageId; };
+ };
+ "elfedit-cli" = rec {
+ packageId = "elfedit-cli";
+ build = internal.buildRustCrateWithFeatures {
+ packageId = "elfedit-cli";
+ };
+
+ # Debug support which might change between releases.
+ # File a bug if you depend on any for non-debug work!
+ debug = internal.debugCrate { inherit packageId; };
+ };
+ "elpe" = rec {
+ packageId = "elpe";
+ build = internal.buildRustCrateWithFeatures {
+ packageId = "elpe";
+ };
+
+ # 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 = {
+ "addr2line" = rec {
+ crateName = "addr2line";
+ version = "0.24.2";
+ edition = "2018";
+ crateBin = [];
+ sha256 = "1hd1i57zxgz08j6h5qrhsnm2fi0bcqvsh389fw400xm3arz2ggnz";
+ dependencies = [
+ {
+ name = "gimli";
+ packageId = "gimli";
+ usesDefaultFeatures = false;
+ features = [ "read" ];
+ }
+ ];
+ features = {
+ "all" = [ "bin" ];
+ "alloc" = [ "dep:alloc" ];
+ "bin" = [ "loader" "rustc-demangle" "cpp_demangle" "fallible-iterator" "smallvec" "dep:clap" ];
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "cpp_demangle" = [ "dep:cpp_demangle" ];
+ "default" = [ "rustc-demangle" "cpp_demangle" "loader" "fallible-iterator" "smallvec" ];
+ "fallible-iterator" = [ "dep:fallible-iterator" ];
+ "loader" = [ "std" "dep:object" "dep:memmap2" "dep:typed-arena" ];
+ "rustc-demangle" = [ "dep:rustc-demangle" ];
+ "rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "gimli/rustc-dep-of-std" ];
+ "smallvec" = [ "dep:smallvec" ];
+ "std" = [ "gimli/std" ];
+ };
+ };
+ "adler2" = rec {
+ crateName = "adler2";
+ version = "2.0.0";
+ edition = "2021";
+ sha256 = "09r6drylvgy8vv8k20lnbvwq8gp09h7smfn6h1rxsy15pgh629si";
+ authors = [
+ "Jonas Schievink <jonasschievink@gmail.com>"
+ "oyvindln <oyvindln@users.noreply.github.com>"
+ ];
+ features = {
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "std" ];
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" ];
+ };
+ };
+ "aho-corasick" = rec {
+ crateName = "aho-corasick";
+ version = "1.1.3";
+ edition = "2021";
+ sha256 = "05mrpkvdgp5d20y2p989f187ry9diliijgwrs254fs9s1m1x6q4f";
+ 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 = [ "perf-literal" "std" ];
+ };
+ "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" ];
+ };
+ "anstream" = rec {
+ crateName = "anstream";
+ version = "0.6.18";
+ edition = "2021";
+ sha256 = "16sjk4x3ns2c3ya1x28a44kh6p47c7vhk27251i015hik1lm7k4a";
+ 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.10";
+ edition = "2021";
+ sha256 = "1yai2vppmd7zlvlrp9grwll60knrmscalf8l2qpfz8b7y5lkpk2m";
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "anstyle-parse" = rec {
+ crateName = "anstyle-parse";
+ version = "0.2.6";
+ edition = "2021";
+ sha256 = "1acqayy22fwzsrvr6n0lz6a4zvjjcvgr5sm941m7m0b2fr81cb9v";
+ 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.2";
+ edition = "2021";
+ sha256 = "036nm3lkyk43xbps1yql3583fp4hg3b1600is7mcyxs1gzrpm53r";
+ libName = "anstyle_query";
+ dependencies = [
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.59.0";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_System_Console" "Win32_Foundation" ];
+ }
+ ];
+
+ };
+ "anstyle-wincon" = rec {
+ crateName = "anstyle-wincon";
+ version = "3.0.7";
+ edition = "2021";
+ sha256 = "0kmf0fq4c8yribdpdpylzz1zccpy84hizmcsac3wrac1f7kk8dfa";
+ libName = "anstyle_wincon";
+ dependencies = [
+ {
+ name = "anstyle";
+ packageId = "anstyle";
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ target = { target, features }: (target."windows" or false);
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.59.0";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_System_Console" "Win32_Foundation" ];
+ }
+ ];
+
+ };
+ "anyhow" = rec {
+ crateName = "anyhow";
+ version = "1.0.98";
+ edition = "2018";
+ sha256 = "11ylvjdrcjs0q9jgk1af4r5cx1qppj63plxqkq595vmc24rjsvg1";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ features = {
+ "backtrace" = [ "dep:backtrace" ];
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "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" ];
+ };
+ };
+ "async-tempfile" = rec {
+ crateName = "async-tempfile";
+ version = "0.7.0";
+ edition = "2021";
+ sha256 = "01qjrfkwy6sm7i028xwlnscnm5sjflbnl3p62p8g85kfqdspp9f8";
+ libName = "async_tempfile";
+ authors = [
+ "Markus Mayer"
+ ];
+ dependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "fs" "rt" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "rt-multi-thread" "macros" "rt" ];
+ }
+ ];
+ features = {
+ "uuid" = [ "dep:uuid" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "async-trait" = rec {
+ crateName = "async-trait";
+ version = "0.1.88";
+ edition = "2021";
+ sha256 = "1dgxvz7g75cmz6vqqz0mri4xazc6a8xfj1db6r9fxz29lzyd6fg5";
+ 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";
+ 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.4.0";
+ edition = "2015";
+ sha256 = "09lz3by90d2hphbq56znag9v87gfpd9gb8nr82hll8z6x2nhprdc";
+ authors = [
+ "Josh Stone <cuviper@gmail.com>"
+ ];
+
+ };
+ "axum" = rec {
+ crateName = "axum";
+ version = "0.8.3";
+ edition = "2021";
+ sha256 = "1222spmyw5s2dfggwn62474jkh72ld52abkz5wjbkyg1024i0ify";
+ dependencies = [
+ {
+ name = "axum-core";
+ packageId = "axum-core";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "http";
+ packageId = "http";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body";
+ }
+ {
+ name = "http-body-util";
+ packageId = "http-body-util";
+ }
+ {
+ 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 = "rustversion";
+ packageId = "rustversion";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "sync_wrapper";
+ packageId = "sync_wrapper";
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ usesDefaultFeatures = false;
+ features = [ "util" ];
+ }
+ {
+ name = "tower-layer";
+ packageId = "tower-layer";
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ rename = "tower";
+ features = [ "util" "timeout" "limit" "load-shed" "steer" "filter" ];
+ }
+ ];
+ features = {
+ "__private" = [ "tokio" "http1" "dep:reqwest" ];
+ "__private_docs" = [ "axum-core/__private_docs" "tower/full" "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" ];
+ };
+ };
+ "axum-core" = rec {
+ crateName = "axum-core";
+ version = "0.5.2";
+ edition = "2021";
+ sha256 = "19kwzksb4hwr3qfbrhjbqf83z6fjyng14wrkzck6fj1g8784qik8";
+ libName = "axum_core";
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ }
+ {
+ name = "http";
+ packageId = "http";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body";
+ }
+ {
+ name = "http-body-util";
+ packageId = "http-body-util";
+ }
+ {
+ name = "mime";
+ packageId = "mime";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "rustversion";
+ packageId = "rustversion";
+ }
+ {
+ name = "sync_wrapper";
+ packageId = "sync_wrapper";
+ }
+ {
+ name = "tower-layer";
+ packageId = "tower-layer";
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ ];
+ features = {
+ "__private_docs" = [ "dep:tower-http" ];
+ "tracing" = [ "dep:tracing" ];
+ };
+ };
+ "backtrace" = rec {
+ crateName = "backtrace";
+ version = "0.3.74";
+ edition = "2021";
+ sha256 = "06pfif7nwx66qf2zaanc2fcq7m64i91ki9imw9xd3bnz5hrwp0ld";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "addr2line";
+ packageId = "addr2line";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null))));
+ }
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null))));
+ }
+ {
+ name = "miniz_oxide";
+ packageId = "miniz_oxide";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null))));
+ }
+ {
+ name = "object";
+ packageId = "object";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null))));
+ features = [ "read_core" "elf" "macho" "pe" "xcoff" "unaligned" "archive" ];
+ }
+ {
+ name = "rustc-demangle";
+ packageId = "rustc-demangle";
+ }
+ {
+ name = "windows-targets";
+ packageId = "windows-targets";
+ target = { target, features }: (target."windows" or false);
+ }
+ ];
+ features = {
+ "cpp_demangle" = [ "dep:cpp_demangle" ];
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "serialize-serde" = [ "serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "base32" = rec {
+ crateName = "base32";
+ version = "0.5.1";
+ edition = "2015";
+ sha256 = "0xp0a3xml25xw2bp5pyac2nld7vmmfjl02qynnyfn6aznfggwb82";
+ authors = [
+ "Andreas Ots <qrpth@qrpth.eu>"
+ "Tim Dumol <tim@timdumol.com>"
+ "Dave Grantham <dwg@linuxprogrammer.org>"
+ ];
+
+ };
+ "base64" = 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" ];
+ };
+ "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";
+ }
+ ];
+
+ };
+ "bitflags" = rec {
+ crateName = "bitflags";
+ version = "2.9.0";
+ edition = "2021";
+ sha256 = "1gb5w7pxnmx8l2bjz1i6rkbwbm2167k294rhy6cl1y3vbc8i90jw";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "bytemuck" = [ "dep:bytemuck" ];
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "blake3" = rec {
+ crateName = "blake3";
+ version = "1.6.1";
+ edition = "2021";
+ sha256 = "0lzpsak495mml9qkz225fqijm26kpffljhr8n2dkqhfhrspqfpv7";
+ 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" "std" ];
+ "serde" = [ "dep:serde" ];
+ "traits-preview" = [ "dep:digest" ];
+ "zeroize" = [ "dep:zeroize" "arrayvec/zeroize" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "block-buffer" = 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";
+ }
+ ];
+
+ };
+ "bumpalo" = rec {
+ crateName = "bumpalo";
+ version = "3.17.0";
+ edition = "2021";
+ sha256 = "1gxxsn2fsjmv03g8p3m749mczv2k4m8xspifs5l7bcx0vx3gna0n";
+ authors = [
+ "Nick Fitzgerald <fitzgen@gmail.com>"
+ ];
+ features = {
+ "allocator-api2" = [ "dep:allocator-api2" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "byteorder" = rec {
+ crateName = "byteorder";
+ version = "1.5.0";
+ edition = "2021";
+ sha256 = "0jzncxyf404mwqdbspihyzpkndfgda450l0893pz5xj685cg5l0z";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "bytes 0.4.12" = rec {
+ crateName = "bytes";
+ version = "0.4.12";
+ edition = "2015";
+ sha256 = "0768a55q2fsqdjsvcv98ndg9dq7w2g44dvq1avhwpxrdzbydyvr0";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = [
+ {
+ name = "byteorder";
+ packageId = "byteorder";
+ }
+ {
+ name = "iovec";
+ packageId = "iovec";
+ }
+ ];
+ features = {
+ "either" = [ "dep:either" ];
+ "i128" = [ "byteorder/i128" ];
+ "serde" = [ "dep:serde" ];
+ };
+ };
+ "bytes 1.10.1" = rec {
+ crateName = "bytes";
+ version = "1.10.1";
+ edition = "2018";
+ sha256 = "0smd4wi2yrhp5pmq571yiaqx84bjqlm1ixqhnvfwzzc6pqkn26yp";
+ 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" ];
+ };
+ "cc" = rec {
+ crateName = "cc";
+ version = "1.2.16";
+ edition = "2018";
+ sha256 = "131bhgafc1i86vvjipkj0kwzz0hlpwrkl8mdbmzyq2g69calqwdy";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ 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.0";
+ edition = "2018";
+ sha256 = "1za0vb97n4brpzpv8lsbnzmq5r8f2b0cpqqr0sy8h5bn751xxwds";
+ libName = "cfg_if";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" ];
+ };
+ };
+ "cfg_aliases" = rec {
+ crateName = "cfg_aliases";
+ version = "0.1.1";
+ edition = "2018";
+ sha256 = "17p821nc6jm830vzl2lmwz60g3a30hcm33nk6l257i1rjdqw85px";
+ authors = [
+ "Zicklag <zicklag@katharostech.com>"
+ ];
+
+ };
+ "clap" = rec {
+ crateName = "clap";
+ version = "4.5.39";
+ edition = "2021";
+ crateBin = [];
+ sha256 = "17raqwxkhhhm80iyblp1v83fvpddkg7rgqr2cjsmz3p6kczfcq7x";
+ 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.39";
+ edition = "2021";
+ sha256 = "0lggb5vscs21jliisvjjphcazzb1iw8347yp42wbwazpl6967k49";
+ 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.32";
+ edition = "2021";
+ sha256 = "1mqcag8qapb5yhygg2hi153kzmbf7w5hqp3nl3fvl5cn4yp6l5q9";
+ procMacro = true;
+ dependencies = [
+ {
+ name = "heck";
+ packageId = "heck";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn";
+ 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.4";
+ edition = "2021";
+ sha256 = "19nwfls5db269js5n822vkc8dw0wjq2h1wf0hgr06ld2g52d2spl";
+
+ };
+ "colorchoice" = rec {
+ crateName = "colorchoice";
+ version = "1.0.3";
+ edition = "2021";
+ sha256 = "1439m3r3jy3xqck8aa13q658visn71ki76qa93cy55wkmalwlqsv";
+
+ };
+ "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 = {
+ };
+ };
+ "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" ];
+ };
+ "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));
+ }
+ ];
+
+ };
+ "crypto-common" = rec {
+ crateName = "crypto-common";
+ version = "0.1.6";
+ edition = "2018";
+ sha256 = "1cvby95a6xg7kxdz5ln3rl9xh66nz66w46mm3g56ri1z5x815yqv";
+ libName = "crypto_common";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "generic-array";
+ packageId = "generic-array";
+ features = [ "more_lengths" ];
+ }
+ {
+ name = "typenum";
+ packageId = "typenum";
+ }
+ ];
+ features = {
+ "getrandom" = [ "rand_core/getrandom" ];
+ "rand_core" = [ "dep:rand_core" ];
+ };
+ resolvedDefaultFeatures = [ "std" ];
+ };
+ "data-encoding" = rec {
+ crateName = "data-encoding";
+ version = "2.8.0";
+ edition = "2018";
+ sha256 = "0470yf5ly1ibzmwygyjqg9ii9njbsha3xr5qj5dxyf2psbgpapsp";
+ libName = "data_encoding";
+ authors = [
+ "Julien Cretin <git@ia0.eu>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "digest" = rec {
+ crateName = "digest";
+ version = "0.10.7";
+ edition = "2018";
+ sha256 = "14p2n6ih29x81akj097lvz7wi9b6b9hvls0lwrv7b6xwyy0s5ncy";
+ authors = [
+ "RustCrypto Developers"
+ ];
+ dependencies = [
+ {
+ name = "block-buffer";
+ packageId = "block-buffer";
+ optional = true;
+ }
+ {
+ name = "crypto-common";
+ packageId = "crypto-common";
+ }
+ ];
+ 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" "std" ];
+ };
+ "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";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ };
+ "either" = rec {
+ crateName = "either";
+ version = "1.15.0";
+ edition = "2021";
+ sha256 = "069p1fknsmzn9llaizh77kip0pqmcwpdsykv2x30xpjyija5gis8";
+ authors = [
+ "bluss"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "use_std" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "std" "use_std" ];
+ };
+ "elfedit" = rec {
+ crateName = "elfedit";
+ version = "0.1.0";
+ edition = "2021";
+ crateBin = [
+ {
+ name = "elfedit";
+ path = "src/main.rs";
+ requiredFeatures = [ ];
+ }
+ ];
+ src = lib.cleanSourceWith { filter = sourceFilter; src = ./elfedit; };
+ dependencies = [
+ {
+ name = "memmap";
+ packageId = "memmap";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tempfile";
+ packageId = "tempfile";
+ }
+ ];
+
+ };
+ "elfedit-cli" = rec {
+ crateName = "elfedit-cli";
+ version = "0.1.0";
+ edition = "2024";
+ crateBin = [
+ {
+ name = "elfedit-cli";
+ path = "src/main.rs";
+ requiredFeatures = [ ];
+ }
+ ];
+ src = lib.cleanSourceWith { filter = sourceFilter; src = ./elfedit-cli; };
+ dependencies = [
+ {
+ name = "clap";
+ packageId = "clap";
+ }
+ {
+ name = "elfedit";
+ packageId = "elfedit";
+ }
+ ];
+
+ };
+ "elpe" = rec {
+ crateName = "elpe";
+ version = "0.1.0";
+ edition = "2021";
+ crateBin = [
+ {
+ name = "elpe";
+ path = "src/main.rs";
+ requiredFeatures = [ ];
+ }
+ ];
+ src = lib.cleanSourceWith { filter = sourceFilter; src = ./.; };
+ dependencies = [
+ {
+ name = "async-tempfile";
+ packageId = "async-tempfile";
+ }
+ {
+ name = "base32";
+ packageId = "base32";
+ }
+ {
+ name = "bincode";
+ packageId = "bincode 2.0.1";
+ }
+ {
+ name = "blake3";
+ packageId = "blake3";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ }
+ {
+ name = "clap";
+ packageId = "clap";
+ features = [ "derive" ];
+ }
+ {
+ name = "data-encoding";
+ packageId = "data-encoding";
+ }
+ {
+ name = "elfedit";
+ packageId = "elfedit";
+ }
+ {
+ name = "futures";
+ packageId = "futures 0.3.31";
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ }
+ {
+ name = "lazy-init";
+ packageId = "lazy-init";
+ }
+ {
+ name = "lazy_static";
+ packageId = "lazy_static";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ {
+ name = "lru";
+ packageId = "lru";
+ }
+ {
+ name = "memmap";
+ packageId = "memmap";
+ }
+ {
+ name = "nom";
+ packageId = "nom";
+ }
+ {
+ name = "privdrop";
+ packageId = "privdrop";
+ }
+ {
+ name = "prost";
+ packageId = "prost";
+ }
+ {
+ name = "prost-types";
+ packageId = "prost-types";
+ }
+ {
+ name = "regex";
+ packageId = "regex";
+ }
+ {
+ name = "reqwest";
+ packageId = "reqwest";
+ features = [ "stream" ];
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ }
+ {
+ name = "sha2";
+ packageId = "sha2";
+ }
+ {
+ name = "tar";
+ packageId = "tar";
+ }
+ {
+ name = "tempfile";
+ packageId = "tempfile";
+ }
+ {
+ name = "thiserror";
+ packageId = "thiserror";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" "rt-multi-thread" "fs" "process" ];
+ }
+ {
+ name = "tokio-bincode";
+ packageId = "tokio-bincode";
+ }
+ {
+ name = "tokio-util";
+ packageId = "tokio-util";
+ }
+ {
+ name = "toml";
+ packageId = "toml";
+ }
+ {
+ name = "tonic";
+ packageId = "tonic";
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ }
+ {
+ name = "tracing-subscriber";
+ packageId = "tracing-subscriber";
+ features = [ "env-filter" ];
+ }
+ {
+ name = "xz";
+ packageId = "xz";
+ }
+ {
+ name = "xz2";
+ packageId = "xz2";
+ features = [ "tokio" ];
+ }
+ {
+ name = "zstd";
+ packageId = "zstd";
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "tonic-build";
+ packageId = "tonic-build";
+ }
+ ];
+
+ };
+ "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" ];
+ };
+ "equivalent" = rec {
+ crateName = "equivalent";
+ version = "1.0.2";
+ edition = "2015";
+ sha256 = "03swzqznragy8n0x31lqc78g2af054jwivp7lkrbrc0khz74lyl7";
+
+ };
+ "errno" = rec {
+ crateName = "errno";
+ version = "0.3.10";
+ edition = "2018";
+ sha256 = "0pgblicz1kjz9wa9m0sghkhh2zw1fhq1mxzj7ndjm746kg5m5n1k";
+ authors = [
+ "Chris Wong <lambda.fairy@gmail.com>"
+ ];
+ 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.59.0";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_Foundation" "Win32_System_Diagnostics_Debug" ];
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "libc/std" ];
+ };
+ resolvedDefaultFeatures = [ "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.25";
+ edition = "2018";
+ sha256 = "11l5zr86n5sr6g6k6sqldswk0jzklm0q95rzikxcns0yk0p55h1m";
+ 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.59.0";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_Foundation" "Win32_Storage_FileSystem" ];
+ }
+ ];
+
+ };
+ "fixedbitset" = rec {
+ crateName = "fixedbitset";
+ version = "0.5.7";
+ edition = "2021";
+ sha256 = "16fd3v9d2cms2vddf9xhlm56sz4j0zgrk3d2h6v1l7hx760lwrqx";
+ authors = [
+ "bluss"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ };
+ };
+ "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.1";
+ edition = "2018";
+ sha256 = "0milh8x7nl4f450s3ddhg57a3flcv6yq8hlkyk6fyr3mcb128dp1";
+ 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" ];
+ };
+ "futures 0.1.31" = rec {
+ crateName = "futures";
+ version = "0.1.31";
+ edition = "2015";
+ sha256 = "0y46qbmhi37dqkch8dlfq5aninqpzqgrr98awkb3rn4fxww1lirs";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ "default" = [ "use_std" "with-deprecated" ];
+ };
+ resolvedDefaultFeatures = [ "default" "use_std" "with-deprecated" ];
+ };
+ "futures 0.3.31" = 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";
+ 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" "default" "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" ];
+ };
+ "getrandom 0.2.15" = rec {
+ crateName = "getrandom";
+ version = "0.2.15";
+ edition = "2018";
+ sha256 = "1mzlnrb3dgyd1fb84gvw10pyr8wdqdl4ry4sr64i1s8an66pqmn4";
+ 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.11.0+wasi-snapshot-preview1";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("wasi" == 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" ];
+ };
+ };
+ "getrandom 0.3.1" = rec {
+ crateName = "getrandom";
+ version = "0.3.1";
+ edition = "2021";
+ sha256 = "1y154yzby383p63ndw6zpfm0fz3vf6c0zdwc7df6vkl150wrr923";
+ 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)) && (!(("custom" == 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) || (("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 = "wasi";
+ packageId = "wasi 0.13.3+wasi-0.2.2";
+ usesDefaultFeatures = false;
+ target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p2" == target."env" or null));
+ }
+ {
+ name = "windows-targets";
+ packageId = "windows-targets";
+ target = { target, features }: ((target."windows" or false) && (!("win7" == target."vendor" or null)));
+ }
+ ];
+ features = {
+ "rustc-dep-of-std" = [ "dep:compiler_builtins" "dep:core" ];
+ "wasm_js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
+ };
+ };
+ "gimli" = rec {
+ crateName = "gimli";
+ version = "0.31.1";
+ edition = "2018";
+ sha256 = "0gvqc0ramx8szv76jhfd4dms0zyamvlg4whhiz11j34hh3dqxqh7";
+ features = {
+ "default" = [ "read-all" "write" ];
+ "endian-reader" = [ "read" "dep:stable_deref_trait" ];
+ "fallible-iterator" = [ "dep:fallible-iterator" ];
+ "read" = [ "read-core" ];
+ "read-all" = [ "read" "std" "fallible-iterator" "endian-reader" ];
+ "rustc-dep-of-std" = [ "dep:core" "dep:alloc" "dep:compiler_builtins" ];
+ "std" = [ "fallible-iterator?/std" "stable_deref_trait?/std" ];
+ "write" = [ "dep:indexmap" ];
+ };
+ resolvedDefaultFeatures = [ "read" "read-core" ];
+ };
+ "h2" = rec {
+ crateName = "h2";
+ version = "0.4.8";
+ edition = "2021";
+ sha256 = "1hp3lijg1br982kzgglb5ks2ibg68a76z3rl052r8c5vyi7jj5sh";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "atomic-waker";
+ packageId = "atomic-waker";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ }
+ {
+ name = "fnv";
+ packageId = "fnv";
+ }
+ {
+ name = "futures-core";
+ packageId = "futures-core";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "futures-sink";
+ packageId = "futures-sink";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "http";
+ packageId = "http";
+ }
+ {
+ 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 = {
+ };
+ };
+ "hashbrown" = rec {
+ crateName = "hashbrown";
+ version = "0.15.2";
+ edition = "2021";
+ sha256 = "12dj0yfn59p3kh3679ac0w1fagvzf4z2zp87a13gbbqbzw0185dz";
+ 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" ];
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
+ "default-hasher" = [ "dep:foldhash" ];
+ "equivalent" = [ "dep:equivalent" ];
+ "nightly" = [ "allocator-api2?/nightly" "bumpalo/allocator_api" ];
+ "rayon" = [ "dep:rayon" ];
+ "rustc-dep-of-std" = [ "nightly" "core" "compiler_builtins" "alloc" "rustc-internal-api" "raw-entry" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "allocator-api2" "default" "default-hasher" "equivalent" "inline-more" "raw-entry" ];
+ };
+ "heck" = rec {
+ crateName = "heck";
+ version = "0.5.0";
+ edition = "2021";
+ sha256 = "1sjmpsdl8czyh9ywl3qcsfsq9a307dg4ni2vnlwgnzzqhc4y0113";
+
+ };
+ "http" = rec {
+ crateName = "http";
+ version = "1.2.0";
+ edition = "2018";
+ sha256 = "1skglzdf98j5nzxlii540n11is0w4l80mi5sm3xrj716asps4v7i";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ "Carl Lerche <me@carllerche.com>"
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ }
+ {
+ name = "fnv";
+ packageId = "fnv";
+ }
+ {
+ name = "itoa";
+ packageId = "itoa";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "http-body" = 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 1.10.1";
+ }
+ {
+ name = "http";
+ packageId = "http";
+ }
+ ];
+
+ };
+ "http-body-util" = rec {
+ crateName = "http-body-util";
+ version = "0.1.2";
+ edition = "2018";
+ sha256 = "0kslwazg4400qnc2azkrgqqci0fppv12waicnsy5d8hncvbjjd3r";
+ 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 1.10.1";
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "http";
+ packageId = "http";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ ];
+
+ };
+ "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" = rec {
+ crateName = "hyper";
+ version = "1.6.0";
+ edition = "2021";
+ sha256 = "103ggny2k31z0iq2gzwk2vbx601wx6xkpjpxn40hr3p3b0b5fayc";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ }
+ {
+ name = "futures-channel";
+ packageId = "futures-channel";
+ optional = true;
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "h2";
+ packageId = "h2";
+ optional = true;
+ }
+ {
+ name = "http";
+ packageId = "http";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body";
+ }
+ {
+ 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 = "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 = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ features = [ "alloc" "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" "futures-util?/alloc" ];
+ "full" = [ "client" "http1" "http2" "server" ];
+ "http1" = [ "dep:futures-channel" "dep:futures-util" "dep:httparse" "dep:itoa" ];
+ "http2" = [ "dep:futures-channel" "dep:futures-util" "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.5";
+ edition = "2021";
+ sha256 = "1cjr3yf3x5mr3194llsfibacl6j7n2dknii2dwjha4ysyf1ia69d";
+ libName = "hyper_rustls";
+ dependencies = [
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "http";
+ packageId = "http";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper";
+ 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-timeout" = rec {
+ crateName = "hyper-timeout";
+ version = "0.5.2";
+ edition = "2018";
+ sha256 = "1c431l5ckr698248yd6bnsmizjy2m1da02cbpmsnmkpvpxkdb41b";
+ libName = "hyper_timeout";
+ authors = [
+ "Herman J. Radtke III <herman@hermanradtke.com>"
+ ];
+ dependencies = [
+ {
+ name = "hyper";
+ packageId = "hyper";
+ }
+ {
+ name = "hyper-util";
+ packageId = "hyper-util";
+ features = [ "client-legacy" "http1" ];
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "hyper";
+ packageId = "hyper";
+ features = [ "http1" ];
+ }
+ {
+ name = "hyper-util";
+ packageId = "hyper-util";
+ features = [ "client-legacy" "http1" "server" "server-graceful" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "io-std" "io-util" "macros" ];
+ }
+ ];
+
+ };
+ "hyper-tls" = 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 1.10.1";
+ }
+ {
+ name = "http-body-util";
+ packageId = "http-body-util";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper";
+ }
+ {
+ 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.10";
+ edition = "2021";
+ sha256 = "1d1iwrkysjhq63pg54zk3vfby1j7zmxzm9zzyfr4lwvp0szcybfz";
+ libName = "hyper_util";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ }
+ {
+ name = "futures-channel";
+ packageId = "futures-channel";
+ optional = true;
+ }
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "http";
+ packageId = "http";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper";
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "socket2";
+ packageId = "socket2";
+ optional = true;
+ features = [ "all" ];
+ }
+ {
+ 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" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper";
+ features = [ "full" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "macros" "test-util" "signal" ];
+ }
+ ];
+ features = {
+ "client" = [ "hyper/client" "dep:tracing" "dep:futures-channel" "dep:tower-service" ];
+ "client-legacy" = [ "client" "dep:socket2" "tokio/sync" ];
+ "full" = [ "client" "client-legacy" "server" "server-auto" "server-graceful" "service" "http1" "http2" "tokio" ];
+ "http1" = [ "hyper/http1" ];
+ "http2" = [ "hyper/http2" ];
+ "server" = [ "hyper/server" ];
+ "server-auto" = [ "server" "http1" "http2" ];
+ "server-graceful" = [ "server" "tokio/sync" "futures-util/alloc" ];
+ "service" = [ "dep:tower-service" ];
+ "tokio" = [ "dep:tokio" "tokio/net" "tokio/rt" "tokio/time" ];
+ };
+ resolvedDefaultFeatures = [ "client" "client-legacy" "default" "http1" "http2" "server" "server-auto" "service" "tokio" ];
+ };
+ "icu_collections" = rec {
+ crateName = "icu_collections";
+ version = "1.5.0";
+ edition = "2021";
+ sha256 = "09j5kskirl59mvqc8kabhy7005yyy7dp88jw9f6f3gkf419a8byv";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ 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 = {
+ "databake" = [ "dep:databake" "zerovec/databake" ];
+ "serde" = [ "dep:serde" "zerovec/serde" ];
+ };
+ };
+ "icu_locid" = rec {
+ crateName = "icu_locid";
+ version = "1.5.0";
+ edition = "2021";
+ sha256 = "0dznvd1c5b02iilqm044q4hvar0sqibq1z46prqwjzwif61vpb0k";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "litemap";
+ packageId = "litemap";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "tinystr";
+ packageId = "tinystr";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "writeable";
+ packageId = "writeable";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "bench" = [ "serde" ];
+ "databake" = [ "dep:databake" ];
+ "serde" = [ "dep:serde" "tinystr/serde" ];
+ "zerovec" = [ "dep:zerovec" ];
+ };
+ resolvedDefaultFeatures = [ "zerovec" ];
+ };
+ "icu_locid_transform" = rec {
+ crateName = "icu_locid_transform";
+ version = "1.5.0";
+ edition = "2021";
+ sha256 = "0kmmi1kmj9yph6mdgkc7v3wz6995v7ly3n80vbg0zr78bp1iml81";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_locid";
+ packageId = "icu_locid";
+ usesDefaultFeatures = false;
+ features = [ "zerovec" ];
+ }
+ {
+ name = "icu_locid_transform_data";
+ packageId = "icu_locid_transform_data";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_provider";
+ packageId = "icu_provider";
+ usesDefaultFeatures = false;
+ features = [ "macros" ];
+ }
+ {
+ name = "tinystr";
+ packageId = "tinystr";
+ usesDefaultFeatures = false;
+ features = [ "alloc" "zerovec" ];
+ }
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ usesDefaultFeatures = false;
+ features = [ "yoke" ];
+ }
+ ];
+ features = {
+ "bench" = [ "serde" ];
+ "compiled_data" = [ "dep:icu_locid_transform_data" ];
+ "datagen" = [ "serde" "dep:databake" "zerovec/databake" "icu_locid/databake" "tinystr/databake" ];
+ "default" = [ "compiled_data" ];
+ "serde" = [ "dep:serde" "icu_locid/serde" "tinystr/serde" "zerovec/serde" "icu_provider/serde" ];
+ };
+ resolvedDefaultFeatures = [ "compiled_data" ];
+ };
+ "icu_locid_transform_data" = rec {
+ crateName = "icu_locid_transform_data";
+ version = "1.5.0";
+ edition = "2021";
+ sha256 = "0vkgjixm0wzp2n3v5mw4j89ly05bg3lx96jpdggbwlpqi0rzzj7x";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+
+ };
+ "icu_normalizer" = rec {
+ crateName = "icu_normalizer";
+ version = "1.5.0";
+ edition = "2021";
+ sha256 = "0kx8qryp8ma8fw1vijbgbnf7zz9f2j4d14rw36fmjs7cl86kxkhr";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ 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";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_provider";
+ packageId = "icu_provider";
+ usesDefaultFeatures = false;
+ features = [ "macros" ];
+ }
+ {
+ name = "smallvec";
+ packageId = "smallvec";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "utf16_iter";
+ packageId = "utf16_iter";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "utf8_iter";
+ packageId = "utf8_iter";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "write16";
+ packageId = "write16";
+ usesDefaultFeatures = false;
+ features = [ "alloc" ];
+ }
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ usesDefaultFeatures = false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "write16";
+ packageId = "write16";
+ usesDefaultFeatures = false;
+ features = [ "arrayvec" ];
+ }
+ ];
+ features = {
+ "compiled_data" = [ "dep:icu_normalizer_data" "icu_properties/compiled_data" ];
+ "datagen" = [ "serde" "dep:databake" "icu_collections/databake" "zerovec/databake" "icu_properties/datagen" ];
+ "default" = [ "compiled_data" ];
+ "serde" = [ "dep:serde" "icu_collections/serde" "zerovec/serde" "icu_properties/serde" ];
+ "std" = [ "icu_collections/std" "icu_properties/std" "icu_provider/std" ];
+ };
+ resolvedDefaultFeatures = [ "compiled_data" "default" ];
+ };
+ "icu_normalizer_data" = rec {
+ crateName = "icu_normalizer_data";
+ version = "1.5.0";
+ edition = "2021";
+ sha256 = "05lmk0zf0q7nzjnj5kbmsigj3qgr0rwicnn5pqi9n7krmbvzpjpq";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+
+ };
+ "icu_properties" = rec {
+ crateName = "icu_properties";
+ version = "1.5.1";
+ edition = "2021";
+ sha256 = "1xgf584rx10xc1p7zjr78k0n4zn3g23rrg6v2ln31ingcq3h5mlk";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_collections";
+ packageId = "icu_collections";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_locid_transform";
+ packageId = "icu_locid_transform";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "compiled_data" ];
+ }
+ {
+ name = "icu_properties_data";
+ packageId = "icu_properties_data";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_provider";
+ packageId = "icu_provider";
+ usesDefaultFeatures = false;
+ features = [ "macros" ];
+ }
+ {
+ name = "tinystr";
+ packageId = "tinystr";
+ usesDefaultFeatures = false;
+ features = [ "alloc" "zerovec" ];
+ }
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "bidi" = [ "dep:unicode-bidi" ];
+ "compiled_data" = [ "dep:icu_properties_data" "dep:icu_locid_transform" ];
+ "datagen" = [ "serde" "dep:databake" "zerovec/databake" "icu_collections/databake" "tinystr/databake" ];
+ "default" = [ "compiled_data" ];
+ "serde" = [ "dep:serde" "tinystr/serde" "zerovec/serde" "icu_collections/serde" "icu_provider/serde" ];
+ "std" = [ "icu_collections/std" "icu_provider/std" ];
+ };
+ resolvedDefaultFeatures = [ "compiled_data" "default" ];
+ };
+ "icu_properties_data" = rec {
+ crateName = "icu_properties_data";
+ version = "1.5.0";
+ edition = "2021";
+ sha256 = "0scms7pd5a7yxx9hfl167f5qdf44as6r3bd8myhlngnxqgxyza37";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+
+ };
+ "icu_provider" = rec {
+ crateName = "icu_provider";
+ version = "1.5.0";
+ edition = "2021";
+ sha256 = "1nb8vvgw8dv2inqklvk05fs0qxzkw8xrg2n9vgid6y7gm3423m3f";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_locid";
+ packageId = "icu_locid";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "icu_provider_macros";
+ packageId = "icu_provider_macros";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "stable_deref_trait";
+ packageId = "stable_deref_trait";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "tinystr";
+ packageId = "tinystr";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "writeable";
+ packageId = "writeable";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "yoke";
+ packageId = "yoke";
+ usesDefaultFeatures = false;
+ features = [ "alloc" "derive" ];
+ }
+ {
+ name = "zerofrom";
+ packageId = "zerofrom";
+ usesDefaultFeatures = false;
+ features = [ "alloc" "derive" ];
+ }
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ usesDefaultFeatures = false;
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "datagen" = [ "serde" "dep:erased-serde" "dep:databake" "std" "sync" ];
+ "deserialize_bincode_1" = [ "serde" "dep:bincode" "std" ];
+ "deserialize_json" = [ "serde" "dep:serde_json" ];
+ "deserialize_postcard_1" = [ "serde" "dep:postcard" ];
+ "log_error_context" = [ "logging" ];
+ "logging" = [ "dep:log" ];
+ "macros" = [ "dep:icu_provider_macros" ];
+ "serde" = [ "dep:serde" "yoke/serde" ];
+ "std" = [ "icu_locid/std" ];
+ };
+ resolvedDefaultFeatures = [ "macros" ];
+ };
+ "icu_provider_macros" = rec {
+ crateName = "icu_provider_macros";
+ version = "1.5.0";
+ edition = "2021";
+ sha256 = "1mjs0w7fcm2lcqmbakhninzrjwqs485lkps4hz0cv3k36y9rxj0y";
+ procMacro = true;
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn";
+ }
+ ];
+
+ };
+ "idna" = rec {
+ crateName = "idna";
+ version = "1.0.3";
+ edition = "2018";
+ sha256 = "0zlajvm2k3wy0ay8plr07w22hxkkmrxkffa6ah57ac6nci984vv8";
+ 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.0";
+ edition = "2021";
+ sha256 = "0wggnkiivaj5lw0g0384ql2d7zk4ppkn3b1ry4n0ncjpr7qivjns";
+ authors = [
+ "The rust-url developers"
+ ];
+ dependencies = [
+ {
+ name = "icu_normalizer";
+ packageId = "icu_normalizer";
+ }
+ {
+ name = "icu_properties";
+ packageId = "icu_properties";
+ }
+ ];
+ features = {
+ "compiled_data" = [ "icu_normalizer/compiled_data" "icu_properties/compiled_data" ];
+ };
+ resolvedDefaultFeatures = [ "compiled_data" ];
+ };
+ "indexmap" = rec {
+ crateName = "indexmap";
+ version = "2.7.1";
+ edition = "2021";
+ sha256 = "0lmnm1zbr5gq3wic3d8a76gpvampridzwckfl97ckd5m08mrk74c";
+ dependencies = [
+ {
+ name = "equivalent";
+ packageId = "equivalent";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "hashbrown";
+ packageId = "hashbrown";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "borsh" = [ "dep:borsh" ];
+ "default" = [ "std" ];
+ "quickcheck" = [ "dep:quickcheck" ];
+ "rayon" = [ "dep:rayon" ];
+ "rustc-rayon" = [ "dep:rustc-rayon" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "iovec" = rec {
+ crateName = "iovec";
+ version = "0.1.4";
+ edition = "2015";
+ sha256 = "0ph73qygwx8i0mblrf110cj59l00gkmsgrpzz1rm85syz5pymcxj";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ ];
+
+ };
+ "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" ];
+ };
+ "is_terminal_polyfill" = rec {
+ crateName = "is_terminal_polyfill";
+ version = "1.70.1";
+ edition = "2021";
+ sha256 = "1kwfgglh91z33kl0w5i338mfpa3zs0hidq5j4ny4rmjwrikchhvr";
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "itertools" = 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" ];
+ };
+ };
+ "jobserver" = rec {
+ crateName = "jobserver";
+ version = "0.1.32";
+ edition = "2021";
+ sha256 = "1l2k50qmj84x9mn39ivjz76alqmx72jhm12rw33zx9xnpv5xpla8";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ target = { target, features }: (target."unix" or false);
+ }
+ ];
+
+ };
+ "js-sys" = rec {
+ crateName = "js-sys";
+ version = "0.3.77";
+ edition = "2021";
+ sha256 = "13x2qcky5l22z4xgivi59xhjjx4kxir1zg7gcj0f1ijzd4yg7yhw";
+ 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" ];
+ };
+ "lazy-init" = rec {
+ crateName = "lazy-init";
+ version = "0.5.1";
+ edition = "2015";
+ sha256 = "0vvhq8xdmajy2ai8p7zxja68a95n7m65xhdgjapxq4mc4qv9ch4z";
+ libName = "lazy_init";
+ authors = [
+ "Kyle Huey <khuey@kylehuey.com>"
+ ];
+
+ };
+ "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" ];
+ };
+ };
+ "libc" = rec {
+ crateName = "libc";
+ version = "0.2.171";
+ edition = "2021";
+ sha256 = "1mipla3dy3l59pfa9xy4iw2vdgn8n30dzf4vdnasjflxdqhkg6f1";
+ 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" ];
+ };
+ "libredox" = rec {
+ crateName = "libredox";
+ version = "0.1.3";
+ edition = "2021";
+ sha256 = "139602gzgs0k91zb7dvgj1qh4ynb8g1lbxsswdim18hcb6ykgzy0";
+ authors = [
+ "4lDO2 <4lDO2@protonmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags";
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ {
+ name = "redox_syscall";
+ packageId = "redox_syscall";
+ optional = true;
+ }
+ ];
+ features = {
+ "default" = [ "call" "std" "redox_syscall" ];
+ "ioslice" = [ "dep:ioslice" ];
+ "mkns" = [ "ioslice" ];
+ "redox_syscall" = [ "dep:redox_syscall" ];
+ };
+ resolvedDefaultFeatures = [ "call" "default" "redox_syscall" "std" ];
+ };
+ "linux-raw-sys 0.4.15" = rec {
+ crateName = "linux-raw-sys";
+ version = "0.4.15";
+ edition = "2021";
+ sha256 = "1aq7r2g7786hyxhv40spzf2nhag5xbw2axxc1k8z5k1dsgdm4v6j";
+ libName = "linux_raw_sys";
+ authors = [
+ "Dan Gohman <dev@sunfishcode.online>"
+ ];
+ features = {
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "std" "general" "errno" ];
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" "no_std" ];
+ };
+ resolvedDefaultFeatures = [ "elf" "errno" "general" "ioctl" "no_std" "std" ];
+ };
+ "linux-raw-sys 0.9.2" = rec {
+ crateName = "linux-raw-sys";
+ version = "0.9.2";
+ edition = "2021";
+ sha256 = "1s89d3ykla46h6i3z42972gnlm9xbdlyj1kmgdbxr1zhva1wdfbd";
+ libName = "linux_raw_sys";
+ authors = [
+ "Dan Gohman <dev@sunfishcode.online>"
+ ];
+ features = {
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "std" "general" "errno" ];
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" "no_std" ];
+ };
+ resolvedDefaultFeatures = [ "elf" "errno" "general" "ioctl" "no_std" ];
+ };
+ "litemap" = rec {
+ crateName = "litemap";
+ version = "0.7.5";
+ edition = "2021";
+ sha256 = "0mi8ykav0s974ps79p438x04snh0cdb7lc864b42jws5375i9yr3";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ features = {
+ "databake" = [ "dep:databake" ];
+ "default" = [ "alloc" ];
+ "serde" = [ "dep:serde" ];
+ "testing" = [ "alloc" ];
+ "yoke" = [ "dep:yoke" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" ];
+ };
+ "log" = rec {
+ crateName = "log";
+ version = "0.4.26";
+ edition = "2021";
+ sha256 = "17mvchkvhnm2zxyfagh2g9p861f0qx2g1sg2v14sww9nvjry5g9h";
+ 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" = rec {
+ crateName = "lru";
+ version = "0.14.0";
+ edition = "2015";
+ sha256 = "160ivb75982rdarpals1d9cxcfjlixl7kwx6k7ghpwamc48cg34z";
+ authors = [
+ "Jerome Froelich <jeromefroelic@hotmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "hashbrown";
+ packageId = "hashbrown";
+ optional = true;
+ }
+ ];
+ features = {
+ "default" = [ "hashbrown" ];
+ "hashbrown" = [ "dep:hashbrown" ];
+ "nightly" = [ "hashbrown" "hashbrown/nightly" ];
+ };
+ resolvedDefaultFeatures = [ "default" "hashbrown" ];
+ };
+ "lzma-sys" = rec {
+ crateName = "lzma-sys";
+ version = "0.1.20";
+ edition = "2018";
+ links = "lzma";
+ sha256 = "09sxp20waxyglgn3cjz8qjkspb3ryz2fwx4rigkwvrk46ymh9njz";
+ libName = "lzma_sys";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ ];
+ buildDependencies = [
+ {
+ name = "cc";
+ packageId = "cc";
+ }
+ {
+ name = "pkg-config";
+ packageId = "pkg-config";
+ }
+ ];
+ features = {
+ };
+ };
+ "matchers" = rec {
+ crateName = "matchers";
+ version = "0.1.0";
+ edition = "2018";
+ sha256 = "0n2mbk7lg2vf962c8xwzdq96yrc9i0p8dbmm4wa1nnkcp1dhfqw2";
+ authors = [
+ "Eliza Weisman <eliza@buoyant.io>"
+ ];
+ dependencies = [
+ {
+ name = "regex-automata";
+ packageId = "regex-automata 0.1.10";
+ }
+ ];
+
+ };
+ "matchit" = rec {
+ crateName = "matchit";
+ version = "0.8.4";
+ edition = "2021";
+ sha256 = "1hzl48fwq1cn5dvshfly6vzkzqhfihya65zpj7nz7lfx82mgzqa7";
+ authors = [
+ "Ibraheem Ahmed <ibraheem@ibraheem.ca>"
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "memchr" = rec {
+ crateName = "memchr";
+ version = "2.7.4";
+ edition = "2021";
+ sha256 = "18z32bhxrax0fnjikv475z7ii718hq457qwmaryixfxsl2qrmjkq";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ "bluss"
+ ];
+ features = {
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "std" ];
+ "logging" = [ "dep:log" ];
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" ];
+ "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" ];
+ }
+ ];
+
+ };
+ "mime" = rec {
+ crateName = "mime";
+ version = "0.3.17";
+ edition = "2015";
+ sha256 = "16hkibgvb9klh0w0jk5crr5xv90l3wlf77ggymzjmvl1818vnxv8";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+
+ };
+ "miniz_oxide" = rec {
+ crateName = "miniz_oxide";
+ version = "0.8.5";
+ edition = "2021";
+ sha256 = "1r9whkc61xri7m1cn4rjrjlhr32ab29nvfxcbg0ri5mmpgg08glf";
+ authors = [
+ "Frommi <daniil.liferenko@gmail.com>"
+ "oyvindln <oyvindln@users.noreply.github.com>"
+ "Rich Geldreich richgel99@gmail.com"
+ ];
+ dependencies = [
+ {
+ name = "adler2";
+ packageId = "adler2";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "dep:alloc" ];
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "with-alloc" ];
+ "rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "adler2/rustc-dep-of-std" ];
+ "simd" = [ "simd-adler32" ];
+ "simd-adler32" = [ "dep:simd-adler32" ];
+ };
+ };
+ "mio" = rec {
+ crateName = "mio";
+ version = "1.0.3";
+ edition = "2021";
+ sha256 = "1gah0h4ia3avxbwym0b6bi6lr6rpysmj9zvw6zis5yq0z0xq91i8";
+ 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.0+wasi-snapshot-preview1";
+ target = { target, features }: ("wasi" == target."os" or null);
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.52.0";
+ 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_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" ];
+ };
+ "multimap" = rec {
+ crateName = "multimap";
+ version = "0.10.0";
+ edition = "2015";
+ sha256 = "00vs2frqdhrr8iqx4y3fbq73ax5l12837fvbjrpi729d85alrz6y";
+ authors = [
+ "Håvar Nøvik <havar.novik@gmail.com>"
+ ];
+ features = {
+ "default" = [ "serde_impl" ];
+ "serde" = [ "dep:serde" ];
+ "serde_impl" = [ "serde" ];
+ };
+ };
+ "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" ];
+ };
+ };
+ "nix" = rec {
+ crateName = "nix";
+ version = "0.28.0";
+ edition = "2021";
+ sha256 = "1r0rylax4ycx3iqakwjvaa178jrrwiiwghcw95ndzy72zk25c8db";
+ authors = [
+ "The nix-rust Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags";
+ }
+ {
+ 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" ];
+ "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" = 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" ];
+ };
+ "nu-ansi-term" = rec {
+ crateName = "nu-ansi-term";
+ version = "0.46.0";
+ edition = "2018";
+ sha256 = "115sywxh53p190lyw97alm14nc004qj5jm5lvdj608z84rbida3p";
+ 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 = "overload";
+ packageId = "overload";
+ }
+ {
+ name = "winapi";
+ packageId = "winapi";
+ target = { target, features }: ("windows" == target."os" or null);
+ features = [ "consoleapi" "errhandlingapi" "fileapi" "handleapi" "processenv" ];
+ }
+ ];
+ features = {
+ "derive_serde_style" = [ "serde" ];
+ "serde" = [ "dep:serde" ];
+ };
+ };
+ "object" = rec {
+ crateName = "object";
+ version = "0.36.7";
+ edition = "2018";
+ sha256 = "11vv97djn9nc5n6w1gc6bd96d2qk2c8cg1kw5km9bsi3v4a8x532";
+ dependencies = [
+ {
+ name = "memchr";
+ packageId = "memchr";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "all" = [ "read" "write" "build" "std" "compression" "wasm" ];
+ "alloc" = [ "dep:alloc" ];
+ "build" = [ "build_core" "write_std" "elf" ];
+ "build_core" = [ "read_core" "write_core" ];
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "compression" = [ "dep:flate2" "dep:ruzstd" "std" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "read" "compression" ];
+ "doc" = [ "read_core" "write_std" "build_core" "std" "compression" "archive" "coff" "elf" "macho" "pe" "wasm" "xcoff" ];
+ "pe" = [ "coff" ];
+ "read" = [ "read_core" "archive" "coff" "elf" "macho" "pe" "xcoff" "unaligned" ];
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" "alloc" "memchr/rustc-dep-of-std" ];
+ "std" = [ "memchr/std" ];
+ "unstable-all" = [ "all" "unstable" ];
+ "wasm" = [ "dep:wasmparser" ];
+ "write" = [ "write_std" "coff" "elf" "macho" "pe" "xcoff" ];
+ "write_core" = [ "dep:crc32fast" "dep:indexmap" "dep:hashbrown" ];
+ "write_std" = [ "write_core" "std" "indexmap?/std" "crc32fast?/std" ];
+ };
+ resolvedDefaultFeatures = [ "archive" "coff" "elf" "macho" "pe" "read_core" "unaligned" "xcoff" ];
+ };
+ "once_cell" = rec {
+ crateName = "once_cell";
+ version = "1.21.0";
+ edition = "2021";
+ sha256 = "1bdinwxdpy331mrbyyk97msxssmxl3vnhb3bd1phmcjnmf4ibrfd";
+ 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" ];
+ };
+ "openssl" = rec {
+ crateName = "openssl";
+ version = "0.10.71";
+ edition = "2021";
+ sha256 = "1kgvk6wi57bacn6b5z6b57vkyd2j85s6vyxhvj7jbkcqd861652y";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags";
+ }
+ {
+ 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 = {
+ "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";
+ 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.106";
+ edition = "2021";
+ links = "openssl";
+ sha256 = "1pbwfy5x8znchsbqf7rnkdbdhw1fis5hpx3940y9xhqwh6lixdlb";
+ 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 = {
+ "bindgen" = [ "dep:bindgen" ];
+ "bssl-sys" = [ "dep:bssl-sys" ];
+ "openssl-src" = [ "dep:openssl-src" ];
+ "unstable_boringssl" = [ "bssl-sys" ];
+ "vendored" = [ "openssl-src" ];
+ };
+ };
+ "overload" = rec {
+ crateName = "overload";
+ version = "0.1.1";
+ edition = "2018";
+ sha256 = "0fdgbaqwknillagy1xq7xfgv60qdbk010diwl7s1p0qx7hb16n5i";
+ authors = [
+ "Daniel Salvadori <danaugrs@gmail.com>"
+ ];
+
+ };
+ "percent-encoding" = rec {
+ crateName = "percent-encoding";
+ version = "2.3.1";
+ edition = "2018";
+ sha256 = "0gi8wgx0dcy8rnv1kywdv98lwcx67hz0a0zwpib5v2i08r88y573";
+ libName = "percent_encoding";
+ authors = [
+ "The rust-url developers"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "petgraph" = rec {
+ crateName = "petgraph";
+ version = "0.7.1";
+ edition = "2018";
+ sha256 = "0wkpppwrfv1h197asz1p4yfb4li5b1kw0nqllil67n6vj1qb6win";
+ authors = [
+ "bluss"
+ "mitchmindtree"
+ ];
+ dependencies = [
+ {
+ name = "fixedbitset";
+ packageId = "fixedbitset";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ }
+ ];
+ features = {
+ "all" = [ "unstable" "quickcheck" "matrix_graph" "stable_graph" "graphmap" "rayon" ];
+ "default" = [ "graphmap" "stable_graph" "matrix_graph" ];
+ "quickcheck" = [ "dep:quickcheck" ];
+ "rayon" = [ "dep:rayon" "indexmap/rayon" ];
+ "serde" = [ "dep:serde" ];
+ "serde-1" = [ "serde" "serde_derive" ];
+ "serde_derive" = [ "dep:serde_derive" ];
+ "unstable" = [ "generate" ];
+ };
+ };
+ "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";
+ 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.31";
+ edition = "2018";
+ sha256 = "1wk6yp2phl91795ia0lwkr3wl4a9xkrympvhqq8cxk4d75hwhglm";
+ libName = "pkg_config";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+
+ };
+ "prettyplease" = rec {
+ crateName = "prettyplease";
+ version = "0.2.32";
+ edition = "2021";
+ links = "prettyplease02";
+ sha256 = "1xmdmwhsvqc8l5ns029vzjida4k3lp5ynin0xra43qsiki0wakk6";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "syn";
+ packageId = "syn";
+ usesDefaultFeatures = false;
+ features = [ "full" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "syn";
+ packageId = "syn";
+ usesDefaultFeatures = false;
+ features = [ "clone-impls" "extra-traits" "parsing" "printing" "visit-mut" ];
+ }
+ ];
+ features = {
+ "verbatim" = [ "syn/parsing" ];
+ };
+ };
+ "privdrop" = rec {
+ crateName = "privdrop";
+ version = "0.5.5";
+ edition = "2018";
+ sha256 = "0r3hrvdxvn146y4fg1q3y8lnqxmrdd0cxdx3cz0c31mh560h17c7";
+ 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.93";
+ edition = "2021";
+ sha256 = "169dw9wch753if1mgyi2nfl1il77gslvh6y2q46qplprwml6m530";
+ 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" ];
+ };
+ "prost" = rec {
+ crateName = "prost";
+ version = "0.13.5";
+ edition = "2021";
+ sha256 = "1r8yi6zxxwv9gq5ia9p55nspgwmchs94sqpp64x33v5k3njgm5i7";
+ authors = [
+ "Dan Burkert <dan@danburkert.com>"
+ "Lucio Franco <luciofranco14@gmail.com>"
+ "Casper Meijn <casper@meijn.net>"
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "prost-derive";
+ packageId = "prost-derive";
+ optional = true;
+ }
+ ];
+ features = {
+ "default" = [ "derive" "std" ];
+ "derive" = [ "dep:prost-derive" ];
+ "prost-derive" = [ "derive" ];
+ };
+ resolvedDefaultFeatures = [ "default" "derive" "prost-derive" "std" ];
+ };
+ "prost-build" = rec {
+ crateName = "prost-build";
+ version = "0.13.5";
+ edition = "2021";
+ sha256 = "1gw1mr0rmv15fc2yvn9jmxbqaj8qh80w5nn5x5s1932y8ijr8xmy";
+ libName = "prost_build";
+ authors = [
+ "Dan Burkert <dan@danburkert.com>"
+ "Lucio Franco <luciofranco14@gmail.com>"
+ "Casper Meijn <casper@meijn.net>"
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "heck";
+ packageId = "heck";
+ }
+ {
+ name = "itertools";
+ packageId = "itertools";
+ usesDefaultFeatures = false;
+ features = [ "use_alloc" ];
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "multimap";
+ packageId = "multimap";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ }
+ {
+ name = "petgraph";
+ packageId = "petgraph";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "prettyplease";
+ packageId = "prettyplease";
+ optional = true;
+ }
+ {
+ name = "prost";
+ packageId = "prost";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "prost-types";
+ packageId = "prost-types";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "regex";
+ packageId = "regex";
+ usesDefaultFeatures = false;
+ features = [ "std" "unicode-bool" ];
+ }
+ {
+ name = "syn";
+ packageId = "syn";
+ optional = true;
+ features = [ "full" ];
+ }
+ {
+ name = "tempfile";
+ packageId = "tempfile";
+ }
+ ];
+ features = {
+ "cleanup-markdown" = [ "dep:pulldown-cmark" "dep:pulldown-cmark-to-cmark" ];
+ "default" = [ "format" ];
+ "format" = [ "dep:prettyplease" "dep:syn" ];
+ };
+ resolvedDefaultFeatures = [ "default" "format" ];
+ };
+ "prost-derive" = rec {
+ crateName = "prost-derive";
+ version = "0.13.5";
+ edition = "2021";
+ sha256 = "0kgc9gbzsa998xixblfi3kfydka64zqf6rmpm53b761cjxbxfmla";
+ procMacro = true;
+ libName = "prost_derive";
+ authors = [
+ "Dan Burkert <dan@danburkert.com>"
+ "Lucio Franco <luciofranco14@gmail.com>"
+ "Casper Meijn <casper@meijn.net>"
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "anyhow";
+ packageId = "anyhow";
+ }
+ {
+ name = "itertools";
+ packageId = "itertools";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn";
+ features = [ "extra-traits" ];
+ }
+ ];
+
+ };
+ "prost-types" = rec {
+ crateName = "prost-types";
+ version = "0.13.5";
+ edition = "2021";
+ sha256 = "05mx699wyg7cjil3hz7h8lp4dhi7xhy1lq5kjv1s3cfx6szw3hjj";
+ libName = "prost_types";
+ authors = [
+ "Dan Burkert <dan@danburkert.com>"
+ "Lucio Franco <luciofranco14@gmail.com>"
+ "Casper Meijn <casper@meijn.net>"
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "prost";
+ packageId = "prost";
+ usesDefaultFeatures = false;
+ features = [ "prost-derive" ];
+ }
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "default" = [ "std" ];
+ "std" = [ "prost/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "quote" = rec {
+ crateName = "quote";
+ version = "1.0.38";
+ edition = "2018";
+ sha256 = "1k0s75w61k6ch0rs263r4j69b7vj1wadqgb9dia4ylc9mymcqk8f";
+ 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" ];
+ };
+ "redox_syscall" = rec {
+ crateName = "redox_syscall";
+ version = "0.5.9";
+ edition = "2021";
+ sha256 = "0bvykdad226m3nqzkbb95piglyfn7m2yxp4r10m9xr4q7qr6idc2";
+ libName = "syscall";
+ authors = [
+ "Jeremy Soller <jackpot51@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags";
+ }
+ ];
+ features = {
+ "core" = [ "dep:core" ];
+ "default" = [ "userspace" ];
+ "rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "userspace" ];
+ };
+ "regex" = rec {
+ crateName = "regex";
+ version = "1.11.1";
+ edition = "2021";
+ sha256 = "148i41mzbx8bmq32hsj1q4karkzzx5m60qza6gdw4pdc9qdyyi5m";
+ 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 0.4.9";
+ usesDefaultFeatures = false;
+ features = [ "alloc" "syntax" "meta" "nfa-pikevm" ];
+ }
+ {
+ name = "regex-syntax";
+ packageId = "regex-syntax 0.8.5";
+ 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 0.1.10" = rec {
+ crateName = "regex-automata";
+ version = "0.1.10";
+ edition = "2015";
+ sha256 = "0ci1hvbzhrfby5fdpf4ganhf7kla58acad9i1ff1p34dzdrhs8vc";
+ libName = "regex_automata";
+ authors = [
+ "Andrew Gallant <jamslam@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "regex-syntax";
+ packageId = "regex-syntax 0.6.29";
+ optional = true;
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "fst" = [ "dep:fst" ];
+ "regex-syntax" = [ "dep:regex-syntax" ];
+ "std" = [ "regex-syntax" ];
+ "transducer" = [ "std" "fst" ];
+ };
+ resolvedDefaultFeatures = [ "default" "regex-syntax" "std" ];
+ };
+ "regex-automata 0.4.9" = rec {
+ crateName = "regex-automata";
+ version = "0.4.9";
+ edition = "2021";
+ sha256 = "02092l8zfh3vkmk47yjc8d631zhhcd49ck2zr133prvd3z38v7l0";
+ 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 0.8.5";
+ 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" = [ "std" "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-onepass" "hybrid" "meta" "nfa-backtrack" "nfa-pikevm" "nfa-thompson" "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 0.6.29" = rec {
+ crateName = "regex-syntax";
+ version = "0.6.29";
+ edition = "2018";
+ sha256 = "1qgj49vm6y3zn1hi09x91jvgkl2b1fiaq402skj83280ggfwcqpi";
+ libName = "regex_syntax";
+ authors = [
+ "The Rust Project Developers"
+ ];
+ features = {
+ "default" = [ "unicode" ];
+ "unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
+ };
+ resolvedDefaultFeatures = [ "default" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
+ };
+ "regex-syntax 0.8.5" = rec {
+ crateName = "regex-syntax";
+ version = "0.8.5";
+ edition = "2021";
+ sha256 = "0p41p3hj9ww7blnbwbj9h7rwxzxg0c1hvrdycgys8rxyhqqw859b";
+ 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" ];
+ };
+ "reqwest" = rec {
+ crateName = "reqwest";
+ version = "0.12.12";
+ edition = "2021";
+ sha256 = "1nnigi6jcrqdd5k5myc53qdkdnrx8zjgan029q1w5hspf5039rs3";
+ authors = [
+ "Sean McArthur <sean@seanmonstar.com>"
+ ];
+ dependencies = [
+ {
+ name = "base64";
+ packageId = "base64";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ }
+ {
+ 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 = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "h2";
+ packageId = "h2";
+ optional = true;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ name = "http";
+ packageId = "http";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body";
+ 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";
+ 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";
+ 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" "tokio" ];
+ }
+ {
+ name = "ipnet";
+ packageId = "ipnet";
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ 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";
+ 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 = "once_cell";
+ packageId = "once_cell";
+ 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-pemfile";
+ packageId = "rustls-pemfile";
+ optional = true;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ }
+ {
+ 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 = "system-configuration";
+ packageId = "system-configuration";
+ optional = true;
+ target = { target, features }: ("macos" == target."os" or null);
+ }
+ {
+ 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 = "tokio-util";
+ packageId = "tokio-util";
+ optional = true;
+ usesDefaultFeatures = false;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ features = [ "codec" "io" ];
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ usesDefaultFeatures = false;
+ target = { target, features }: (!("wasm32" == target."arch" or null));
+ features = [ "timeout" "util" ];
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ {
+ 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 = "wasm-streams";
+ packageId = "wasm-streams";
+ optional = true;
+ 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" ];
+ }
+ {
+ name = "windows-registry";
+ packageId = "windows-registry";
+ target = { target, features }: (target."windows" or false);
+ }
+ ];
+ devDependencies = [
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ usesDefaultFeatures = false;
+ target = {target, features}: (!("wasm32" == target."arch" or null));
+ features = [ "std" "alloc" ];
+ }
+ {
+ name = "hyper";
+ packageId = "hyper";
+ 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" "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" "dep:rustls-pemfile" "dep:rustls-pki-types" ];
+ "__rustls-ring" = [ "hyper-rustls?/ring" "tokio-rustls?/ring" "rustls?/ring" "quinn?/ring" ];
+ "__tls" = [ "dep:rustls-pemfile" "tokio/io-util" ];
+ "blocking" = [ "dep:futures-channel" "futures-channel?/sink" "futures-util/io" "futures-util/sink" "tokio/sync" ];
+ "brotli" = [ "dep:async-compression" "async-compression?/brotli" "dep:tokio-util" ];
+ "charset" = [ "dep:encoding_rs" ];
+ "cookies" = [ "dep:cookie_crate" "dep:cookie_store" ];
+ "default" = [ "default-tls" "charset" "http2" "macos-system-configuration" ];
+ "default-tls" = [ "dep:hyper-tls" "dep:native-tls-crate" "__tls" "dep:tokio-native-tls" ];
+ "deflate" = [ "dep:async-compression" "async-compression?/zlib" "dep:tokio-util" ];
+ "gzip" = [ "dep:async-compression" "async-compression?/gzip" "dep:tokio-util" ];
+ "h2" = [ "dep:h2" ];
+ "hickory-dns" = [ "dep:hickory-resolver" ];
+ "http2" = [ "h2" "hyper/http2" "hyper-util/http2" "hyper-rustls?/http2" ];
+ "http3" = [ "rustls-tls-manual-roots" "dep:h3" "dep:h3-quinn" "dep:quinn" "dep:slab" "dep:futures-channel" ];
+ "json" = [ "dep:serde_json" ];
+ "macos-system-configuration" = [ "dep:system-configuration" ];
+ "multipart" = [ "dep:mime_guess" ];
+ "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" ];
+ "socks" = [ "dep:tokio-socks" ];
+ "stream" = [ "tokio/fs" "dep:tokio-util" "dep:wasm-streams" ];
+ "zstd" = [ "dep:async-compression" "async-compression?/zstd" "dep:tokio-util" ];
+ };
+ resolvedDefaultFeatures = [ "__tls" "charset" "default" "default-tls" "h2" "http2" "macos-system-configuration" "stream" ];
+ };
+ "ring" = rec {
+ crateName = "ring";
+ version = "0.17.13";
+ edition = "2021";
+ links = "ring_core_0_17_13_";
+ sha256 = "1vjhhlmpqqd9lc53ffjj1yk203188n2km27g3myvssm15a1mvb3h";
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "getrandom";
+ packageId = "getrandom 0.2.15";
+ }
+ {
+ 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" ];
+ };
+ "rustc-demangle" = rec {
+ crateName = "rustc-demangle";
+ version = "0.1.24";
+ edition = "2015";
+ sha256 = "07zysaafgrkzy2rjgwqdj2a8qdpsm6zv6f5pgpk9x0lm40z9b6vi";
+ libName = "rustc_demangle";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ features = {
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "rustc-dep-of-std" = [ "core" "compiler_builtins" ];
+ };
+ };
+ "rustix 0.38.44" = rec {
+ crateName = "rustix";
+ version = "0.38.44";
+ edition = "2021";
+ sha256 = "0m61v0h15lf5rrnbjhcb9306bgqrhskrqv7i1n0939dsw8dbrdgx";
+ authors = [
+ "Dan Gohman <dev@sunfishcode.online>"
+ "Jakub Konka <kubkon@jakubkonka.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags";
+ 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)) && (("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) && ("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)) && (("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) && ("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)) && (("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) && ("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)) && (("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) && ("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 0.4.15";
+ usesDefaultFeatures = false;
+ target = { target, features }: ((("android" == target."os" or null) || ("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)) && (("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) && ("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 0.4.15";
+ 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)) && (("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) && ("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" "errno" "ioctl" "no_std" "elf" ];
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.59.0";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_NetworkManagement_IpHelper" "Win32_System_Threading" ];
+ }
+ ];
+ 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" "procfs" "pty" "rand" "runtime" "shm" "stdio" "system" "termios" "thread" "time" ];
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "core" = [ "dep:core" ];
+ "default" = [ "std" "use-libc-auxv" ];
+ "io_uring" = [ "event" "fs" "net" "linux-raw-sys/io_uring" ];
+ "itoa" = [ "dep:itoa" ];
+ "libc" = [ "dep:libc" ];
+ "libc-extra-traits" = [ "libc?/extra_traits" ];
+ "libc_errno" = [ "dep:libc_errno" ];
+ "linux_latest" = [ "linux_4_11" ];
+ "net" = [ "linux-raw-sys/net" "linux-raw-sys/netlink" "linux-raw-sys/if_ether" "linux-raw-sys/xdp" ];
+ "once_cell" = [ "dep:once_cell" ];
+ "param" = [ "fs" ];
+ "process" = [ "linux-raw-sys/prctl" ];
+ "procfs" = [ "once_cell" "itoa" "fs" ];
+ "pty" = [ "itoa" "fs" ];
+ "runtime" = [ "linux-raw-sys/prctl" ];
+ "rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" "compiler_builtins" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" "compiler_builtins?/rustc-dep-of-std" ];
+ "rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
+ "shm" = [ "fs" ];
+ "std" = [ "bitflags/std" "alloc" "libc?/std" "libc_errno?/std" "libc-extra-traits" ];
+ "system" = [ "linux-raw-sys/system" ];
+ "thread" = [ "linux-raw-sys/prctl" ];
+ "use-libc" = [ "libc_errno" "libc" "libc-extra-traits" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "fs" "libc-extra-traits" "std" ];
+ };
+ "rustix 1.0.2" = rec {
+ crateName = "rustix";
+ version = "1.0.2";
+ edition = "2021";
+ sha256 = "09dq96zhmrpljg1l833gszrqqx727hsirrkikhk0x8vm9fm8y5zp";
+ authors = [
+ "Dan Gohman <dev@sunfishcode.online>"
+ "Jakub Konka <kubkon@jakubkonka.com>"
+ ];
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags";
+ 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 0.9.2";
+ usesDefaultFeatures = false;
+ target = { target, features }: ((("android" == target."os" or null) || ("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 0.9.2";
+ 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 = [ "general" "errno" "ioctl" "no_std" "elf" ];
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.59.0";
+ 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" ];
+ "compiler_builtins" = [ "dep:compiler_builtins" ];
+ "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" "compiler_builtins" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" "compiler_builtins?/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.23";
+ edition = "2021";
+ sha256 = "15gk2bmry78cps3ya38a7cn4jxc36xv1r7gndr0fbz40qjc6qya7";
+ dependencies = [
+ {
+ 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" ];
+ "brotli" = [ "dep:brotli" "dep:brotli-decompressor" "std" ];
+ "default" = [ "aws_lc_rs" "logging" "std" "tls12" ];
+ "fips" = [ "aws_lc_rs" "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 = [ "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.11.0";
+ edition = "2021";
+ sha256 = "0755isc0x5iymm3wsn59s0ad1pm9zidw7p34qfqlsjsac9jf4z4i";
+ libName = "rustls_pki_types";
+ features = {
+ "default" = [ "alloc" ];
+ "std" = [ "alloc" ];
+ "web" = [ "web-time" ];
+ "web-time" = [ "dep:web-time" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "rustls-webpki" = rec {
+ crateName = "rustls-webpki";
+ version = "0.102.8";
+ edition = "2021";
+ sha256 = "1sdy8ks86b7jpabpnb2px2s7f1sq8v0nqf6fnlvwzm4vfk41pjk4";
+ libName = "webpki";
+ dependencies = [
+ {
+ 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" ];
+ "default" = [ "std" "ring" ];
+ "ring" = [ "dep:ring" ];
+ "std" = [ "alloc" "pki-types/std" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "std" ];
+ };
+ "rustversion" = rec {
+ crateName = "rustversion";
+ version = "1.0.20";
+ edition = "2018";
+ sha256 = "1lhwjb16dsm8brd18bn2bh0ryzc7qi29bi2jjsc6ny2zbwn3ivgd";
+ 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" ];
+ };
+ };
+ "schannel" = rec {
+ crateName = "schannel";
+ version = "0.1.27";
+ edition = "2018";
+ sha256 = "0gbbhy28v72kd5iina0z2vcdl3vz63mk5idvkzn5r52z6jmfna8z";
+ authors = [
+ "Steven Fackler <sfackler@gmail.com>"
+ "Steffen Butzer <steffen.butzer@outlook.com>"
+ ];
+ dependencies = [
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.59.0";
+ 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.59.0";
+ features = [ "Win32_System_SystemInformation" "Win32_System_Time" ];
+ }
+ ];
+
+ };
+ "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";
+ }
+ {
+ 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.14.0";
+ edition = "2021";
+ sha256 = "0chwn01qrnvs59i5220bymd38iddy4krbnmfnhf4k451aqfj7ns9";
+ 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" ];
+ };
+ "serde" = rec {
+ crateName = "serde";
+ version = "1.0.219";
+ edition = "2018";
+ sha256 = "1dl6nyxnsi82a197sd752128a4avm6mxnscywas1jq30srp2q3jz";
+ authors = [
+ "Erick Tryzelaar <erick.tryzelaar@gmail.com>"
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ optional = true;
+ }
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ target = { target, features }: false;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde_derive";
+ packageId = "serde_derive";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "derive" = [ "serde_derive" ];
+ "serde_derive" = [ "dep:serde_derive" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "serde_derive" = rec {
+ crateName = "serde_derive";
+ version = "1.0.219";
+ edition = "2015";
+ sha256 = "001azhjmj7ya52pmfiw4ppxm16nd44y15j2pf5gkcwrcgz7pc0jv";
+ 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";
+ usesDefaultFeatures = false;
+ features = [ "clone-impls" "derive" "parsing" "printing" "proc-macro" ];
+ }
+ ];
+ features = {
+ };
+ resolvedDefaultFeatures = [ "default" ];
+ };
+ "serde_json" = rec {
+ crateName = "serde_json";
+ version = "1.0.140";
+ edition = "2021";
+ sha256 = "0wwkp4vc20r87081ihj3vpyz5qf7wqkqipq17v99nv6wjrp8n1i0";
+ 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;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "alloc" = [ "serde/alloc" ];
+ "default" = [ "std" ];
+ "indexmap" = [ "dep:indexmap" ];
+ "preserve_order" = [ "indexmap" "std" ];
+ "std" = [ "memchr/std" "serde/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "serde_spanned" = rec {
+ crateName = "serde_spanned";
+ version = "0.6.9";
+ edition = "2021";
+ sha256 = "18vmxq6qfrm110caszxrzibjhy2s54n1g5w1bshxq9kjmz7y0hdz";
+ dependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ ];
+ features = {
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "serde" ];
+ };
+ "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";
+ }
+ ];
+
+ };
+ "sha2" = rec {
+ crateName = "sha2";
+ version = "0.10.8";
+ edition = "2018";
+ sha256 = "1j1x78zk9il95w9iv46dh9wm73r6xrgj32y6lzzw7bxws9dbfgbr";
+ 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";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "digest";
+ packageId = "digest";
+ 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" ];
+ };
+ "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.2";
+ edition = "2015";
+ sha256 = "1cb5akgq8ajnd5spyn587srvs4n26ryq0p78nswffwhv46sf1sd9";
+ libName = "signal_hook_registry";
+ authors = [
+ "Michal 'vorner' Vaner <vorner@vorner.cz>"
+ "Masaki Hara <ackie.h.gmai@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "libc";
+ packageId = "libc";
+ }
+ ];
+
+ };
+ "slab" = rec {
+ crateName = "slab";
+ version = "0.4.9";
+ edition = "2018";
+ sha256 = "0rxvsgir0qw5lkycrqgb1cxsvxzjv9bmx73bk5y42svnzfba94lg";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ buildDependencies = [
+ {
+ name = "autocfg";
+ packageId = "autocfg";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "smallvec" = rec {
+ crateName = "smallvec";
+ version = "1.14.0";
+ edition = "2018";
+ sha256 = "1z8wpr53x6jisklqhkkvkgyi8s5cn69h2d2alhqfxahzxwiq7kvz";
+ authors = [
+ "The Servo Project Developers"
+ ];
+ features = {
+ "arbitrary" = [ "dep:arbitrary" ];
+ "const_new" = [ "const_generics" ];
+ "drain_keep_rest" = [ "drain_filter" ];
+ "malloc_size_of" = [ "dep:malloc_size_of" ];
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "const_generics" "const_new" ];
+ };
+ "socket2" = rec {
+ crateName = "socket2";
+ version = "0.5.8";
+ edition = "2021";
+ sha256 = "1s7vjmb5gzp3iaqi94rh9r63k9cj00kjgbfn7gn60kmnk6fjcw69";
+ 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" ];
+ };
+ "stable_deref_trait" = rec {
+ crateName = "stable_deref_trait";
+ version = "1.2.0";
+ edition = "2015";
+ sha256 = "1lxjr8q2n534b2lhkxd6l6wcddzjvnksi58zv11f9y0jjmr15wd8";
+ authors = [
+ "Robert Grosse <n210241048576@gmail.com>"
+ ];
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" ];
+ };
+ "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" ];
+ };
+ };
+ "syn" = rec {
+ crateName = "syn";
+ version = "2.0.98";
+ edition = "2021";
+ sha256 = "1cfk0qqbl4fbr3dz61nw21d5amvl4rym6nxwnfsw43mf90d7y51n";
+ 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.1";
+ edition = "2018";
+ sha256 = "0wc9f002ia2zqcbj0q2id5x6n7g1zjqba7qkg2mr0qvvmdk7dby8";
+ 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";
+ 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" ];
+ };
+ "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";
+ }
+ {
+ 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";
+ }
+ ];
+
+ };
+ "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.19.1";
+ edition = "2021";
+ sha256 = "1grmcj8y6rcavndw2dm18ndzdimsq5f8lcrwyg627cdrcdvsqdvl";
+ 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.1";
+ 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 1.0.2";
+ target = { target, features }: ((target."unix" or false) || ("wasi" == target."os" or null));
+ features = [ "fs" ];
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.59.0";
+ target = { target, features }: (target."windows" or false);
+ features = [ "Win32_Storage_FileSystem" "Win32_Foundation" ];
+ }
+ ];
+ features = {
+ "default" = [ "getrandom" ];
+ "getrandom" = [ "dep:getrandom" ];
+ };
+ resolvedDefaultFeatures = [ "default" "getrandom" ];
+ };
+ "thiserror" = rec {
+ crateName = "thiserror";
+ version = "2.0.12";
+ edition = "2021";
+ sha256 = "024791nsc0np63g2pq30cjf9acj38z3jwx9apvvi8qsqmqnqlysn";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "thiserror-impl";
+ packageId = "thiserror-impl";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "thiserror-impl" = rec {
+ crateName = "thiserror-impl";
+ version = "2.0.12";
+ edition = "2021";
+ sha256 = "07bsn7shydaidvyyrm7jz29vp78vrxr9cr9044rfmn078lmz8z3z";
+ 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";
+ }
+ ];
+
+ };
+ "thread_local" = rec {
+ crateName = "thread_local";
+ version = "1.1.8";
+ edition = "2021";
+ sha256 = "173i5lyjh011gsimk21np9jn8al18rxsrkjli20a7b8ks2xgk7lb";
+ authors = [
+ "Amanieu d'Antras <amanieu@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ }
+ ];
+ features = {
+ };
+ };
+ "tinystr" = rec {
+ crateName = "tinystr";
+ version = "0.7.6";
+ edition = "2021";
+ sha256 = "0bxqaw7z8r2kzngxlzlgvld1r6jbnwyylyvyjbv1q71rvgaga5wi";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "displaydoc";
+ packageId = "displaydoc";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zerovec";
+ packageId = "zerovec";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "databake" = [ "dep:databake" ];
+ "default" = [ "alloc" ];
+ "serde" = [ "dep:serde" ];
+ "zerovec" = [ "dep:zerovec" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "zerovec" ];
+ };
+ "tokio" = rec {
+ crateName = "tokio";
+ version = "1.44.0";
+ edition = "2021";
+ sha256 = "0fpv4c8dyp5jh55kf69arhvq8ic2h4iqr21dpxr3kamm907ylxcr";
+ authors = [
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "backtrace";
+ packageId = "backtrace";
+ target = { target, features }: (target."tokio_taskdump" or false);
+ }
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ optional = true;
+ }
+ {
+ name = "libc";
+ packageId = "libc";
+ optional = true;
+ target = { target, features }: (target."unix" or false);
+ }
+ {
+ name = "mio";
+ packageId = "mio";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ 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";
+ 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.52.0";
+ 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";
+ target = {target, features}: (!(builtins.elem "wasm" target."family"));
+ }
+ {
+ name = "windows-sys";
+ packageId = "windows-sys 0.52.0";
+ 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-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" ];
+ "test-util" = [ "rt" "sync" "time" ];
+ "tokio-macros" = [ "dep:tokio-macros" ];
+ "tracing" = [ "dep:tracing" ];
+ "windows-sys" = [ "dep:windows-sys" ];
+ };
+ resolvedDefaultFeatures = [ "bytes" "default" "fs" "io-std" "io-util" "libc" "macros" "mio" "net" "process" "rt" "rt-multi-thread" "signal-hook-registry" "socket2" "sync" "time" "tokio-macros" "windows-sys" ];
+ };
+ "tokio-bincode" = rec {
+ crateName = "tokio-bincode";
+ version = "0.1.0";
+ edition = "2018";
+ sha256 = "1cgm1jnqk8jbkfmqv9qg4kbrfcplj4plxwb5h031hmb0haadbahc";
+ libName = "tokio_bincode";
+ authors = [
+ "Lucio Franco <luciofranco14@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "bincode";
+ packageId = "bincode 1.3.3";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes 0.4.12";
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "tokio-codec";
+ packageId = "tokio-codec";
+ }
+ ];
+
+ };
+ "tokio-codec" = rec {
+ crateName = "tokio-codec";
+ version = "0.1.2";
+ edition = "2015";
+ sha256 = "0swpfngcb331lzggk6j68yks6w0bnw35vpl4hv8p03msc239kci5";
+ libName = "tokio_codec";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ "Bryan Burgers <bryan@burgers.io>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes 0.4.12";
+ }
+ {
+ name = "futures";
+ packageId = "futures 0.1.31";
+ }
+ {
+ name = "tokio-io";
+ packageId = "tokio-io";
+ }
+ ];
+
+ };
+ "tokio-io" = rec {
+ crateName = "tokio-io";
+ version = "0.1.13";
+ edition = "2015";
+ sha256 = "0x06zyzinans1pn90g6i150lgixijdf1cg8y2gipjd09ms58dz2p";
+ libName = "tokio_io";
+ authors = [
+ "Carl Lerche <me@carllerche.com>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes 0.4.12";
+ }
+ {
+ name = "futures";
+ packageId = "futures 0.1.31";
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ ];
+
+ };
+ "tokio-macros" = rec {
+ crateName = "tokio-macros";
+ version = "2.5.0";
+ edition = "2021";
+ sha256 = "1f6az2xbvqp7am417b78d1za8axbvjvxnmkakz9vr8s52czx81kf";
+ 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";
+ 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-rustls" = rec {
+ crateName = "tokio-rustls";
+ version = "0.26.2";
+ edition = "2021";
+ sha256 = "16wf007q3584j46wc4s0zc4szj6280g23hka6x6bgs50l4v7nwlf";
+ 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" ];
+ "default" = [ "logging" "tls12" "aws_lc_rs" ];
+ "fips" = [ "rustls/fips" ];
+ "logging" = [ "rustls/logging" ];
+ "ring" = [ "rustls/ring" ];
+ "tls12" = [ "rustls/tls12" ];
+ };
+ 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 = [ "net" ];
+ };
+ "tokio-util" = rec {
+ crateName = "tokio-util";
+ version = "0.7.15";
+ edition = "2021";
+ sha256 = "1pypd9lm1fdnpw0779pqvc16qqrxjy63dgfm20ajhpbdmnlkk9b6";
+ libName = "tokio_util";
+ authors = [
+ "Tokio Contributors <team@tokio.rs>"
+ ];
+ dependencies = [
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ }
+ {
+ 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" ];
+ "futures-io" = [ "dep:futures-io" ];
+ "futures-util" = [ "dep:futures-util" ];
+ "hashbrown" = [ "dep:hashbrown" ];
+ "io-util" = [ "io" "tokio/rt" "tokio/io-util" ];
+ "net" = [ "tokio/net" ];
+ "rt" = [ "tokio/rt" "tokio/sync" "futures-util" "hashbrown" ];
+ "slab" = [ "dep:slab" ];
+ "time" = [ "tokio/time" "slab" ];
+ "tracing" = [ "dep:tracing" ];
+ };
+ resolvedDefaultFeatures = [ "codec" "default" "io" ];
+ };
+ "toml" = rec {
+ crateName = "toml";
+ version = "0.8.23";
+ edition = "2021";
+ sha256 = "0qnkrq4lm2sdhp3l6cb6f26i8zbnhqb7mhbmksd550wxdfcyn6yw";
+ dependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ }
+ {
+ name = "serde_spanned";
+ packageId = "serde_spanned";
+ features = [ "serde" ];
+ }
+ {
+ name = "toml_datetime";
+ packageId = "toml_datetime";
+ features = [ "serde" ];
+ }
+ {
+ name = "toml_edit";
+ packageId = "toml_edit";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "serde" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "default" = [ "parse" "display" ];
+ "display" = [ "dep:toml_edit" "toml_edit?/display" ];
+ "indexmap" = [ "dep:indexmap" ];
+ "parse" = [ "dep:toml_edit" "toml_edit?/parse" ];
+ "preserve_order" = [ "indexmap" ];
+ "unbounded" = [ "toml_edit?/unbounded" ];
+ };
+ resolvedDefaultFeatures = [ "default" "display" "parse" ];
+ };
+ "toml_datetime" = rec {
+ crateName = "toml_datetime";
+ version = "0.6.11";
+ edition = "2021";
+ sha256 = "077ix2hb1dcya49hmi1avalwbixmrs75zgzb3b2i7g2gizwdmk92";
+ dependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ }
+ ];
+ features = {
+ "serde" = [ "dep:serde" ];
+ };
+ resolvedDefaultFeatures = [ "serde" ];
+ };
+ "toml_edit" = rec {
+ crateName = "toml_edit";
+ version = "0.22.27";
+ edition = "2021";
+ sha256 = "16l15xm40404asih8vyjvnka9g0xs9i4hfb6ry3ph9g419k8rzj1";
+ dependencies = [
+ {
+ name = "indexmap";
+ packageId = "indexmap";
+ features = [ "std" ];
+ }
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ }
+ {
+ name = "serde_spanned";
+ packageId = "serde_spanned";
+ optional = true;
+ features = [ "serde" ];
+ }
+ {
+ name = "toml_datetime";
+ packageId = "toml_datetime";
+ }
+ {
+ name = "toml_write";
+ packageId = "toml_write";
+ optional = true;
+ }
+ {
+ name = "winnow";
+ packageId = "winnow";
+ optional = true;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ features = [ "derive" ];
+ }
+ ];
+ features = {
+ "default" = [ "parse" "display" ];
+ "display" = [ "dep:toml_write" ];
+ "parse" = [ "dep:winnow" ];
+ "perf" = [ "dep:kstring" ];
+ "serde" = [ "dep:serde" "toml_datetime/serde" "dep:serde_spanned" ];
+ "unstable-debug" = [ "winnow?/debug" ];
+ };
+ resolvedDefaultFeatures = [ "display" "parse" "serde" ];
+ };
+ "toml_write" = rec {
+ crateName = "toml_write";
+ version = "0.1.2";
+ edition = "2021";
+ sha256 = "008qlhqlqvljp1gpp9rn5cqs74gwvdgbvs92wnpq8y3jlz4zi6ax";
+ features = {
+ "default" = [ "std" ];
+ "std" = [ "alloc" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "tonic" = rec {
+ crateName = "tonic";
+ version = "0.13.0";
+ edition = "2021";
+ sha256 = "16sll6fvi0c5r0mrvvhn1mw6vnpy0wfkfqlj42rjn97x685rz0w5";
+ authors = [
+ "Lucio Franco <luciofranco14@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "async-trait";
+ packageId = "async-trait";
+ optional = true;
+ }
+ {
+ name = "axum";
+ packageId = "axum";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "base64";
+ packageId = "base64";
+ }
+ {
+ name = "bytes";
+ packageId = "bytes 1.10.1";
+ }
+ {
+ name = "h2";
+ packageId = "h2";
+ optional = true;
+ }
+ {
+ name = "http";
+ packageId = "http";
+ }
+ {
+ name = "http-body";
+ packageId = "http-body";
+ }
+ {
+ name = "http-body-util";
+ packageId = "http-body-util";
+ }
+ {
+ name = "hyper";
+ packageId = "hyper";
+ optional = true;
+ features = [ "http1" "http2" ];
+ }
+ {
+ name = "hyper-timeout";
+ packageId = "hyper-timeout";
+ optional = true;
+ }
+ {
+ name = "hyper-util";
+ packageId = "hyper-util";
+ optional = true;
+ features = [ "tokio" ];
+ }
+ {
+ name = "percent-encoding";
+ packageId = "percent-encoding";
+ }
+ {
+ name = "pin-project";
+ packageId = "pin-project";
+ }
+ {
+ name = "prost";
+ packageId = "prost";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ name = "socket2";
+ packageId = "socket2";
+ optional = true;
+ features = [ "all" ];
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "tokio-stream";
+ packageId = "tokio-stream";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "tower-layer";
+ packageId = "tower-layer";
+ }
+ {
+ name = "tower-service";
+ packageId = "tower-service";
+ }
+ {
+ name = "tracing";
+ packageId = "tracing";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "tokio";
+ packageId = "tokio";
+ features = [ "rt" "macros" ];
+ }
+ {
+ name = "tower";
+ packageId = "tower";
+ features = [ "load-shed" "timeout" ];
+ }
+ ];
+ features = {
+ "_tls-any" = [ "dep:tokio-rustls" "dep:tokio" "tokio?/rt" "tokio?/macros" ];
+ "channel" = [ "dep:hyper" "hyper?/client" "dep:hyper-util" "hyper-util?/client-legacy" "dep:tower" "tower?/balance" "tower?/buffer" "tower?/discover" "tower?/limit" "tower?/util" "dep:tokio" "tokio?/time" "dep:hyper-timeout" ];
+ "codegen" = [ "dep:async-trait" ];
+ "default" = [ "router" "transport" "codegen" "prost" ];
+ "deflate" = [ "dep:flate2" ];
+ "gzip" = [ "dep:flate2" ];
+ "prost" = [ "dep:prost" ];
+ "router" = [ "dep:axum" "dep:tower" "tower?/util" ];
+ "server" = [ "dep:h2" "dep:hyper" "hyper?/server" "dep:hyper-util" "hyper-util?/service" "hyper-util?/server-auto" "dep:socket2" "dep:tokio" "tokio?/macros" "tokio?/net" "tokio?/time" "tokio-stream/net" "dep:tower" "tower?/util" "tower?/limit" ];
+ "tls-aws-lc" = [ "_tls-any" "tokio-rustls/aws-lc-rs" ];
+ "tls-native-roots" = [ "_tls-any" "channel" "dep:rustls-native-certs" ];
+ "tls-ring" = [ "_tls-any" "tokio-rustls/ring" ];
+ "tls-webpki-roots" = [ "_tls-any" "channel" "dep:webpki-roots" ];
+ "transport" = [ "server" "channel" ];
+ "zstd" = [ "dep:zstd" ];
+ };
+ resolvedDefaultFeatures = [ "channel" "codegen" "default" "prost" "router" "server" "transport" ];
+ };
+ "tonic-build" = rec {
+ crateName = "tonic-build";
+ version = "0.13.0";
+ edition = "2021";
+ sha256 = "0pl2y7pnris23fzd599iz5ll3m5fbvl90fiq0s9n05fxza1h6pyq";
+ libName = "tonic_build";
+ authors = [
+ "Lucio Franco <luciofranco14@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "prettyplease";
+ packageId = "prettyplease";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "prost-build";
+ packageId = "prost-build";
+ optional = true;
+ }
+ {
+ name = "prost-types";
+ packageId = "prost-types";
+ optional = true;
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn";
+ }
+ ];
+ features = {
+ "cleanup-markdown" = [ "prost-build?/cleanup-markdown" ];
+ "default" = [ "transport" "prost" ];
+ "prost" = [ "prost-build" "dep:prost-types" ];
+ "prost-build" = [ "dep:prost-build" ];
+ };
+ resolvedDefaultFeatures = [ "default" "prost" "prost-build" "transport" ];
+ };
+ "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 = "indexmap";
+ packageId = "indexmap";
+ optional = true;
+ }
+ {
+ name = "pin-project-lite";
+ packageId = "pin-project-lite";
+ optional = true;
+ }
+ {
+ name = "slab";
+ packageId = "slab";
+ optional = true;
+ }
+ {
+ name = "sync_wrapper";
+ packageId = "sync_wrapper";
+ optional = true;
+ }
+ {
+ name = "tokio";
+ packageId = "tokio";
+ optional = true;
+ features = [ "sync" ];
+ }
+ {
+ name = "tokio-util";
+ packageId = "tokio-util";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ 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" "balance" "buffer" "discover" "futures-core" "futures-util" "indexmap" "limit" "load" "make" "pin-project-lite" "ready-cache" "slab" "sync_wrapper" "timeout" "tokio" "tokio-util" "tracing" "util" ];
+ };
+ "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 = "pin-project-lite";
+ packageId = "pin-project-lite";
+ }
+ {
+ name = "tracing-attributes";
+ packageId = "tracing-attributes";
+ optional = true;
+ }
+ {
+ name = "tracing-core";
+ packageId = "tracing-core";
+ usesDefaultFeatures = false;
+ }
+ ];
+ 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" "std" "tracing-attributes" ];
+ };
+ "tracing-attributes" = rec {
+ crateName = "tracing-attributes";
+ version = "0.1.28";
+ edition = "2018";
+ sha256 = "0v92l9cxs42rdm4m5hsa8z7ln1xsiw1zc2iil8c6k7lzq0jf2nir";
+ 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";
+ usesDefaultFeatures = false;
+ features = [ "full" "parsing" "printing" "visit-mut" "clone-impls" "extra-traits" "proc-macro" ];
+ }
+ ];
+ features = {
+ };
+ };
+ "tracing-core" = rec {
+ crateName = "tracing-core";
+ version = "0.1.33";
+ edition = "2018";
+ sha256 = "170gc7cxyjx824r9kr17zc9gvzx89ypqfdzq259pr56gg5bwjwp6";
+ 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-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.19";
+ edition = "2018";
+ sha256 = "0220rignck8072i89jjsh140vmh14ydwpdwnifyaf3xcnpn9s678";
+ 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";
+ packageId = "regex";
+ optional = true;
+ usesDefaultFeatures = false;
+ features = [ "std" "unicode-case" "unicode-perl" ];
+ }
+ {
+ 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 = "regex";
+ packageId = "regex";
+ usesDefaultFeatures = false;
+ features = [ "std" ];
+ }
+ {
+ 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" "regex" "once_cell" "tracing" "std" "thread_local" ];
+ "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" ];
+ "regex" = [ "dep:regex" ];
+ "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" "regex" "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>"
+ ];
+
+ };
+ "typenum" = rec {
+ crateName = "typenum";
+ version = "1.18.0";
+ edition = "2018";
+ sha256 = "0gwgz8n91pv40gabrr1lzji0b0hsmg0817njpy397bq7rvizzk0x";
+ authors = [
+ "Paho Lurie-Gregg <paho@paholg.com>"
+ "Andre Bogus <bogusandre@gmail.com>"
+ ];
+ features = {
+ "scale-info" = [ "dep:scale-info" ];
+ "scale_info" = [ "scale-info/derive" ];
+ };
+ };
+ "unicode-ident" = rec {
+ crateName = "unicode-ident";
+ version = "1.0.17";
+ edition = "2018";
+ sha256 = "1gpdxvaskz04whays5igg4zyca0dl7vdy2arsfxb13kpjcx4gqh0";
+ libName = "unicode_ident";
+ authors = [
+ "David Tolnay <dtolnay@gmail.com>"
+ ];
+
+ };
+ "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.4";
+ edition = "2018";
+ sha256 = "0q6sgznyy2n4l5lm16zahkisvc9nip9aa5q1pps7656xra3bdy1j";
+ 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" ];
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "idna/std" "percent-encoding/std" "form_urlencoded/std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "utf16_iter" = rec {
+ crateName = "utf16_iter";
+ version = "1.0.5";
+ edition = "2021";
+ sha256 = "0ik2krdr73hfgsdzw0218fn35fa09dg2hvbi1xp3bmdfrp9js8y8";
+ authors = [
+ "Henri Sivonen <hsivonen@hsivonen.fi>"
+ ];
+
+ };
+ "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" ];
+ };
+ "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" ];
+ };
+ };
+ "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.0+wasi-snapshot-preview1" = rec {
+ crateName = "wasi";
+ version = "0.11.0+wasi-snapshot-preview1";
+ edition = "2018";
+ sha256 = "08z4hxwkpdpalxjps1ai9y7ihin26y9f476i53dv98v45gkqg3cw";
+ 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" ];
+ };
+ "wasi 0.13.3+wasi-0.2.2" = rec {
+ crateName = "wasi";
+ version = "0.13.3+wasi-0.2.2";
+ edition = "2021";
+ sha256 = "1lnapbvdcvi3kc749wzqvwrpd483win2kicn1faa4dja38p6v096";
+ authors = [
+ "The Cranelift Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "wit-bindgen-rt";
+ packageId = "wit-bindgen-rt";
+ features = [ "bitflags" ];
+ }
+ ];
+ 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" ];
+ };
+ };
+ "wasm-bindgen" = rec {
+ crateName = "wasm-bindgen";
+ version = "0.2.100";
+ edition = "2021";
+ sha256 = "1x8ymcm6yi3i1rwj78myl1agqv2m86i648myy3lc97s9swlqkp0y";
+ libName = "wasm_bindgen";
+ authors = [
+ "The wasm-bindgen Developers"
+ ];
+ dependencies = [
+ {
+ name = "cfg-if";
+ packageId = "cfg-if";
+ }
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "rustversion";
+ packageId = "rustversion";
+ optional = true;
+ }
+ {
+ name = "wasm-bindgen-macro";
+ packageId = "wasm-bindgen-macro";
+ }
+ ];
+ devDependencies = [
+ {
+ name = "once_cell";
+ packageId = "once_cell";
+ }
+ ];
+ features = {
+ "default" = [ "std" "msrv" ];
+ "enable-interning" = [ "std" ];
+ "msrv" = [ "rustversion" ];
+ "rustversion" = [ "dep:rustversion" ];
+ "serde" = [ "dep:serde" ];
+ "serde-serialize" = [ "serde" "serde_json" "std" ];
+ "serde_json" = [ "dep:serde_json" ];
+ "strict-macro" = [ "wasm-bindgen-macro/strict-macro" ];
+ "xxx_debug_only_print_generated_code" = [ "wasm-bindgen-macro/xxx_debug_only_print_generated_code" ];
+ };
+ resolvedDefaultFeatures = [ "default" "msrv" "rustversion" "std" ];
+ };
+ "wasm-bindgen-backend" = rec {
+ crateName = "wasm-bindgen-backend";
+ version = "0.2.100";
+ edition = "2021";
+ sha256 = "1ihbf1hq3y81c4md9lyh6lcwbx6a5j0fw4fygd423g62lm8hc2ig";
+ libName = "wasm_bindgen_backend";
+ authors = [
+ "The wasm-bindgen Developers"
+ ];
+ dependencies = [
+ {
+ name = "bumpalo";
+ packageId = "bumpalo";
+ }
+ {
+ name = "log";
+ packageId = "log";
+ }
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn";
+ features = [ "full" ];
+ }
+ {
+ name = "wasm-bindgen-shared";
+ packageId = "wasm-bindgen-shared";
+ }
+ ];
+ features = {
+ "extra-traits" = [ "syn/extra-traits" ];
+ };
+ };
+ "wasm-bindgen-futures" = rec {
+ crateName = "wasm-bindgen-futures";
+ version = "0.4.50";
+ edition = "2021";
+ sha256 = "0q8ymi6i9r3vxly551dhxcyai7nc491mspj0j1wbafxwq074fpam";
+ 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.100";
+ edition = "2021";
+ sha256 = "01xls2dvzh38yj17jgrbiib1d3nyad7k2yw9s0mpklwys333zrkz";
+ 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.100";
+ edition = "2021";
+ sha256 = "1plm8dh20jg2id0320pbmrlsv6cazfv6b6907z19ys4z1jj7xs4a";
+ libName = "wasm_bindgen_macro_support";
+ authors = [
+ "The wasm-bindgen Developers"
+ ];
+ dependencies = [
+ {
+ name = "proc-macro2";
+ packageId = "proc-macro2";
+ }
+ {
+ name = "quote";
+ packageId = "quote";
+ }
+ {
+ name = "syn";
+ packageId = "syn";
+ features = [ "visit" "visit-mut" "full" ];
+ }
+ {
+ name = "wasm-bindgen-backend";
+ packageId = "wasm-bindgen-backend";
+ }
+ {
+ 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.100";
+ edition = "2021";
+ links = "wasm_bindgen";
+ sha256 = "0gffxvqgbh9r9xl36gprkfnh3w9gl8wgia6xrin7v11sjcxxf18s";
+ libName = "wasm_bindgen_shared";
+ authors = [
+ "The wasm-bindgen Developers"
+ ];
+ dependencies = [
+ {
+ name = "unicode-ident";
+ packageId = "unicode-ident";
+ }
+ ];
+
+ };
+ "wasm-streams" = rec {
+ crateName = "wasm-streams";
+ version = "0.4.2";
+ edition = "2021";
+ sha256 = "0rddn007hp6k2cm91mm9y33n79b0jxv0c3znzszcvv67hn6ks18m";
+ libName = "wasm_streams";type = [ "cdylib" "rlib" ];
+ authors = [
+ "Mattias Buelens <mattias@buelens.com>"
+ ];
+ dependencies = [
+ {
+ name = "futures-util";
+ packageId = "futures-util";
+ features = [ "io" "sink" ];
+ }
+ {
+ name = "js-sys";
+ packageId = "js-sys";
+ }
+ {
+ name = "wasm-bindgen";
+ packageId = "wasm-bindgen";
+ }
+ {
+ name = "wasm-bindgen-futures";
+ packageId = "wasm-bindgen-futures";
+ }
+ {
+ name = "web-sys";
+ packageId = "web-sys";
+ features = [ "AbortSignal" "QueuingStrategy" "ReadableStream" "ReadableStreamType" "ReadableWritablePair" "ReadableStreamByobReader" "ReadableStreamReaderMode" "ReadableStreamReadResult" "ReadableStreamByobRequest" "ReadableStreamDefaultReader" "ReadableByteStreamController" "ReadableStreamGetReaderOptions" "ReadableStreamDefaultController" "StreamPipeOptions" "TransformStream" "TransformStreamDefaultController" "Transformer" "UnderlyingSink" "UnderlyingSource" "WritableStream" "WritableStreamDefaultController" "WritableStreamDefaultWriter" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "web-sys";
+ packageId = "web-sys";
+ features = [ "console" "AbortSignal" "ErrorEvent" "PromiseRejectionEvent" "Response" "ReadableStream" "Window" ];
+ }
+ ];
+
+ };
+ "web-sys" = rec {
+ crateName = "web-sys";
+ version = "0.3.77";
+ edition = "2021";
+ sha256 = "1lnmc1ffbq34qw91nndklqqm75rasaffj2g4f8h1yvqqz4pdvdik";
+ 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" ];
+ "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" ];
+ "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" ];
+ "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" ];
+ "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" "Event" "EventTarget" "File" "FormData" "Headers" "MessageEvent" "QueuingStrategy" "ReadableByteStreamController" "ReadableStream" "ReadableStreamByobReader" "ReadableStreamByobRequest" "ReadableStreamDefaultController" "ReadableStreamDefaultReader" "ReadableStreamGetReaderOptions" "ReadableStreamReadResult" "ReadableStreamReaderMode" "ReadableStreamType" "ReadableWritablePair" "Request" "RequestCredentials" "RequestInit" "RequestMode" "Response" "ServiceWorkerGlobalScope" "StreamPipeOptions" "TransformStream" "TransformStreamDefaultController" "Transformer" "UnderlyingSink" "UnderlyingSource" "Window" "Worker" "WorkerGlobalScope" "WritableStream" "WritableStreamDefaultController" "WritableStreamDefaultWriter" "default" "std" ];
+ };
+ "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" "consoleapi" "errhandlingapi" "fileapi" "handleapi" "memoryapi" "minwindef" "processenv" "std" "sysinfoapi" ];
+ };
+ "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-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-registry" = rec {
+ crateName = "windows-registry";
+ version = "0.2.0";
+ edition = "2021";
+ sha256 = "1c04923fq0rbvl3z0h67xr6rh2fgwkizhclhqv0j79i0nwdh0074";
+ libName = "windows_registry";
+ authors = [
+ "Microsoft"
+ ];
+ dependencies = [
+ {
+ name = "windows-result";
+ packageId = "windows-result";
+ }
+ {
+ name = "windows-strings";
+ packageId = "windows-strings";
+ }
+ {
+ name = "windows-targets";
+ packageId = "windows-targets";
+ }
+ ];
+
+ };
+ "windows-result" = rec {
+ crateName = "windows-result";
+ version = "0.2.0";
+ edition = "2021";
+ sha256 = "03mf2z1xcy2slhhsm15z24p76qxgm2m74xdjp8bihyag47c4640x";
+ libName = "windows_result";
+ authors = [
+ "Microsoft"
+ ];
+ dependencies = [
+ {
+ name = "windows-targets";
+ packageId = "windows-targets";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "std" ];
+ };
+ "windows-strings" = rec {
+ crateName = "windows-strings";
+ version = "0.1.0";
+ edition = "2021";
+ sha256 = "042dxvi3133f7dyi2pgcvknwkikk47k8bddwxbq5s0l6qhjv3nac";
+ libName = "windows_strings";
+ authors = [
+ "Microsoft"
+ ];
+ dependencies = [
+ {
+ name = "windows-result";
+ packageId = "windows-result";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "windows-targets";
+ packageId = "windows-targets";
+ }
+ ];
+ features = {
+ "default" = [ "std" ];
+ };
+ resolvedDefaultFeatures = [ "default" "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";
+ }
+ ];
+ 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 = [ "Wdk" "Wdk_Foundation" "Wdk_Storage" "Wdk_Storage_FileSystem" "Wdk_System" "Wdk_System_IO" "Win32" "Win32_Foundation" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_IO" "Win32_System_Pipes" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
+ };
+ "windows-sys 0.59.0" = rec {
+ crateName = "windows-sys";
+ version = "0.59.0";
+ edition = "2021";
+ sha256 = "0fw5672ziw8b3zpmnbp9pdv1famk74f1l9fcbc3zsrzdg56vqf0y";
+ libName = "windows_sys";
+ authors = [
+ "Microsoft"
+ ];
+ dependencies = [
+ {
+ name = "windows-targets";
+ packageId = "windows-targets";
+ }
+ ];
+ 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_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_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_NetworkManagement" "Win32_NetworkManagement_IpHelper" "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_LibraryLoader" "Win32_System_Memory" "Win32_System_SystemInformation" "Win32_System_Threading" "default" ];
+ };
+ "windows-targets" = 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";
+ target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-gnullvm");
+ }
+ {
+ name = "windows_aarch64_msvc";
+ packageId = "windows_aarch64_msvc";
+ 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";
+ 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";
+ target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnullvm");
+ }
+ {
+ name = "windows_i686_msvc";
+ packageId = "windows_i686_msvc";
+ 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";
+ 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";
+ target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnullvm");
+ }
+ {
+ name = "windows_x86_64_msvc";
+ packageId = "windows_x86_64_msvc";
+ 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" = rec {
+ crateName = "windows_aarch64_gnullvm";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "1lrcq38cr2arvmz19v32qaggvj8bh1640mdm9c2fr877h0hn591j";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_aarch64_msvc" = rec {
+ crateName = "windows_aarch64_msvc";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "0sfl0nysnz32yyfh773hpi49b1q700ah6y7sacmjbqjjn5xjmv09";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_i686_gnu" = rec {
+ crateName = "windows_i686_gnu";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "02zspglbykh1jh9pi7gn8g1f97jh1rrccni9ivmrfbl0mgamm6wf";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_i686_gnullvm" = rec {
+ crateName = "windows_i686_gnullvm";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "0rpdx1537mw6slcpqa0rm3qixmsb79nbhqy5fsm3q2q9ik9m5vhf";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_i686_msvc" = rec {
+ crateName = "windows_i686_msvc";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "0rkcqmp4zzmfvrrrx01260q3xkpzi6fzi2x2pgdcdry50ny4h294";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_x86_64_gnu" = rec {
+ crateName = "windows_x86_64_gnu";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "0y0sifqcb56a56mvn7xjgs8g43p33mfqkd8wj1yhrgxzma05qyhl";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_x86_64_gnullvm" = rec {
+ crateName = "windows_x86_64_gnullvm";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "03gda7zjx1qh8k9nnlgb7m3w3s1xkysg55hkd1wjch8pqhyv5m94";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "windows_x86_64_msvc" = rec {
+ crateName = "windows_x86_64_msvc";
+ version = "0.52.6";
+ edition = "2021";
+ sha256 = "1v7rb5cibyzx8vak29pdrk8nx9hycsjs4w0jgms08qk49jl6v7sq";
+ authors = [
+ "Microsoft"
+ ];
+
+ };
+ "winnow" = rec {
+ crateName = "winnow";
+ version = "0.7.10";
+ edition = "2021";
+ sha256 = "1v69byry8fyarzl83wij6f1h3zxnw69assp9kdfb10cdfk42hsf0";
+ dependencies = [
+ {
+ name = "memchr";
+ packageId = "memchr";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "debug" = [ "std" "dep:anstream" "dep:anstyle" "dep:is-terminal" "dep:terminal_size" ];
+ "default" = [ "std" ];
+ "simd" = [ "dep:memchr" ];
+ "std" = [ "alloc" "memchr?/std" ];
+ "unstable-doc" = [ "alloc" "std" "simd" "unstable-recover" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "std" ];
+ };
+ "wit-bindgen-rt" = rec {
+ crateName = "wit-bindgen-rt";
+ version = "0.33.0";
+ edition = "2021";
+ sha256 = "0g4lwfp9x6a2i1hgjn8k14nr4fsnpd5izxhc75zpi2s5cvcg6s1j";
+ libName = "wit_bindgen_rt";
+ dependencies = [
+ {
+ name = "bitflags";
+ packageId = "bitflags";
+ optional = true;
+ }
+ ];
+ features = {
+ "bitflags" = [ "dep:bitflags" ];
+ };
+ resolvedDefaultFeatures = [ "bitflags" ];
+ };
+ "write16" = rec {
+ crateName = "write16";
+ version = "1.0.0";
+ edition = "2021";
+ sha256 = "0dnryvrrbrnl7vvf5vb1zkmwldhjkf2n5znliviam7bm4900z2fi";
+ features = {
+ "arrayvec" = [ "dep:arrayvec" ];
+ "smallvec" = [ "dep:smallvec" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" ];
+ };
+ "writeable" = rec {
+ crateName = "writeable";
+ version = "0.5.5";
+ edition = "2021";
+ sha256 = "0lawr6y0bwqfyayf3z8zmqlhpnzhdx0ahs54isacbhyjwa7g778y";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ features = {
+ "either" = [ "dep:either" ];
+ };
+ };
+ "xattr" = rec {
+ crateName = "xattr";
+ version = "1.4.0";
+ edition = "2021";
+ sha256 = "02f903ns4hsx7vypaqs4jz4smjkycgpb0fxkakvm8547ldvx21g1";
+ 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 = "linux-raw-sys";
+ packageId = "linux-raw-sys 0.4.15";
+ usesDefaultFeatures = false;
+ target = { target, features }: ("linux" == target."os" or null);
+ features = [ "std" ];
+ }
+ {
+ name = "rustix";
+ packageId = "rustix 0.38.44";
+ usesDefaultFeatures = false;
+ features = [ "fs" "std" ];
+ }
+ ];
+ devDependencies = [
+ {
+ name = "rustix";
+ packageId = "rustix 0.38.44";
+ usesDefaultFeatures = false;
+ features = [ "net" ];
+ }
+ ];
+ features = {
+ "default" = [ "unsupported" ];
+ };
+ resolvedDefaultFeatures = [ "default" "unsupported" ];
+ };
+ "xz" = rec {
+ crateName = "xz";
+ version = "0.1.0";
+ edition = "2018";
+ sha256 = "0d6sq57g1969hjl5k7gzzdbyr60za9hk8qs9iqz26biazy87d21w";
+ authors = [
+ "Hyeon Kim <simnalamburt@gmail.com>"
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "xz2";
+ packageId = "xz2";
+ }
+ ];
+ features = {
+ "tokio" = [ "xz2/tokio" ];
+ };
+ };
+ "xz2" = rec {
+ crateName = "xz2";
+ version = "0.1.7";
+ edition = "2018";
+ sha256 = "1qk7nzpblizvayyq4xzi4b0zacmmbqr6vb9fc0v1avyp17f4931q";
+ authors = [
+ "Alex Crichton <alex@alexcrichton.com>"
+ ];
+ dependencies = [
+ {
+ name = "futures";
+ packageId = "futures 0.1.31";
+ optional = true;
+ }
+ {
+ name = "lzma-sys";
+ packageId = "lzma-sys";
+ }
+ {
+ name = "tokio-io";
+ packageId = "tokio-io";
+ optional = true;
+ }
+ ];
+ features = {
+ "futures" = [ "dep:futures" ];
+ "static" = [ "lzma-sys/static" ];
+ "tokio" = [ "tokio-io" "futures" ];
+ "tokio-io" = [ "dep:tokio-io" ];
+ };
+ resolvedDefaultFeatures = [ "futures" "tokio" "tokio-io" ];
+ };
+ "yoke" = rec {
+ crateName = "yoke";
+ version = "0.7.5";
+ edition = "2021";
+ sha256 = "0h3znzrdmll0a7sglzf9ji0p5iqml11wrj1dypaf6ad6kbpnl3hj";
+ authors = [
+ "Manish Goregaokar <manishsmail@gmail.com>"
+ ];
+ dependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ {
+ 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;
+ }
+ ];
+ devDependencies = [
+ {
+ name = "serde";
+ packageId = "serde";
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "alloc" = [ "stable_deref_trait/alloc" "serde?/alloc" "zerofrom/alloc" ];
+ "default" = [ "alloc" "zerofrom" ];
+ "derive" = [ "dep:yoke-derive" "zerofrom/derive" ];
+ "serde" = [ "dep:serde" ];
+ "zerofrom" = [ "dep:zerofrom" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" "derive" "zerofrom" ];
+ };
+ "yoke-derive" = rec {
+ crateName = "yoke-derive";
+ version = "0.7.5";
+ edition = "2021";
+ sha256 = "0m4i4a7gy826bfvnqa9wy6sp90qf0as3wps3wb0smjaamn68g013";
+ 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";
+ features = [ "fold" ];
+ }
+ {
+ name = "synstructure";
+ packageId = "synstructure";
+ }
+ ];
+
+ };
+ "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 = [ "alloc" "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";
+ features = [ "fold" ];
+ }
+ {
+ name = "synstructure";
+ packageId = "synstructure";
+ }
+ ];
+
+ };
+ "zeroize" = rec {
+ crateName = "zeroize";
+ version = "1.8.1";
+ edition = "2021";
+ sha256 = "1pjdrmjwmszpxfd7r860jx54cyk94qk59x13sc307cvr5256glyf";
+ authors = [
+ "The RustCrypto Project Developers"
+ ];
+ features = {
+ "default" = [ "alloc" ];
+ "derive" = [ "zeroize_derive" ];
+ "serde" = [ "dep:serde" ];
+ "std" = [ "alloc" ];
+ "zeroize_derive" = [ "dep:zeroize_derive" ];
+ };
+ resolvedDefaultFeatures = [ "alloc" "default" ];
+ };
+ "zerovec" = rec {
+ crateName = "zerovec";
+ version = "0.10.4";
+ edition = "2021";
+ sha256 = "0yghix7n3fjfdppwghknzvx9v8cf826h2qal5nqvy8yzg4yqjaxa";
+ authors = [
+ "The ICU4X Project Developers"
+ ];
+ dependencies = [
+ {
+ name = "yoke";
+ packageId = "yoke";
+ optional = true;
+ }
+ {
+ name = "zerofrom";
+ packageId = "zerofrom";
+ usesDefaultFeatures = false;
+ }
+ {
+ name = "zerovec-derive";
+ packageId = "zerovec-derive";
+ optional = true;
+ usesDefaultFeatures = false;
+ }
+ ];
+ features = {
+ "bench" = [ "serde" "databake" ];
+ "databake" = [ "dep:databake" ];
+ "derive" = [ "dep:zerovec-derive" ];
+ "hashmap" = [ "dep:twox-hash" ];
+ "serde" = [ "dep:serde" ];
+ "yoke" = [ "dep:yoke" ];
+ };
+ resolvedDefaultFeatures = [ "derive" "yoke" ];
+ };
+ "zerovec-derive" = rec {
+ crateName = "zerovec-derive";
+ version = "0.10.3";
+ edition = "2021";
+ sha256 = "1ik322dys6wnap5d3gcsn09azmssq466xryn5czfm13mn7gsdbvf";
+ 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";
+ 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" ];
+ };
+ resolvedDefaultFeatures = [ "arrays" "default" "legacy" "zdict_builder" ];
+ };
+ "zstd-safe" = rec {
+ crateName = "zstd-safe";
+ version = "7.2.3";
+ edition = "2018";
+ sha256 = "08i7h3nsakflxb8cpygkjc74gn3k1z32ip2468a1wbnwzf91f1gk";
+ 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 = [ "arrays" "legacy" "std" "zdict_builder" ];
+ };
+ "zstd-sys" = rec {
+ crateName = "zstd-sys";
+ version = "2.0.14+zstd.1.5.7";
+ edition = "2018";
+ links = "zstd";
+ sha256 = "1r8v64bx8vmfh5nvvx9ldcy38pzbkkln9n0mmniw6jkfjba61c4g";
+ 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" ];
+ };
+ resolvedDefaultFeatures = [ "legacy" "std" "zdict_builder" ];
+ };
+ };
+
+ #
+ # 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)
+ #
+ };
+ }
+