−
− # 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 = {
− "libpijul" = rec {
− packageId = "libpijul";
− build = internal.buildRustCrateWithFeatures {
− packageId = "libpijul";
− };
−
− # Debug support which might change between releases.
− # File a bug if you depend on any for non-debug work!
− debug = internal.debugCrate { inherit packageId; };
− };
− "pijul" = rec {
− packageId = "pijul";
− build = internal.buildRustCrateWithFeatures {
− packageId = "pijul";
− };
−
− # Debug support which might change between releases.
− # File a bug if you depend on any for non-debug work!
− debug = internal.debugCrate { inherit packageId; };
− };
− "pijul-config" = rec {
− packageId = "pijul-config";
− build = internal.buildRustCrateWithFeatures {
− packageId = "pijul-config";
− };
−
− # Debug support which might change between releases.
− # File a bug if you depend on any for non-debug work!
− debug = internal.debugCrate { inherit packageId; };
− };
− "pijul-identity" = rec {
− packageId = "pijul-identity";
− build = internal.buildRustCrateWithFeatures {
− packageId = "pijul-identity";
− };
−
− # Debug support which might change between releases.
− # File a bug if you depend on any for non-debug work!
− debug = internal.debugCrate { inherit packageId; };
− };
− "pijul-interaction" = rec {
− packageId = "pijul-interaction";
− build = internal.buildRustCrateWithFeatures {
− packageId = "pijul-interaction";
− };
−
− # Debug support which might change between releases.
− # File a bug if you depend on any for non-debug work!
− debug = internal.debugCrate { inherit packageId; };
− };
− "pijul-macros" = rec {
− packageId = "pijul-macros";
− build = internal.buildRustCrateWithFeatures {
− packageId = "pijul-macros";
− };
−
− # Debug support which might change between releases.
− # File a bug if you depend on any for non-debug work!
− debug = internal.debugCrate { inherit packageId; };
− };
− "pijul-remote" = rec {
− packageId = "pijul-remote";
− build = internal.buildRustCrateWithFeatures {
− packageId = "pijul-remote";
− };
−
− # Debug support which might change between releases.
− # File a bug if you depend on any for non-debug work!
− debug = internal.debugCrate { inherit packageId; };
− };
− "pijul-repository" = rec {
− packageId = "pijul-repository";
− build = internal.buildRustCrateWithFeatures {
− packageId = "pijul-repository";
− };
−
− # 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.1";
− edition = "2021";
− sha256 = "1ymy18s9hs7ya1pjc9864l30wk8p2qfqdi7mhhcc5nfakxbij09j";
− authors = [
− "Jonas Schievink <jonasschievink@gmail.com>"
− "oyvindln <oyvindln@users.noreply.github.com>"
− ];
− features = {
− "core" = [ "dep:core" ];
− "default" = [ "std" ];
− "rustc-dep-of-std" = [ "core" ];
− };
− };
− "adler32" = rec {
− crateName = "adler32";
− version = "1.2.0";
− edition = "2018";
− sha256 = "0d7jq7jsjyhsgbhnfq5fvrlh9j0i9g1fqrl2735ibv5f75yjgqda";
− authors = [
− "Remi Rampin <remirampin@gmail.com>"
− ];
− features = {
− "compiler_builtins" = [ "dep:compiler_builtins" ];
− "core" = [ "dep:core" ];
− "default" = [ "std" ];
− "rustc-dep-of-std" = [ "core" "compiler_builtins" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "aes" = rec {
− crateName = "aes";
− version = "0.7.5";
− edition = "2018";
− sha256 = "1f0sdx2fsa8w3l7xzsyi9ry3shvnnsgc0znh50if9fm95vslg2wy";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "cipher";
− packageId = "cipher 0.3.0";
− }
− {
− name = "cpufeatures";
− packageId = "cpufeatures";
− target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
− }
− {
− name = "ctr";
− packageId = "ctr";
− optional = true;
− }
− {
− name = "opaque-debug";
− packageId = "opaque-debug";
− }
− ];
− devDependencies = [
− {
− name = "cipher";
− packageId = "cipher 0.3.0";
− features = [ "dev" ];
− }
− ];
− features = {
− "ctr" = [ "dep:ctr" ];
− };
− resolvedDefaultFeatures = [ "ctr" ];
− };
− "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 = [ "default" "perf-literal" "std" ];
− };
− "anstream" = rec {
− crateName = "anstream";
− version = "0.6.19";
− edition = "2021";
− sha256 = "0crr9a207dyn8k66xgvhvmlxm9raiwpss3syfa35c6265s9z26ih";
− 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.11";
− edition = "2021";
− sha256 = "1gbbzi0zbgff405q14v8hhpi1kz2drzl9a75r3qhks47lindjbl6";
− features = {
− "default" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "anstyle-parse" = rec {
− crateName = "anstyle-parse";
− version = "0.2.7";
− edition = "2021";
− sha256 = "1hhmkkfr95d462b3zf6yl2vfzdqfy5726ya572wwg8ha9y148xjf";
− libName = "anstyle_parse";
− dependencies = [
− {
− name = "utf8parse";
− packageId = "utf8parse";
− optional = true;
− }
− ];
− features = {
− "core" = [ "dep:arrayvec" ];
− "default" = [ "utf8" ];
− "utf8" = [ "dep:utf8parse" ];
− };
− resolvedDefaultFeatures = [ "default" "utf8" ];
− };
− "anstyle-query" = rec {
− crateName = "anstyle-query";
− version = "1.1.3";
− edition = "2021";
− sha256 = "1sgs2hq54wayrmpvy784ww2ccv9f8yhhpasv12z872bx0jvdx2vc";
− 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.9";
− edition = "2021";
− sha256 = "10n8mcgr89risdf35i73zc67aaa392bhggwzqlri1fv79297ags0";
− libName = "anstyle_wincon";
− dependencies = [
− {
− name = "anstyle";
− packageId = "anstyle";
− }
− {
− name = "once_cell_polyfill";
− packageId = "once_cell_polyfill";
− target = { target, features }: (target."windows" or false);
− }
− {
− name = "windows-sys";
− packageId = "windows-sys 0.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" ];
− };
− };
− "autocfg" = rec {
− crateName = "autocfg";
− version = "1.5.0";
− edition = "2015";
− sha256 = "1s77f98id9l4af4alklmzq46f21c980v13z2r1pcxx6bqgw0d1n0";
− authors = [
− "Josh Stone <cuviper@gmail.com>"
− ];
−
− };
− "backtrace" = rec {
− crateName = "backtrace";
− version = "0.3.75";
− edition = "2021";
− sha256 = "00hhizz29mvd7cdqyz5wrj98vqkihgcxmv2vl7z0d0f53qrac1k8";
− 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 0.52.6";
− target = { target, features }: ((target."windows" or false) || ("cygwin" == target."os" or null));
− }
− ];
− features = {
− "cpp_demangle" = [ "dep:cpp_demangle" ];
− "default" = [ "std" ];
− "ruzstd" = [ "dep:ruzstd" ];
− "serde" = [ "dep:serde" ];
− "serialize-serde" = [ "serde" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "base64 0.21.7" = rec {
− crateName = "base64";
− version = "0.21.7";
− edition = "2018";
− sha256 = "0rw52yvsk75kar9wgqfwgb414kvil1gn7mqkrhn9zf1537mpsacx";
− authors = [
− "Alice Maz <alice@alicemaz.com>"
− "Marshall Pierce <marshall@mpierce.org>"
− ];
− features = {
− "default" = [ "std" ];
− "std" = [ "alloc" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "std" ];
− };
− "base64 0.22.1" = rec {
− crateName = "base64";
− version = "0.22.1";
− edition = "2018";
− sha256 = "1imqzgh7bxcikp5vx3shqvw9j09g9ly0xr0jma0q66i52r7jbcvj";
− authors = [
− "Marshall Pierce <marshall@mpierce.org>"
− ];
− features = {
− "default" = [ "std" ];
− "std" = [ "alloc" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "std" ];
− };
− "base64ct" = rec {
− crateName = "base64ct";
− version = "1.8.0";
− edition = "2024";
− sha256 = "1fj4vc6ghy3j1120r7dwn4xw90crfy46b448g5pm9w6an13qn92m";
− authors = [
− "RustCrypto Developers"
− ];
− features = {
− "std" = [ "alloc" ];
− };
− };
− "bcrypt-pbkdf" = rec {
− crateName = "bcrypt-pbkdf";
− version = "0.10.0";
− edition = "2021";
− sha256 = "18pjhsy3m2v0silsp4mjzz8i92zrpqxk9b059zrnk1w8zvhw5ska";
− libName = "bcrypt_pbkdf";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "blowfish";
− packageId = "blowfish";
− features = [ "bcrypt" ];
− }
− {
− name = "pbkdf2";
− packageId = "pbkdf2 0.12.2";
− usesDefaultFeatures = false;
− }
− {
− name = "sha2";
− packageId = "sha2 0.10.9";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "default" = [ "alloc" "std" ];
− "zeroize" = [ "dep:zeroize" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "std" ];
− };
− "bincode" = 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 = {
− };
− };
− "bit-vec" = rec {
− crateName = "bit-vec";
− version = "0.6.3";
− edition = "2015";
− sha256 = "1ywqjnv60cdh1slhz67psnp422md6jdliji6alq0gmly2xm9p7rl";
− libName = "bit_vec";
− authors = [
− "Alexis Beingessner <a.beingessner@gmail.com>"
− ];
− features = {
− "default" = [ "std" ];
− "serde" = [ "dep:serde" ];
− "serde_no_std" = [ "serde/alloc" ];
− "serde_std" = [ "std" "serde/std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "bitflags 1.3.2" = rec {
− crateName = "bitflags";
− version = "1.3.2";
− edition = "2018";
− sha256 = "12ki6w8gn1ldq7yz9y680llwk5gmrhrzszaa17g1sbrw2r2qvwxy";
− authors = [
− "The Rust Project Developers"
− ];
− features = {
− "compiler_builtins" = [ "dep:compiler_builtins" ];
− "core" = [ "dep:core" ];
− "rustc-dep-of-std" = [ "core" "compiler_builtins" ];
− };
− resolvedDefaultFeatures = [ "default" ];
− };
− "bitflags 2.9.1" = rec {
− crateName = "bitflags";
− version = "2.9.1";
− edition = "2021";
− sha256 = "0rz9rpp5wywwqb3mxfkywh4drmzci2fch780q7lifbf6bsc5d3hv";
− authors = [
− "The Rust Project Developers"
− ];
− dependencies = [
− {
− name = "serde";
− packageId = "serde";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− 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 = [ "serde" "std" ];
− };
− "blake3" = rec {
− crateName = "blake3";
− version = "1.8.2";
− edition = "2021";
− sha256 = "1854x65zmjh9w9cfhyyyg0wmm2k5d87l13l4m7y40ajbkslam21q";
− authors = [
− "Jack O'Connor <oconnor663@gmail.com>"
− "Samuel Neves"
− ];
− dependencies = [
− {
− name = "arrayref";
− packageId = "arrayref";
− }
− {
− name = "arrayvec";
− packageId = "arrayvec";
− usesDefaultFeatures = false;
− }
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "constant_time_eq";
− packageId = "constant_time_eq";
− usesDefaultFeatures = false;
− }
− ];
− buildDependencies = [
− {
− name = "cc";
− packageId = "cc";
− }
− ];
− features = {
− "default" = [ "std" ];
− "digest" = [ "dep:digest" ];
− "mmap" = [ "std" "dep:memmap2" ];
− "rayon" = [ "dep:rayon-core" ];
− "serde" = [ "dep:serde" ];
− "traits-preview" = [ "dep:digest" ];
− "zeroize" = [ "dep:zeroize" "arrayvec/zeroize" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "block-buffer 0.10.4" = rec {
− crateName = "block-buffer";
− version = "0.10.4";
− edition = "2018";
− sha256 = "0w9sa2ypmrsqqvc20nhwr75wbb5cjr4kkyhpjm1z1lv2kdicfy1h";
− libName = "block_buffer";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "generic-array";
− packageId = "generic-array";
− }
− ];
−
− };
− "block-buffer 0.9.0" = rec {
− crateName = "block-buffer";
− version = "0.9.0";
− edition = "2018";
− sha256 = "1r4pf90s7d7lj1wdjhlnqa26vvbm6pnc33z138lxpnp9srpi2lj1";
− libName = "block_buffer";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "generic-array";
− packageId = "generic-array";
− }
− ];
− features = {
− "block-padding" = [ "dep:block-padding" ];
− };
− };
− "block-modes" = rec {
− crateName = "block-modes";
− version = "0.8.1";
− edition = "2018";
− sha256 = "13id7rw1lhi83i701za8w5is3a8qkf4vfigqw3f8jp8mxldkvc1c";
− libName = "block_modes";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "block-padding";
− packageId = "block-padding";
− }
− {
− name = "cipher";
− packageId = "cipher 0.3.0";
− }
− ];
− features = {
− "default" = [ "std" ];
− "std" = [ "alloc" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "std" ];
− };
− "block-padding" = rec {
− crateName = "block-padding";
− version = "0.2.1";
− edition = "2018";
− sha256 = "1bickjlmfw9iv63dp781n589rfybw879mik1va59833m1hvnqscd";
− libName = "block_padding";
− authors = [
− "RustCrypto Developers"
− ];
−
− };
− "blowfish" = rec {
− crateName = "blowfish";
− version = "0.9.1";
− edition = "2021";
− sha256 = "1mw7bvj3bg5w8vh9xw9xawqh7ixk2xwsxkj34ph96b9b1z6y44p4";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "byteorder";
− packageId = "byteorder";
− usesDefaultFeatures = false;
− }
− {
− name = "cipher";
− packageId = "cipher 0.4.4";
− }
− ];
− devDependencies = [
− {
− name = "cipher";
− packageId = "cipher 0.4.4";
− features = [ "dev" ];
− }
− ];
− features = {
− "zeroize" = [ "cipher/zeroize" ];
− };
− resolvedDefaultFeatures = [ "bcrypt" ];
− };
− "bs58" = rec {
− crateName = "bs58";
− version = "0.4.0";
− edition = "2018";
− sha256 = "1lr3vwzhhyica4y7rbkf26vr1h7vpjb1m6rml8zcqgw81c2y07vp";
− authors = [
− "Wim Looman <wim@nemo157.com>"
− ];
− features = {
− "check" = [ "sha2" ];
− "default" = [ "std" ];
− "sha2" = [ "dep:sha2" ];
− "std" = [ "alloc" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "std" ];
− };
− "bstr" = rec {
− crateName = "bstr";
− version = "1.12.0";
− edition = "2021";
− sha256 = "195i0gd7r7jg7a8spkmw08492n7rmiabcvz880xn2z8dkp8i6h93";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− ];
− dependencies = [
− {
− name = "memchr";
− packageId = "memchr";
− usesDefaultFeatures = false;
− }
− {
− name = "serde";
− packageId = "serde";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "alloc" = [ "memchr/alloc" "serde?/alloc" ];
− "default" = [ "std" "unicode" ];
− "serde" = [ "dep:serde" ];
− "std" = [ "alloc" "memchr/std" "serde?/std" ];
− "unicode" = [ "dep:regex-automata" ];
− };
− resolvedDefaultFeatures = [ "alloc" "std" ];
− };
− "bumpalo" = rec {
− crateName = "bumpalo";
− version = "3.19.0";
− edition = "2021";
− sha256 = "0hsdndvcpqbjb85ghrhska2qxvp9i75q2vb70hma9fxqawdy9ia6";
− authors = [
− "Nick Fitzgerald <fitzgen@gmail.com>"
− ];
− features = {
− "allocator-api2" = [ "dep:allocator-api2" ];
− "bench_allocator_api" = [ "allocator_api" "blink-alloc/nightly" ];
− "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" "i128" "std" ];
− };
− "bytes" = 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" ];
− };
− "canonical-path" = rec {
− crateName = "canonical-path";
− version = "2.0.2";
− edition = "2018";
− sha256 = "0vvsjda6ka5nz8zvx6r08zqi0j59sjccgcbjxj96xj764w9y1sg6";
− libName = "canonical_path";
− authors = [
− "Tony Arcieri <tony@iqlusion.io>"
− ];
−
− };
− "cc" = rec {
− crateName = "cc";
− version = "1.2.27";
− edition = "2018";
− sha256 = "1p5zfsl2mw3j46w58j2sxqkbfi49azilis5335pxlr2z3c3sm1yl";
− 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.1";
− edition = "2018";
− sha256 = "0s0jr5j797q1vqjcd41l0v5izlmlqm7lxy512b418xz5r65mfmcm";
− libName = "cfg_if";
− authors = [
− "Alex Crichton <alex@alexcrichton.com>"
− ];
− features = {
− "core" = [ "dep:core" ];
− "rustc-dep-of-std" = [ "core" ];
− };
− };
− "cfg_aliases" = rec {
− crateName = "cfg_aliases";
− version = "0.2.1";
− edition = "2018";
− sha256 = "092pxdc1dbgjb6qvh83gk56rkic2n2ybm4yvy76cgynmzi3zwfk1";
− authors = [
− "Zicklag <zicklag@katharostech.com>"
− ];
−
− };
− "chardetng" = rec {
− crateName = "chardetng";
− version = "0.1.17";
− edition = "2018";
− sha256 = "1spikjcnblwa5n1nnk46fxkwn86yfiqxgs47h4yaw23vbfvg1f0l";
− authors = [
− "Henri Sivonen <hsivonen@hsivonen.fi>"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "encoding_rs";
− packageId = "encoding_rs";
− usesDefaultFeatures = false;
− }
− {
− name = "memchr";
− packageId = "memchr";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "arrayvec" = [ "dep:arrayvec" ];
− "multithreading" = [ "rayon" "arrayvec" ];
− "rayon" = [ "dep:rayon" ];
− };
− };
− "cipher 0.3.0" = rec {
− crateName = "cipher";
− version = "0.3.0";
− edition = "2018";
− sha256 = "1dyzsv0c84rgz98d5glnhsz4320wl24x3bq511vnyf0mxir21rby";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "generic-array";
− packageId = "generic-array";
− }
− ];
− features = {
− "blobby" = [ "dep:blobby" ];
− "dev" = [ "blobby" ];
− };
− };
− "cipher 0.4.4" = rec {
− crateName = "cipher";
− version = "0.4.4";
− edition = "2021";
− sha256 = "1b9x9agg67xq5nq879z66ni4l08m6m3hqcshk37d4is4ysd3ngvp";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "crypto-common";
− packageId = "crypto-common";
− }
− {
− name = "inout";
− packageId = "inout";
− }
− ];
− features = {
− "blobby" = [ "dep:blobby" ];
− "block-padding" = [ "inout/block-padding" ];
− "dev" = [ "blobby" ];
− "rand_core" = [ "crypto-common/rand_core" ];
− "std" = [ "alloc" "crypto-common/std" "inout/std" ];
− "zeroize" = [ "dep:zeroize" ];
− };
− };
− "clap" = rec {
− crateName = "clap";
− version = "4.5.40";
− edition = "2021";
− crateBin = [];
− sha256 = "03widrb9d7a0bka6lsf9r9f65zhfbkdkhm8iryycx1c63mx8idj0";
− 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 = [ "cargo" "color" "default" "derive" "error-context" "help" "std" "suggestions" "usage" ];
− };
− "clap_builder" = rec {
− crateName = "clap_builder";
− version = "4.5.40";
− edition = "2021";
− sha256 = "17pmcjwk6rbkizj4y5vlhrnr7b5n1ffjgh75pj66j34zrq46rip0";
− 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 = [ "cargo" "color" "error-context" "help" "std" "suggestions" "usage" ];
− };
− "clap_complete" = rec {
− crateName = "clap_complete";
− version = "4.5.54";
− edition = "2021";
− sha256 = "0xsnd9p6v7zm49ipfl0mzqxizv0f0fbqid3j4r0avzh4vssb3mda";
− dependencies = [
− {
− name = "clap";
− packageId = "clap";
− usesDefaultFeatures = false;
− features = [ "std" ];
− }
− ];
− devDependencies = [
− {
− name = "clap";
− packageId = "clap";
− usesDefaultFeatures = false;
− features = [ "std" "derive" "help" ];
− }
− ];
− features = {
− "debug" = [ "clap/debug" ];
− "unstable-doc" = [ "unstable-dynamic" ];
− "unstable-dynamic" = [ "dep:clap_lex" "dep:shlex" "dep:is_executable" "clap/unstable-ext" ];
− "unstable-shell-tests" = [ "dep:completest" "dep:completest-pty" ];
− };
− resolvedDefaultFeatures = [ "default" ];
− };
− "clap_derive" = rec {
− crateName = "clap_derive";
− version = "4.5.40";
− edition = "2021";
− sha256 = "1kjp4928wy132inisss42750rzv0wasvbbf10w98agfcwix99iyj";
− 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.5";
− edition = "2021";
− sha256 = "0xb6pjza43irrl99axbhs12pxq4sr8x7xd36p703j57f5i3n2kxr";
−
− };
− "colorchoice" = rec {
− crateName = "colorchoice";
− version = "1.0.4";
− edition = "2021";
− sha256 = "0x8ymkz1xr77rcj1cfanhf416pc4v681gmkc9dzb3jqja7f62nxh";
−
− };
− "conpty" = rec {
− crateName = "conpty";
− version = "0.5.1";
− edition = "2021";
− sha256 = "1nmkhiysnssvbi4kqaq8cybb0ffngbl64kfpk8s86ihdg940caxp";
− authors = [
− "Maxim Zhiburt <zhiburt@gmail.com>"
− ];
− dependencies = [
− {
− name = "windows";
− packageId = "windows";
− features = [ "Win32_Foundation" "Win32_Security" "Win32_System_Threading" "Win32_System_Console" "Win32_System_Pipes" "Win32_System_SystemServices" "Win32_System_WindowsProgramming" "Win32_System_IO" "Win32_Storage_FileSystem" ];
− }
− ];
−
− };
− "console" = rec {
− crateName = "console";
− version = "0.15.11";
− edition = "2021";
− sha256 = "1n5gmsjk6isbnw6qss043377kln20lfwlmdk3vswpwpr21dwnk05";
− authors = [
− "Armin Ronacher <armin.ronacher@active-4.com>"
− ];
− dependencies = [
− {
− name = "encode_unicode";
− packageId = "encode_unicode";
− target = { target, features }: (target."windows" or false);
− }
− {
− name = "libc";
− packageId = "libc";
− }
− {
− name = "once_cell";
− packageId = "once_cell";
− }
− {
− name = "unicode-width";
− packageId = "unicode-width";
− optional = true;
− }
− {
− name = "windows-sys";
− packageId = "windows-sys 0.59.0";
− target = { target, features }: (target."windows" or false);
− features = [ "Win32_Foundation" "Win32_System_Console" "Win32_Storage_FileSystem" "Win32_UI_Input_KeyboardAndMouse" ];
− }
− ];
− features = {
− "default" = [ "unicode-width" "ansi-parsing" ];
− "unicode-width" = [ "dep:unicode-width" ];
− "windows-console-colors" = [ "ansi-parsing" ];
− };
− resolvedDefaultFeatures = [ "ansi-parsing" "default" "unicode-width" ];
− };
− "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 0.10.1" = rec {
− crateName = "core-foundation";
− version = "0.10.1";
− edition = "2021";
− sha256 = "1xjns6dqf36rni2x9f47b65grxwdm20kwdg9lhmzdrrkwadcv9mj";
− libName = "core_foundation";
− authors = [
− "The Servo Project Developers"
− ];
− dependencies = [
− {
− name = "core-foundation-sys";
− packageId = "core-foundation-sys";
− usesDefaultFeatures = false;
− }
− {
− name = "libc";
− packageId = "libc";
− }
− ];
− features = {
− "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" ];
− "with-uuid" = [ "dep:uuid" ];
− };
− resolvedDefaultFeatures = [ "default" "link" ];
− };
− "core-foundation 0.9.4" = 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));
− }
− ];
−
− };
− "crc32fast" = rec {
− crateName = "crc32fast";
− version = "1.4.2";
− edition = "2015";
− sha256 = "1czp7vif73b8xslr3c9yxysmh9ws2r8824qda7j47ffs9pcnjxx9";
− authors = [
− "Sam Rijs <srijs@airpost.net>"
− "Alex Crichton <alex@alexcrichton.com>"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− ];
− features = {
− "default" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "crossbeam-deque" = rec {
− crateName = "crossbeam-deque";
− version = "0.8.6";
− edition = "2021";
− sha256 = "0l9f1saqp1gn5qy0rxvkmz4m6n7fc0b3dbm6q1r5pmgpnyvi3lcx";
− libName = "crossbeam_deque";
− dependencies = [
− {
− name = "crossbeam-epoch";
− packageId = "crossbeam-epoch";
− usesDefaultFeatures = false;
− }
− {
− name = "crossbeam-utils";
− packageId = "crossbeam-utils";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "default" = [ "std" ];
− "std" = [ "crossbeam-epoch/std" "crossbeam-utils/std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "crossbeam-epoch" = rec {
− crateName = "crossbeam-epoch";
− version = "0.9.18";
− edition = "2021";
− sha256 = "03j2np8llwf376m3fxqx859mgp9f83hj1w34153c7a9c7i5ar0jv";
− libName = "crossbeam_epoch";
− dependencies = [
− {
− name = "crossbeam-utils";
− packageId = "crossbeam-utils";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "default" = [ "std" ];
− "loom" = [ "loom-crate" "crossbeam-utils/loom" ];
− "loom-crate" = [ "dep:loom-crate" ];
− "nightly" = [ "crossbeam-utils/nightly" ];
− "std" = [ "alloc" "crossbeam-utils/std" ];
− };
− resolvedDefaultFeatures = [ "alloc" "std" ];
− };
− "crossbeam-utils" = rec {
− crateName = "crossbeam-utils";
− version = "0.8.21";
− edition = "2021";
− sha256 = "0a3aa2bmc8q35fb67432w16wvi54sfmb69rk9h5bhd18vw0c99fh";
− libName = "crossbeam_utils";
− features = {
− "default" = [ "std" ];
− "loom" = [ "dep:loom" ];
− };
− resolvedDefaultFeatures = [ "std" ];
− };
− "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" ];
− };
− };
− "crypto-mac" = rec {
− crateName = "crypto-mac";
− version = "0.11.1";
− edition = "2018";
− sha256 = "05672ncc54h66vph42s0a42ljl69bwnqjh0x4xgj2v1395psildi";
− libName = "crypto_mac";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "generic-array";
− packageId = "generic-array";
− }
− {
− name = "subtle";
− packageId = "subtle";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "blobby" = [ "dep:blobby" ];
− "cipher" = [ "dep:cipher" ];
− "dev" = [ "blobby" ];
− };
− };
− "cryptovec" = rec {
− crateName = "cryptovec";
− version = "0.6.1";
− edition = "2015";
− sha256 = "1pqb2g1n3sx0d2cjiy06amcr2wlf9izwb4jj68nk5cmvlq9zmiyc";
− authors = [
− "Pierre-Étienne Meunier <pe@pijul.org>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− }
− {
− name = "winapi";
− packageId = "winapi";
− features = [ "basetsd" "minwindef" "memoryapi" ];
− }
− ];
−
− };
− "ctr" = rec {
− crateName = "ctr";
− version = "0.8.0";
− edition = "2018";
− sha256 = "1sk1aykwhkny92cnvl6s75dx3fyvfzw5xkd6xz3y7w5anhgvk6q4";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "cipher";
− packageId = "cipher 0.3.0";
− }
− ];
− devDependencies = [
− {
− name = "cipher";
− packageId = "cipher 0.3.0";
− features = [ "dev" ];
− }
− ];
−
− };
− "ctrlc" = rec {
− crateName = "ctrlc";
− version = "3.4.7";
− edition = "2021";
− sha256 = "0wvf4w2wbpdnhp828jqw435x5ly4k7k1y1vzxxbdddsrlj03gya6";
− authors = [
− "Antti Keränen <detegr@gmail.com>"
− ];
− dependencies = [
− {
− name = "nix";
− packageId = "nix 0.30.1";
− usesDefaultFeatures = false;
− target = { target, features }: (target."unix" or false);
− features = [ "fs" "signal" ];
− }
− {
− name = "windows-sys";
− packageId = "windows-sys 0.59.0";
− target = { target, features }: (target."windows" or false);
− features = [ "Win32_Foundation" "Win32_System_Threading" "Win32_Security" "Win32_System_Console" ];
− }
− ];
− devDependencies = [
− {
− name = "windows-sys";
− packageId = "windows-sys 0.59.0";
− target = {target, features}: (target."windows" or false);
− features = [ "Win32_Storage_FileSystem" "Win32_Foundation" "Win32_System_IO" "Win32_System_Console" ];
− }
− ];
− features = {
− };
− };
− "curve25519-dalek" = rec {
− crateName = "curve25519-dalek";
− version = "3.2.1";
− edition = "2015";
− sha256 = "1h0vcl8p4syvci9zxkn3h80h06xv1fyqgcrfwrv0lnbzjr9d1ych";
− libName = "curve25519_dalek";
− authors = [
− "Isis Lovecruft <isis@patternsinthevoid.net>"
− "Henry de Valence <hdevalence@hdevalence.ca>"
− ];
− dependencies = [
− {
− name = "byteorder";
− packageId = "byteorder";
− usesDefaultFeatures = false;
− features = [ "i128" ];
− }
− {
− name = "digest";
− packageId = "digest 0.9.0";
− usesDefaultFeatures = false;
− }
− {
− name = "rand_core";
− packageId = "rand_core 0.5.1";
− usesDefaultFeatures = false;
− }
− {
− name = "serde";
− packageId = "serde";
− optional = true;
− usesDefaultFeatures = false;
− features = [ "derive" ];
− }
− {
− name = "subtle";
− packageId = "subtle";
− usesDefaultFeatures = false;
− }
− {
− name = "zeroize";
− packageId = "zeroize";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "alloc" = [ "zeroize/alloc" ];
− "avx2_backend" = [ "simd_backend" ];
− "default" = [ "std" "u64_backend" ];
− "fiat-crypto" = [ "dep:fiat-crypto" ];
− "fiat_u32_backend" = [ "fiat-crypto" ];
− "fiat_u64_backend" = [ "fiat-crypto" ];
− "nightly" = [ "subtle/nightly" ];
− "packed_simd" = [ "dep:packed_simd" ];
− "serde" = [ "dep:serde" ];
− "simd_backend" = [ "nightly" "u64_backend" "packed_simd" ];
− "std" = [ "alloc" "subtle/std" "rand_core/std" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "serde" "std" "u64_backend" ];
− };
− "data-encoding" = rec {
− crateName = "data-encoding";
− version = "2.9.0";
− edition = "2018";
− sha256 = "0xm46371aw613ghc12ay4vsnn49hpcmcwlijnqy8lbp2bpd308ra";
− libName = "data_encoding";
− authors = [
− "Julien Cretin <git@ia0.eu>"
− ];
− features = {
− "default" = [ "std" ];
− "std" = [ "alloc" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "std" ];
− };
− "dbus" = rec {
− crateName = "dbus";
− version = "0.9.7";
− edition = "2018";
− sha256 = "06vdv4aarjs4w6byg9nqajr67c8qvlhk3153ic2i65pvp63ikchv";
− authors = [
− "David Henningsson <diwic@ubuntu.com>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− }
− {
− name = "libdbus-sys";
− packageId = "libdbus-sys";
− }
− {
− name = "winapi";
− packageId = "winapi";
− target = { target, features }: (target."windows" or false);
− features = [ "winsock2" ];
− }
− ];
− features = {
− "futures" = [ "futures-util" "futures-channel" ];
− "futures-channel" = [ "dep:futures-channel" ];
− "futures-executor" = [ "dep:futures-executor" ];
− "futures-util" = [ "dep:futures-util" ];
− "vendored" = [ "libdbus-sys/vendored" ];
− };
− };
− "dbus-secret-service" = rec {
− crateName = "dbus-secret-service";
− version = "4.0.3";
− edition = "2021";
− sha256 = "0jyqdya8zgddgwsrzf2gs9qqwz9043qv2idffgnjmnc18hvicaml";
− libName = "dbus_secret_service";
− authors = [
− "Daniel Brotsky <dev@brotsky.com>"
− ];
− dependencies = [
− {
− name = "dbus";
− packageId = "dbus";
− }
− {
− name = "futures-util";
− packageId = "futures-util";
− }
− {
− name = "num";
− packageId = "num";
− }
− {
− name = "once_cell";
− packageId = "once_cell";
− }
− {
− name = "rand";
− packageId = "rand 0.8.5";
− }
− ];
− features = {
− "crypto-openssl" = [ "dep:openssl" ];
− "crypto-rust" = [ "dep:aes" "dep:block-padding" "dep:cbc" "dep:sha2" "dep:hkdf" ];
− "vendored" = [ "dbus/vendored" "openssl?/vendored" ];
− };
− };
− "deranged" = rec {
− crateName = "deranged";
− version = "0.4.0";
− edition = "2021";
− sha256 = "13h6skwk411wzhf1l9l7d3yz5y6vg9d7s3dwhhb4a942r88nm7lw";
− authors = [
− "Jacob Pratt <jacob@jhpratt.dev>"
− ];
− dependencies = [
− {
− name = "powerfmt";
− packageId = "powerfmt";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "default" = [ "std" ];
− "macros" = [ "dep:deranged-macros" ];
− "num" = [ "dep:num-traits" ];
− "powerfmt" = [ "dep:powerfmt" ];
− "quickcheck" = [ "dep:quickcheck" "alloc" ];
− "rand" = [ "rand08" "rand09" ];
− "rand08" = [ "dep:rand08" ];
− "rand09" = [ "dep:rand09" ];
− "serde" = [ "dep:serde" ];
− "std" = [ "alloc" ];
− };
− resolvedDefaultFeatures = [ "alloc" "powerfmt" "std" ];
− };
− "dialoguer" = rec {
− crateName = "dialoguer";
− version = "0.10.4";
− edition = "2018";
− sha256 = "11rgzrhi677w9gf1r3ip2x361svdkjkr2m5dsfca9fcljacg5ijr";
− authors = [
− "Armin Ronacher <armin.ronacher@active-4.com>"
− "Pavan Kumar Sunkara <pavan.sss1991@gmail.com>"
− ];
− dependencies = [
− {
− name = "console";
− packageId = "console";
− }
− {
− name = "fuzzy-matcher";
− packageId = "fuzzy-matcher";
− optional = true;
− }
− {
− name = "shell-words";
− packageId = "shell-words";
− }
− {
− name = "tempfile";
− packageId = "tempfile";
− optional = true;
− }
− {
− name = "zeroize";
− packageId = "zeroize";
− optional = true;
− }
− ];
− features = {
− "default" = [ "editor" "password" ];
− "editor" = [ "tempfile" ];
− "fuzzy-matcher" = [ "dep:fuzzy-matcher" ];
− "fuzzy-select" = [ "fuzzy-matcher" ];
− "password" = [ "zeroize" ];
− "tempfile" = [ "dep:tempfile" ];
− "zeroize" = [ "dep:zeroize" ];
− };
− resolvedDefaultFeatures = [ "editor" "fuzzy-matcher" "fuzzy-select" "password" "tempfile" "zeroize" ];
− };
− "diffs" = rec {
− crateName = "diffs";
− version = "0.5.1";
− edition = "2018";
− sha256 = "01f8bp77kgahgvr3s2igmnmsxynjklq830lmp2wp2jyph6bnq4gz";
− authors = [
− "Pierre-Étienne Meunier <pe@pijul.org>"
− ];
−
− };
− "digest 0.10.7" = rec {
− crateName = "digest";
− version = "0.10.7";
− edition = "2018";
− sha256 = "14p2n6ih29x81akj097lvz7wi9b6b9hvls0lwrv7b6xwyy0s5ncy";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "block-buffer";
− packageId = "block-buffer 0.10.4";
− optional = true;
− }
− {
− name = "crypto-common";
− packageId = "crypto-common";
− }
− {
− name = "subtle";
− packageId = "subtle";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "blobby" = [ "dep:blobby" ];
− "block-buffer" = [ "dep:block-buffer" ];
− "const-oid" = [ "dep:const-oid" ];
− "core-api" = [ "block-buffer" ];
− "default" = [ "core-api" ];
− "dev" = [ "blobby" ];
− "mac" = [ "subtle" ];
− "oid" = [ "const-oid" ];
− "rand_core" = [ "crypto-common/rand_core" ];
− "std" = [ "alloc" "crypto-common/std" ];
− "subtle" = [ "dep:subtle" ];
− };
− resolvedDefaultFeatures = [ "block-buffer" "core-api" "default" "mac" "subtle" ];
− };
− "digest 0.9.0" = rec {
− crateName = "digest";
− version = "0.9.0";
− edition = "2018";
− sha256 = "0rmhvk33rgvd6ll71z8sng91a52rw14p0drjn1da0mqa138n1pfk";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "generic-array";
− packageId = "generic-array";
− }
− ];
− features = {
− "blobby" = [ "dep:blobby" ];
− "dev" = [ "blobby" ];
− "std" = [ "alloc" ];
− };
− resolvedDefaultFeatures = [ "alloc" "std" ];
− };
− "dirs" = rec {
− crateName = "dirs";
− version = "3.0.2";
− edition = "2015";
− sha256 = "028kqy0vrbfgrk1yc1flq2fqh8snyg17qlygawm0r79w211s1fih";
− authors = [
− "Simon Ochsenreither <simon@ochsenreither.de>"
− ];
− dependencies = [
− {
− name = "dirs-sys";
− packageId = "dirs-sys";
− }
− ];
−
− };
− "dirs-next" = rec {
− crateName = "dirs-next";
− version = "2.0.0";
− edition = "2018";
− sha256 = "1q9kr151h9681wwp6is18750ssghz6j9j7qm7qi1ngcwy7mzi35r";
− libName = "dirs_next";
− authors = [
− "The @xdg-rs members"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "dirs-sys-next";
− packageId = "dirs-sys-next";
− }
− ];
−
− };
− "dirs-sys" = rec {
− crateName = "dirs-sys";
− version = "0.3.7";
− edition = "2015";
− sha256 = "19md1cnkazham8a6kh22v12d8hh3raqahfk6yb043vrjr68is78v";
− libName = "dirs_sys";
− authors = [
− "Simon Ochsenreither <simon@ochsenreither.de>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "redox_users";
− packageId = "redox_users";
− usesDefaultFeatures = false;
− target = { target, features }: ("redox" == target."os" or null);
− }
− {
− name = "winapi";
− packageId = "winapi";
− target = { target, features }: (target."windows" or false);
− features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ];
− }
− ];
−
− };
− "dirs-sys-next" = rec {
− crateName = "dirs-sys-next";
− version = "0.1.2";
− edition = "2018";
− sha256 = "0kavhavdxv4phzj4l0psvh55hszwnr0rcz8sxbvx20pyqi2a3gaf";
− libName = "dirs_sys_next";
− authors = [
− "The @xdg-rs members"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "redox_users";
− packageId = "redox_users";
− usesDefaultFeatures = false;
− target = { target, features }: ("redox" == target."os" or null);
− }
− {
− name = "winapi";
− packageId = "winapi";
− target = { target, features }: (target."windows" or false);
− features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ];
− }
− ];
−
− };
− "displaydoc" = rec {
− crateName = "displaydoc";
− version = "0.2.5";
− edition = "2021";
− sha256 = "1q0alair462j21iiqwrr21iabkfnb13d6x5w95lkdg21q2xrqdlp";
− procMacro = true;
− authors = [
− "Jane Lusby <jlusby@yaah.dev>"
− ];
− dependencies = [
− {
− name = "proc-macro2";
− packageId = "proc-macro2";
− }
− {
− name = "quote";
− packageId = "quote";
− }
− {
− name = "syn";
− packageId = "syn";
− }
− ];
− features = {
− "default" = [ "std" ];
− };
− };
− "duplicate" = rec {
− crateName = "duplicate";
− version = "2.0.0";
− edition = "2021";
− sha256 = "1cb7334vx9l6nlvn7cgly0j035l7dq7fwxbxwwrqn8jf05grpbwp";
− procMacro = true;
− authors = [
− "Emad Jacob Maroun <emoun.open@gmail.com>"
− ];
− dependencies = [
− {
− name = "heck";
− packageId = "heck";
− optional = true;
− }
− {
− name = "proc-macro2";
− packageId = "proc-macro2";
− optional = true;
− }
− {
− name = "proc-macro2-diagnostics";
− packageId = "proc-macro2-diagnostics";
− optional = true;
− }
− ];
− features = {
− "default" = [ "pretty_errors" "module_disambiguation" ];
− "module_disambiguation" = [ "dep:heck" ];
− "pretty_errors" = [ "dep:proc-macro2-diagnostics" "dep:proc-macro2" ];
− };
− resolvedDefaultFeatures = [ "default" "module_disambiguation" "pretty_errors" ];
− };
− "ed25519" = rec {
− crateName = "ed25519";
− version = "1.5.3";
− edition = "2021";
− sha256 = "1rzydm5wd8szkddx3g55w4vm86y1ika8qp8qwckada5vf1fg7kwi";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "serde";
− packageId = "serde";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "signature";
− packageId = "signature";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "alloc" = [ "pkcs8/alloc" ];
− "default" = [ "std" ];
− "pem" = [ "pkcs8/pem" ];
− "pkcs8" = [ "dep:pkcs8" ];
− "serde" = [ "dep:serde" ];
− "serde_bytes" = [ "serde" "serde_bytes_crate" "std" ];
− "serde_bytes_crate" = [ "dep:serde_bytes_crate" ];
− "std" = [ "signature/std" ];
− "zeroize" = [ "dep:zeroize" ];
− };
− resolvedDefaultFeatures = [ "serde" "std" ];
− };
− "ed25519-dalek" = rec {
− crateName = "ed25519-dalek";
− version = "1.0.1";
− edition = "2018";
− sha256 = "17bsriciv93nkm39z22w7mr0h2a3hnbmgf378v4c895gvkkblqn7";
− libName = "ed25519_dalek";
− authors = [
− "isis lovecruft <isis@patternsinthevoid.net>"
− ];
− dependencies = [
− {
− name = "curve25519-dalek";
− packageId = "curve25519-dalek";
− usesDefaultFeatures = false;
− }
− {
− name = "ed25519";
− packageId = "ed25519";
− usesDefaultFeatures = false;
− }
− {
− name = "rand";
− packageId = "rand 0.7.3";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "serde";
− packageId = "serde";
− rename = "serde_crate";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "serde_bytes";
− packageId = "serde_bytes";
− optional = true;
− }
− {
− name = "sha2";
− packageId = "sha2 0.9.9";
− usesDefaultFeatures = false;
− }
− {
− name = "zeroize";
− packageId = "zeroize";
− usesDefaultFeatures = false;
− features = [ "zeroize_derive" ];
− }
− ];
− devDependencies = [
− {
− name = "rand";
− packageId = "rand 0.7.3";
− }
− {
− name = "serde";
− packageId = "serde";
− rename = "serde_crate";
− features = [ "derive" ];
− }
− ];
− features = {
− "alloc" = [ "curve25519-dalek/alloc" "rand/alloc" "zeroize/alloc" ];
− "asm" = [ "sha2/asm" ];
− "batch" = [ "merlin" "rand" ];
− "batch_deterministic" = [ "merlin" "rand" "rand_core" ];
− "default" = [ "std" "rand" "u64_backend" ];
− "merlin" = [ "dep:merlin" ];
− "nightly" = [ "curve25519-dalek/nightly" ];
− "rand" = [ "dep:rand" ];
− "rand_core" = [ "dep:rand_core" ];
− "serde" = [ "serde_crate" "serde_bytes" "ed25519/serde" ];
− "serde_bytes" = [ "dep:serde_bytes" ];
− "serde_crate" = [ "dep:serde_crate" ];
− "simd_backend" = [ "curve25519-dalek/simd_backend" ];
− "std" = [ "curve25519-dalek/std" "ed25519/std" "serde_crate/std" "sha2/std" "rand/std" ];
− "u32_backend" = [ "curve25519-dalek/u32_backend" ];
− "u64_backend" = [ "curve25519-dalek/u64_backend" ];
− };
− resolvedDefaultFeatures = [ "default" "rand" "serde" "serde_bytes" "serde_crate" "std" "u64_backend" ];
− };
− "edit" = rec {
− crateName = "edit";
− version = "0.1.5";
− edition = "2018";
− sha256 = "02dan6bg9pcj42ny48g8fq9f76w30c826n4gihy1d1s7fq78cr7k";
− authors = [
− "Milkey Mouse <milkeymouse@meme.institute>"
− ];
− dependencies = [
− {
− name = "tempfile";
− packageId = "tempfile";
− }
− {
− name = "which";
− packageId = "which";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "better-path" = [ "which" ];
− "default" = [ "better-path" ];
− "quoted-env" = [ "shell-words" ];
− "shell-words" = [ "dep:shell-words" ];
− "which" = [ "dep:which" ];
− };
− resolvedDefaultFeatures = [ "better-path" "default" "which" ];
− };
− "either" = rec {
− crateName = "either";
− version = "1.15.0";
− edition = "2021";
− sha256 = "069p1fknsmzn9llaizh77kip0pqmcwpdsykv2x30xpjyija5gis8";
− authors = [
− "bluss"
− ];
− features = {
− "default" = [ "std" ];
− "serde" = [ "dep:serde" ];
− "use_std" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "encode_unicode" = rec {
− crateName = "encode_unicode";
− version = "1.0.0";
− edition = "2021";
− sha256 = "1h5j7j7byi289by63s3w4a8b3g6l5ccdrws7a67nn07vdxj77ail";
− authors = [
− "Torbjørn Birch Moltu <t.b.moltu@lyse.net>"
− ];
− features = {
− "ascii" = [ "dep:ascii" ];
− "default" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "encoding_rs" = rec {
− crateName = "encoding_rs";
− version = "0.8.35";
− edition = "2018";
− sha256 = "1wv64xdrr9v37rqqdjsyb8l8wzlcbab80ryxhrszvnj59wy0y0vm";
− authors = [
− "Henri Sivonen <hsivonen@hsivonen.fi>"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− ];
− features = {
− "any_all_workaround" = [ "dep:any_all_workaround" ];
− "default" = [ "alloc" ];
− "fast-legacy-encode" = [ "fast-hangul-encode" "fast-hanja-encode" "fast-kanji-encode" "fast-gb-hanzi-encode" "fast-big5-hanzi-encode" ];
− "serde" = [ "dep:serde" ];
− "simd-accel" = [ "any_all_workaround" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" ];
− };
− "env_filter" = rec {
− crateName = "env_filter";
− version = "0.1.3";
− edition = "2021";
− sha256 = "1l4p6f845cylripc3zkxa0lklk8rn2q86fqm522p6l2cknjhavhq";
− dependencies = [
− {
− name = "log";
− packageId = "log";
− features = [ "std" ];
− }
− {
− name = "regex";
− packageId = "regex";
− optional = true;
− usesDefaultFeatures = false;
− features = [ "std" "perf" ];
− }
− ];
− features = {
− "default" = [ "regex" ];
− "regex" = [ "dep:regex" ];
− };
− resolvedDefaultFeatures = [ "regex" ];
− };
− "env_logger 0.11.8" = rec {
− crateName = "env_logger";
− version = "0.11.8";
− edition = "2021";
− sha256 = "17q6zbjam4wq75fa3m4gvvmv3rj3ch25abwbm84b28a0j3q67j0k";
− dependencies = [
− {
− name = "anstream";
− packageId = "anstream";
− optional = true;
− usesDefaultFeatures = false;
− features = [ "wincon" ];
− }
− {
− name = "anstyle";
− packageId = "anstyle";
− optional = true;
− }
− {
− name = "env_filter";
− packageId = "env_filter";
− usesDefaultFeatures = false;
− }
− {
− name = "jiff";
− packageId = "jiff";
− optional = true;
− usesDefaultFeatures = false;
− features = [ "std" ];
− }
− {
− name = "log";
− packageId = "log";
− features = [ "std" ];
− }
− ];
− features = {
− "auto-color" = [ "color" "anstream/auto" ];
− "color" = [ "dep:anstream" "dep:anstyle" ];
− "default" = [ "auto-color" "humantime" "regex" ];
− "humantime" = [ "dep:jiff" ];
− "kv" = [ "log/kv" ];
− "regex" = [ "env_filter/regex" ];
− "unstable-kv" = [ "kv" ];
− };
− resolvedDefaultFeatures = [ "auto-color" "color" "default" "humantime" "regex" ];
− };
− "env_logger 0.8.4" = rec {
− crateName = "env_logger";
− version = "0.8.4";
− edition = "2018";
− sha256 = "1qzw8g11dbdfi7ixm44ldykwcqsxqkh8vx5cgpd88zmclgz8g4d1";
− authors = [
− "The Rust Project Developers"
− ];
− dependencies = [
− {
− name = "log";
− packageId = "log";
− features = [ "std" ];
− }
− {
− name = "regex";
− packageId = "regex";
− optional = true;
− usesDefaultFeatures = false;
− features = [ "std" "perf" ];
− }
− ];
− features = {
− "atty" = [ "dep:atty" ];
− "default" = [ "termcolor" "atty" "humantime" "regex" ];
− "humantime" = [ "dep:humantime" ];
− "regex" = [ "dep:regex" ];
− "termcolor" = [ "dep:termcolor" ];
− };
− resolvedDefaultFeatures = [ "regex" ];
− };
− "equivalent" = rec {
− crateName = "equivalent";
− version = "1.0.2";
− edition = "2015";
− sha256 = "03swzqznragy8n0x31lqc78g2af054jwivp7lkrbrc0khz74lyl7";
−
− };
− "errno 0.2.8" = rec {
− crateName = "errno";
− version = "0.2.8";
− edition = "2015";
− sha256 = "18cnqgk8r6lq1n5cfy3bryiyz9zkqr10dxj49sa3fkzfamih8fgn";
− authors = [
− "Chris Wong <lambda.fairy@gmail.com>"
− ];
− dependencies = [
− {
− name = "errno-dragonfly";
− packageId = "errno-dragonfly";
− target = { target, features }: ("dragonfly" == target."os" or null);
− }
− {
− 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 = "winapi";
− packageId = "winapi";
− target = { target, features }: (target."windows" or false);
− features = [ "errhandlingapi" "minwindef" "ntdef" "winbase" ];
− }
− ];
− features = {
− "default" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "errno 0.3.13" = rec {
− crateName = "errno";
− version = "0.3.13";
− edition = "2018";
− sha256 = "1bd5g3srn66zr3bspac0150bvpg1s7zi6zwhwhlayivciz12m3kp";
− authors = [
− "Chris Wong <lambda.fairy@gmail.com>"
− "Dan Gohman <dev@sunfishcode.online>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: ("hermit" == target."os" or null);
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: ("wasi" == target."os" or null);
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "windows-sys";
− packageId = "windows-sys 0.60.2";
− target = { target, features }: (target."windows" or false);
− features = [ "Win32_Foundation" "Win32_System_Diagnostics_Debug" ];
− }
− ];
− features = {
− "default" = [ "std" ];
− "std" = [ "libc/std" ];
− };
− resolvedDefaultFeatures = [ "std" ];
− };
− "errno-dragonfly" = rec {
− crateName = "errno-dragonfly";
− version = "0.1.2";
− edition = "2018";
− sha256 = "1grrmcm6q8512hkq5yzch3yv8wafflc2apbmsaabiyk44yqz2s5a";
− libName = "errno_dragonfly";
− authors = [
− "Michael Neumann <mneumann@ntecs.de>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− }
− ];
− buildDependencies = [
− {
− name = "cc";
− packageId = "cc";
− }
− ];
−
− };
− "expectrl" = rec {
− crateName = "expectrl";
− version = "0.7.1";
− edition = "2021";
− sha256 = "0ykiqkh2r3ky1244r4j0x49hqawdrfdh1mai6fdapz2kb6989rzd";
− authors = [
− "Maxim Zhiburt <zhiburt@gmail.com>"
− ];
− dependencies = [
− {
− name = "conpty";
− packageId = "conpty";
− target = { target, features }: (target."windows" or false);
− }
− {
− name = "nix";
− packageId = "nix 0.26.4";
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "ptyprocess";
− packageId = "ptyprocess";
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "regex";
− packageId = "regex";
− }
− ];
− features = {
− "async" = [ "futures-lite" "futures-timer" "async-io" "blocking" ];
− "async-io" = [ "dep:async-io" ];
− "blocking" = [ "dep:blocking" ];
− "futures-lite" = [ "dep:futures-lite" ];
− "futures-timer" = [ "dep:futures-timer" ];
− "polling" = [ "dep:polling" "dep:crossbeam-channel" ];
− };
− };
− "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" ];
− }
− ];
−
− };
− "flate2" = rec {
− crateName = "flate2";
− version = "1.1.2";
− edition = "2018";
− sha256 = "07abz7v50lkdr5fjw8zaw2v8gm2vbppc0f7nqm8x3v3gb6wpsgaa";
− authors = [
− "Alex Crichton <alex@alexcrichton.com>"
− "Josh Triplett <josh@joshtriplett.org>"
− ];
− dependencies = [
− {
− name = "crc32fast";
− packageId = "crc32fast";
− }
− {
− name = "miniz_oxide";
− packageId = "miniz_oxide";
− optional = true;
− usesDefaultFeatures = false;
− features = [ "with-alloc" ];
− }
− {
− name = "miniz_oxide";
− packageId = "miniz_oxide";
− usesDefaultFeatures = false;
− target = { target, features }: (("wasm32" == target."arch" or null) && (!("emscripten" == target."os" or null)));
− features = [ "with-alloc" ];
− }
− ];
− features = {
− "any_zlib" = [ "any_impl" ];
− "cloudflare-zlib-sys" = [ "dep:cloudflare-zlib-sys" ];
− "cloudflare_zlib" = [ "any_zlib" "cloudflare-zlib-sys" ];
− "default" = [ "rust_backend" ];
− "libz-ng-sys" = [ "dep:libz-ng-sys" ];
− "libz-rs-sys" = [ "dep:libz-rs-sys" ];
− "libz-sys" = [ "dep:libz-sys" ];
− "miniz-sys" = [ "rust_backend" ];
− "miniz_oxide" = [ "dep:miniz_oxide" ];
− "rust_backend" = [ "miniz_oxide" "any_impl" ];
− "zlib" = [ "any_zlib" "libz-sys" ];
− "zlib-default" = [ "any_zlib" "libz-sys/default" ];
− "zlib-ng" = [ "any_zlib" "libz-ng-sys" ];
− "zlib-ng-compat" = [ "zlib" "libz-sys/zlib-ng" ];
− "zlib-rs" = [ "any_zlib" "libz-rs-sys" ];
− };
− resolvedDefaultFeatures = [ "any_impl" "default" "miniz_oxide" "rust_backend" ];
− };
− "fnv" = rec {
− crateName = "fnv";
− version = "1.0.7";
− edition = "2015";
− sha256 = "1hc2mcqha06aibcaza94vbi81j6pr9a1bbxrxjfhc91zin8yr7iz";
− libPath = "lib.rs";
− authors = [
− "Alex Crichton <alex@alexcrichton.com>"
− ];
− features = {
− "default" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "foldhash" = rec {
− crateName = "foldhash";
− version = "0.1.5";
− edition = "2021";
− sha256 = "1wisr1xlc2bj7hk4rgkcjkz3j2x4dhd1h9lwk7mj8p71qpdgbi6r";
− authors = [
− "Orson Peters <orsonpeters@gmail.com>"
− ];
− features = {
− "default" = [ "std" ];
− };
− };
− "foreign-types" = rec {
− crateName = "foreign-types";
− version = "0.3.2";
− edition = "2015";
− sha256 = "1cgk0vyd7r45cj769jym4a6s7vwshvd0z4bqrb92q1fwibmkkwzn";
− libName = "foreign_types";
− authors = [
− "Steven Fackler <sfackler@gmail.com>"
− ];
− dependencies = [
− {
− name = "foreign-types-shared";
− packageId = "foreign-types-shared";
− }
− ];
−
− };
− "foreign-types-shared" = rec {
− crateName = "foreign-types-shared";
− version = "0.1.1";
− edition = "2015";
− sha256 = "0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00";
− libName = "foreign_types_shared";
− authors = [
− "Steven Fackler <sfackler@gmail.com>"
− ];
−
− };
− "form_urlencoded" = rec {
− crateName = "form_urlencoded";
− version = "1.2.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" ];
− };
− "fs2" = rec {
− crateName = "fs2";
− version = "0.4.3";
− edition = "2015";
− sha256 = "04v2hwk7035c088f19mfl5b1lz84gnvv2hv6m935n0hmirszqr4m";
− authors = [
− "Dan Burkert <dan@danburkert.com>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "winapi";
− packageId = "winapi";
− target = { target, features }: (target."windows" or false);
− features = [ "handleapi" "processthreadsapi" "winerror" "fileapi" "winbase" "std" ];
− }
− ];
−
− };
− "futures" = rec {
− crateName = "futures";
− version = "0.3.31";
− edition = "2018";
− sha256 = "0xh8ddbkm9jy8kc5gbvjp9a4b6rqqxvc8471yb2qaz5wm2qhgg35";
− dependencies = [
− {
− name = "futures-channel";
− packageId = "futures-channel";
− usesDefaultFeatures = false;
− features = [ "sink" ];
− }
− {
− name = "futures-core";
− packageId = "futures-core";
− usesDefaultFeatures = false;
− }
− {
− name = "futures-executor";
− packageId = "futures-executor";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "futures-io";
− packageId = "futures-io";
− usesDefaultFeatures = false;
− }
− {
− name = "futures-sink";
− packageId = "futures-sink";
− usesDefaultFeatures = false;
− }
− {
− name = "futures-task";
− packageId = "futures-task";
− usesDefaultFeatures = false;
− }
− {
− name = "futures-util";
− packageId = "futures-util";
− usesDefaultFeatures = false;
− features = [ "sink" ];
− }
− ];
− features = {
− "alloc" = [ "futures-core/alloc" "futures-task/alloc" "futures-sink/alloc" "futures-channel/alloc" "futures-util/alloc" ];
− "async-await" = [ "futures-util/async-await" "futures-util/async-await-macro" ];
− "bilock" = [ "futures-util/bilock" ];
− "compat" = [ "std" "futures-util/compat" ];
− "default" = [ "std" "async-await" "executor" ];
− "executor" = [ "std" "futures-executor/std" ];
− "futures-executor" = [ "dep:futures-executor" ];
− "io-compat" = [ "compat" "futures-util/io-compat" ];
− "std" = [ "alloc" "futures-core/std" "futures-task/std" "futures-io/std" "futures-sink/std" "futures-util/std" "futures-util/io" "futures-util/channel" ];
− "thread-pool" = [ "executor" "futures-executor/thread-pool" ];
− "unstable" = [ "futures-core/unstable" "futures-task/unstable" "futures-channel/unstable" "futures-io/unstable" "futures-util/unstable" ];
− "write-all-vectored" = [ "futures-util/write-all-vectored" ];
− };
− resolvedDefaultFeatures = [ "alloc" "async-await" "default" "executor" "futures-executor" "std" ];
− };
− "futures-channel" = rec {
− crateName = "futures-channel";
− version = "0.3.31";
− edition = "2018";
− sha256 = "040vpqpqlbk099razq8lyn74m0f161zd0rp36hciqrwcg2zibzrd";
− libName = "futures_channel";
− dependencies = [
− {
− name = "futures-core";
− packageId = "futures-core";
− usesDefaultFeatures = false;
− }
− {
− name = "futures-sink";
− packageId = "futures-sink";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "alloc" = [ "futures-core/alloc" ];
− "default" = [ "std" ];
− "futures-sink" = [ "dep:futures-sink" ];
− "sink" = [ "futures-sink" ];
− "std" = [ "alloc" "futures-core/std" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "futures-sink" "sink" "std" ];
− };
− "futures-core" = rec {
− crateName = "futures-core";
− version = "0.3.31";
− edition = "2018";
− sha256 = "0gk6yrxgi5ihfanm2y431jadrll00n5ifhnpx090c2f2q1cr1wh5";
− libName = "futures_core";
− features = {
− "default" = [ "std" ];
− "portable-atomic" = [ "dep:portable-atomic" ];
− "std" = [ "alloc" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "std" ];
− };
− "futures-executor" = rec {
− crateName = "futures-executor";
− version = "0.3.31";
− edition = "2018";
− sha256 = "17vcci6mdfzx4gbk0wx64chr2f13wwwpvyf3xd5fb1gmjzcx2a0y";
− libName = "futures_executor";
− dependencies = [
− {
− name = "futures-core";
− packageId = "futures-core";
− usesDefaultFeatures = false;
− }
− {
− name = "futures-task";
− packageId = "futures-task";
− usesDefaultFeatures = false;
− }
− {
− name = "futures-util";
− packageId = "futures-util";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "default" = [ "std" ];
− "num_cpus" = [ "dep:num_cpus" ];
− "std" = [ "futures-core/std" "futures-task/std" "futures-util/std" ];
− "thread-pool" = [ "std" "num_cpus" ];
− };
− resolvedDefaultFeatures = [ "std" ];
− };
− "futures-io" = rec {
− crateName = "futures-io";
− version = "0.3.31";
− edition = "2018";
− sha256 = "1ikmw1yfbgvsychmsihdkwa8a1knank2d9a8dk01mbjar9w1np4y";
− libName = "futures_io";
− features = {
− "default" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "std" ];
− };
− "futures-macro" = rec {
− crateName = "futures-macro";
− version = "0.3.31";
− edition = "2018";
− sha256 = "0l1n7kqzwwmgiznn0ywdc5i24z72zvh9q1dwps54mimppi7f6bhn";
− procMacro = true;
− libName = "futures_macro";
− dependencies = [
− {
− name = "proc-macro2";
− packageId = "proc-macro2";
− }
− {
− name = "quote";
− packageId = "quote";
− }
− {
− name = "syn";
− packageId = "syn";
− 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" ];
− };
− "fuzzy-matcher" = rec {
− crateName = "fuzzy-matcher";
− version = "0.3.7";
− edition = "2018";
− sha256 = "153csv8rsk2vxagb68kpmiknvdd3bzqj03x805khckck28rllqal";
− libName = "fuzzy_matcher";
− authors = [
− "Jinzhou Zhang <lotabout@gmail.com>"
− ];
− dependencies = [
− {
− name = "thread_local";
− packageId = "thread_local";
− }
− ];
− features = {
− };
− resolvedDefaultFeatures = [ "default" ];
− };
− "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.1.16" = rec {
− crateName = "getrandom";
− version = "0.1.16";
− edition = "2018";
− sha256 = "1kjzmz60qx9mn615ks1akjbf36n3lkv27zfwbcam0fzmj56wphwg";
− authors = [
− "The Rand Project Developers"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "wasi";
− packageId = "wasi 0.9.0+wasi-snapshot-preview1";
− target = { target, features }: ("wasi" == target."os" or null);
− }
− ];
− features = {
− "bindgen" = [ "dep:bindgen" ];
− "compiler_builtins" = [ "dep:compiler_builtins" ];
− "core" = [ "dep:core" ];
− "js-sys" = [ "dep:js-sys" ];
− "log" = [ "dep:log" ];
− "rustc-dep-of-std" = [ "compiler_builtins" "core" ];
− "stdweb" = [ "dep:stdweb" ];
− "test-in-browser" = [ "wasm-bindgen" ];
− "wasm-bindgen" = [ "bindgen" "js-sys" ];
− };
− resolvedDefaultFeatures = [ "std" ];
− };
− "getrandom 0.2.16" = rec {
− crateName = "getrandom";
− version = "0.2.16";
− edition = "2018";
− sha256 = "14l5aaia20cc6cc08xdlhrzmfcylmrnprwnna20lqf746pqzjprk";
− authors = [
− "The Rand Project Developers"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "js-sys";
− packageId = "js-sys";
− optional = true;
− target = { target, features }: ((("wasm32" == target."arch" or null) || ("wasm64" == target."arch" or null)) && ("unknown" == target."os" or null));
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "wasi";
− packageId = "wasi 0.11.1+wasi-snapshot-preview1";
− usesDefaultFeatures = false;
− target = { target, features }: ("wasi" == target."os" or null);
− }
− {
− name = "wasm-bindgen";
− packageId = "wasm-bindgen";
− optional = true;
− usesDefaultFeatures = false;
− target = { target, features }: ((("wasm32" == target."arch" or null) || ("wasm64" == target."arch" or null)) && ("unknown" == target."os" or null));
− }
− ];
− features = {
− "compiler_builtins" = [ "dep:compiler_builtins" ];
− "core" = [ "dep:core" ];
− "js" = [ "wasm-bindgen" "js-sys" ];
− "js-sys" = [ "dep:js-sys" ];
− "rustc-dep-of-std" = [ "compiler_builtins" "core" "libc/rustc-dep-of-std" "wasi/rustc-dep-of-std" ];
− "wasm-bindgen" = [ "dep:wasm-bindgen" ];
− };
− resolvedDefaultFeatures = [ "js" "js-sys" "std" "wasm-bindgen" ];
− };
− "getrandom 0.3.3" = rec {
− crateName = "getrandom";
− version = "0.3.3";
− edition = "2021";
− sha256 = "1x6jl875zp6b2b6qp9ghc84b0l76bvng2lvm8zfcmwjl7rb5w516";
− authors = [
− "The Rand Project Developers"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: ((("linux" == target."os" or null) || ("android" == target."os" or null)) && (!((("linux" == target."os" or null) && ("" == target."env" or null)) || ("custom" == target."getrandom_backend" or null) || ("linux_raw" == target."getrandom_backend" or null) || ("rdrand" == target."getrandom_backend" or null) || ("rndr" == target."getrandom_backend" or null))));
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: (("dragonfly" == target."os" or null) || ("freebsd" == target."os" or null) || ("hurd" == target."os" or null) || ("illumos" == target."os" or null) || ("cygwin" == target."os" or null) || (("horizon" == target."os" or null) && ("arm" == target."arch" or null)));
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: (("haiku" == target."os" or null) || ("redox" == target."os" or null) || ("nto" == target."os" or null) || ("aix" == target."os" or null));
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: (("ios" == target."os" or null) || ("visionos" == target."os" or null) || ("watchos" == target."os" or null) || ("tvos" == target."os" or null));
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: (("macos" == target."os" or null) || ("openbsd" == target."os" or null) || ("vita" == target."os" or null) || ("emscripten" == target."os" or null));
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: ("netbsd" == target."os" or null);
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: ("solaris" == target."os" or null);
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = { target, features }: ("vxworks" == target."os" or null);
− }
− {
− name = "r-efi";
− packageId = "r-efi";
− usesDefaultFeatures = false;
− target = { target, features }: (("uefi" == target."os" or null) && ("efi_rng" == target."getrandom_backend" or null));
− }
− {
− name = "wasi";
− packageId = "wasi 0.14.2+wasi-0.2.4";
− usesDefaultFeatures = false;
− target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p2" == target."env" or null));
− }
− ];
− features = {
− "rustc-dep-of-std" = [ "dep:compiler_builtins" "dep:core" ];
− "wasm_js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
− };
− resolvedDefaultFeatures = [ "std" ];
− };
− "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" ];
− };
− "git2" = rec {
− crateName = "git2";
− version = "0.20.2";
− edition = "2018";
− sha256 = "0451zzmvblvlrj6y6pgdsxrqh42hi789n3k9lp0hslmi6fhhgsrd";
− authors = [
− "Josh Triplett <josh@joshtriplett.org>"
− "Alex Crichton <alex@alexcrichton.com>"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 2.9.1";
− }
− {
− name = "libc";
− packageId = "libc";
− }
− {
− name = "libgit2-sys";
− packageId = "libgit2-sys";
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "openssl-probe";
− packageId = "openssl-probe";
− optional = true;
− target = { target, features }: ((target."unix" or false) && (!("macos" == target."os" or null)));
− }
− {
− name = "openssl-sys";
− packageId = "openssl-sys";
− optional = true;
− target = { target, features }: ((target."unix" or false) && (!("macos" == target."os" or null)));
− }
− {
− name = "url";
− packageId = "url";
− }
− ];
− features = {
− "default" = [ "ssh" "https" ];
− "https" = [ "libgit2-sys/https" "openssl-sys" "openssl-probe" ];
− "openssl-probe" = [ "dep:openssl-probe" ];
− "openssl-sys" = [ "dep:openssl-sys" ];
− "ssh" = [ "libgit2-sys/ssh" ];
− "vendored-libgit2" = [ "libgit2-sys/vendored" ];
− "vendored-openssl" = [ "openssl-sys/vendored" "libgit2-sys/vendored-openssl" ];
− "zlib-ng-compat" = [ "libgit2-sys/zlib-ng-compat" ];
− };
− resolvedDefaultFeatures = [ "default" "https" "openssl-probe" "openssl-sys" "ssh" ];
− };
− "globset" = rec {
− crateName = "globset";
− version = "0.4.16";
− edition = "2021";
− sha256 = "1xa9ivqs74imf1q288spxh49g6iw2mn3x9snibdgapazzj6h58al";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− ];
− dependencies = [
− {
− name = "aho-corasick";
− packageId = "aho-corasick";
− }
− {
− name = "bstr";
− packageId = "bstr";
− usesDefaultFeatures = false;
− features = [ "std" ];
− }
− {
− name = "log";
− packageId = "log";
− optional = true;
− }
− {
− name = "regex-automata";
− packageId = "regex-automata";
− usesDefaultFeatures = false;
− features = [ "std" "perf" "syntax" "meta" "nfa" "hybrid" ];
− }
− {
− name = "regex-syntax";
− packageId = "regex-syntax";
− usesDefaultFeatures = false;
− features = [ "std" ];
− }
− ];
− features = {
− "default" = [ "log" ];
− "log" = [ "dep:log" ];
− "serde" = [ "dep:serde" ];
− "serde1" = [ "serde" ];
− };
− resolvedDefaultFeatures = [ "default" "log" ];
− };
− "h2" = rec {
− crateName = "h2";
− version = "0.3.26";
− edition = "2018";
− sha256 = "1s7msnfv7xprzs6xzfj5sg6p8bjcdpcqcmjjbkd345cyi1x55zl1";
− authors = [
− "Carl Lerche <me@carllerche.com>"
− "Sean McArthur <sean@seanmonstar.com>"
− ];
− dependencies = [
− {
− name = "bytes";
− packageId = "bytes";
− }
− {
− name = "fnv";
− packageId = "fnv";
− }
− {
− name = "futures-core";
− packageId = "futures-core";
− usesDefaultFeatures = false;
− }
− {
− name = "futures-sink";
− packageId = "futures-sink";
− usesDefaultFeatures = false;
− }
− {
− name = "futures-util";
− packageId = "futures-util";
− usesDefaultFeatures = false;
− }
− {
− name = "http";
− packageId = "http";
− }
− {
− 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.5";
− edition = "2021";
− sha256 = "189qaczmjxnikm9db748xyhiw04kpmhm9xj9k9hg0sgx7pjwyacj";
− authors = [
− "Amanieu d'Antras <amanieu@gmail.com>"
− ];
− dependencies = [
− {
− name = "foldhash";
− packageId = "foldhash";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "alloc" = [ "dep:alloc" ];
− "allocator-api2" = [ "dep:allocator-api2" ];
− "core" = [ "dep:core" ];
− "default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
− "default-hasher" = [ "dep:foldhash" ];
− "equivalent" = [ "dep:equivalent" ];
− "nightly" = [ "bumpalo/allocator_api" ];
− "rayon" = [ "dep:rayon" ];
− "rustc-dep-of-std" = [ "nightly" "core" "alloc" "rustc-internal-api" ];
− "serde" = [ "dep:serde" ];
− };
− resolvedDefaultFeatures = [ "default-hasher" "inline-more" ];
− };
− "heck" = rec {
− crateName = "heck";
− version = "0.5.0";
− edition = "2021";
− sha256 = "1sjmpsdl8czyh9ywl3qcsfsq9a307dg4ni2vnlwgnzzqhc4y0113";
−
− };
− "hermit-abi" = rec {
− crateName = "hermit-abi";
− version = "0.5.2";
− edition = "2021";
− sha256 = "1744vaqkczpwncfy960j2hxrbjl1q01csm84jpd9dajbdr2yy3zw";
− libName = "hermit_abi";
− authors = [
− "Stefan Lankes"
− ];
− features = {
− "alloc" = [ "dep:alloc" ];
− "core" = [ "dep:core" ];
− "rustc-dep-of-std" = [ "core" "alloc" ];
− };
− resolvedDefaultFeatures = [ "default" ];
− };
− "hmac" = rec {
− crateName = "hmac";
− version = "0.11.0";
− edition = "2018";
− sha256 = "16z61aibdg4di40sqi4ks2s4rz6r29w4sx4gvblfph3yxch26aia";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "crypto-mac";
− packageId = "crypto-mac";
− }
− {
− name = "digest";
− packageId = "digest 0.9.0";
− }
− ];
− devDependencies = [
− {
− name = "crypto-mac";
− packageId = "crypto-mac";
− features = [ "dev" ];
− }
− ];
− features = {
− "std" = [ "crypto-mac/std" ];
− };
− };
− "home" = rec {
− crateName = "home";
− version = "0.5.11";
− edition = "2021";
− sha256 = "1kxb4k87a9sayr8jipr7nq9wpgmjk4hk4047hmf9kc24692k75aq";
− authors = [
− "Brian Anderson <andersrb@gmail.com>"
− ];
− dependencies = [
− {
− name = "windows-sys";
− packageId = "windows-sys 0.59.0";
− target = { target, features }: (target."windows" or false);
− features = [ "Win32_Foundation" "Win32_UI_Shell" "Win32_System_Com" ];
− }
− ];
−
− };
− "http" = rec {
− crateName = "http";
− version = "0.2.12";
− edition = "2018";
− sha256 = "1w81s4bcbmcj9bjp7mllm8jlz6b31wzvirz8bgpzbqkpwmbvn730";
− authors = [
− "Alex Crichton <alex@alexcrichton.com>"
− "Carl Lerche <me@carllerche.com>"
− "Sean McArthur <sean@seanmonstar.com>"
− ];
− dependencies = [
− {
− name = "bytes";
− packageId = "bytes";
− }
− {
− name = "fnv";
− packageId = "fnv";
− }
− {
− name = "itoa";
− packageId = "itoa";
− }
− ];
−
− };
− "http-body" = rec {
− crateName = "http-body";
− version = "0.4.6";
− edition = "2018";
− sha256 = "1lmyjfk6bqk6k9gkn1dxq770sb78pqbqshga241hr5p995bb5skw";
− libName = "http_body";
− authors = [
− "Carl Lerche <me@carllerche.com>"
− "Lucio Franco <luciofranco14@gmail.com>"
− "Sean McArthur <sean@seanmonstar.com>"
− ];
− dependencies = [
− {
− name = "bytes";
− packageId = "bytes";
− }
− {
− name = "http";
− packageId = "http";
− }
− {
− 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>"
− ];
−
− };
− "human-panic" = rec {
− crateName = "human-panic";
− version = "2.0.2";
− edition = "2021";
− sha256 = "1xzi9gj73s8x79kjffhdmjg14320xaxjhv1s0i02f215ldk4mf40";
− libName = "human_panic";
− dependencies = [
− {
− name = "anstream";
− packageId = "anstream";
− optional = true;
− }
− {
− name = "anstyle";
− packageId = "anstyle";
− optional = true;
− }
− {
− name = "backtrace";
− packageId = "backtrace";
− }
− {
− name = "os_info";
− packageId = "os_info";
− }
− {
− name = "serde";
− packageId = "serde";
− }
− {
− name = "serde_derive";
− packageId = "serde_derive";
− }
− {
− name = "toml";
− packageId = "toml";
− usesDefaultFeatures = false;
− features = [ "display" ];
− }
− {
− name = "uuid";
− packageId = "uuid";
− usesDefaultFeatures = false;
− features = [ "v4" ];
− }
− ];
− features = {
− "color" = [ "dep:anstyle" "dep:anstream" ];
− "default" = [ "color" ];
− };
− resolvedDefaultFeatures = [ "color" "default" ];
− };
− "hyper" = rec {
− crateName = "hyper";
− version = "0.14.32";
− edition = "2018";
− sha256 = "1rvcb0smz8q1i0y6p7rwxr02x5sclfg2hhxf3g0774zczn0cgps1";
− authors = [
− "Sean McArthur <sean@seanmonstar.com>"
− ];
− dependencies = [
− {
− name = "bytes";
− packageId = "bytes";
− }
− {
− name = "futures-channel";
− packageId = "futures-channel";
− }
− {
− name = "futures-core";
− packageId = "futures-core";
− usesDefaultFeatures = false;
− }
− {
− name = "futures-util";
− packageId = "futures-util";
− usesDefaultFeatures = false;
− }
− {
− name = "h2";
− packageId = "h2";
− optional = true;
− }
− {
− name = "http";
− packageId = "http";
− }
− {
− name = "http-body";
− packageId = "http-body";
− }
− {
− name = "httparse";
− packageId = "httparse";
− }
− {
− name = "httpdate";
− packageId = "httpdate";
− }
− {
− name = "itoa";
− packageId = "itoa";
− }
− {
− name = "pin-project-lite";
− packageId = "pin-project-lite";
− }
− {
− name = "socket2";
− packageId = "socket2";
− optional = true;
− features = [ "all" ];
− }
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "sync" ];
− }
− {
− name = "tower-service";
− packageId = "tower-service";
− }
− {
− name = "tracing";
− packageId = "tracing";
− usesDefaultFeatures = false;
− features = [ "std" ];
− }
− {
− name = "want";
− packageId = "want";
− }
− ];
− devDependencies = [
− {
− name = "futures-util";
− packageId = "futures-util";
− usesDefaultFeatures = false;
− features = [ "alloc" ];
− }
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "fs" "macros" "io-std" "io-util" "rt" "rt-multi-thread" "sync" "time" "test-util" ];
− }
− ];
− features = {
− "ffi" = [ "libc" ];
− "full" = [ "client" "http1" "http2" "server" "stream" "runtime" ];
− "h2" = [ "dep:h2" ];
− "http2" = [ "h2" ];
− "libc" = [ "dep:libc" ];
− "runtime" = [ "tcp" "tokio/rt" "tokio/time" ];
− "socket2" = [ "dep:socket2" ];
− "tcp" = [ "socket2" "tokio/net" "tokio/rt" "tokio/time" ];
− };
− resolvedDefaultFeatures = [ "client" "default" "h2" "http1" "http2" "runtime" "server" "socket2" "tcp" ];
− };
− "hyper-tls" = rec {
− crateName = "hyper-tls";
− version = "0.5.0";
− edition = "2018";
− sha256 = "01crgy13102iagakf6q4mb75dprzr7ps1gj0l5hxm1cvm7gks66n";
− libName = "hyper_tls";
− authors = [
− "Sean McArthur <sean@seanmonstar.com>"
− ];
− dependencies = [
− {
− name = "bytes";
− packageId = "bytes";
− }
− {
− name = "hyper";
− packageId = "hyper";
− usesDefaultFeatures = false;
− features = [ "tcp" "client" ];
− }
− {
− name = "native-tls";
− packageId = "native-tls";
− }
− {
− name = "tokio";
− packageId = "tokio";
− }
− {
− name = "tokio-native-tls";
− packageId = "tokio-native-tls";
− }
− ];
− devDependencies = [
− {
− name = "hyper";
− packageId = "hyper";
− usesDefaultFeatures = false;
− features = [ "http1" ];
− }
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "io-std" "macros" "io-util" ];
− }
− ];
− features = {
− "vendored" = [ "native-tls/vendored" ];
− };
− };
− "icu_collections" = rec {
− crateName = "icu_collections";
− version = "2.0.0";
− edition = "2021";
− sha256 = "0izfgypv1hsxlz1h8fc2aak641iyvkak16aaz5b4aqg3s3sp4010";
− authors = [
− "The ICU4X Project Developers"
− ];
− dependencies = [
− {
− name = "displaydoc";
− packageId = "displaydoc";
− usesDefaultFeatures = false;
− }
− {
− name = "potential_utf";
− packageId = "potential_utf";
− usesDefaultFeatures = false;
− features = [ "zerovec" ];
− }
− {
− name = "yoke";
− packageId = "yoke";
− usesDefaultFeatures = false;
− features = [ "derive" ];
− }
− {
− name = "zerofrom";
− packageId = "zerofrom";
− usesDefaultFeatures = false;
− features = [ "derive" ];
− }
− {
− name = "zerovec";
− packageId = "zerovec";
− usesDefaultFeatures = false;
− features = [ "derive" "yoke" ];
− }
− ];
− features = {
− "alloc" = [ "zerovec/alloc" ];
− "databake" = [ "dep:databake" "zerovec/databake" ];
− "serde" = [ "dep:serde" "zerovec/serde" "potential_utf/serde" "alloc" ];
− };
− };
− "icu_locale_core" = rec {
− crateName = "icu_locale_core";
− version = "2.0.0";
− edition = "2021";
− sha256 = "02phv7vwhyx6vmaqgwkh2p4kc2kciykv2px6g4h8glxfrh02gphc";
− 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 = {
− "databake" = [ "dep:databake" "alloc" ];
− "serde" = [ "dep:serde" "tinystr/serde" "alloc" ];
− "zerovec" = [ "dep:zerovec" "tinystr/zerovec" ];
− };
− resolvedDefaultFeatures = [ "zerovec" ];
− };
− "icu_normalizer" = rec {
− crateName = "icu_normalizer";
− version = "2.0.0";
− edition = "2021";
− sha256 = "0ybrnfnxx4sf09gsrxri8p48qifn54il6n3dq2xxgx4dw7l80s23";
− 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";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "icu_provider";
− packageId = "icu_provider";
− usesDefaultFeatures = false;
− }
− {
− name = "smallvec";
− packageId = "smallvec";
− usesDefaultFeatures = false;
− }
− {
− name = "zerovec";
− packageId = "zerovec";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "compiled_data" = [ "dep:icu_normalizer_data" "icu_properties?/compiled_data" "icu_provider/baked" ];
− "datagen" = [ "serde" "dep:databake" "icu_properties" "icu_collections/databake" "zerovec/databake" "icu_properties?/datagen" "icu_provider/export" ];
− "default" = [ "compiled_data" "utf8_iter" "utf16_iter" ];
− "icu_properties" = [ "dep:icu_properties" ];
− "serde" = [ "dep:serde" "icu_collections/serde" "zerovec/serde" "icu_properties?/serde" "icu_provider/serde" ];
− "utf16_iter" = [ "dep:utf16_iter" "write16" ];
− "utf8_iter" = [ "dep:utf8_iter" ];
− "write16" = [ "dep:write16" ];
− };
− resolvedDefaultFeatures = [ "compiled_data" ];
− };
− "icu_normalizer_data" = rec {
− crateName = "icu_normalizer_data";
− version = "2.0.0";
− edition = "2021";
− sha256 = "1lvjpzxndyhhjyzd1f6vi961gvzhj244nribfpdqxjdgjdl0s880";
− authors = [
− "The ICU4X Project Developers"
− ];
−
− };
− "icu_properties" = rec {
− crateName = "icu_properties";
− version = "2.0.1";
− edition = "2021";
− sha256 = "0az349pjg8f18lrjbdmxcpg676a7iz2ibc09d2wfz57b3sf62v01";
− authors = [
− "The ICU4X Project Developers"
− ];
− dependencies = [
− {
− name = "displaydoc";
− packageId = "displaydoc";
− usesDefaultFeatures = false;
− }
− {
− name = "icu_collections";
− packageId = "icu_collections";
− usesDefaultFeatures = false;
− }
− {
− name = "icu_locale_core";
− packageId = "icu_locale_core";
− usesDefaultFeatures = false;
− features = [ "zerovec" ];
− }
− {
− name = "icu_properties_data";
− packageId = "icu_properties_data";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "icu_provider";
− packageId = "icu_provider";
− usesDefaultFeatures = false;
− }
− {
− name = "potential_utf";
− packageId = "potential_utf";
− usesDefaultFeatures = false;
− features = [ "zerovec" ];
− }
− {
− name = "zerotrie";
− packageId = "zerotrie";
− usesDefaultFeatures = false;
− features = [ "yoke" "zerofrom" ];
− }
− {
− name = "zerovec";
− packageId = "zerovec";
− usesDefaultFeatures = false;
− features = [ "derive" "yoke" ];
− }
− ];
− features = {
− "alloc" = [ "zerovec/alloc" "icu_collections/alloc" ];
− "compiled_data" = [ "dep:icu_properties_data" "icu_provider/baked" ];
− "datagen" = [ "serde" "dep:databake" "potential_utf/databake" "zerovec/databake" "icu_collections/databake" "icu_locale_core/databake" "zerotrie/databake" "icu_provider/export" ];
− "default" = [ "compiled_data" ];
− "serde" = [ "dep:serde" "icu_locale_core/serde" "potential_utf/serde" "zerovec/serde" "icu_collections/serde" "icu_provider/serde" "zerotrie/serde" ];
− "unicode_bidi" = [ "dep:unicode-bidi" ];
− };
− resolvedDefaultFeatures = [ "compiled_data" ];
− };
− "icu_properties_data" = rec {
− crateName = "icu_properties_data";
− version = "2.0.1";
− edition = "2021";
− sha256 = "0cnn3fkq6k88w7p86w7hsd1254s4sl783rpz4p6hlccq74a5k119";
− authors = [
− "The ICU4X Project Developers"
− ];
−
− };
− "icu_provider" = rec {
− crateName = "icu_provider";
− version = "2.0.0";
− edition = "2021";
− sha256 = "1bz5v02gxv1i06yhdhs2kbwxkw3ny9r2vvj9j288fhazgfi0vj03";
− authors = [
− "The ICU4X Project Developers"
− ];
− dependencies = [
− {
− name = "displaydoc";
− packageId = "displaydoc";
− usesDefaultFeatures = false;
− }
− {
− name = "icu_locale_core";
− packageId = "icu_locale_core";
− 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 = "zerotrie";
− packageId = "zerotrie";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "zerovec";
− packageId = "zerovec";
− usesDefaultFeatures = false;
− features = [ "derive" ];
− }
− ];
− features = {
− "alloc" = [ "icu_locale_core/alloc" "zerovec/alloc" "zerotrie/alloc" ];
− "baked" = [ "zerotrie" ];
− "deserialize_bincode_1" = [ "serde" "dep:bincode" "std" ];
− "deserialize_json" = [ "serde" "dep:serde_json" ];
− "deserialize_postcard_1" = [ "serde" "dep:postcard" ];
− "export" = [ "serde" "dep:erased-serde" "dep:databake" "std" "sync" "dep:postcard" "zerovec/databake" ];
− "logging" = [ "dep:log" ];
− "serde" = [ "dep:serde" "yoke/serde" ];
− "std" = [ "alloc" ];
− "zerotrie" = [ "dep:zerotrie" ];
− };
− resolvedDefaultFeatures = [ "baked" "zerotrie" ];
− };
− "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" "default" "std" ];
− };
− "idna_adapter" = rec {
− crateName = "idna_adapter";
− version = "1.2.1";
− edition = "2021";
− sha256 = "0i0339pxig6mv786nkqcxnwqa87v4m94b2653f6k3aj0jmhfkjis";
− authors = [
− "The rust-url developers"
− ];
− dependencies = [
− {
− name = "icu_normalizer";
− packageId = "icu_normalizer";
− usesDefaultFeatures = false;
− }
− {
− name = "icu_properties";
− packageId = "icu_properties";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "compiled_data" = [ "icu_normalizer/compiled_data" "icu_properties/compiled_data" ];
− };
− resolvedDefaultFeatures = [ "compiled_data" ];
− };
− "ignore" = rec {
− crateName = "ignore";
− version = "0.4.23";
− edition = "2021";
− sha256 = "0jysggjfmlxbg60vhhiz4pb8jfb7cnq5swdsvxknbs7x18wgv2bd";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− ];
− dependencies = [
− {
− name = "crossbeam-deque";
− packageId = "crossbeam-deque";
− }
− {
− name = "globset";
− packageId = "globset";
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "memchr";
− packageId = "memchr";
− }
− {
− name = "regex-automata";
− packageId = "regex-automata";
− usesDefaultFeatures = false;
− features = [ "std" "perf" "syntax" "meta" "nfa" "hybrid" "dfa-onepass" ];
− }
− {
− name = "same-file";
− packageId = "same-file";
− }
− {
− name = "walkdir";
− packageId = "walkdir";
− }
− {
− name = "winapi-util";
− packageId = "winapi-util";
− target = { target, features }: (target."windows" or false);
− }
− ];
− features = {
− };
− };
− "imara-diff" = rec {
− crateName = "imara-diff";
− version = "0.1.8";
− edition = "2021";
− sha256 = "1lmk5dpha2fhahrnsrgavxn1qz6ydp1w8jz8fpvlb28p89ylplqp";
− libName = "imara_diff";
− authors = [
− "pascalkuthe <pascalkuthe@pm.me>"
− ];
− dependencies = [
− {
− name = "hashbrown";
− packageId = "hashbrown";
− usesDefaultFeatures = false;
− features = [ "default-hasher" "inline-more" ];
− }
− ];
− features = {
− "default" = [ "unified_diff" ];
− };
− resolvedDefaultFeatures = [ "default" "unified_diff" ];
− };
− "indexmap" = rec {
− crateName = "indexmap";
− version = "2.9.0";
− edition = "2021";
− sha256 = "07m15a571yywmvqyb7ms717q9n42b46badbpsmx215jrg7dhv9yf";
− 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" ];
− "serde" = [ "dep:serde" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "indicatif" = rec {
− crateName = "indicatif";
− version = "0.17.11";
− edition = "2021";
− sha256 = "0db2b2r79r9x8x4lysq1ci9xm13c0xg0sqn3z960yh2bk2430fqq";
− dependencies = [
− {
− name = "console";
− packageId = "console";
− usesDefaultFeatures = false;
− features = [ "ansi-parsing" ];
− }
− {
− name = "number_prefix";
− packageId = "number_prefix";
− }
− {
− name = "portable-atomic";
− packageId = "portable-atomic";
− }
− {
− name = "unicode-segmentation";
− packageId = "unicode-segmentation";
− optional = true;
− }
− {
− name = "unicode-width";
− packageId = "unicode-width";
− optional = true;
− }
− {
− name = "web-time";
− packageId = "web-time";
− target = { target, features }: ("wasm32" == target."arch" or null);
− }
− ];
− features = {
− "default" = [ "unicode-width" "console/unicode-width" ];
− "futures" = [ "dep:futures-core" ];
− "improved_unicode" = [ "unicode-segmentation" "unicode-width" "console/unicode-width" ];
− "in_memory" = [ "vt100" ];
− "rayon" = [ "dep:rayon" ];
− "tokio" = [ "dep:tokio" ];
− "unicode-segmentation" = [ "dep:unicode-segmentation" ];
− "unicode-width" = [ "dep:unicode-width" ];
− "vt100" = [ "dep:vt100" ];
− };
− resolvedDefaultFeatures = [ "default" "improved_unicode" "unicode-segmentation" "unicode-width" ];
− };
− "inout" = rec {
− crateName = "inout";
− version = "0.1.4";
− edition = "2021";
− sha256 = "008xfl1jn9rxsq19phnhbimccf4p64880jmnpg59wqi07kk117w7";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "generic-array";
− packageId = "generic-array";
− }
− ];
− features = {
− "block-padding" = [ "dep:block-padding" ];
− "std" = [ "block-padding/std" ];
− };
− };
− "instant" = rec {
− crateName = "instant";
− version = "0.1.13";
− edition = "2018";
− sha256 = "08h27kzvb5jw74mh0ajv0nv9ggwvgqm8ynjsn2sa9jsks4cjh970";
− authors = [
− "sebcrozet <developer@crozet.re>"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− ];
− features = {
− "js-sys" = [ "dep:js-sys" ];
− "stdweb" = [ "dep:stdweb" ];
− "wasm-bindgen" = [ "js-sys" "wasm-bindgen_rs" "web-sys" ];
− "wasm-bindgen_rs" = [ "dep:wasm-bindgen_rs" ];
− "web-sys" = [ "dep:web-sys" ];
− };
− };
− "ipnet" = rec {
− crateName = "ipnet";
− version = "2.11.0";
− edition = "2018";
− sha256 = "0c5i9sfi2asai28m8xp48k5gvwkqrg5ffpi767py6mzsrswv17s6";
− authors = [
− "Kris Price <kris@krisprice.nz>"
− ];
− features = {
− "default" = [ "std" ];
− "heapless" = [ "dep:heapless" ];
− "json" = [ "serde" "schemars" ];
− "schemars" = [ "dep:schemars" ];
− "ser_as_str" = [ "heapless" ];
− "serde" = [ "dep:serde" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "is-docker" = rec {
− crateName = "is-docker";
− version = "0.2.0";
− edition = "2015";
− sha256 = "1cyibrv6817cqcpf391m327ss40xlbik8wxcv5h9pj9byhksx2wj";
− libName = "is_docker";
− authors = [
− "Sean Larkin <TheLarkInn@users.noreply.github.com>"
− ];
− dependencies = [
− {
− name = "once_cell";
− packageId = "once_cell";
− }
− ];
−
− };
− "is-wsl" = rec {
− crateName = "is-wsl";
− version = "0.4.0";
− edition = "2015";
− sha256 = "19bs5pq221d4bknnwiqqkqrnsx2in0fsk8fylxm1747iim4hjdhp";
− libName = "is_wsl";
− authors = [
− "Sean Larkin <TheLarkInn@users.noreply.github.com>"
− ];
− dependencies = [
− {
− name = "is-docker";
− packageId = "is-docker";
− }
− {
− name = "once_cell";
− packageId = "once_cell";
− }
− ];
−
− };
− "is_terminal_polyfill" = rec {
− crateName = "is_terminal_polyfill";
− version = "1.70.1";
− edition = "2021";
− sha256 = "1kwfgglh91z33kl0w5i338mfpa3zs0hidq5j4ny4rmjwrikchhvr";
− features = {
− };
− resolvedDefaultFeatures = [ "default" ];
− };
− "itoa" = rec {
− crateName = "itoa";
− version = "1.0.15";
− edition = "2018";
− sha256 = "0b4fj9kz54dr3wam0vprjwgygvycyw8r0qwg7vp19ly8b2w16psa";
− authors = [
− "David Tolnay <dtolnay@gmail.com>"
− ];
− features = {
− "no-panic" = [ "dep:no-panic" ];
− };
− };
− "jiff" = rec {
− crateName = "jiff";
− version = "0.2.15";
− edition = "2021";
− sha256 = "0jby6kbs2ra33ji0rx4swcp66jzmcvgszc5v4izwfsgbn6w967xy";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− ];
− dependencies = [
− {
− name = "jiff-static";
− packageId = "jiff-static";
− optional = true;
− }
− {
− name = "jiff-static";
− packageId = "jiff-static";
− target = { target, features }: false;
− }
− {
− name = "jiff-tzdb-platform";
− packageId = "jiff-tzdb-platform";
− optional = true;
− target = { target, features }: ((target."windows" or false) || (builtins.elem "wasm" target."family"));
− }
− {
− name = "log";
− packageId = "log";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "portable-atomic";
− packageId = "portable-atomic";
− usesDefaultFeatures = false;
− target = { target, features }: (!("ptr" == target."has_atomic" or null));
− }
− {
− name = "portable-atomic-util";
− packageId = "portable-atomic-util";
− usesDefaultFeatures = false;
− target = { target, features }: (!("ptr" == target."has_atomic" or null));
− }
− {
− name = "serde";
− packageId = "serde";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "windows-sys";
− packageId = "windows-sys 0.59.0";
− optional = true;
− usesDefaultFeatures = false;
− target = { target, features }: (target."windows" or false);
− features = [ "Win32_Foundation" "Win32_System_Time" ];
− }
− ];
− devDependencies = [
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "serde";
− packageId = "serde";
− features = [ "derive" ];
− }
− ];
− features = {
− "alloc" = [ "serde?/alloc" "portable-atomic-util/alloc" ];
− "default" = [ "std" "tz-system" "tz-fat" "tzdb-bundle-platform" "tzdb-zoneinfo" "tzdb-concatenated" "perf-inline" ];
− "js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
− "logging" = [ "dep:log" ];
− "serde" = [ "dep:serde" ];
− "static" = [ "static-tz" "jiff-static?/tzdb" ];
− "static-tz" = [ "dep:jiff-static" ];
− "std" = [ "alloc" "log?/std" "serde?/std" ];
− "tz-fat" = [ "jiff-static?/tz-fat" ];
− "tz-system" = [ "std" "dep:windows-sys" ];
− "tzdb-bundle-always" = [ "dep:jiff-tzdb" "alloc" ];
− "tzdb-bundle-platform" = [ "dep:jiff-tzdb-platform" "alloc" ];
− "tzdb-concatenated" = [ "std" ];
− "tzdb-zoneinfo" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "perf-inline" "serde" "std" "tz-fat" "tz-system" "tzdb-bundle-platform" "tzdb-concatenated" "tzdb-zoneinfo" ];
− };
− "jiff-static" = rec {
− crateName = "jiff-static";
− version = "0.2.15";
− edition = "2021";
− sha256 = "1d4l4pvlhz3w487gyhnzvagpbparspv4c8f35qk6g5w9zx8k8d03";
− procMacro = true;
− libName = "jiff_static";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− ];
− dependencies = [
− {
− name = "proc-macro2";
− packageId = "proc-macro2";
− }
− {
− name = "quote";
− packageId = "quote";
− }
− {
− name = "syn";
− packageId = "syn";
− }
− ];
− features = {
− "tzdb" = [ "dep:jiff-tzdb" ];
− };
− resolvedDefaultFeatures = [ "default" "tz-fat" ];
− };
− "jiff-tzdb" = rec {
− crateName = "jiff-tzdb";
− version = "0.1.4";
− edition = "2021";
− sha256 = "09350bna4vxdn2fv7gd08ay41llkflmfyvpx5d6l088axc2kfa61";
− libName = "jiff_tzdb";
− libPath = "lib.rs";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− ];
−
− };
− "jiff-tzdb-platform" = rec {
− crateName = "jiff-tzdb-platform";
− version = "0.1.3";
− edition = "2021";
− sha256 = "1s1ja692wyhbv7f60mc0x90h7kn1pv65xkqi2y4imarbmilmlnl7";
− libName = "jiff_tzdb_platform";
− libPath = "lib.rs";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− ];
− dependencies = [
− {
− name = "jiff-tzdb";
− packageId = "jiff-tzdb";
− }
− ];
−
− };
− "jobserver" = rec {
− crateName = "jobserver";
− version = "0.1.33";
− edition = "2021";
− sha256 = "12jkn3cxvfs7jsb6knmh9y2b41lwmrk3vdqywkmssx61jzq65wiq";
− authors = [
− "Alex Crichton <alex@alexcrichton.com>"
− ];
− dependencies = [
− {
− name = "getrandom";
− packageId = "getrandom 0.3.3";
− target = { target, features }: (target."windows" or false);
− features = [ "std" ];
− }
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: (target."unix" or false);
− }
− ];
−
− };
− "js-sys" = rec {
− crateName = "js-sys";
− version = "0.3.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" ];
− };
− "keyring" = rec {
− crateName = "keyring";
− version = "3.6.2";
− edition = "2021";
− sha256 = "12zsrkv72bqx4zj8fzfcmx8zfplv4968xvzkq3kdyyymd4v9hq8r";
− authors = [
− "Walther Chen <walther.chen@gmail.com>"
− "Daniel Brotsky <dev@brotsky.com>"
− ];
− dependencies = [
− {
− name = "byteorder";
− packageId = "byteorder";
− optional = true;
− target = { target, features }: ("windows" == target."os" or null);
− }
− {
− name = "dbus-secret-service";
− packageId = "dbus-secret-service";
− optional = true;
− target = { target, features }: ("freebsd" == target."os" or null);
− }
− {
− name = "dbus-secret-service";
− packageId = "dbus-secret-service";
− optional = true;
− target = { target, features }: ("linux" == target."os" or null);
− }
− {
− name = "dbus-secret-service";
− packageId = "dbus-secret-service";
− optional = true;
− target = { target, features }: ("openbsd" == target."os" or null);
− }
− {
− name = "linux-keyutils";
− packageId = "linux-keyutils";
− optional = true;
− target = { target, features }: ("linux" == target."os" or null);
− features = [ "std" ];
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "security-framework";
− packageId = "security-framework 2.11.1";
− optional = true;
− target = { target, features }: ("ios" == target."os" or null);
− }
− {
− name = "security-framework";
− packageId = "security-framework 3.2.0";
− optional = true;
− target = { target, features }: ("macos" == target."os" or null);
− }
− {
− name = "windows-sys";
− packageId = "windows-sys 0.59.0";
− optional = true;
− target = { target, features }: ("windows" == target."os" or null);
− features = [ "Win32_Foundation" "Win32_Security_Credentials" ];
− }
− ];
− features = {
− "apple-native" = [ "dep:security-framework" ];
− "async-io" = [ "zbus?/async-io" ];
− "async-secret-service" = [ "dep:secret-service" "dep:zbus" ];
− "crypto-openssl" = [ "dbus-secret-service?/crypto-openssl" "secret-service?/crypto-openssl" ];
− "crypto-rust" = [ "dbus-secret-service?/crypto-rust" "secret-service?/crypto-rust" ];
− "linux-native" = [ "dep:linux-keyutils" ];
− "linux-native-async-persistent" = [ "linux-native" "async-secret-service" ];
− "linux-native-sync-persistent" = [ "linux-native" "sync-secret-service" ];
− "openssl" = [ "dep:openssl" ];
− "sync-secret-service" = [ "dep:dbus-secret-service" ];
− "tokio" = [ "zbus?/tokio" ];
− "vendored" = [ "dbus-secret-service?/vendored" "openssl?/vendored" ];
− "windows-native" = [ "dep:windows-sys" "dep:byteorder" ];
− };
− resolvedDefaultFeatures = [ "apple-native" "linux-native" "linux-native-sync-persistent" "sync-secret-service" "windows-native" ];
− };
− "lazy_static 0.2.11" = rec {
− crateName = "lazy_static";
− version = "0.2.11";
− edition = "2015";
− sha256 = "0wxy8vak7jsx6r8gx475pjqpx11p2bfq4wvw6idmqi31mp3k7w3n";
− authors = [
− "Marvin Löbel <loebel.marvin@gmail.com>"
− ];
− features = {
− "compiletest" = [ "compiletest_rs" ];
− "compiletest_rs" = [ "dep:compiletest_rs" ];
− "spin" = [ "dep:spin" ];
− "spin_no_std" = [ "nightly" "spin" ];
− };
− };
− "lazy_static 1.5.0" = 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.174";
− edition = "2021";
− sha256 = "0xl7pqvw7g2874dy3kjady2fjr4rhj5lxsnxkkhr5689jcr6jw8i";
− 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" ];
− };
− "libdbus-sys" = rec {
− crateName = "libdbus-sys";
− version = "0.2.5";
− edition = "2015";
− links = "dbus";
− sha256 = "0wjw93q6ckrn8qdrxzdi02f0ma9g7nnlpgkrkcll1mjhnw95a206";
− libName = "libdbus_sys";
− authors = [
− "David Henningsson <diwic@ubuntu.com>"
− ];
− buildDependencies = [
− {
− name = "pkg-config";
− packageId = "pkg-config";
− optional = true;
− }
− ];
− features = {
− "cc" = [ "dep:cc" ];
− "default" = [ "pkg-config" ];
− "pkg-config" = [ "dep:pkg-config" ];
− "vendored" = [ "cc" ];
− };
− resolvedDefaultFeatures = [ "default" "pkg-config" ];
− };
− "libgit2-sys" = rec {
− crateName = "libgit2-sys";
− version = "0.18.2+1.9.1";
− edition = "2018";
− links = "git2";
− sha256 = "08n223x2pkf4gj6yrjmh3z6q236qj6nifwww78xcblrbvw1zwhhw";
− libName = "libgit2_sys";
− libPath = "lib.rs";
− authors = [
− "Josh Triplett <josh@joshtriplett.org>"
− "Alex Crichton <alex@alexcrichton.com>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− }
− {
− name = "libssh2-sys";
− packageId = "libssh2-sys";
− optional = true;
− }
− {
− name = "libz-sys";
− packageId = "libz-sys";
− usesDefaultFeatures = false;
− features = [ "libc" ];
− }
− {
− name = "openssl-sys";
− packageId = "openssl-sys";
− optional = true;
− target = { target, features }: (target."unix" or false);
− }
− ];
− buildDependencies = [
− {
− name = "cc";
− packageId = "cc";
− features = [ "parallel" ];
− }
− {
− name = "pkg-config";
− packageId = "pkg-config";
− }
− ];
− features = {
− "https" = [ "openssl-sys" ];
− "libssh2-sys" = [ "dep:libssh2-sys" ];
− "openssl-sys" = [ "dep:openssl-sys" ];
− "ssh" = [ "libssh2-sys" ];
− "vendored-openssl" = [ "openssl-sys/vendored" ];
− "zlib-ng-compat" = [ "libz-sys/zlib-ng" "libssh2-sys?/zlib-ng-compat" ];
− };
− resolvedDefaultFeatures = [ "https" "libssh2-sys" "openssl-sys" "ssh" ];
− };
− "libpijul" = rec {
− crateName = "libpijul";
− version = "1.0.0-beta.10";
− edition = "2021";
− src = lib.cleanSourceWith { filter = sourceFilter; src = ./libpijul; };
− authors = [
− "Pierre-Étienne Meunier <pe@pijul.org>"
− ];
− dependencies = [
− {
− name = "adler32";
− packageId = "adler32";
− }
− {
− name = "aes";
− packageId = "aes";
− features = [ "ctr" ];
− }
− {
− name = "bincode";
− packageId = "bincode";
− }
− {
− name = "bitflags";
− packageId = "bitflags 2.9.1";
− features = [ "serde" ];
− }
− {
− name = "blake3";
− packageId = "blake3";
− }
− {
− name = "bs58";
− packageId = "bs58";
− }
− {
− name = "byteorder";
− packageId = "byteorder";
− }
− {
− name = "canonical-path";
− packageId = "canonical-path";
− optional = true;
− }
− {
− name = "chardetng";
− packageId = "chardetng";
− }
− {
− name = "crossbeam-deque";
− packageId = "crossbeam-deque";
− }
− {
− name = "curve25519-dalek";
− packageId = "curve25519-dalek";
− features = [ "serde" ];
− }
− {
− name = "data-encoding";
− packageId = "data-encoding";
− }
− {
− name = "diffs";
− packageId = "diffs";
− }
− {
− name = "ed25519-dalek";
− packageId = "ed25519-dalek";
− features = [ "serde" ];
− }
− {
− name = "encoding_rs";
− packageId = "encoding_rs";
− }
− {
− name = "flate2";
− packageId = "flate2";
− optional = true;
− }
− {
− name = "generic-array";
− packageId = "generic-array";
− }
− {
− name = "getrandom";
− packageId = "getrandom 0.2.16";
− target = { target, features }: ("wasm32" == target."arch" or null);
− features = [ "js" ];
− }
− {
− name = "hmac";
− packageId = "hmac";
− }
− {
− name = "ignore";
− packageId = "ignore";
− optional = true;
− }
− {
− name = "imara-diff";
− packageId = "imara-diff";
− }
− {
− name = "jiff";
− packageId = "jiff";
− features = [ "serde" ];
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "lru-cache";
− packageId = "lru-cache";
− optional = true;
− }
− {
− name = "nom";
− packageId = "nom";
− }
− {
− name = "parking_lot";
− packageId = "parking_lot 0.12.4";
− }
− {
− name = "path-slash";
− packageId = "path-slash";
− optional = true;
− }
− {
− name = "pbkdf2";
− packageId = "pbkdf2 0.9.0";
− usesDefaultFeatures = false;
− }
− {
− name = "pijul-macros";
− packageId = "pijul-macros";
− }
− {
− name = "rand";
− packageId = "rand 0.8.5";
− }
− {
− name = "regex";
− packageId = "regex";
− }
− {
− name = "sanakirja";
− packageId = "sanakirja";
− usesDefaultFeatures = false;
− features = [ "crc32" ];
− }
− {
− name = "serde";
− packageId = "serde";
− }
− {
− name = "serde_derive";
− packageId = "serde_derive";
− }
− {
− name = "serde_json";
− packageId = "serde_json";
− }
− {
− name = "sha2";
− packageId = "sha2 0.9.9";
− }
− {
− name = "tar";
− packageId = "tar";
− optional = true;
− }
− {
− name = "tempfile";
− packageId = "tempfile";
− optional = true;
− }
− {
− name = "thiserror";
− packageId = "thiserror 2.0.12";
− }
− {
− name = "toml";
− packageId = "toml";
− features = [ "preserve_order" ];
− }
− {
− name = "twox-hash";
− packageId = "twox-hash";
− }
− {
− name = "zstd-seekable";
− packageId = "zstd-seekable";
− optional = true;
− }
− ];
− devDependencies = [
− {
− name = "anyhow";
− packageId = "anyhow";
− }
− {
− name = "env_logger";
− packageId = "env_logger 0.11.8";
− }
− {
− name = "quickcheck";
− packageId = "quickcheck";
− }
− {
− name = "rand";
− packageId = "rand 0.8.5";
− }
− {
− name = "rand_chacha";
− packageId = "rand_chacha 0.3.1";
− }
− ];
− features = {
− "canonical-path" = [ "dep:canonical-path" ];
− "default" = [ "ondisk-repos" "text-changes" ];
− "flate2" = [ "dep:flate2" ];
− "ignore" = [ "dep:ignore" ];
− "lru-cache" = [ "dep:lru-cache" ];
− "mmap" = [ "sanakirja/mmap" ];
− "ondisk-repos" = [ "mmap" "zstd" "ignore" "canonical-path" "lru-cache" "tempfile" "path-slash" ];
− "path-slash" = [ "dep:path-slash" ];
− "tar" = [ "dep:tar" ];
− "tarball" = [ "tar" "flate2" ];
− "tempfile" = [ "dep:tempfile" ];
− "zstd" = [ "zstd-seekable" ];
− "zstd-seekable" = [ "dep:zstd-seekable" ];
− };
− resolvedDefaultFeatures = [ "canonical-path" "default" "flate2" "ignore" "lru-cache" "mmap" "ondisk-repos" "path-slash" "tar" "tarball" "tempfile" "text-changes" "zstd" "zstd-seekable" ];
− };
− "libredox" = rec {
− crateName = "libredox";
− version = "0.1.4";
− edition = "2021";
− sha256 = "0f06ikfym363zrqy9llp4asgcbakz0aiq0ds0rkljdg52088100m";
− authors = [
− "4lDO2 <4lDO2@protonmail.com>"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 2.9.1";
− }
− {
− name = "libc";
− packageId = "libc";
− }
− {
− name = "redox_syscall";
− packageId = "redox_syscall 0.5.13";
− optional = true;
− }
− ];
− features = {
− "default" = [ "call" "std" "redox_syscall" ];
− "ioslice" = [ "dep:ioslice" ];
− "mkns" = [ "ioslice" ];
− "redox_syscall" = [ "dep:redox_syscall" ];
− };
− resolvedDefaultFeatures = [ "call" "default" "redox_syscall" "std" ];
− };
− "libsodium-sys" = rec {
− crateName = "libsodium-sys";
− version = "0.2.7";
− edition = "2015";
− links = "sodium";
− sha256 = "1zcjka23grayr8kjrgbada6vwagp0kkni9m45v0gpbanrn3r6xvb";
− libName = "libsodium_sys";
− authors = [
− "dnaq"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− }
− ];
− buildDependencies = [
− {
− name = "cc";
− packageId = "cc";
− target = {target, features}: (!("msvc" == target."env" or null));
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− target = {target, features}: ("msvc" == target."env" or null);
− }
− {
− name = "pkg-config";
− packageId = "pkg-config";
− }
− {
− name = "walkdir";
− packageId = "walkdir";
− }
− ];
− features = {
− };
− resolvedDefaultFeatures = [ "use-pkg-config" ];
− };
− "libssh2-sys" = rec {
− crateName = "libssh2-sys";
− version = "0.3.1";
− edition = "2015";
− links = "ssh2";
− sha256 = "1f8i31h3666rl6sq7v64ajdq03hmylkh6c1vaf9828aaml2ly3i2";
− libName = "libssh2_sys";
− libPath = "lib.rs";
− authors = [
− "Alex Crichton <alex@alexcrichton.com>"
− "Wez Furlong <wez@wezfurlong.org>"
− "Matteo Bigoi <bigo@crisidev.org>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− }
− {
− name = "libz-sys";
− packageId = "libz-sys";
− usesDefaultFeatures = false;
− features = [ "libc" ];
− }
− {
− name = "openssl-sys";
− packageId = "openssl-sys";
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "openssl-sys";
− packageId = "openssl-sys";
− optional = true;
− target = { target, features }: (target."windows" or false);
− }
− ];
− buildDependencies = [
− {
− name = "cc";
− packageId = "cc";
− }
− {
− name = "pkg-config";
− packageId = "pkg-config";
− }
− {
− name = "vcpkg";
− packageId = "vcpkg";
− target = {target, features}: ("msvc" == target."env" or null);
− }
− ];
− features = {
− "openssl-on-win32" = [ "openssl-sys" ];
− "openssl-sys" = [ "dep:openssl-sys" ];
− "vendored-openssl" = [ "openssl-sys/vendored" ];
− "zlib-ng-compat" = [ "libz-sys/zlib-ng" ];
− };
− };
− "libz-sys" = rec {
− crateName = "libz-sys";
− version = "1.1.22";
− edition = "2018";
− links = "z";
− sha256 = "07b5wxh0ska996kc0g2hanjhmb4di7ksm6ndljhr4pi0vykyfw4b";
− libName = "libz_sys";
− authors = [
− "Alex Crichton <alex@alexcrichton.com>"
− "Josh Triplett <josh@joshtriplett.org>"
− "Sebastian Thiel <sebastian.thiel@icloud.com>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− optional = true;
− }
− ];
− buildDependencies = [
− {
− name = "cc";
− packageId = "cc";
− }
− {
− name = "pkg-config";
− packageId = "pkg-config";
− }
− {
− name = "vcpkg";
− packageId = "vcpkg";
− }
− ];
− features = {
− "cmake" = [ "dep:cmake" ];
− "default" = [ "libc" "stock-zlib" ];
− "libc" = [ "dep:libc" ];
− "zlib-ng" = [ "libc" "cmake" ];
− "zlib-ng-no-cmake-experimental-community-maintained" = [ "libc" ];
− };
− resolvedDefaultFeatures = [ "libc" ];
− };
− "linked-hash-map" = rec {
− crateName = "linked-hash-map";
− version = "0.5.6";
− edition = "2015";
− sha256 = "03vpgw7x507g524nx5i1jf5dl8k3kv0fzg8v3ip6qqwbpkqww5q7";
− libName = "linked_hash_map";
− authors = [
− "Stepan Koltsov <stepan.koltsov@gmail.com>"
− "Andrew Paseltiner <apaseltiner@gmail.com>"
− ];
− features = {
− "heapsize" = [ "dep:heapsize" ];
− "heapsize_impl" = [ "heapsize" ];
− "serde" = [ "dep:serde" ];
− "serde_impl" = [ "serde" ];
− };
− };
− "linux-keyutils" = rec {
− crateName = "linux-keyutils";
− version = "0.2.4";
− edition = "2021";
− sha256 = "13nipvk2mzk76y7yfsqwnwsqk21x6xy8fkmqz5is99fqbzn4j7kn";
− libName = "linux_keyutils";
− authors = [
− "landhb <landhb@users.noreply.github.com>"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 2.9.1";
− usesDefaultFeatures = false;
− }
− {
− name = "libc";
− packageId = "libc";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "std" = [ "bitflags/std" ];
− };
− resolvedDefaultFeatures = [ "default" "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" ];
− };
− "linux-raw-sys 0.9.4" = rec {
− crateName = "linux-raw-sys";
− version = "0.9.4";
− edition = "2021";
− sha256 = "04kyjdrq79lz9ibrf7czk6cv9d3jl597pb9738vzbsbzy1j5i56d";
− 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.8.0";
− edition = "2021";
− sha256 = "0mlrlskwwhirxk3wsz9psh6nxcy491n0dh8zl02qgj0jzpssw7i4";
− authors = [
− "The ICU4X Project Developers"
− ];
− features = {
− "databake" = [ "dep:databake" ];
− "default" = [ "alloc" ];
− "serde" = [ "dep:serde" "alloc" ];
− "testing" = [ "alloc" ];
− "yoke" = [ "dep:yoke" ];
− };
− resolvedDefaultFeatures = [ "alloc" ];
− };
− "lock_api" = rec {
− crateName = "lock_api";
− version = "0.4.13";
− edition = "2021";
− sha256 = "0rd73p4299mjwl4hhlfj9qr88v3r0kc8s1nszkfmnq2ky43nb4wn";
− authors = [
− "Amanieu d'Antras <amanieu@gmail.com>"
− ];
− dependencies = [
− {
− name = "scopeguard";
− packageId = "scopeguard";
− usesDefaultFeatures = false;
− }
− ];
− buildDependencies = [
− {
− name = "autocfg";
− packageId = "autocfg";
− }
− ];
− features = {
− "default" = [ "atomic_usize" ];
− "owning_ref" = [ "dep:owning_ref" ];
− "serde" = [ "dep:serde" ];
− };
− resolvedDefaultFeatures = [ "atomic_usize" "default" ];
− };
− "log" = rec {
− crateName = "log";
− version = "0.4.27";
− edition = "2021";
− sha256 = "150x589dqil307rv0rwj0jsgz5bjbwvl83gyl61jf873a7rjvp0k";
− authors = [
− "The Rust Project Developers"
− ];
− features = {
− "kv_serde" = [ "kv_std" "value-bag/serde" "serde" ];
− "kv_std" = [ "std" "kv" "value-bag/error" ];
− "kv_sval" = [ "kv" "value-bag/sval" "sval" "sval_ref" ];
− "kv_unstable" = [ "kv" "value-bag" ];
− "kv_unstable_serde" = [ "kv_serde" "kv_unstable_std" ];
− "kv_unstable_std" = [ "kv_std" "kv_unstable" ];
− "kv_unstable_sval" = [ "kv_sval" "kv_unstable" ];
− "serde" = [ "dep:serde" ];
− "sval" = [ "dep:sval" ];
− "sval_ref" = [ "dep:sval_ref" ];
− "value-bag" = [ "dep:value-bag" ];
− };
− resolvedDefaultFeatures = [ "std" ];
− };
− "lru-cache" = rec {
− crateName = "lru-cache";
− version = "0.1.2";
− edition = "2015";
− sha256 = "071viv6g2p3akwqmfb3c8vsycs5n7kr17b70l7la071jv0d4zqii";
− libName = "lru_cache";
− authors = [
− "Stepan Koltsov <stepan.koltsov@gmail.com>"
− ];
− dependencies = [
− {
− name = "linked-hash-map";
− packageId = "linked-hash-map";
− }
− ];
− features = {
− "heapsize" = [ "dep:heapsize" ];
− "heapsize_impl" = [ "heapsize" "linked-hash-map/heapsize_impl" ];
− };
− };
− "md5" = rec {
− crateName = "md5";
− version = "0.7.0";
− edition = "2015";
− sha256 = "0wcps37hrhz59fkhf8di1ppdnqld6l1w5sdy7jp7p51z0i4c8329";
− authors = [
− "Ivan Ukhov <ivan.ukhov@gmail.com>"
− "Kamal Ahmad <shibe@openmailbox.org>"
− "Konstantin Stepanov <milezv@gmail.com>"
− "Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"
− "Nathan Musoke <nathan.musoke@gmail.com>"
− "Scott Mabin <scott@mabez.dev>"
− "Tony Arcieri <bascule@gmail.com>"
− "Wim de With <register@dewith.io>"
− "Yosef Dinerstein <yosefdi@gmail.com>"
− ];
− features = {
− "default" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "memchr" = rec {
− crateName = "memchr";
− version = "2.7.5";
− edition = "2021";
− sha256 = "1h2bh2jajkizz04fh047lpid5wgw2cr9igpkdhl3ibzscpd858ij";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− "bluss"
− ];
− features = {
− "core" = [ "dep:core" ];
− "default" = [ "std" ];
− "logging" = [ "dep:log" ];
− "rustc-dep-of-std" = [ "core" ];
− "std" = [ "alloc" ];
− "use_std" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "std" ];
− };
− "memmap2" = rec {
− crateName = "memmap2";
− version = "0.9.5";
− edition = "2018";
− sha256 = "0krpvvkpg4i3l05cv3q2xk24a1vj5c86gbrli2wzhj1qkpnpwgzx";
− authors = [
− "Dan Burkert <dan@danburkert.com>"
− "Yevhenii Reizner <razrfalcon@gmail.com>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: (target."unix" or false);
− }
− ];
− features = {
− "stable_deref_trait" = [ "dep:stable_deref_trait" ];
− };
− };
− "memoffset" = rec {
− crateName = "memoffset";
− version = "0.7.1";
− edition = "2015";
− sha256 = "1x2zv8hv9c9bvgmhsjvr9bymqwyxvgbca12cm8xkhpyy5k1r7s2x";
− authors = [
− "Gilad Naaman <gilad.naaman@gmail.com>"
− ];
− buildDependencies = [
− {
− name = "autocfg";
− packageId = "autocfg";
− }
− ];
− features = {
− };
− resolvedDefaultFeatures = [ "default" ];
− };
− "mime" = rec {
− crateName = "mime";
− version = "0.3.17";
− edition = "2015";
− sha256 = "16hkibgvb9klh0w0jk5crr5xv90l3wlf77ggymzjmvl1818vnxv8";
− authors = [
− "Sean McArthur <sean@seanmonstar.com>"
− ];
−
− };
− "minimal-lexical" = rec {
− crateName = "minimal-lexical";
− version = "0.2.1";
− edition = "2018";
− sha256 = "16ppc5g84aijpri4jzv14rvcnslvlpphbszc7zzp6vfkddf4qdb8";
− libName = "minimal_lexical";
− authors = [
− "Alex Huszagh <ahuszagh@gmail.com>"
− ];
− features = {
− "default" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "std" ];
− };
− "miniz_oxide" = rec {
− crateName = "miniz_oxide";
− version = "0.8.9";
− edition = "2021";
− sha256 = "05k3pdg8bjjzayq3rf0qhpirq9k37pxnasfn4arbs17phqn6m9qz";
− authors = [
− "Frommi <daniil.liferenko@gmail.com>"
− "oyvindln <oyvindln@users.noreply.github.com>"
− "Rich Geldreich richgel99@gmail.com"
− ];
− dependencies = [
− {
− name = "adler2";
− packageId = "adler2";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "alloc" = [ "dep:alloc" ];
− "core" = [ "dep:core" ];
− "default" = [ "with-alloc" ];
− "rustc-dep-of-std" = [ "core" "alloc" "adler2/rustc-dep-of-std" ];
− "serde" = [ "dep:serde" ];
− "simd" = [ "simd-adler32" ];
− "simd-adler32" = [ "dep:simd-adler32" ];
− };
− resolvedDefaultFeatures = [ "with-alloc" ];
− };
− "mio" = rec {
− crateName = "mio";
− version = "1.0.4";
− edition = "2021";
− sha256 = "073n3kam3nz8j8had35fd2nn7j6a33pi3y5w3kq608cari2d9gkq";
− authors = [
− "Carl Lerche <me@carllerche.com>"
− "Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
− "Tokio Contributors <team@tokio.rs>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: ("hermit" == target."os" or null);
− }
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: ("wasi" == target."os" or null);
− }
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "wasi";
− packageId = "wasi 0.11.1+wasi-snapshot-preview1";
− target = { target, features }: ("wasi" == target."os" or null);
− }
− {
− name = "windows-sys";
− packageId = "windows-sys 0.59.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" ];
− };
− "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 2.11.1";
− 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 0.26.4" = rec {
− crateName = "nix";
− version = "0.26.4";
− edition = "2018";
− sha256 = "06xgl4ybb8pvjrbmc3xggbgk3kbs1j0c4c0nzdfrmpbgrkrym2sr";
− authors = [
− "The nix-rust Project Developers"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 1.3.2";
− }
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "libc";
− packageId = "libc";
− features = [ "extra_traits" ];
− }
− {
− name = "memoffset";
− packageId = "memoffset";
− optional = true;
− target = { target, features }: (!("redox" == target."os" or null));
− }
− {
− name = "pin-utils";
− packageId = "pin-utils";
− optional = true;
− }
− ];
− features = {
− "aio" = [ "pin-utils" ];
− "default" = [ "acct" "aio" "dir" "env" "event" "feature" "fs" "hostname" "inotify" "ioctl" "kmod" "mman" "mount" "mqueue" "net" "personality" "poll" "process" "pthread" "ptrace" "quota" "reboot" "resource" "sched" "signal" "socket" "term" "time" "ucontext" "uio" "user" "zerocopy" ];
− "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 = [ "acct" "aio" "default" "dir" "env" "event" "feature" "fs" "hostname" "inotify" "ioctl" "kmod" "memoffset" "mman" "mount" "mqueue" "net" "personality" "pin-utils" "poll" "process" "pthread" "ptrace" "quota" "reboot" "resource" "sched" "signal" "socket" "term" "time" "ucontext" "uio" "user" "zerocopy" ];
− };
− "nix 0.30.1" = rec {
− crateName = "nix";
− version = "0.30.1";
− edition = "2021";
− sha256 = "1dixahq9hk191g0c2ydc0h1ppxj0xw536y6rl63vlnp06lx3ylkl";
− authors = [
− "The nix-rust Project Developers"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 2.9.1";
− }
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "libc";
− packageId = "libc";
− features = [ "extra_traits" ];
− }
− ];
− buildDependencies = [
− {
− name = "cfg_aliases";
− packageId = "cfg_aliases";
− }
− ];
− features = {
− "aio" = [ "pin-utils" ];
− "dir" = [ "fs" ];
− "event" = [ "poll" ];
− "memoffset" = [ "dep:memoffset" ];
− "mount" = [ "uio" ];
− "mqueue" = [ "fs" ];
− "net" = [ "socket" ];
− "pin-utils" = [ "dep:pin-utils" ];
− "ptrace" = [ "process" ];
− "sched" = [ "process" ];
− "signal" = [ "process" ];
− "socket" = [ "memoffset" ];
− "ucontext" = [ "signal" ];
− "user" = [ "feature" ];
− "zerocopy" = [ "fs" "uio" ];
− };
− resolvedDefaultFeatures = [ "fs" "process" "signal" ];
− };
− "nom" = rec {
− crateName = "nom";
− version = "7.1.3";
− edition = "2018";
− sha256 = "0jha9901wxam390jcf5pfa0qqfrgh8li787jx2ip0yk5b8y9hwyj";
− authors = [
− "contact@geoffroycouprie.com"
− ];
− dependencies = [
− {
− name = "memchr";
− packageId = "memchr";
− usesDefaultFeatures = false;
− }
− {
− name = "minimal-lexical";
− packageId = "minimal-lexical";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "default" = [ "std" ];
− "std" = [ "alloc" "memchr/std" "minimal-lexical/std" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "std" ];
− };
− "num" = rec {
− crateName = "num";
− version = "0.4.3";
− edition = "2021";
− sha256 = "08yb2fc1psig7pkzaplm495yp7c30m4pykpkwmi5bxrgid705g9m";
− authors = [
− "The Rust Project Developers"
− ];
− dependencies = [
− {
− name = "num-bigint";
− packageId = "num-bigint";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "num-complex";
− packageId = "num-complex";
− usesDefaultFeatures = false;
− }
− {
− name = "num-integer";
− packageId = "num-integer";
− usesDefaultFeatures = false;
− features = [ "i128" ];
− }
− {
− name = "num-iter";
− packageId = "num-iter";
− usesDefaultFeatures = false;
− features = [ "i128" ];
− }
− {
− name = "num-rational";
− packageId = "num-rational";
− usesDefaultFeatures = false;
− }
− {
− name = "num-traits";
− packageId = "num-traits";
− usesDefaultFeatures = false;
− features = [ "i128" ];
− }
− ];
− features = {
− "alloc" = [ "dep:num-bigint" "num-rational/num-bigint" ];
− "default" = [ "std" ];
− "libm" = [ "num-complex/libm" "num-traits/libm" ];
− "num-bigint" = [ "dep:num-bigint" ];
− "rand" = [ "num-bigint/rand" "num-complex/rand" ];
− "serde" = [ "num-bigint/serde" "num-complex/serde" "num-rational/serde" ];
− "std" = [ "dep:num-bigint" "num-bigint/std" "num-complex/std" "num-integer/std" "num-iter/std" "num-rational/std" "num-rational/num-bigint-std" "num-traits/std" ];
− };
− resolvedDefaultFeatures = [ "default" "num-bigint" "std" ];
− };
− "num-bigint" = rec {
− crateName = "num-bigint";
− version = "0.4.6";
− edition = "2021";
− sha256 = "1f903zd33i6hkjpsgwhqwi2wffnvkxbn6rv4mkgcjcqi7xr4zr55";
− libName = "num_bigint";
− authors = [
− "The Rust Project Developers"
− ];
− dependencies = [
− {
− name = "num-integer";
− packageId = "num-integer";
− usesDefaultFeatures = false;
− features = [ "i128" ];
− }
− {
− name = "num-traits";
− packageId = "num-traits";
− usesDefaultFeatures = false;
− features = [ "i128" ];
− }
− ];
− features = {
− "arbitrary" = [ "dep:arbitrary" ];
− "default" = [ "std" ];
− "quickcheck" = [ "dep:quickcheck" ];
− "rand" = [ "dep:rand" ];
− "serde" = [ "dep:serde" ];
− "std" = [ "num-integer/std" "num-traits/std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "num-complex" = rec {
− crateName = "num-complex";
− version = "0.4.6";
− edition = "2021";
− sha256 = "15cla16mnw12xzf5g041nxbjjm9m85hdgadd5dl5d0b30w9qmy3k";
− libName = "num_complex";
− authors = [
− "The Rust Project Developers"
− ];
− dependencies = [
− {
− name = "num-traits";
− packageId = "num-traits";
− usesDefaultFeatures = false;
− features = [ "i128" ];
− }
− ];
− features = {
− "bytecheck" = [ "dep:bytecheck" ];
− "bytemuck" = [ "dep:bytemuck" ];
− "default" = [ "std" ];
− "libm" = [ "num-traits/libm" ];
− "rand" = [ "dep:rand" ];
− "rkyv" = [ "dep:rkyv" ];
− "serde" = [ "dep:serde" ];
− "std" = [ "num-traits/std" ];
− };
− resolvedDefaultFeatures = [ "std" ];
− };
− "num-conv" = rec {
− crateName = "num-conv";
− version = "0.1.0";
− edition = "2021";
− sha256 = "1ndiyg82q73783jq18isi71a7mjh56wxrk52rlvyx0mi5z9ibmai";
− libName = "num_conv";
− authors = [
− "Jacob Pratt <jacob@jhpratt.dev>"
− ];
−
− };
− "num-integer" = rec {
− crateName = "num-integer";
− version = "0.1.46";
− edition = "2018";
− sha256 = "13w5g54a9184cqlbsq80rnxw4jj4s0d8wv75jsq5r2lms8gncsbr";
− libName = "num_integer";
− authors = [
− "The Rust Project Developers"
− ];
− dependencies = [
− {
− name = "num-traits";
− packageId = "num-traits";
− usesDefaultFeatures = false;
− features = [ "i128" ];
− }
− ];
− features = {
− "default" = [ "std" ];
− "std" = [ "num-traits/std" ];
− };
− resolvedDefaultFeatures = [ "default" "i128" "std" ];
− };
− "num-iter" = rec {
− crateName = "num-iter";
− version = "0.1.45";
− edition = "2018";
− sha256 = "1gzm7vc5g9qsjjl3bqk9rz1h6raxhygbrcpbfl04swlh0i506a8l";
− libName = "num_iter";
− authors = [
− "The Rust Project Developers"
− ];
− dependencies = [
− {
− name = "num-integer";
− packageId = "num-integer";
− usesDefaultFeatures = false;
− features = [ "i128" ];
− }
− {
− name = "num-traits";
− packageId = "num-traits";
− usesDefaultFeatures = false;
− features = [ "i128" ];
− }
− ];
− buildDependencies = [
− {
− name = "autocfg";
− packageId = "autocfg";
− }
− ];
− features = {
− "default" = [ "std" ];
− "std" = [ "num-integer/std" "num-traits/std" ];
− };
− resolvedDefaultFeatures = [ "i128" "std" ];
− };
− "num-rational" = rec {
− crateName = "num-rational";
− version = "0.4.2";
− edition = "2021";
− sha256 = "093qndy02817vpgcqjnj139im3jl7vkq4h68kykdqqh577d18ggq";
− libName = "num_rational";
− authors = [
− "The Rust Project Developers"
− ];
− dependencies = [
− {
− name = "num-bigint";
− packageId = "num-bigint";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "num-integer";
− packageId = "num-integer";
− usesDefaultFeatures = false;
− features = [ "i128" ];
− }
− {
− name = "num-traits";
− packageId = "num-traits";
− usesDefaultFeatures = false;
− features = [ "i128" ];
− }
− ];
− features = {
− "default" = [ "num-bigint" "std" ];
− "num-bigint" = [ "dep:num-bigint" ];
− "num-bigint-std" = [ "num-bigint/std" ];
− "serde" = [ "dep:serde" ];
− "std" = [ "num-bigint?/std" "num-integer/std" "num-traits/std" ];
− };
− resolvedDefaultFeatures = [ "num-bigint" "num-bigint-std" "std" ];
− };
− "num-traits" = rec {
− crateName = "num-traits";
− version = "0.2.19";
− edition = "2021";
− sha256 = "0h984rhdkkqd4ny9cif7y2azl3xdfb7768hb9irhpsch4q3gq787";
− libName = "num_traits";
− authors = [
− "The Rust Project Developers"
− ];
− buildDependencies = [
− {
− name = "autocfg";
− packageId = "autocfg";
− }
− ];
− features = {
− "default" = [ "std" ];
− "libm" = [ "dep:libm" ];
− };
− resolvedDefaultFeatures = [ "i128" "std" ];
− };
− "num_cpus" = rec {
− crateName = "num_cpus";
− version = "1.17.0";
− edition = "2015";
− sha256 = "0fxjazlng4z8cgbmsvbzv411wrg7x3hyxdq8nxixgzjswyylppwi";
− authors = [
− "Sean McArthur <sean@seanmonstar.com>"
− ];
− dependencies = [
− {
− name = "hermit-abi";
− packageId = "hermit-abi";
− target = { target, features }: ("hermit" == target."os" or null);
− }
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: (!(target."windows" or false));
− }
− ];
−
− };
− "number_prefix" = rec {
− crateName = "number_prefix";
− version = "0.4.0";
− edition = "2015";
− sha256 = "1wvh13wvlajqxkb1filsfzbrnq0vrmrw298v2j3sy82z1rm282w3";
− authors = [
− "Benjamin Sago <ogham@bsago.me>"
− ];
− features = {
− "default" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "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.3";
− edition = "2021";
− sha256 = "0b9x77lb9f1j6nqgf5aka4s2qj0nly176bpbrv6f9iakk5ff3xa2";
− authors = [
− "Aleksey Kladov <aleksey.kladov@gmail.com>"
− ];
− features = {
− "alloc" = [ "race" ];
− "atomic-polyfill" = [ "critical-section" ];
− "critical-section" = [ "dep:critical-section" "portable-atomic" ];
− "default" = [ "std" ];
− "parking_lot" = [ "dep:parking_lot_core" ];
− "portable-atomic" = [ "dep:portable-atomic" ];
− "std" = [ "alloc" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "race" "std" ];
− };
− "once_cell_polyfill" = rec {
− crateName = "once_cell_polyfill";
− version = "1.70.1";
− edition = "2021";
− sha256 = "1bg0w99srq8h4mkl68l1mza2n2f2hvrg0n8vfa3izjr5nism32d4";
− features = {
− };
− resolvedDefaultFeatures = [ "default" ];
− };
− "opaque-debug" = rec {
− crateName = "opaque-debug";
− version = "0.3.1";
− edition = "2018";
− sha256 = "10b3w0kydz5jf1ydyli5nv10gdfp97xh79bgz327d273bs46b3f0";
− libName = "opaque_debug";
− authors = [
− "RustCrypto Developers"
− ];
−
− };
− "open" = rec {
− crateName = "open";
− version = "5.3.2";
− edition = "2018";
− crateBin = [];
− sha256 = "15ggfx1p8rl7w4rr1n5qj1wxy1kk7757lsjpyc947a9fwri3aj72";
− authors = [
− "Sebastian Thiel <byronimo@gmail.com>"
− ];
− dependencies = [
− {
− name = "is-wsl";
− packageId = "is-wsl";
− target = { target, features }: (("linux" == target."os" or null) || ("android" == target."os" or null) || ("freebsd" == target."os" or null) || ("dragonfly" == target."os" or null) || ("netbsd" == target."os" or null) || ("openbsd" == target."os" or null) || ("illumos" == target."os" or null) || ("solaris" == target."os" or null) || ("aix" == target."os" or null) || ("hurd" == target."os" or null));
− }
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "pathdiff";
− packageId = "pathdiff";
− target = { target, features }: ((target."unix" or false) && (!(target."macos" or false)));
− }
− ];
− features = {
− "shellexecute-on-windows" = [ "dep:dunce" ];
− };
− };
− "openssl" = rec {
− crateName = "openssl";
− version = "0.10.73";
− edition = "2021";
− sha256 = "1y7b3kanpgb92wiqhwbyqfsdr1xdjzssxqywl4cixay88r6p61c5";
− authors = [
− "Steven Fackler <sfackler@gmail.com>"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 2.9.1";
− }
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "foreign-types";
− packageId = "foreign-types";
− }
− {
− name = "libc";
− packageId = "libc";
− }
− {
− name = "once_cell";
− packageId = "once_cell";
− }
− {
− name = "openssl-macros";
− packageId = "openssl-macros";
− }
− {
− name = "openssl-sys";
− packageId = "openssl-sys";
− rename = "ffi";
− }
− ];
− features = {
− "aws-lc" = [ "ffi/aws-lc" ];
− "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.109";
− edition = "2021";
− links = "openssl";
− sha256 = "0wc54dshsac1xicq6b5wz01p358zcbf542f2s6vph3b38wp6w2ch";
− build = "build/main.rs";
− libName = "openssl_sys";
− authors = [
− "Alex Crichton <alex@alexcrichton.com>"
− "Steven Fackler <sfackler@gmail.com>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− }
− ];
− buildDependencies = [
− {
− name = "cc";
− packageId = "cc";
− }
− {
− name = "pkg-config";
− packageId = "pkg-config";
− }
− {
− name = "vcpkg";
− packageId = "vcpkg";
− }
− ];
− features = {
− "aws-lc" = [ "dep:aws-lc-sys" ];
− "bindgen" = [ "dep:bindgen" ];
− "bssl-sys" = [ "dep:bssl-sys" ];
− "openssl-src" = [ "dep:openssl-src" ];
− "unstable_boringssl" = [ "bssl-sys" ];
− "vendored" = [ "openssl-src" ];
− };
− };
− "os_info" = rec {
− crateName = "os_info";
− version = "3.12.0";
− edition = "2018";
− sha256 = "1hzzmxj8z69q5l1hzlnqnaa56ip9kvmghp8k750w6hwdvrgsrqfh";
− authors = [
− "Jan Schulte <hello@unexpected-co.de>"
− "Stanislav Tkach <stanislav.tkach@gmail.com>"
− ];
− dependencies = [
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "plist";
− packageId = "plist";
− target = { target, features }: ("macos" == target."os" or null);
− }
− {
− name = "serde";
− packageId = "serde";
− optional = true;
− features = [ "derive" ];
− }
− {
− name = "windows-sys";
− packageId = "windows-sys 0.52.0";
− target = { target, features }: (target."windows" or false);
− features = [ "Win32_Foundation" "Win32_System_LibraryLoader" "Win32_System_Registry" "Win32_System_SystemInformation" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_UI_WindowsAndMessaging" ];
− }
− ];
− features = {
− "default" = [ "serde" ];
− "serde" = [ "dep:serde" ];
− };
− resolvedDefaultFeatures = [ "default" "serde" ];
− };
− "pager" = rec {
− crateName = "pager";
− version = "0.16.1";
− edition = "2018";
− sha256 = "10188qgnsz988g30fvl4whkljh2zl4gpbp6kc48bpywpbhd23695";
− authors = [
− "Cyril Plisko <cyril.plisko@mountall.com>"
− ];
− dependencies = [
− {
− name = "errno";
− packageId = "errno 0.2.8";
− }
− {
− name = "libc";
− packageId = "libc";
− }
− ];
− features = {
− };
− };
− "parking_lot 0.11.2" = rec {
− crateName = "parking_lot";
− version = "0.11.2";
− edition = "2018";
− sha256 = "16gzf41bxmm10x82bla8d6wfppy9ym3fxsmdjyvn61m66s0bf5vx";
− authors = [
− "Amanieu d'Antras <amanieu@gmail.com>"
− ];
− dependencies = [
− {
− name = "instant";
− packageId = "instant";
− }
− {
− name = "lock_api";
− packageId = "lock_api";
− }
− {
− name = "parking_lot_core";
− packageId = "parking_lot_core 0.8.6";
− }
− ];
− features = {
− "arc_lock" = [ "lock_api/arc_lock" ];
− "deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
− "nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
− "owning_ref" = [ "lock_api/owning_ref" ];
− "serde" = [ "lock_api/serde" ];
− "stdweb" = [ "instant/stdweb" ];
− "wasm-bindgen" = [ "instant/wasm-bindgen" ];
− };
− resolvedDefaultFeatures = [ "default" ];
− };
− "parking_lot 0.12.4" = rec {
− crateName = "parking_lot";
− version = "0.12.4";
− edition = "2021";
− sha256 = "04sab1c7304jg8k0d5b2pxbj1fvgzcf69l3n2mfpkdb96vs8pmbh";
− authors = [
− "Amanieu d'Antras <amanieu@gmail.com>"
− ];
− dependencies = [
− {
− name = "lock_api";
− packageId = "lock_api";
− }
− {
− name = "parking_lot_core";
− packageId = "parking_lot_core 0.9.11";
− }
− ];
− features = {
− "arc_lock" = [ "lock_api/arc_lock" ];
− "deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
− "nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
− "owning_ref" = [ "lock_api/owning_ref" ];
− "serde" = [ "lock_api/serde" ];
− };
− resolvedDefaultFeatures = [ "default" ];
− };
− "parking_lot_core 0.8.6" = rec {
− crateName = "parking_lot_core";
− version = "0.8.6";
− edition = "2018";
− sha256 = "1p2nfcbr0b9lm9rglgm28k6mwyjwgm4knipsmqbgqaxdy3kcz8k0";
− authors = [
− "Amanieu d'Antras <amanieu@gmail.com>"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "instant";
− packageId = "instant";
− }
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "redox_syscall";
− packageId = "redox_syscall 0.2.16";
− target = { target, features }: ("redox" == target."os" or null);
− }
− {
− name = "smallvec";
− packageId = "smallvec";
− }
− {
− name = "winapi";
− packageId = "winapi";
− target = { target, features }: (target."windows" or false);
− features = [ "winnt" "ntstatus" "minwindef" "winerror" "winbase" "errhandlingapi" "handleapi" ];
− }
− ];
− features = {
− "backtrace" = [ "dep:backtrace" ];
− "deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ];
− "petgraph" = [ "dep:petgraph" ];
− "thread-id" = [ "dep:thread-id" ];
− };
− };
− "parking_lot_core 0.9.11" = rec {
− crateName = "parking_lot_core";
− version = "0.9.11";
− edition = "2021";
− sha256 = "19g4d6m5k4ggacinqprnn8xvdaszc3y5smsmbz1adcdmaqm8v0xw";
− authors = [
− "Amanieu d'Antras <amanieu@gmail.com>"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "redox_syscall";
− packageId = "redox_syscall 0.5.13";
− target = { target, features }: ("redox" == target."os" or null);
− }
− {
− name = "smallvec";
− packageId = "smallvec";
− }
− {
− name = "windows-targets";
− packageId = "windows-targets 0.52.6";
− target = { target, features }: (target."windows" or false);
− }
− ];
− features = {
− "backtrace" = [ "dep:backtrace" ];
− "deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ];
− "petgraph" = [ "dep:petgraph" ];
− "thread-id" = [ "dep:thread-id" ];
− };
− };
− "password-hash" = rec {
− crateName = "password-hash";
− version = "0.2.3";
− edition = "2018";
− sha256 = "1rr4kd52ld978a2xhcvlc54p1d92yhxl9kvbajba7ia6rs5b5q3p";
− libName = "password_hash";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "base64ct";
− packageId = "base64ct";
− }
− {
− name = "rand_core";
− packageId = "rand_core 0.6.4";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "subtle";
− packageId = "subtle";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "alloc" = [ "base64ct/alloc" ];
− "default" = [ "rand_core" ];
− "rand_core" = [ "dep:rand_core" ];
− "std" = [ "alloc" "base64ct/std" "rand_core/std" ];
− };
− resolvedDefaultFeatures = [ "rand_core" ];
− };
− "path-slash" = rec {
− crateName = "path-slash";
− version = "0.2.1";
− edition = "2018";
− sha256 = "0hjgljv4vy97qqw9gxnwzqhhpysjss2yhdphfccy3c388afhk48y";
− libName = "path_slash";
− authors = [
− "rhysd <https://rhysd.github.io>"
− ];
−
− };
− "pathdiff" = rec {
− crateName = "pathdiff";
− version = "0.2.3";
− edition = "2018";
− sha256 = "1lrqp4ip05df8dzldq6gb2c1sq2gs54gly8lcnv3rhav1qhwx56z";
− authors = [
− "Manish Goregaokar <manishsmail@gmail.com>"
− ];
− features = {
− "camino" = [ "dep:camino" ];
− };
− };
− "pbkdf2 0.12.2" = rec {
− crateName = "pbkdf2";
− version = "0.12.2";
− edition = "2021";
− sha256 = "1wms79jh4flpy1zi8xdp4h8ccxv4d85adc6zjagknvppc5vnmvgq";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "digest";
− packageId = "digest 0.10.7";
− features = [ "mac" ];
− }
− ];
− features = {
− "default" = [ "hmac" ];
− "hmac" = [ "dep:hmac" ];
− "parallel" = [ "rayon" "std" ];
− "password-hash" = [ "dep:password-hash" ];
− "rayon" = [ "dep:rayon" ];
− "sha1" = [ "dep:sha1" ];
− "sha2" = [ "dep:sha2" ];
− "simple" = [ "hmac" "password-hash" "sha2" ];
− "std" = [ "password-hash/std" ];
− };
− };
− "pbkdf2 0.8.0" = rec {
− crateName = "pbkdf2";
− version = "0.8.0";
− edition = "2018";
− sha256 = "1ykgicvyjm41701mzqhrfmiz5sm5y0zwfg6csaapaqaf49a54pyr";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "base64ct";
− packageId = "base64ct";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "crypto-mac";
− packageId = "crypto-mac";
− }
− {
− name = "hmac";
− packageId = "hmac";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "password-hash";
− packageId = "password-hash";
− optional = true;
− usesDefaultFeatures = false;
− features = [ "rand_core" ];
− }
− {
− name = "sha2";
− packageId = "sha2 0.9.9";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− devDependencies = [
− {
− name = "hmac";
− packageId = "hmac";
− }
− {
− name = "sha2";
− packageId = "sha2 0.9.9";
− }
− ];
− features = {
− "base64ct" = [ "dep:base64ct" ];
− "default" = [ "simple" ];
− "hmac" = [ "dep:hmac" ];
− "parallel" = [ "rayon" "std" ];
− "password-hash" = [ "dep:password-hash" ];
− "rayon" = [ "dep:rayon" ];
− "sha1" = [ "dep:sha1" ];
− "sha2" = [ "dep:sha2" ];
− "simple" = [ "sha2" "hmac" "password-hash" "base64ct" ];
− "std" = [ "password-hash/std" ];
− };
− resolvedDefaultFeatures = [ "base64ct" "default" "hmac" "password-hash" "sha2" "simple" ];
− };
− "pbkdf2 0.9.0" = rec {
− crateName = "pbkdf2";
− version = "0.9.0";
− edition = "2018";
− sha256 = "0fa7j0gdgghk64qlhzdv32yg52p0cfaz5ifhk7i4pfm1wsy98n7h";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "crypto-mac";
− packageId = "crypto-mac";
− }
− ];
− features = {
− "default" = [ "simple" ];
− "hmac" = [ "dep:hmac" ];
− "parallel" = [ "rayon" "std" ];
− "password-hash" = [ "dep:password-hash" ];
− "rayon" = [ "dep:rayon" ];
− "sha1" = [ "dep:sha1" ];
− "sha2" = [ "dep:sha2" ];
− "simple" = [ "hmac" "password-hash" "sha2" ];
− "std" = [ "password-hash/std" ];
− };
− };
− "percent-encoding" = rec {
− crateName = "percent-encoding";
− version = "2.3.1";
− edition = "2018";
− sha256 = "0gi8wgx0dcy8rnv1kywdv98lwcx67hz0a0zwpib5v2i08r88y573";
− libName = "percent_encoding";
− authors = [
− "The rust-url developers"
− ];
− features = {
− "default" = [ "std" ];
− "std" = [ "alloc" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "std" ];
− };
− "pijul" = rec {
− crateName = "pijul";
− version = "1.0.0-beta.10";
− edition = "2024";
− crateBin = [
− {
− name = "pijul";
− path = "src/main.rs";
− requiredFeatures = [ ];
− }
− ];
− src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul; };
− authors = [
− "Pierre-Étienne Meunier <pe@pijul.org>"
− ];
− dependencies = [
− {
− name = "anyhow";
− packageId = "anyhow";
− }
− {
− name = "byteorder";
− packageId = "byteorder";
− }
− {
− name = "canonical-path";
− packageId = "canonical-path";
− }
− {
− name = "clap";
− packageId = "clap";
− features = [ "derive" "cargo" ];
− }
− {
− name = "clap_complete";
− packageId = "clap_complete";
− }
− {
− name = "ctrlc";
− packageId = "ctrlc";
− }
− {
− name = "data-encoding";
− packageId = "data-encoding";
− }
− {
− name = "edit";
− packageId = "edit";
− }
− {
− name = "env_logger";
− packageId = "env_logger 0.11.8";
− }
− {
− name = "git2";
− packageId = "git2";
− optional = true;
− }
− {
− name = "human-panic";
− packageId = "human-panic";
− }
− {
− name = "hyper";
− packageId = "hyper";
− features = [ "server" ];
− }
− {
− name = "ignore";
− packageId = "ignore";
− }
− {
− name = "jiff";
− packageId = "jiff";
− features = [ "serde" ];
− }
− {
− name = "keyring";
− packageId = "keyring";
− usesDefaultFeatures = false;
− features = [ "apple-native" "linux-native-sync-persistent" "windows-native" ];
− }
− {
− name = "libpijul";
− packageId = "libpijul";
− features = [ "tarball" ];
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "open";
− packageId = "open";
− }
− {
− name = "pager";
− packageId = "pager";
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "path-slash";
− packageId = "path-slash";
− }
− {
− name = "pijul-config";
− packageId = "pijul-config";
− }
− {
− name = "pijul-identity";
− packageId = "pijul-identity";
− }
− {
− name = "pijul-interaction";
− packageId = "pijul-interaction";
− }
− {
− name = "pijul-remote";
− packageId = "pijul-remote";
− }
− {
− name = "pijul-repository";
− packageId = "pijul-repository";
− }
− {
− name = "ptree";
− packageId = "ptree";
− usesDefaultFeatures = false;
− features = [ "ansi" ];
− }
− {
− name = "rand";
− packageId = "rand 0.8.5";
− }
− {
− name = "regex";
− packageId = "regex";
− }
− {
− name = "sanakirja";
− packageId = "sanakirja";
− usesDefaultFeatures = false;
− features = [ "crc32" ];
− }
− {
− name = "serde";
− packageId = "serde";
− }
− {
− name = "serde_derive";
− packageId = "serde_derive";
− }
− {
− name = "serde_json";
− packageId = "serde_json";
− }
− {
− name = "tempfile";
− packageId = "tempfile";
− }
− {
− name = "termcolor";
− packageId = "termcolor";
− }
− {
− name = "thiserror";
− packageId = "thiserror 2.0.12";
− }
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "rt-multi-thread" "macros" "sync" "fs" ];
− }
− {
− name = "toml";
− packageId = "toml";
− features = [ "preserve_order" ];
− }
− {
− name = "url";
− packageId = "url";
− }
− {
− name = "validator";
− packageId = "validator";
− }
− {
− name = "whoami";
− packageId = "whoami";
− usesDefaultFeatures = false;
− }
− ];
− devDependencies = [
− {
− name = "expectrl";
− packageId = "expectrl";
− }
− ];
− features = {
− "default" = [ "keep-changes" "openssl" ];
− "git" = [ "git2" ];
− "git2" = [ "dep:git2" ];
− "openssl" = [ "pijul-identity/openssl" "pijul-remote/openssl" ];
− };
− resolvedDefaultFeatures = [ "default" "git" "git2" "keep-changes" "openssl" ];
− };
− "pijul-config" = rec {
− crateName = "pijul-config";
− version = "1.0.0-beta.10";
− edition = "2024";
− src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul-config; };
− libName = "pijul_config";
− authors = [
− "Pierre-Étienne Meunier <pe@pijul.org>"
− ];
− dependencies = [
− {
− name = "anyhow";
− packageId = "anyhow";
− }
− {
− name = "dialoguer";
− packageId = "dialoguer";
− usesDefaultFeatures = false;
− features = [ "editor" ];
− }
− {
− name = "dirs-next";
− packageId = "dirs-next";
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "serde";
− packageId = "serde";
− }
− {
− name = "serde_derive";
− packageId = "serde_derive";
− }
− {
− name = "toml";
− packageId = "toml";
− features = [ "preserve_order" ];
− }
− {
− name = "whoami";
− packageId = "whoami";
− usesDefaultFeatures = false;
− }
− ];
−
− };
− "pijul-identity" = rec {
− crateName = "pijul-identity";
− version = "1.0.0-beta.10";
− edition = "2024";
− src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul-identity; };
− libName = "pijul_identity";
− authors = [
− "Finchie"
− ];
− dependencies = [
− {
− name = "anyhow";
− packageId = "anyhow";
− }
− {
− name = "dirs-next";
− packageId = "dirs-next";
− }
− {
− name = "jiff";
− packageId = "jiff";
− features = [ "serde" ];
− }
− {
− name = "keyring";
− packageId = "keyring";
− usesDefaultFeatures = false;
− features = [ "apple-native" "linux-native-sync-persistent" "windows-native" ];
− }
− {
− name = "libpijul";
− packageId = "libpijul";
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "pijul-config";
− packageId = "pijul-config";
− }
− {
− name = "pijul-interaction";
− packageId = "pijul-interaction";
− }
− {
− name = "serde";
− packageId = "serde";
− }
− {
− name = "serde_derive";
− packageId = "serde_derive";
− }
− {
− name = "serde_json";
− packageId = "serde_json";
− }
− {
− name = "thiserror";
− packageId = "thiserror 2.0.12";
− }
− {
− name = "thrussh-keys";
− packageId = "thrussh-keys";
− }
− {
− name = "toml";
− packageId = "toml";
− features = [ "preserve_order" ];
− }
− {
− name = "validator";
− packageId = "validator";
− }
− {
− name = "whoami";
− packageId = "whoami";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "default" = [ "openssl" ];
− "openssl" = [ "thrussh-keys/openssl" ];
− };
− resolvedDefaultFeatures = [ "default" "openssl" ];
− };
− "pijul-interaction" = rec {
− crateName = "pijul-interaction";
− version = "1.0.0-beta.10";
− edition = "2024";
− src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul-interaction; };
− libName = "pijul_interaction";
− authors = [
− "Finchie"
− ];
− dependencies = [
− {
− name = "dialoguer";
− packageId = "dialoguer";
− usesDefaultFeatures = false;
− features = [ "fuzzy-select" "password" ];
− }
− {
− name = "duplicate";
− packageId = "duplicate";
− }
− {
− name = "indicatif";
− packageId = "indicatif";
− features = [ "improved_unicode" ];
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "pijul-config";
− packageId = "pijul-config";
− }
− {
− name = "thiserror";
− packageId = "thiserror 2.0.12";
− }
− ];
−
− };
− "pijul-macros" = rec {
− crateName = "pijul-macros";
− version = "1.0.0-beta.10";
− edition = "2024";
− src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul-macros; };
− procMacro = true;
− libName = "pijul_macros";
− authors = [
− "Pierre-Étienne Meunier <pe@pijul.org>"
− ];
− dependencies = [
− {
− name = "proc-macro2";
− packageId = "proc-macro2";
− }
− {
− name = "quote";
− packageId = "quote";
− }
− {
− name = "syn";
− packageId = "syn";
− }
− ];
−
− };
− "pijul-remote" = rec {
− crateName = "pijul-remote";
− version = "1.0.0-beta.10";
− edition = "2024";
− src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul-remote; };
− libName = "pijul_remote";
− authors = [
− "Pierre-Étienne Meunier <pe@pijul.org>"
− ];
− dependencies = [
− {
− name = "anyhow";
− packageId = "anyhow";
− }
− {
− name = "byteorder";
− packageId = "byteorder";
− }
− {
− name = "bytes";
− packageId = "bytes";
− }
− {
− name = "dirs-next";
− packageId = "dirs-next";
− }
− {
− name = "futures";
− packageId = "futures";
− }
− {
− name = "futures-util";
− packageId = "futures-util";
− }
− {
− name = "keyring";
− packageId = "keyring";
− usesDefaultFeatures = false;
− features = [ "apple-native" "linux-native-sync-persistent" "windows-native" ];
− }
− {
− name = "libpijul";
− packageId = "libpijul";
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "pijul-config";
− packageId = "pijul-config";
− }
− {
− name = "pijul-identity";
− packageId = "pijul-identity";
− }
− {
− name = "pijul-interaction";
− packageId = "pijul-interaction";
− }
− {
− name = "pijul-repository";
− packageId = "pijul-repository";
− }
− {
− name = "regex";
− packageId = "regex";
− }
− {
− name = "reqwest";
− packageId = "reqwest";
− features = [ "stream" "json" ];
− }
− {
− name = "sanakirja";
− packageId = "sanakirja";
− usesDefaultFeatures = false;
− features = [ "crc32" ];
− }
− {
− name = "serde";
− packageId = "serde";
− }
− {
− name = "serde_derive";
− packageId = "serde_derive";
− }
− {
− name = "serde_json";
− packageId = "serde_json";
− }
− {
− name = "thrussh";
− packageId = "thrussh";
− }
− {
− name = "thrussh-config";
− packageId = "thrussh-config";
− }
− {
− name = "thrussh-keys";
− packageId = "thrussh-keys";
− }
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "rt-multi-thread" "macros" "sync" "fs" ];
− }
− {
− name = "url";
− packageId = "url";
− }
− ];
− features = {
− "default" = [ "openssl" ];
− "openssl" = [ "thrussh-keys/openssl" "thrussh/openssl" ];
− };
− resolvedDefaultFeatures = [ "default" "openssl" ];
− };
− "pijul-repository" = rec {
− crateName = "pijul-repository";
− version = "1.0.0-beta.10";
− edition = "2024";
− src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul-repository; };
− libName = "pijul_repository";
− authors = [
− "Pierre-Étienne Meunier <pe@pijul.org>"
− ];
− dependencies = [
− {
− name = "anyhow";
− packageId = "anyhow";
− }
− {
− name = "libpijul";
− packageId = "libpijul";
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "pijul-config";
− packageId = "pijul-config";
− }
− {
− name = "rlimit";
− packageId = "rlimit";
− }
− {
− name = "toml";
− packageId = "toml";
− features = [ "preserve_order" ];
− }
− ];
−
− };
− "pin-project-lite" = rec {
− crateName = "pin-project-lite";
− version = "0.2.16";
− edition = "2018";
− sha256 = "16wzc7z7dfkf9bmjin22f5282783f6mdksnr0nv0j5ym5f9gyg1v";
− libName = "pin_project_lite";
−
− };
− "pin-utils" = rec {
− crateName = "pin-utils";
− version = "0.1.0";
− edition = "2018";
− sha256 = "117ir7vslsl2z1a7qzhws4pd01cg2d3338c47swjyvqv2n60v1wb";
− libName = "pin_utils";
− authors = [
− "Josef Brandl <mail@josefbrandl.de>"
− ];
−
− };
− "pkg-config" = rec {
− crateName = "pkg-config";
− version = "0.3.32";
− edition = "2018";
− sha256 = "0k4h3gnzs94sjb2ix6jyksacs52cf1fanpwsmlhjnwrdnp8dppby";
− libName = "pkg_config";
− authors = [
− "Alex Crichton <alex@alexcrichton.com>"
− ];
−
− };
− "plist" = rec {
− crateName = "plist";
− version = "1.7.2";
− edition = "2021";
− sha256 = "1vaq384l8hj6w04pr0gxzc6jm6wcbccqcpx1ys2cv16mw9628xrx";
− authors = [
− "Ed Barnard <eabarnard@gmail.com>"
− ];
− dependencies = [
− {
− name = "base64";
− packageId = "base64 0.22.1";
− }
− {
− name = "indexmap";
− packageId = "indexmap";
− }
− {
− name = "quick-xml";
− packageId = "quick-xml";
− rename = "quick_xml";
− }
− {
− name = "serde";
− packageId = "serde";
− optional = true;
− }
− {
− name = "time";
− packageId = "time";
− features = [ "parsing" "formatting" ];
− }
− ];
− features = {
− "default" = [ "serde" ];
− "serde" = [ "dep:serde" ];
− };
− resolvedDefaultFeatures = [ "default" "serde" ];
− };
− "portable-atomic" = rec {
− crateName = "portable-atomic";
− version = "1.11.1";
− edition = "2018";
− sha256 = "10s4cx9y3jvw0idip09ar52s2kymq8rq9a668f793shn1ar6fhpq";
− libName = "portable_atomic";
− features = {
− "critical-section" = [ "dep:critical-section" ];
− "default" = [ "fallback" ];
− "serde" = [ "dep:serde" ];
− };
− resolvedDefaultFeatures = [ "default" "fallback" "require-cas" ];
− };
− "portable-atomic-util" = rec {
− crateName = "portable-atomic-util";
− version = "0.2.4";
− edition = "2018";
− sha256 = "01rmx1li07ixsx3sqg2bxqrkzk7b5n8pibwwf2589ms0s3cg18nq";
− libName = "portable_atomic_util";
− dependencies = [
− {
− name = "portable-atomic";
− packageId = "portable-atomic";
− usesDefaultFeatures = false;
− features = [ "require-cas" ];
− }
− ];
− features = {
− "std" = [ "alloc" ];
− };
− resolvedDefaultFeatures = [ "alloc" ];
− };
− "potential_utf" = rec {
− crateName = "potential_utf";
− version = "0.1.2";
− edition = "2021";
− sha256 = "11dm6k3krx3drbvhgjw8z508giiv0m09wzl6ghza37176w4c79z5";
− authors = [
− "The ICU4X Project Developers"
− ];
− dependencies = [
− {
− name = "zerovec";
− packageId = "zerovec";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "alloc" = [ "serde?/alloc" "zerovec?/alloc" ];
− "databake" = [ "dep:databake" ];
− "serde" = [ "dep:serde" ];
− "writeable" = [ "dep:writeable" "alloc" ];
− "zerovec" = [ "dep:zerovec" ];
− };
− resolvedDefaultFeatures = [ "zerovec" ];
− };
− "powerfmt" = rec {
− crateName = "powerfmt";
− version = "0.2.0";
− edition = "2021";
− sha256 = "14ckj2xdpkhv3h6l5sdmb9f1d57z8hbfpdldjc2vl5givq2y77j3";
− authors = [
− "Jacob Pratt <jacob@jhpratt.dev>"
− ];
− features = {
− "default" = [ "std" "macros" ];
− "macros" = [ "dep:powerfmt-macros" ];
− "std" = [ "alloc" ];
− };
− };
− "ppv-lite86" = rec {
− crateName = "ppv-lite86";
− version = "0.2.21";
− edition = "2021";
− sha256 = "1abxx6qz5qnd43br1dd9b2savpihzjza8gb4fbzdql1gxp2f7sl5";
− libName = "ppv_lite86";
− authors = [
− "The CryptoCorrosion Contributors"
− ];
− dependencies = [
− {
− name = "zerocopy";
− packageId = "zerocopy";
− features = [ "simd" ];
− }
− ];
− features = {
− "default" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "simd" "std" ];
− };
− "proc-macro2" = rec {
− crateName = "proc-macro2";
− version = "1.0.95";
− edition = "2021";
− sha256 = "0y7pwxv6sh4fgg6s715ygk1i7g3w02c0ljgcsfm046isibkfbcq2";
− 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" ];
− };
− "proc-macro2-diagnostics" = rec {
− crateName = "proc-macro2-diagnostics";
− version = "0.10.1";
− edition = "2018";
− sha256 = "1j48ipc80pykvhx6yhndfa774s58ax1h6sm6mlhf09ls76f6l1mg";
− libName = "proc_macro2_diagnostics";
− authors = [
− "Sergio Benitez <sb@sergio.bz>"
− ];
− dependencies = [
− {
− name = "proc-macro2";
− packageId = "proc-macro2";
− }
− {
− name = "quote";
− packageId = "quote";
− }
− {
− name = "syn";
− packageId = "syn";
− }
− {
− name = "yansi";
− packageId = "yansi";
− optional = true;
− }
− ];
− buildDependencies = [
− {
− name = "version_check";
− packageId = "version_check";
− }
− ];
− features = {
− "colors" = [ "yansi" ];
− "default" = [ "colors" ];
− "yansi" = [ "dep:yansi" ];
− };
− resolvedDefaultFeatures = [ "colors" "default" "yansi" ];
− };
− "ptree" = rec {
− crateName = "ptree";
− version = "0.5.2";
− edition = "2021";
− sha256 = "05qzlans9q3xfig8rhykcsk3p5y9l7bhsdrfazr7y3pcxchgv718";
− authors = [
− "Miha Čančula <miha@noughmad.eu>"
− ];
− dependencies = [
− {
− name = "anstyle";
− packageId = "anstyle";
− optional = true;
− }
− {
− name = "serde";
− packageId = "serde";
− features = [ "derive" ];
− }
− {
− name = "tint";
− packageId = "tint";
− optional = true;
− }
− ];
− features = {
− "ansi" = [ "anstyle" "tint" ];
− "anstyle" = [ "dep:anstyle" ];
− "conf" = [ "config" "directories" ];
− "config" = [ "dep:config" ];
− "default" = [ "petgraph" "ansi" "conf" "value" ];
− "directories" = [ "dep:directories" ];
− "petgraph" = [ "dep:petgraph" ];
− "serde-value" = [ "dep:serde-value" ];
− "tint" = [ "dep:tint" ];
− "value" = [ "serde-value" ];
− };
− resolvedDefaultFeatures = [ "ansi" "anstyle" "tint" ];
− };
− "ptyprocess" = rec {
− crateName = "ptyprocess";
− version = "0.4.1";
− edition = "2018";
− sha256 = "1kz8gzsr2pjpxcxy708338wcdqnxg3cpfbca8q8a44gvpvvsw1by";
− authors = [
− "Maxim Zhiburt <zhiburt@gmail.com>"
− ];
− dependencies = [
− {
− name = "nix";
− packageId = "nix 0.26.4";
− }
− ];
−
− };
− "quick-xml" = rec {
− crateName = "quick-xml";
− version = "0.37.5";
− edition = "2021";
− sha256 = "1yxpd7rc2qn6f4agfj47ps2z89vv7lvzxpzawqirix8bmyhrf7ik";
− libName = "quick_xml";
− dependencies = [
− {
− name = "memchr";
− packageId = "memchr";
− }
− ];
− features = {
− "arbitrary" = [ "dep:arbitrary" ];
− "async-tokio" = [ "tokio" ];
− "document-features" = [ "dep:document-features" ];
− "encoding" = [ "encoding_rs" ];
− "encoding_rs" = [ "dep:encoding_rs" ];
− "serde" = [ "dep:serde" ];
− "serde-types" = [ "serde/derive" ];
− "serialize" = [ "serde" ];
− "tokio" = [ "dep:tokio" ];
− };
− resolvedDefaultFeatures = [ "default" ];
− };
− "quickcheck" = rec {
− crateName = "quickcheck";
− version = "1.0.3";
− edition = "2018";
− sha256 = "1mjhkfqwrb8mdyxdqr4zzbj1rm5dfx25n9zcc25lb6fxwiw673sq";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− ];
− dependencies = [
− {
− name = "env_logger";
− packageId = "env_logger 0.8.4";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "log";
− packageId = "log";
− optional = true;
− }
− {
− name = "rand";
− packageId = "rand 0.8.5";
− usesDefaultFeatures = false;
− features = [ "getrandom" "small_rng" ];
− }
− ];
− features = {
− "default" = [ "regex" "use_logging" ];
− "env_logger" = [ "dep:env_logger" ];
− "log" = [ "dep:log" ];
− "regex" = [ "env_logger/regex" ];
− "use_logging" = [ "log" "env_logger" ];
− };
− resolvedDefaultFeatures = [ "default" "env_logger" "log" "regex" "use_logging" ];
− };
− "quote" = rec {
− crateName = "quote";
− version = "1.0.40";
− edition = "2018";
− sha256 = "1394cxjg6nwld82pzp2d4fp6pmaz32gai1zh9z5hvh0dawww118q";
− authors = [
− "David Tolnay <dtolnay@gmail.com>"
− ];
− dependencies = [
− {
− name = "proc-macro2";
− packageId = "proc-macro2";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "default" = [ "proc-macro" ];
− "proc-macro" = [ "proc-macro2/proc-macro" ];
− };
− resolvedDefaultFeatures = [ "default" "proc-macro" ];
− };
− "r-efi" = rec {
− crateName = "r-efi";
− version = "5.3.0";
− edition = "2018";
− sha256 = "03sbfm3g7myvzyylff6qaxk4z6fy76yv860yy66jiswc2m6b7kb9";
− libName = "r_efi";
− features = {
− "core" = [ "dep:core" ];
− "examples" = [ "native" ];
− "rustc-dep-of-std" = [ "core" ];
− };
− };
− "rand 0.7.3" = rec {
− crateName = "rand";
− version = "0.7.3";
− edition = "2018";
− sha256 = "00sdaimkbz491qgi6qxkv582yivl32m2jd401kzbn94vsiwicsva";
− authors = [
− "The Rand Project Developers"
− "The Rust Project Developers"
− ];
− dependencies = [
− {
− name = "getrandom";
− packageId = "getrandom 0.1.16";
− rename = "getrandom_package";
− optional = true;
− }
− {
− name = "libc";
− packageId = "libc";
− optional = true;
− usesDefaultFeatures = false;
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "rand_chacha";
− packageId = "rand_chacha 0.2.2";
− usesDefaultFeatures = false;
− target = { target, features }: (!("emscripten" == target."os" or null));
− }
− {
− name = "rand_core";
− packageId = "rand_core 0.5.1";
− }
− {
− name = "rand_hc";
− packageId = "rand_hc";
− target = { target, features }: ("emscripten" == target."os" or null);
− }
− ];
− devDependencies = [
− {
− name = "rand_hc";
− packageId = "rand_hc";
− }
− ];
− features = {
− "alloc" = [ "rand_core/alloc" ];
− "default" = [ "std" ];
− "getrandom" = [ "getrandom_package" "rand_core/getrandom" ];
− "getrandom_package" = [ "dep:getrandom_package" ];
− "libc" = [ "dep:libc" ];
− "log" = [ "dep:log" ];
− "nightly" = [ "simd_support" ];
− "packed_simd" = [ "dep:packed_simd" ];
− "rand_pcg" = [ "dep:rand_pcg" ];
− "simd_support" = [ "packed_simd" ];
− "small_rng" = [ "rand_pcg" ];
− "std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ];
− "stdweb" = [ "getrandom_package/stdweb" ];
− "wasm-bindgen" = [ "getrandom_package/wasm-bindgen" ];
− };
− resolvedDefaultFeatures = [ "alloc" "getrandom" "getrandom_package" "libc" "std" ];
− };
− "rand 0.8.5" = rec {
− crateName = "rand";
− version = "0.8.5";
− edition = "2018";
− sha256 = "013l6931nn7gkc23jz5mm3qdhf93jjf0fg64nz2lp4i51qd8vbrl";
− authors = [
− "The Rand Project Developers"
− "The Rust Project Developers"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− optional = true;
− usesDefaultFeatures = false;
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "rand_chacha";
− packageId = "rand_chacha 0.3.1";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "rand_core";
− packageId = "rand_core 0.6.4";
− }
− ];
− features = {
− "alloc" = [ "rand_core/alloc" ];
− "default" = [ "std" "std_rng" ];
− "getrandom" = [ "rand_core/getrandom" ];
− "libc" = [ "dep:libc" ];
− "log" = [ "dep:log" ];
− "packed_simd" = [ "dep:packed_simd" ];
− "rand_chacha" = [ "dep:rand_chacha" ];
− "serde" = [ "dep:serde" ];
− "serde1" = [ "serde" "rand_core/serde1" ];
− "simd_support" = [ "packed_simd" ];
− "std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ];
− "std_rng" = [ "rand_chacha" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "getrandom" "libc" "rand_chacha" "small_rng" "std" "std_rng" ];
− };
− "rand_chacha 0.2.2" = rec {
− crateName = "rand_chacha";
− version = "0.2.2";
− edition = "2018";
− sha256 = "00il36fkdbsmpr99p9ksmmp6dn1md7rmnwmz0rr77jbrca2yvj7l";
− authors = [
− "The Rand Project Developers"
− "The Rust Project Developers"
− "The CryptoCorrosion Contributors"
− ];
− dependencies = [
− {
− name = "ppv-lite86";
− packageId = "ppv-lite86";
− usesDefaultFeatures = false;
− features = [ "simd" ];
− }
− {
− name = "rand_core";
− packageId = "rand_core 0.5.1";
− }
− ];
− features = {
− "default" = [ "std" "simd" ];
− "std" = [ "ppv-lite86/std" ];
− };
− resolvedDefaultFeatures = [ "std" ];
− };
− "rand_chacha 0.3.1" = rec {
− crateName = "rand_chacha";
− version = "0.3.1";
− edition = "2018";
− sha256 = "123x2adin558xbhvqb8w4f6syjsdkmqff8cxwhmjacpsl1ihmhg6";
− authors = [
− "The Rand Project Developers"
− "The Rust Project Developers"
− "The CryptoCorrosion Contributors"
− ];
− dependencies = [
− {
− name = "ppv-lite86";
− packageId = "ppv-lite86";
− usesDefaultFeatures = false;
− features = [ "simd" ];
− }
− {
− name = "rand_core";
− packageId = "rand_core 0.6.4";
− }
− ];
− features = {
− "default" = [ "std" ];
− "serde" = [ "dep:serde" ];
− "serde1" = [ "serde" ];
− "std" = [ "ppv-lite86/std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "rand_core 0.5.1" = rec {
− crateName = "rand_core";
− version = "0.5.1";
− edition = "2018";
− sha256 = "06bdvx08v3rkz451cm7z59xwwqn1rkfh6v9ay77b14f8dwlybgch";
− authors = [
− "The Rand Project Developers"
− "The Rust Project Developers"
− ];
− dependencies = [
− {
− name = "getrandom";
− packageId = "getrandom 0.1.16";
− optional = true;
− }
− ];
− features = {
− "getrandom" = [ "dep:getrandom" ];
− "serde" = [ "dep:serde" ];
− "serde1" = [ "serde" ];
− "std" = [ "alloc" "getrandom" "getrandom/std" ];
− };
− resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ];
− };
− "rand_core 0.6.4" = rec {
− crateName = "rand_core";
− version = "0.6.4";
− edition = "2018";
− sha256 = "0b4j2v4cb5krak1pv6kakv4sz6xcwbrmy2zckc32hsigbrwy82zc";
− authors = [
− "The Rand Project Developers"
− "The Rust Project Developers"
− ];
− dependencies = [
− {
− name = "getrandom";
− packageId = "getrandom 0.2.16";
− optional = true;
− }
− ];
− features = {
− "getrandom" = [ "dep:getrandom" ];
− "serde" = [ "dep:serde" ];
− "serde1" = [ "serde" ];
− "std" = [ "alloc" "getrandom" "getrandom/std" ];
− };
− resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ];
− };
− "rand_hc" = rec {
− crateName = "rand_hc";
− version = "0.2.0";
− edition = "2018";
− sha256 = "0g31sqwpmsirdlwr0svnacr4dbqyz339im4ssl9738cjgfpjjcfa";
− authors = [
− "The Rand Project Developers"
− ];
− dependencies = [
− {
− name = "rand_core";
− packageId = "rand_core 0.5.1";
− }
− ];
−
− };
− "redox_syscall 0.2.16" = rec {
− crateName = "redox_syscall";
− version = "0.2.16";
− edition = "2018";
− sha256 = "16jicm96kjyzm802cxdd1k9jmcph0db1a4lhslcnhjsvhp0mhnpv";
− libName = "syscall";
− authors = [
− "Jeremy Soller <jackpot51@gmail.com>"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 1.3.2";
− }
− ];
−
− };
− "redox_syscall 0.5.13" = rec {
− crateName = "redox_syscall";
− version = "0.5.13";
− edition = "2021";
− sha256 = "1mlzna9bcd7ss1973bmysr3hpjrys82b3bd7l03h4jkbxv8bf10d";
− libName = "syscall";
− authors = [
− "Jeremy Soller <jackpot51@gmail.com>"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 2.9.1";
− }
− ];
− features = {
− "core" = [ "dep:core" ];
− "default" = [ "userspace" ];
− "rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ];
− };
− resolvedDefaultFeatures = [ "default" "userspace" ];
− };
− "redox_users" = rec {
− crateName = "redox_users";
− version = "0.4.6";
− edition = "2021";
− sha256 = "0hya2cxx6hxmjfxzv9n8rjl5igpychav7zfi1f81pz6i4krry05s";
− authors = [
− "Jose Narvaez <goyox86@gmail.com>"
− "Wesley Hershberger <mggmugginsmc@gmail.com>"
− ];
− dependencies = [
− {
− name = "getrandom";
− packageId = "getrandom 0.2.16";
− features = [ "std" ];
− }
− {
− name = "libredox";
− packageId = "libredox";
− usesDefaultFeatures = false;
− features = [ "std" "call" ];
− }
− {
− name = "thiserror";
− packageId = "thiserror 1.0.69";
− }
− ];
− features = {
− "auth" = [ "rust-argon2" "zeroize" ];
− "default" = [ "auth" ];
− "rust-argon2" = [ "dep:rust-argon2" ];
− "zeroize" = [ "dep:zeroize" ];
− };
− };
− "regex" = rec {
− crateName = "regex";
− version = "1.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";
− usesDefaultFeatures = false;
− features = [ "alloc" "syntax" "meta" "nfa-pikevm" ];
− }
− {
− name = "regex-syntax";
− packageId = "regex-syntax";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "default" = [ "std" "perf" "unicode" "regex-syntax/default" ];
− "logging" = [ "aho-corasick?/logging" "memchr?/logging" "regex-automata/logging" ];
− "perf" = [ "perf-cache" "perf-dfa" "perf-onepass" "perf-backtrack" "perf-inline" "perf-literal" ];
− "perf-backtrack" = [ "regex-automata/nfa-backtrack" ];
− "perf-dfa" = [ "regex-automata/hybrid" ];
− "perf-dfa-full" = [ "regex-automata/dfa-build" "regex-automata/dfa-search" ];
− "perf-inline" = [ "regex-automata/perf-inline" ];
− "perf-literal" = [ "dep:aho-corasick" "dep:memchr" "regex-automata/perf-literal" ];
− "perf-onepass" = [ "regex-automata/dfa-onepass" ];
− "std" = [ "aho-corasick?/std" "memchr?/std" "regex-automata/std" "regex-syntax/std" ];
− "unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "regex-automata/unicode" "regex-syntax/unicode" ];
− "unicode-age" = [ "regex-automata/unicode-age" "regex-syntax/unicode-age" ];
− "unicode-bool" = [ "regex-automata/unicode-bool" "regex-syntax/unicode-bool" ];
− "unicode-case" = [ "regex-automata/unicode-case" "regex-syntax/unicode-case" ];
− "unicode-gencat" = [ "regex-automata/unicode-gencat" "regex-syntax/unicode-gencat" ];
− "unicode-perl" = [ "regex-automata/unicode-perl" "regex-automata/unicode-word-boundary" "regex-syntax/unicode-perl" ];
− "unicode-script" = [ "regex-automata/unicode-script" "regex-syntax/unicode-script" ];
− "unicode-segment" = [ "regex-automata/unicode-segment" "regex-syntax/unicode-segment" ];
− "unstable" = [ "pattern" ];
− "use_std" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "default" "perf" "perf-backtrack" "perf-cache" "perf-dfa" "perf-inline" "perf-literal" "perf-onepass" "std" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
− };
− "regex-automata" = rec {
− crateName = "regex-automata";
− version = "0.4.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";
− 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" "nfa-backtrack" "nfa-pikevm" "nfa-thompson" "perf" "perf-inline" "perf-literal" "perf-literal-multisubstring" "perf-literal-substring" "std" "syntax" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" ];
− };
− "regex-syntax" = rec {
− crateName = "regex-syntax";
− version = "0.8.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.11.27";
− edition = "2021";
− sha256 = "0qjary4hpplpgdi62d2m0xvbn6lnzckwffm0rgkm2x51023m6ryx";
− authors = [
− "Sean McArthur <sean@seanmonstar.com>"
− ];
− dependencies = [
− {
− name = "base64";
− packageId = "base64 0.21.7";
− }
− {
− name = "bytes";
− packageId = "bytes";
− }
− {
− name = "encoding_rs";
− packageId = "encoding_rs";
− 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";
− 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 = "hyper";
− packageId = "hyper";
− usesDefaultFeatures = false;
− target = { target, features }: (!("wasm32" == target."arch" or null));
− features = [ "tcp" "http1" "http2" "client" "runtime" ];
− }
− {
− name = "hyper-tls";
− packageId = "hyper-tls";
− optional = true;
− target = { target, features }: (!("wasm32" == target."arch" or null));
− }
− {
− 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";
− }
− {
− name = "system-configuration";
− packageId = "system-configuration";
− 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-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 = "winreg";
− packageId = "winreg";
− 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 = [ "tcp" "stream" "http1" "http2" "client" "server" "runtime" ];
− }
− {
− 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 = "wasm-bindgen";
− packageId = "wasm-bindgen";
− target = {target, features}: ("wasm32" == target."arch" or null);
− features = [ "serde-serialize" ];
− }
− ];
− features = {
− "__rustls" = [ "hyper-rustls" "tokio-rustls" "rustls" "__tls" ];
− "__tls" = [ "dep:rustls-pemfile" ];
− "async-compression" = [ "dep:async-compression" ];
− "blocking" = [ "futures-util/io" "tokio/sync" ];
− "brotli" = [ "async-compression" "async-compression/brotli" "tokio-util" ];
− "cookie_crate" = [ "dep:cookie_crate" ];
− "cookie_store" = [ "dep:cookie_store" ];
− "cookies" = [ "cookie_crate" "cookie_store" ];
− "default" = [ "default-tls" ];
− "default-tls" = [ "hyper-tls" "native-tls-crate" "__tls" "tokio-native-tls" ];
− "deflate" = [ "async-compression" "async-compression/zlib" "tokio-util" ];
− "futures-channel" = [ "dep:futures-channel" ];
− "gzip" = [ "async-compression" "async-compression/gzip" "tokio-util" ];
− "h3" = [ "dep:h3" ];
− "h3-quinn" = [ "dep:h3-quinn" ];
− "hickory-dns" = [ "hickory-resolver" ];
− "hickory-resolver" = [ "dep:hickory-resolver" ];
− "http3" = [ "rustls-tls-manual-roots" "h3" "h3-quinn" "quinn" "futures-channel" ];
− "hyper-rustls" = [ "dep:hyper-rustls" ];
− "hyper-tls" = [ "dep:hyper-tls" ];
− "json" = [ "serde_json" ];
− "mime_guess" = [ "dep:mime_guess" ];
− "multipart" = [ "mime_guess" ];
− "native-tls" = [ "default-tls" ];
− "native-tls-alpn" = [ "native-tls" "native-tls-crate/alpn" ];
− "native-tls-crate" = [ "dep:native-tls-crate" ];
− "native-tls-vendored" = [ "native-tls" "native-tls-crate/vendored" ];
− "quinn" = [ "dep:quinn" ];
− "rustls" = [ "dep:rustls" ];
− "rustls-native-certs" = [ "dep:rustls-native-certs" ];
− "rustls-tls" = [ "rustls-tls-webpki-roots" ];
− "rustls-tls-manual-roots" = [ "__rustls" ];
− "rustls-tls-native-roots" = [ "rustls-native-certs" "__rustls" ];
− "rustls-tls-webpki-roots" = [ "webpki-roots" "__rustls" ];
− "serde_json" = [ "dep:serde_json" ];
− "socks" = [ "tokio-socks" ];
− "stream" = [ "tokio/fs" "tokio-util" "wasm-streams" ];
− "tokio-native-tls" = [ "dep:tokio-native-tls" ];
− "tokio-rustls" = [ "dep:tokio-rustls" ];
− "tokio-socks" = [ "dep:tokio-socks" ];
− "tokio-util" = [ "dep:tokio-util" ];
− "trust-dns" = [ "hickory-dns" ];
− "wasm-streams" = [ "dep:wasm-streams" ];
− "webpki-roots" = [ "dep:webpki-roots" ];
− };
− resolvedDefaultFeatures = [ "__tls" "default" "default-tls" "hyper-tls" "json" "native-tls-crate" "serde_json" "stream" "tokio-native-tls" "tokio-util" "wasm-streams" ];
− };
− "rlimit" = rec {
− crateName = "rlimit";
− version = "0.10.2";
− edition = "2021";
− sha256 = "0fkr1jyhg0ch50kryy1jxd83nfh2skk80ss7irial6nds0xvchvh";
− authors = [
− "Nugine <nugine@foxmail.com>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− }
− ];
−
− };
− "rustc-demangle" = rec {
− crateName = "rustc-demangle";
− version = "0.1.25";
− edition = "2015";
− sha256 = "0kxq6m0drr40434ch32j31dkg00iaf4zxmqg7sqxajhcz0wng7lq";
− libName = "rustc_demangle";
− authors = [
− "Alex Crichton <alex@alexcrichton.com>"
− ];
− features = {
− "core" = [ "dep:core" ];
− "rustc-dep-of-std" = [ "core" ];
− };
− };
− "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 2.9.1";
− usesDefaultFeatures = false;
− }
− {
− name = "errno";
− packageId = "errno 0.3.13";
− 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 0.3.13";
− 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 0.3.13";
− 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 0.3.13";
− 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.7" = rec {
− crateName = "rustix";
− version = "1.0.7";
− edition = "2021";
− sha256 = "0rhjh16bnxi86nrn9qwcnw5632mvd5m1vdy61s4n9zz7mzb867n7";
− authors = [
− "Dan Gohman <dev@sunfishcode.online>"
− "Jakub Konka <kubkon@jakubkonka.com>"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 2.9.1";
− usesDefaultFeatures = false;
− }
− {
− name = "errno";
− packageId = "errno 0.3.13";
− 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 0.3.13";
− 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 0.3.13";
− 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.4";
− 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.4";
− 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 0.3.13";
− 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-pemfile" = rec {
− crateName = "rustls-pemfile";
− version = "1.0.4";
− edition = "2018";
− sha256 = "1324n5bcns0rnw6vywr5agff3rwfvzphi7rmbyzwnv6glkhclx0w";
− libName = "rustls_pemfile";
− dependencies = [
− {
− name = "base64";
− packageId = "base64 0.21.7";
− }
− ];
−
− };
− "rustversion" = rec {
− crateName = "rustversion";
− version = "1.0.21";
− edition = "2018";
− sha256 = "07bb1xx05hhwpnl43sqrhsmxyk5sd5m5baadp19nxp69s9xij3ca";
− procMacro = true;
− build = "build/build.rs";
− authors = [
− "David Tolnay <dtolnay@gmail.com>"
− ];
−
− };
− "ryu" = rec {
− crateName = "ryu";
− version = "1.0.20";
− edition = "2018";
− sha256 = "07s855l8sb333h6bpn24pka5sp7hjk2w667xy6a0khkf6sqv5lr8";
− authors = [
− "David Tolnay <dtolnay@gmail.com>"
− ];
− features = {
− "no-panic" = [ "dep:no-panic" ];
− };
− };
− "same-file" = rec {
− crateName = "same-file";
− version = "1.0.6";
− edition = "2018";
− sha256 = "00h5j1w87dmhnvbv9l8bic3y7xxsnjmssvifw2ayvgx9mb1ivz4k";
− libName = "same_file";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− ];
− dependencies = [
− {
− name = "winapi-util";
− packageId = "winapi-util";
− target = { target, features }: (target."windows" or false);
− }
− ];
−
− };
− "sanakirja" = rec {
− crateName = "sanakirja";
− version = "1.4.3";
− edition = "2018";
− sha256 = "04bdmhs3y35w3ip265mm4yiyf2493vcizl04kwh248af0q6zgal1";
− authors = [
− "Pierre-Étienne Meunier"
− ];
− dependencies = [
− {
− name = "crc32fast";
− packageId = "crc32fast";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "fs2";
− packageId = "fs2";
− optional = true;
− }
− {
− name = "lazy_static";
− packageId = "lazy_static 1.5.0";
− optional = true;
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "memmap2";
− packageId = "memmap2";
− optional = true;
− }
− {
− name = "parking_lot";
− packageId = "parking_lot 0.11.2";
− }
− {
− name = "sanakirja-core";
− packageId = "sanakirja-core";
− }
− {
− name = "serde";
− packageId = "serde";
− }
− {
− name = "thiserror";
− packageId = "thiserror 1.0.69";
− }
− ];
− features = {
− "crc32" = [ "crc32fast" "lazy_static" "sanakirja-core/crc32" ];
− "crc32fast" = [ "dep:crc32fast" ];
− "default" = [ "mmap" ];
− "ed25519" = [ "sanakirja-core/ed25519" ];
− "fs2" = [ "dep:fs2" ];
− "lazy_static" = [ "dep:lazy_static" ];
− "memmap2" = [ "dep:memmap2" ];
− "mmap" = [ "memmap2" "fs2" ];
− "std" = [ "sanakirja-core/std" ];
− "uuid" = [ "sanakirja-core/uuid" ];
− };
− resolvedDefaultFeatures = [ "crc32" "crc32fast" "fs2" "lazy_static" "memmap2" "mmap" ];
− };
− "sanakirja-core" = rec {
− crateName = "sanakirja-core";
− version = "1.4.1";
− edition = "2018";
− crateBin = [];
− sha256 = "1xcb4d9gaxp61na4dyz9iiq3n1shhiivqs0iv5xnxb1ymqsdnxl3";
− libName = "sanakirja_core";
− authors = [
− "Pierre-Étienne Meunier"
− "Florent Becker"
− ];
− dependencies = [
− {
− name = "crc32fast";
− packageId = "crc32fast";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "crc32" = [ "crc32fast" ];
− "crc32fast" = [ "dep:crc32fast" ];
− "ed25519" = [ "ed25519-zebra" "ed25519-zebra/serde" ];
− "ed25519-zebra" = [ "dep:ed25519-zebra" ];
− "sha2" = [ "dep:sha2" ];
− "typeids" = [ "sha2" ];
− "uuid" = [ "dep:uuid" ];
− };
− resolvedDefaultFeatures = [ "crc32" "crc32fast" ];
− };
− "schannel" = rec {
− crateName = "schannel";
− version = "0.1.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" ];
− }
− ];
−
− };
− "scopeguard" = rec {
− crateName = "scopeguard";
− version = "1.2.0";
− edition = "2015";
− sha256 = "0jcz9sd47zlsgcnm1hdw0664krxwb5gczlif4qngj2aif8vky54l";
− authors = [
− "bluss"
− ];
− features = {
− "default" = [ "use_std" ];
− };
− };
− "security-framework 2.11.1" = rec {
− crateName = "security-framework";
− version = "2.11.1";
− edition = "2021";
− sha256 = "00ldclwx78dm61v7wkach9lcx76awlrv0fdgjdwch4dmy12j4yw9";
− libName = "security_framework";
− authors = [
− "Steven Fackler <sfackler@gmail.com>"
− "Kornel <kornel@geekhood.net>"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 2.9.1";
− }
− {
− name = "core-foundation";
− packageId = "core-foundation 0.9.4";
− }
− {
− 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 3.2.0" = rec {
− crateName = "security-framework";
− version = "3.2.0";
− edition = "2021";
− sha256 = "05mkrddi9i18h9p098d0iimqv1xxz0wd8mbgpbvh9jj67x0205r7";
− libName = "security_framework";
− authors = [
− "Steven Fackler <sfackler@gmail.com>"
− "Kornel <kornel@geekhood.net>"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 2.9.1";
− }
− {
− name = "core-foundation";
− packageId = "core-foundation 0.10.1";
− }
− {
− 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_12" = [ "security-framework-sys/OSX_10_12" ];
− "OSX_10_13" = [ "OSX_10_12" "security-framework-sys/OSX_10_13" "alpn" "session-tickets" ];
− "OSX_10_14" = [ "OSX_10_13" "security-framework-sys/OSX_10_14" ];
− "OSX_10_15" = [ "OSX_10_14" "security-framework-sys/OSX_10_15" ];
− "default" = [ "OSX_10_12" ];
− "log" = [ "dep:log" ];
− "sync-keychain" = [ "OSX_10_13" ];
− };
− resolvedDefaultFeatures = [ "OSX_10_12" "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" "derive" "serde_derive" "std" ];
− };
− "serde_bytes" = rec {
− crateName = "serde_bytes";
− version = "0.11.17";
− edition = "2018";
− sha256 = "15kds0mw19lvm8ydd1qbharh5rz96zir06yn2silqbfy3cigsdw4";
− authors = [
− "David Tolnay <dtolnay@gmail.com>"
− ];
− dependencies = [
− {
− name = "serde";
− packageId = "serde";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "alloc" = [ "serde/alloc" ];
− "default" = [ "std" ];
− "std" = [ "serde/std" ];
− };
− resolvedDefaultFeatures = [ "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 0.10.9" = rec {
− crateName = "sha2";
− version = "0.10.9";
− edition = "2018";
− sha256 = "10xjj843v31ghsksd9sl9y12qfc48157j1xpb8v1ml39jy0psl57";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "cpufeatures";
− packageId = "cpufeatures";
− target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
− }
− {
− name = "digest";
− packageId = "digest 0.10.7";
− }
− ];
− devDependencies = [
− {
− name = "digest";
− packageId = "digest 0.10.7";
− features = [ "dev" ];
− }
− ];
− features = {
− "asm" = [ "sha2-asm" ];
− "asm-aarch64" = [ "asm" ];
− "default" = [ "std" ];
− "oid" = [ "digest/oid" ];
− "sha2-asm" = [ "dep:sha2-asm" ];
− "std" = [ "digest/std" ];
− };
− };
− "sha2 0.9.9" = rec {
− crateName = "sha2";
− version = "0.9.9";
− edition = "2018";
− sha256 = "006q2f0ar26xcjxqz8zsncfgz86zqa5dkwlwv03rhx1rpzhs2n2d";
− authors = [
− "RustCrypto Developers"
− ];
− dependencies = [
− {
− name = "block-buffer";
− packageId = "block-buffer 0.9.0";
− }
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "cpufeatures";
− packageId = "cpufeatures";
− target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
− }
− {
− name = "digest";
− packageId = "digest 0.9.0";
− }
− {
− name = "opaque-debug";
− packageId = "opaque-debug";
− }
− ];
− devDependencies = [
− {
− name = "digest";
− packageId = "digest 0.9.0";
− features = [ "dev" ];
− }
− ];
− features = {
− "asm" = [ "sha2-asm" ];
− "asm-aarch64" = [ "asm" ];
− "default" = [ "std" ];
− "sha2-asm" = [ "dep:sha2-asm" ];
− "std" = [ "digest/std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "shell-words" = rec {
− crateName = "shell-words";
− version = "1.1.0";
− edition = "2015";
− sha256 = "1plgwx8r0h5ismbbp6cp03740wmzgzhip85k5hxqrrkaddkql614";
− libName = "shell_words";
− authors = [
− "Tomasz Miąsko <tomasz.miasko@gmail.com>"
− ];
− features = {
− "default" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "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.5";
− edition = "2015";
− sha256 = "042lkqrpnlrgvrrcirgigxyp1zk70d8v0fsr5w7a18k3bw2vh0wj";
− libName = "signal_hook_registry";
− authors = [
− "Michal 'vorner' Vaner <vorner@vorner.cz>"
− "Masaki Hara <ackie.h.gmai@gmail.com>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− }
− ];
−
− };
− "signature" = rec {
− crateName = "signature";
− version = "1.6.4";
− edition = "2021";
− sha256 = "0z3xg405pg827g6hfdprnszsdqkkbrsfx7f1dl04nv9g7cxks8vl";
− authors = [
− "RustCrypto Developers"
− ];
− features = {
− "default" = [ "std" ];
− "derive-preview" = [ "digest-preview" "signature_derive" ];
− "digest" = [ "dep:digest" ];
− "digest-preview" = [ "digest" ];
− "rand-preview" = [ "rand_core" ];
− "rand_core" = [ "dep:rand_core" ];
− "signature_derive" = [ "dep:signature_derive" ];
− };
− resolvedDefaultFeatures = [ "std" ];
− };
− "slab" = rec {
− crateName = "slab";
− version = "0.4.10";
− edition = "2018";
− sha256 = "03f5a9gdp33mngya4qwq2555138pj74pl015scv57wsic5rikp04";
− authors = [
− "Carl Lerche <me@carllerche.com>"
− ];
− features = {
− "default" = [ "std" ];
− "serde" = [ "dep:serde" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "smallvec" = rec {
− crateName = "smallvec";
− version = "1.15.1";
− edition = "2018";
− sha256 = "00xxdxxpgyq5vjnpljvkmy99xij5rxgh913ii1v16kzynnivgcb7";
− authors = [
− "The Servo Project Developers"
− ];
− features = {
− "arbitrary" = [ "dep:arbitrary" ];
− "bincode" = [ "dep:bincode" ];
− "const_new" = [ "const_generics" ];
− "drain_keep_rest" = [ "drain_filter" ];
− "impl_bincode" = [ "bincode" "unty" ];
− "malloc_size_of" = [ "dep:malloc_size_of" ];
− "serde" = [ "dep:serde" ];
− "unty" = [ "dep:unty" ];
− };
− resolvedDefaultFeatures = [ "const_generics" ];
− };
− "socket2" = rec {
− crateName = "socket2";
− version = "0.5.10";
− edition = "2021";
− sha256 = "0y067ki5q946w91xlz2sb175pnfazizva6fi3kfp639mxnmpc8z2";
− authors = [
− "Alex Crichton <alex@alexcrichton.com>"
− "Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: (target."unix" or false);
− }
− {
− name = "windows-sys";
− packageId = "windows-sys 0.52.0";
− target = { target, features }: (target."windows" or false);
− features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" ];
− }
− ];
− features = {
− };
− resolvedDefaultFeatures = [ "all" ];
− };
− "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" ];
− };
− "static_assertions" = rec {
− crateName = "static_assertions";
− version = "1.1.0";
− edition = "2015";
− sha256 = "0gsl6xmw10gvn3zs1rv99laj5ig7ylffnh71f9l34js4nr4r7sx2";
− authors = [
− "Nikolai Vazquez"
− ];
− features = {
− };
− };
− "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.4.1";
− edition = "2015";
− sha256 = "00b6jzh9gzb0h9n25g06nqr90z3xzqppfhhb260s1hjhh4pg7pkb";
− authors = [
− "Isis Lovecruft <isis@patternsinthevoid.net>"
− "Henry de Valence <hdevalence@hdevalence.ca>"
− ];
− features = {
− "default" = [ "std" "i128" ];
− };
− resolvedDefaultFeatures = [ "std" ];
− };
− "syn" = rec {
− crateName = "syn";
− version = "2.0.104";
− edition = "2021";
− sha256 = "0h2s8cxh5dsh9h41dxnlzpifqqn59cqgm0kljawws61ljq2zgdhp";
− 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 = "0.1.2";
− edition = "2018";
− sha256 = "0q01lyj0gr9a93n10nxsn8lwbzq97jqd6b768x17c8f7v7gccir0";
− authors = [
− "Actyx AG <developer@actyx.io>"
− ];
− features = {
− "futures" = [ "futures-core" ];
− "futures-core" = [ "dep:futures-core" ];
− };
− };
− "synstructure" = rec {
− crateName = "synstructure";
− version = "0.13.2";
− edition = "2018";
− sha256 = "1lh9lx3r3jb18f8sbj29am5hm9jymvbwh6jb1izsnnxgvgrp12kj";
− authors = [
− "Nika Layzell <nika@thelayzells.com>"
− ];
− dependencies = [
− {
− name = "proc-macro2";
− packageId = "proc-macro2";
− usesDefaultFeatures = false;
− }
− {
− name = "quote";
− packageId = "quote";
− usesDefaultFeatures = false;
− }
− {
− name = "syn";
− packageId = "syn";
− 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.5.1";
− edition = "2021";
− sha256 = "1rz0r30xn7fiyqay2dvzfy56cvaa3km74hnbz2d72p97bkf3lfms";
− libName = "system_configuration";
− authors = [
− "Mullvad VPN"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 1.3.2";
− }
− {
− name = "core-foundation";
− packageId = "core-foundation 0.9.4";
− }
− {
− name = "system-configuration-sys";
− packageId = "system-configuration-sys";
− }
− ];
−
− };
− "system-configuration-sys" = rec {
− crateName = "system-configuration-sys";
− version = "0.5.0";
− edition = "2021";
− sha256 = "1jckxvdr37bay3i9v52izgy52dg690x5xfg3hd394sv2xf4b2px7";
− 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.20.0";
− edition = "2021";
− sha256 = "18fnp7mjckd9c9ldlb2zhp1hd4467y2hpvx9l50j97rlhlwlx9p8";
− 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.3";
− 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.7";
− 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" ];
− };
− "termcolor" = rec {
− crateName = "termcolor";
− version = "1.4.1";
− edition = "2018";
− sha256 = "0mappjh3fj3p2nmrg4y7qv94rchwi9mzmgmfflr8p2awdj7lyy86";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− ];
− dependencies = [
− {
− name = "winapi-util";
− packageId = "winapi-util";
− target = { target, features }: (target."windows" or false);
− }
− ];
−
− };
− "thiserror 1.0.69" = rec {
− crateName = "thiserror";
− version = "1.0.69";
− edition = "2021";
− sha256 = "0lizjay08agcr5hs9yfzzj6axs53a2rgx070a1dsi3jpkcrzbamn";
− authors = [
− "David Tolnay <dtolnay@gmail.com>"
− ];
− dependencies = [
− {
− name = "thiserror-impl";
− packageId = "thiserror-impl 1.0.69";
− }
− ];
−
− };
− "thiserror 2.0.12" = rec {
− crateName = "thiserror";
− version = "2.0.12";
− edition = "2021";
− sha256 = "024791nsc0np63g2pq30cjf9acj38z3jwx9apvvi8qsqmqnqlysn";
− authors = [
− "David Tolnay <dtolnay@gmail.com>"
− ];
− dependencies = [
− {
− name = "thiserror-impl";
− packageId = "thiserror-impl 2.0.12";
− }
− ];
− features = {
− "default" = [ "std" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "thiserror-impl 1.0.69" = rec {
− crateName = "thiserror-impl";
− version = "1.0.69";
− edition = "2021";
− sha256 = "1h84fmn2nai41cxbhk6pqf46bxqq1b344v8yz089w1chzi76rvjg";
− procMacro = true;
− libName = "thiserror_impl";
− authors = [
− "David Tolnay <dtolnay@gmail.com>"
− ];
− dependencies = [
− {
− name = "proc-macro2";
− packageId = "proc-macro2";
− }
− {
− name = "quote";
− packageId = "quote";
− }
− {
− name = "syn";
− packageId = "syn";
− }
− ];
−
− };
− "thiserror-impl 2.0.12" = 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.9";
− edition = "2021";
− sha256 = "1191jvl8d63agnq06pcnarivf63qzgpws5xa33hgc92gjjj4c0pn";
− authors = [
− "Amanieu d'Antras <amanieu@gmail.com>"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− ];
− features = {
− };
− };
− "threadpool" = rec {
− crateName = "threadpool";
− version = "1.8.1";
− edition = "2015";
− sha256 = "1amgfyzvynbm8pacniivzq9r0fh3chhs7kijic81j76l6c5ycl6h";
− authors = [
− "The Rust Project Developers"
− "Corey Farwell <coreyf@rwell.org>"
− "Stefan Schindler <dns2utf8@estada.ch>"
− ];
− dependencies = [
− {
− name = "num_cpus";
− packageId = "num_cpus";
− }
− ];
−
− };
− "thrussh" = rec {
− crateName = "thrussh";
− version = "0.35.6";
− edition = "2018";
− sha256 = "0y5ja489vhw0k0pdiwq1p6qrfngqzrfvzjbbamy9cw6vaj3gq9r1";
− authors = [
− "Pierre-Étienne Meunier <pe@pijul.org>"
− ];
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 1.3.2";
− }
− {
− name = "byteorder";
− packageId = "byteorder";
− }
− {
− name = "cryptovec";
− packageId = "cryptovec";
− }
− {
− name = "digest";
− packageId = "digest 0.9.0";
− }
− {
− name = "flate2";
− packageId = "flate2";
− optional = true;
− }
− {
− name = "futures";
− packageId = "futures";
− }
− {
− name = "generic-array";
− packageId = "generic-array";
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "openssl";
− packageId = "openssl";
− optional = true;
− }
− {
− name = "rand";
− packageId = "rand 0.8.5";
− }
− {
− name = "sha2";
− packageId = "sha2 0.9.9";
− }
− {
− name = "thiserror";
− packageId = "thiserror 1.0.69";
− }
− {
− name = "thrussh-keys";
− packageId = "thrussh-keys";
− }
− {
− name = "thrussh-libsodium";
− packageId = "thrussh-libsodium";
− }
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "io-util" "rt-multi-thread" "time" "net" "sync" "macros" "process" ];
− }
− ];
− devDependencies = [
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "io-util" "rt-multi-thread" "time" "net" "sync" "macros" ];
− }
− ];
− features = {
− "default" = [ "flate2" ];
− "flate2" = [ "dep:flate2" ];
− "openssl" = [ "thrussh-keys/openssl" "dep:openssl" ];
− "p256" = [ "thrussh-keys/p256" ];
− };
− resolvedDefaultFeatures = [ "default" "flate2" "openssl" ];
− };
− "thrussh-config" = rec {
− crateName = "thrussh-config";
− version = "0.6.0";
− edition = "2018";
− sha256 = "08k6r947q5xx73y29s24snwlzym5x7v2drdl5y794957i6mlm5zs";
− libName = "thrussh_config";
− authors = [
− "Pierre-Étienne Meunier <pe@pijul.org>"
− ];
− dependencies = [
− {
− name = "dirs-next";
− packageId = "dirs-next";
− }
− {
− name = "futures";
− packageId = "futures";
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "thiserror";
− packageId = "thiserror 1.0.69";
− }
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "io-util" "net" "macros" "process" ];
− }
− {
− name = "whoami";
− packageId = "whoami";
− }
− ];
−
− };
− "thrussh-keys" = rec {
− crateName = "thrussh-keys";
− version = "0.22.1";
− edition = "2018";
− sha256 = "1fsr8ank8vciyfdr27b56gnwasjrvadxkklv6w7dn22c7sqmjgf4";
− libName = "thrussh_keys";
− authors = [
− "Pierre-Étienne Meunier <pe@pijul.org>"
− ];
− dependencies = [
− {
− name = "aes";
− packageId = "aes";
− features = [ "ctr" ];
− }
− {
− name = "bcrypt-pbkdf";
− packageId = "bcrypt-pbkdf";
− }
− {
− name = "bit-vec";
− packageId = "bit-vec";
− }
− {
− name = "block-modes";
− packageId = "block-modes";
− }
− {
− name = "byteorder";
− packageId = "byteorder";
− }
− {
− name = "cryptovec";
− packageId = "cryptovec";
− }
− {
− name = "data-encoding";
− packageId = "data-encoding";
− }
− {
− name = "dirs";
− packageId = "dirs";
− }
− {
− name = "futures";
− packageId = "futures";
− }
− {
− name = "hmac";
− packageId = "hmac";
− }
− {
− name = "log";
− packageId = "log";
− }
− {
− name = "md5";
− packageId = "md5";
− }
− {
− name = "num-bigint";
− packageId = "num-bigint";
− }
− {
− name = "num-integer";
− packageId = "num-integer";
− }
− {
− name = "openssl";
− packageId = "openssl";
− optional = true;
− }
− {
− name = "pbkdf2";
− packageId = "pbkdf2 0.8.0";
− }
− {
− name = "rand";
− packageId = "rand 0.8.5";
− }
− {
− name = "serde";
− packageId = "serde";
− }
− {
− name = "serde_derive";
− packageId = "serde_derive";
− }
− {
− name = "sha2";
− packageId = "sha2 0.9.9";
− }
− {
− name = "thiserror";
− packageId = "thiserror 1.0.69";
− }
− {
− name = "thrussh-libsodium";
− packageId = "thrussh-libsodium";
− }
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "io-util" "rt-multi-thread" "time" "net" ];
− }
− {
− name = "tokio-stream";
− packageId = "tokio-stream";
− features = [ "net" ];
− }
− {
− name = "yasna";
− packageId = "yasna";
− features = [ "bit-vec" "num-bigint" ];
− }
− ];
− features = {
− "openssl" = [ "dep:openssl" ];
− "p256" = [ "dep:p256" ];
− };
− resolvedDefaultFeatures = [ "openssl" ];
− };
− "thrussh-libsodium" = rec {
− crateName = "thrussh-libsodium";
− version = "0.2.3";
− edition = "2018";
− sha256 = "07lscwsfrh02hqnjw62wyknwmydiqwq4jz1gg1g25xygnh79qksz";
− libName = "thrussh_libsodium";
− authors = [
− "pe@pijul.org <pe@pijul.org>"
− ];
− dependencies = [
− {
− name = "lazy_static";
− packageId = "lazy_static 1.5.0";
− }
− {
− name = "libc";
− packageId = "libc";
− }
− {
− name = "libsodium-sys";
− packageId = "libsodium-sys";
− target = { target, features }: (!("windows" == target."os" or null));
− features = [ "use-pkg-config" ];
− }
− {
− name = "libsodium-sys";
− packageId = "libsodium-sys";
− target = { target, features }: ("windows" == target."os" or null);
− }
− ];
− buildDependencies = [
− {
− name = "pkg-config";
− packageId = "pkg-config";
− }
− {
− name = "vcpkg";
− packageId = "vcpkg";
− }
− ];
−
− };
− "time" = rec {
− crateName = "time";
− version = "0.3.41";
− edition = "2021";
− sha256 = "0h0cpiyya8cjlrh00d2r72bmgg4lsdcncs76qpwy0rn2kghijxla";
− authors = [
− "Jacob Pratt <open-source@jhpratt.dev>"
− "Time contributors"
− ];
− dependencies = [
− {
− name = "deranged";
− packageId = "deranged";
− usesDefaultFeatures = false;
− features = [ "powerfmt" ];
− }
− {
− name = "itoa";
− packageId = "itoa";
− optional = true;
− }
− {
− name = "num-conv";
− packageId = "num-conv";
− }
− {
− name = "powerfmt";
− packageId = "powerfmt";
− usesDefaultFeatures = false;
− }
− {
− name = "serde";
− packageId = "serde";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "time-core";
− packageId = "time-core";
− }
− {
− name = "time-macros";
− packageId = "time-macros";
− optional = true;
− }
− ];
− devDependencies = [
− {
− name = "num-conv";
− packageId = "num-conv";
− }
− {
− name = "serde";
− packageId = "serde";
− usesDefaultFeatures = false;
− features = [ "derive" ];
− }
− {
− name = "time-macros";
− packageId = "time-macros";
− }
− ];
− features = {
− "alloc" = [ "serde?/alloc" ];
− "default" = [ "std" ];
− "formatting" = [ "dep:itoa" "std" "time-macros?/formatting" ];
− "large-dates" = [ "time-macros?/large-dates" ];
− "local-offset" = [ "std" "dep:libc" "dep:num_threads" ];
− "macros" = [ "dep:time-macros" ];
− "parsing" = [ "time-macros?/parsing" ];
− "quickcheck" = [ "dep:quickcheck" "alloc" "deranged/quickcheck" ];
− "rand" = [ "dep:rand" "deranged/rand" ];
− "serde" = [ "dep:serde" "time-macros?/serde" "deranged/serde" ];
− "serde-human-readable" = [ "serde" "formatting" "parsing" ];
− "serde-well-known" = [ "serde" "formatting" "parsing" ];
− "std" = [ "alloc" "deranged/std" ];
− "wasm-bindgen" = [ "dep:js-sys" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "formatting" "parsing" "std" ];
− };
− "time-core" = rec {
− crateName = "time-core";
− version = "0.1.4";
− edition = "2021";
− sha256 = "0z5h9fknvdvbs2k2s1chpi3ab3jvgkfhdnqwrvixjngm263s7sf9";
− libName = "time_core";
− authors = [
− "Jacob Pratt <open-source@jhpratt.dev>"
− "Time contributors"
− ];
−
− };
− "time-macros" = rec {
− crateName = "time-macros";
− version = "0.2.22";
− edition = "2021";
− sha256 = "0jcaxpw220han2bzbrdlpqhy1s5k9i8ri3lw6n5zv4zcja9p69im";
− procMacro = true;
− libName = "time_macros";
− authors = [
− "Jacob Pratt <open-source@jhpratt.dev>"
− "Time contributors"
− ];
− dependencies = [
− {
− name = "num-conv";
− packageId = "num-conv";
− }
− {
− name = "time-core";
− packageId = "time-core";
− }
− ];
− features = {
− };
− resolvedDefaultFeatures = [ "formatting" "parsing" ];
− };
− "tint" = rec {
− crateName = "tint";
− version = "1.0.1";
− edition = "2015";
− sha256 = "15k89pp3ddxczfnv2j995yvy02mfpmjrmxmv7mkp8c2acrq4bwks";
− authors = [
− "Brian Savage <savage13@gmail.com>"
− ];
− dependencies = [
− {
− name = "lazy_static";
− packageId = "lazy_static 0.2.11";
− }
− ];
−
− };
− "tinystr" = rec {
− crateName = "tinystr";
− version = "0.8.1";
− edition = "2021";
− sha256 = "12sc6h3hnn6x78iycm5v6wrs2xhxph0ydm43yyn7gdfw8l8nsksx";
− authors = [
− "The ICU4X Project Developers"
− ];
− dependencies = [
− {
− name = "displaydoc";
− packageId = "displaydoc";
− usesDefaultFeatures = false;
− }
− {
− name = "zerovec";
− packageId = "zerovec";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "alloc" = [ "zerovec?/alloc" ];
− "databake" = [ "dep:databake" ];
− "default" = [ "alloc" ];
− "serde" = [ "dep:serde" ];
− "zerovec" = [ "dep:zerovec" ];
− };
− resolvedDefaultFeatures = [ "alloc" "zerovec" ];
− };
− "tokio" = rec {
− crateName = "tokio";
− version = "1.45.1";
− edition = "2021";
− sha256 = "0yb7h0mr0m0gfwdl1jir2k37gcrwhcib2kiyx9f95npi7sim3vvm";
− authors = [
− "Tokio Contributors <team@tokio.rs>"
− ];
− dependencies = [
− {
− name = "backtrace";
− packageId = "backtrace";
− target = { target, features }: (target."tokio_taskdump" or false);
− }
− {
− name = "bytes";
− packageId = "bytes";
− 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-util" "libc" "macros" "mio" "net" "process" "rt" "rt-multi-thread" "signal-hook-registry" "socket2" "sync" "time" "tokio-macros" "windows-sys" ];
− };
− "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-stream" = rec {
− crateName = "tokio-stream";
− version = "0.1.17";
− edition = "2021";
− sha256 = "0ix0770hfp4x5rh5bl7vsnr3d4iz4ms43i522xw70xaap9xqv9gc";
− libName = "tokio_stream";
− authors = [
− "Tokio Contributors <team@tokio.rs>"
− ];
− dependencies = [
− {
− name = "futures-core";
− packageId = "futures-core";
− }
− {
− name = "pin-project-lite";
− packageId = "pin-project-lite";
− }
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "sync" ];
− }
− ];
− devDependencies = [
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "full" "test-util" ];
− }
− ];
− features = {
− "default" = [ "time" ];
− "fs" = [ "tokio/fs" ];
− "full" = [ "time" "net" "io-util" "fs" "sync" "signal" ];
− "io-util" = [ "tokio/io-util" ];
− "net" = [ "tokio/net" ];
− "signal" = [ "tokio/signal" ];
− "sync" = [ "tokio/sync" "tokio-util" ];
− "time" = [ "tokio/time" ];
− "tokio-util" = [ "dep:tokio-util" ];
− };
− resolvedDefaultFeatures = [ "default" "net" "time" ];
− };
− "tokio-util" = rec {
− crateName = "tokio-util";
− version = "0.7.15";
− edition = "2021";
− sha256 = "1pypd9lm1fdnpw0779pqvc16qqrxjy63dgfm20ajhpbdmnlkk9b6";
− libName = "tokio_util";
− authors = [
− "Tokio Contributors <team@tokio.rs>"
− ];
− dependencies = [
− {
− name = "bytes";
− packageId = "bytes";
− }
− {
− name = "futures-core";
− packageId = "futures-core";
− }
− {
− name = "futures-sink";
− packageId = "futures-sink";
− }
− {
− name = "pin-project-lite";
− packageId = "pin-project-lite";
− }
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "sync" ];
− }
− ];
− devDependencies = [
− {
− name = "tokio";
− packageId = "tokio";
− features = [ "full" ];
− }
− ];
− features = {
− "__docs_rs" = [ "futures-util" ];
− "compat" = [ "futures-io" ];
− "full" = [ "codec" "compat" "io-util" "time" "net" "rt" ];
− "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 = "indexmap";
− packageId = "indexmap";
− optional = true;
− }
− {
− 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" "indexmap" "parse" "preserve_order" ];
− };
− "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" ];
− };
− "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-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 = [ "std" ];
− };
− "tracing-core" = rec {
− crateName = "tracing-core";
− version = "0.1.34";
− edition = "2018";
− sha256 = "0y3nc4mpnr79rzkrcylv5f5bnjjp19lsxwis9l4kzs97ya0jbldr";
− libName = "tracing_core";
− authors = [
− "Tokio Contributors <team@tokio.rs>"
− ];
− dependencies = [
− {
− name = "once_cell";
− packageId = "once_cell";
− optional = true;
− }
− ];
− features = {
− "default" = [ "std" "valuable?/std" ];
− "once_cell" = [ "dep:once_cell" ];
− "std" = [ "once_cell" ];
− "valuable" = [ "dep:valuable" ];
− };
− resolvedDefaultFeatures = [ "once_cell" "std" ];
− };
− "try-lock" = rec {
− crateName = "try-lock";
− version = "0.2.5";
− edition = "2015";
− sha256 = "0jqijrrvm1pyq34zn1jmy2vihd4jcrjlvsh4alkjahhssjnsn8g4";
− libName = "try_lock";
− authors = [
− "Sean McArthur <sean@seanmonstar.com>"
− ];
−
− };
− "twox-hash" = rec {
− crateName = "twox-hash";
− version = "1.6.3";
− edition = "2018";
− crateBin = [];
− sha256 = "0xgn72j36a270l5ls1jk88n7bmq2dhlfkbhdh5554hbagjsydzlp";
− libName = "twox_hash";
− authors = [
− "Jake Goulding <jake.goulding@gmail.com>"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− usesDefaultFeatures = false;
− }
− {
− name = "rand";
− packageId = "rand 0.8.5";
− optional = true;
− }
− {
− name = "static_assertions";
− packageId = "static_assertions";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "default" = [ "std" ];
− "digest" = [ "dep:digest" ];
− "digest_0_10" = [ "dep:digest_0_10" ];
− "digest_0_9" = [ "dep:digest_0_9" ];
− "rand" = [ "dep:rand" ];
− "serde" = [ "dep:serde" ];
− "serialize" = [ "serde" ];
− "std" = [ "rand" ];
− };
− resolvedDefaultFeatures = [ "default" "rand" "std" ];
− };
− "typenum" = rec {
− crateName = "typenum";
− version = "1.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.18";
− edition = "2018";
− sha256 = "04k5r6sijkafzljykdq26mhjpmhdx4jwzvn1lh90g9ax9903jpss";
− libName = "unicode_ident";
− authors = [
− "David Tolnay <dtolnay@gmail.com>"
− ];
−
− };
− "unicode-segmentation" = rec {
− crateName = "unicode-segmentation";
− version = "1.12.0";
− edition = "2018";
− sha256 = "14qla2jfx74yyb9ds3d2mpwpa4l4lzb9z57c6d2ba511458z5k7n";
− libName = "unicode_segmentation";
− authors = [
− "kwantam <kwantam@gmail.com>"
− "Manish Goregaokar <manishsmail@gmail.com>"
− ];
− features = {
− };
− };
− "unicode-width" = rec {
− crateName = "unicode-width";
− version = "0.2.1";
− edition = "2021";
− sha256 = "0k0mlq7xy1y1kq6cgv1r2rs2knn6rln3g3af50rhi0dkgp60f6ja";
− libName = "unicode_width";
− authors = [
− "kwantam <kwantam@gmail.com>"
− "Manish Goregaokar <manishsmail@gmail.com>"
− ];
− features = {
− "core" = [ "dep:core" ];
− "default" = [ "cjk" ];
− "rustc-dep-of-std" = [ "std" "core" ];
− "std" = [ "dep:std" ];
− };
− resolvedDefaultFeatures = [ "cjk" "default" ];
− };
− "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" ];
− };
− "utf8_iter" = rec {
− crateName = "utf8_iter";
− version = "1.0.4";
− edition = "2021";
− sha256 = "1gmna9flnj8dbyd8ba17zigrp9c4c3zclngf5lnb5yvz1ri41hdn";
− authors = [
− "Henri Sivonen <hsivonen@hsivonen.fi>"
− ];
−
− };
− "utf8parse" = rec {
− crateName = "utf8parse";
− version = "0.2.2";
− edition = "2018";
− sha256 = "088807qwjq46azicqwbhlmzwrbkz7l4hpw43sdkdyyk524vdxaq6";
− authors = [
− "Joe Wilm <joe@jwilm.com>"
− "Christian Duerr <contact@christianduerr.com>"
− ];
− features = {
− };
− resolvedDefaultFeatures = [ "default" ];
− };
− "uuid" = rec {
− crateName = "uuid";
− version = "1.17.0";
− edition = "2018";
− sha256 = "07ckq4fdiygy02gmislzfp727hx9zw6lskk9dbcds5ax3sfikx1w";
− authors = [
− "Ashley Mannix<ashleymannix@live.com.au>"
− "Dylan DPC<dylan.dpc@gmail.com>"
− "Hunar Roop Kahlon<hunar.roop@gmail.com>"
− ];
− dependencies = [
− {
− name = "getrandom";
− packageId = "getrandom 0.3.3";
− optional = true;
− target = { target, features }: (!(("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null))));
− }
− ];
− features = {
− "arbitrary" = [ "dep:arbitrary" ];
− "atomic" = [ "dep:atomic" ];
− "borsh" = [ "dep:borsh" "dep:borsh-derive" ];
− "bytemuck" = [ "dep:bytemuck" ];
− "default" = [ "std" ];
− "fast-rng" = [ "rng" "dep:rand" ];
− "js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
− "macro-diagnostics" = [ "dep:uuid-macro-internal" ];
− "md5" = [ "dep:md-5" ];
− "rng" = [ "dep:getrandom" ];
− "rng-getrandom" = [ "rng" "dep:getrandom" "uuid-rng-internal-lib" "uuid-rng-internal-lib/getrandom" ];
− "rng-rand" = [ "rng" "dep:rand" "uuid-rng-internal-lib" "uuid-rng-internal-lib/rand" ];
− "serde" = [ "dep:serde" ];
− "sha1" = [ "dep:sha1_smol" ];
− "slog" = [ "dep:slog" ];
− "std" = [ "wasm-bindgen?/std" "js-sys?/std" ];
− "uuid-rng-internal-lib" = [ "dep:uuid-rng-internal-lib" ];
− "v1" = [ "atomic" ];
− "v3" = [ "md5" ];
− "v4" = [ "rng" ];
− "v5" = [ "sha1" ];
− "v6" = [ "atomic" ];
− "v7" = [ "rng" ];
− "zerocopy" = [ "dep:zerocopy" ];
− };
− resolvedDefaultFeatures = [ "rng" "v4" ];
− };
− "validator" = rec {
− crateName = "validator";
− version = "0.20.0";
− edition = "2021";
− sha256 = "1ykwgqwlb2p4ss2rpd0vca90x4bs8kjfk8q8rrqf7v08l3hj5ys3";
− authors = [
− "Vincent Prouillet <hello@vincentprouillet.com"
− ];
− dependencies = [
− {
− name = "idna";
− packageId = "idna";
− }
− {
− name = "once_cell";
− packageId = "once_cell";
− }
− {
− name = "regex";
− packageId = "regex";
− usesDefaultFeatures = false;
− features = [ "std" ];
− }
− {
− name = "serde";
− packageId = "serde";
− }
− {
− name = "serde_derive";
− packageId = "serde_derive";
− }
− {
− name = "serde_json";
− packageId = "serde_json";
− }
− {
− name = "url";
− packageId = "url";
− }
− ];
− features = {
− "card" = [ "card-validate" ];
− "card-validate" = [ "dep:card-validate" ];
− "derive" = [ "validator_derive" ];
− "derive_nightly_features" = [ "derive" "validator_derive/nightly_features" ];
− "indexmap" = [ "dep:indexmap" ];
− "unic" = [ "unic-ucd-common" ];
− "unic-ucd-common" = [ "dep:unic-ucd-common" ];
− "validator_derive" = [ "dep:validator_derive" ];
− };
− };
− "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>"
− ];
−
− };
− "walkdir" = rec {
− crateName = "walkdir";
− version = "2.5.0";
− edition = "2018";
− sha256 = "0jsy7a710qv8gld5957ybrnc07gavppp963gs32xk4ag8130jy99";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− ];
− dependencies = [
− {
− name = "same-file";
− packageId = "same-file";
− }
− {
− name = "winapi-util";
− packageId = "winapi-util";
− target = { target, features }: (target."windows" or false);
− }
− ];
−
− };
− "want" = rec {
− crateName = "want";
− version = "0.3.1";
− edition = "2018";
− sha256 = "03hbfrnvqqdchb5kgxyavb9jabwza0dmh2vw5kg0dq8rxl57d9xz";
− authors = [
− "Sean McArthur <sean@seanmonstar.com>"
− ];
− dependencies = [
− {
− name = "try-lock";
− packageId = "try-lock";
− }
− ];
−
− };
− "wasi 0.11.1+wasi-snapshot-preview1" = rec {
− crateName = "wasi";
− version = "0.11.1+wasi-snapshot-preview1";
− edition = "2018";
− sha256 = "0jx49r7nbkbhyfrfyhz0bm4817yrnxgd3jiwwwfv0zl439jyrwyc";
− authors = [
− "The Cranelift Project Developers"
− ];
− features = {
− "core" = [ "dep:core" ];
− "default" = [ "std" ];
− "rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" ];
− "rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "wasi 0.14.2+wasi-0.2.4" = rec {
− crateName = "wasi";
− version = "0.14.2+wasi-0.2.4";
− edition = "2021";
− sha256 = "1cwcqjr3dgdq8j325awgk8a715h0hg0f7jqzsb077n4qm6jzk0wn";
− 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" ];
− };
− };
− "wasi 0.9.0+wasi-snapshot-preview1" = rec {
− crateName = "wasi";
− version = "0.9.0+wasi-snapshot-preview1";
− edition = "2018";
− sha256 = "06g5v3vrdapfzvfq662cij7v8a1flwr2my45nnncdv2galrdzkfc";
− authors = [
− "The Cranelift Project Developers"
− ];
− features = {
− "compiler_builtins" = [ "dep:compiler_builtins" ];
− "core" = [ "dep:core" ];
− "default" = [ "std" ];
− "rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ];
− "rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
− };
− resolvedDefaultFeatures = [ "default" "std" ];
− };
− "wasite" = rec {
− crateName = "wasite";
− version = "0.1.0";
− edition = "2018";
− sha256 = "0nw5h9nmcl4fyf4j5d4mfdjfgvwi1cakpi349wc4zrr59wxxinmq";
−
− };
− "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" "Document" "Event" "EventTarget" "File" "FormData" "Headers" "Location" "MessageEvent" "Navigator" "Node" "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" ];
− };
− "web-time" = rec {
− crateName = "web-time";
− version = "1.1.0";
− edition = "2021";
− sha256 = "1fx05yqx83dhx628wb70fyy10yjfq1jpl20qfqhdkymi13rq0ras";
− libName = "web_time";
− dependencies = [
− {
− name = "js-sys";
− packageId = "js-sys";
− target = { target, features }: ((builtins.elem "wasm" target."family") && ("unknown" == target."os" or null));
− }
− {
− name = "wasm-bindgen";
− packageId = "wasm-bindgen";
− usesDefaultFeatures = false;
− target = { target, features }: ((builtins.elem "wasm" target."family") && ("unknown" == target."os" or null));
− }
− ];
− features = {
− "serde" = [ "dep:serde" ];
− };
− };
− "which" = rec {
− crateName = "which";
− version = "4.4.2";
− edition = "2021";
− sha256 = "1ixzmx3svsv5hbdvd8vdhd3qwvf6ns8jdpif1wmwsy10k90j9fl7";
− authors = [
− "Harry Fei <tiziyuanfang@gmail.com>"
− ];
− dependencies = [
− {
− name = "either";
− packageId = "either";
− }
− {
− name = "home";
− packageId = "home";
− target = { target, features }: ((target."windows" or false) || (target."unix" or false) || ("redox" == target."os" or null));
− }
− {
− name = "once_cell";
− packageId = "once_cell";
− target = { target, features }: (target."windows" or false);
− }
− {
− name = "rustix";
− packageId = "rustix 0.38.44";
− usesDefaultFeatures = false;
− features = [ "fs" "std" ];
− }
− ];
− features = {
− "regex" = [ "dep:regex" ];
− };
− };
− "whoami" = rec {
− crateName = "whoami";
− version = "1.6.0";
− edition = "2018";
− sha256 = "19q2vm5ax3bgwffbywn4ad62anc1f4l1ky61h0y2qjdb30qx3539";
− dependencies = [
− {
− name = "redox_syscall";
− packageId = "redox_syscall 0.5.13";
− target = { target, features }: (("redox" == target."os" or null) && (!("wasm32" == target."arch" or null)));
− }
− {
− name = "wasite";
− packageId = "wasite";
− target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null));
− }
− {
− name = "web-sys";
− packageId = "web-sys";
− optional = true;
− target = { target, features }: (("wasm32" == target."arch" or null) && (!("wasi" == target."os" or null)) && (!(target."daku" or false)));
− features = [ "Navigator" "Document" "Window" "Location" ];
− }
− ];
− features = {
− "default" = [ "web" ];
− "web" = [ "web-sys" ];
− "web-sys" = [ "dep:web-sys" ];
− };
− resolvedDefaultFeatures = [ "default" "web" "web-sys" ];
− };
− "winapi" = rec {
− crateName = "winapi";
− version = "0.3.9";
− edition = "2015";
− sha256 = "06gl025x418lchw1wxj64ycr7gha83m44cjr5sarhynd9xkrm0sw";
− authors = [
− "Peter Atashian <retep998@gmail.com>"
− ];
− dependencies = [
− {
− name = "winapi-i686-pc-windows-gnu";
− packageId = "winapi-i686-pc-windows-gnu";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnu");
− }
− {
− name = "winapi-x86_64-pc-windows-gnu";
− packageId = "winapi-x86_64-pc-windows-gnu";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnu");
− }
− ];
− features = {
− "debug" = [ "impl-debug" ];
− };
− resolvedDefaultFeatures = [ "basetsd" "errhandlingapi" "fileapi" "handleapi" "knownfolders" "memoryapi" "minwindef" "ntdef" "ntstatus" "objbase" "processthreadsapi" "shlobj" "std" "winbase" "winerror" "winnt" "winsock2" ];
− };
− "winapi-i686-pc-windows-gnu" = rec {
− crateName = "winapi-i686-pc-windows-gnu";
− version = "0.4.0";
− edition = "2015";
− sha256 = "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc";
− libName = "winapi_i686_pc_windows_gnu";
− authors = [
− "Peter Atashian <retep998@gmail.com>"
− ];
−
− };
− "winapi-util" = rec {
− crateName = "winapi-util";
− version = "0.1.9";
− edition = "2021";
− sha256 = "1fqhkcl9scd230cnfj8apfficpf5c9vhwnk4yy9xfc1sw69iq8ng";
− libName = "winapi_util";
− authors = [
− "Andrew Gallant <jamslam@gmail.com>"
− ];
− dependencies = [
− {
− name = "windows-sys";
− packageId = "windows-sys 0.59.0";
− target = { target, features }: (target."windows" or false);
− features = [ "Win32_Foundation" "Win32_Storage_FileSystem" "Win32_System_Console" "Win32_System_SystemInformation" ];
− }
− ];
−
− };
− "winapi-x86_64-pc-windows-gnu" = rec {
− crateName = "winapi-x86_64-pc-windows-gnu";
− version = "0.4.0";
− edition = "2015";
− sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki";
− libName = "winapi_x86_64_pc_windows_gnu";
− authors = [
− "Peter Atashian <retep998@gmail.com>"
− ];
−
− };
− "windows" = rec {
− crateName = "windows";
− version = "0.44.0";
− edition = "2018";
− sha256 = "0ax1ip82dhszxz4hhsrdj3b0681xw6axahnfldxcgi506nmmsx4y";
− authors = [
− "Microsoft"
− ];
− dependencies = [
− {
− name = "windows-targets";
− packageId = "windows-targets 0.42.2";
− target = { target, features }: (!(target."windows_raw_dylib" or false));
− }
− ];
− features = {
− "AI_MachineLearning" = [ "AI" ];
− "ApplicationModel_Activation" = [ "ApplicationModel" ];
− "ApplicationModel_AppExtensions" = [ "ApplicationModel" ];
− "ApplicationModel_AppService" = [ "ApplicationModel" ];
− "ApplicationModel_Appointments" = [ "ApplicationModel" ];
− "ApplicationModel_Appointments_AppointmentsProvider" = [ "ApplicationModel_Appointments" ];
− "ApplicationModel_Appointments_DataProvider" = [ "ApplicationModel_Appointments" ];
− "ApplicationModel_Background" = [ "ApplicationModel" ];
− "ApplicationModel_Calls" = [ "ApplicationModel" ];
− "ApplicationModel_Calls_Background" = [ "ApplicationModel_Calls" ];
− "ApplicationModel_Calls_Provider" = [ "ApplicationModel_Calls" ];
− "ApplicationModel_Chat" = [ "ApplicationModel" ];
− "ApplicationModel_CommunicationBlocking" = [ "ApplicationModel" ];
− "ApplicationModel_Contacts" = [ "ApplicationModel" ];
− "ApplicationModel_Contacts_DataProvider" = [ "ApplicationModel_Contacts" ];
− "ApplicationModel_Contacts_Provider" = [ "ApplicationModel_Contacts" ];
− "ApplicationModel_ConversationalAgent" = [ "ApplicationModel" ];
− "ApplicationModel_Core" = [ "ApplicationModel" ];
− "ApplicationModel_DataTransfer" = [ "ApplicationModel" ];
− "ApplicationModel_DataTransfer_DragDrop" = [ "ApplicationModel_DataTransfer" ];
− "ApplicationModel_DataTransfer_DragDrop_Core" = [ "ApplicationModel_DataTransfer_DragDrop" ];
− "ApplicationModel_DataTransfer_ShareTarget" = [ "ApplicationModel_DataTransfer" ];
− "ApplicationModel_Email" = [ "ApplicationModel" ];
− "ApplicationModel_Email_DataProvider" = [ "ApplicationModel_Email" ];
− "ApplicationModel_ExtendedExecution" = [ "ApplicationModel" ];
− "ApplicationModel_ExtendedExecution_Foreground" = [ "ApplicationModel_ExtendedExecution" ];
− "ApplicationModel_Holographic" = [ "ApplicationModel" ];
− "ApplicationModel_LockScreen" = [ "ApplicationModel" ];
− "ApplicationModel_Payments" = [ "ApplicationModel" ];
− "ApplicationModel_Payments_Provider" = [ "ApplicationModel_Payments" ];
− "ApplicationModel_Preview" = [ "ApplicationModel" ];
− "ApplicationModel_Preview_Holographic" = [ "ApplicationModel_Preview" ];
− "ApplicationModel_Preview_InkWorkspace" = [ "ApplicationModel_Preview" ];
− "ApplicationModel_Preview_Notes" = [ "ApplicationModel_Preview" ];
− "ApplicationModel_Resources" = [ "ApplicationModel" ];
− "ApplicationModel_Resources_Core" = [ "ApplicationModel_Resources" ];
− "ApplicationModel_Resources_Management" = [ "ApplicationModel_Resources" ];
− "ApplicationModel_Search" = [ "ApplicationModel" ];
− "ApplicationModel_Search_Core" = [ "ApplicationModel_Search" ];
− "ApplicationModel_Store" = [ "ApplicationModel" ];
− "ApplicationModel_Store_LicenseManagement" = [ "ApplicationModel_Store" ];
− "ApplicationModel_Store_Preview" = [ "ApplicationModel_Store" ];
− "ApplicationModel_Store_Preview_InstallControl" = [ "ApplicationModel_Store_Preview" ];
− "ApplicationModel_UserActivities" = [ "ApplicationModel" ];
− "ApplicationModel_UserActivities_Core" = [ "ApplicationModel_UserActivities" ];
− "ApplicationModel_UserDataAccounts" = [ "ApplicationModel" ];
− "ApplicationModel_UserDataAccounts_Provider" = [ "ApplicationModel_UserDataAccounts" ];
− "ApplicationModel_UserDataAccounts_SystemAccess" = [ "ApplicationModel_UserDataAccounts" ];
− "ApplicationModel_UserDataTasks" = [ "ApplicationModel" ];
− "ApplicationModel_UserDataTasks_DataProvider" = [ "ApplicationModel_UserDataTasks" ];
− "ApplicationModel_VoiceCommands" = [ "ApplicationModel" ];
− "ApplicationModel_Wallet" = [ "ApplicationModel" ];
− "ApplicationModel_Wallet_System" = [ "ApplicationModel_Wallet" ];
− "Data_Html" = [ "Data" ];
− "Data_Json" = [ "Data" ];
− "Data_Pdf" = [ "Data" ];
− "Data_Text" = [ "Data" ];
− "Data_Xml" = [ "Data" ];
− "Data_Xml_Dom" = [ "Data_Xml" ];
− "Data_Xml_Xsl" = [ "Data_Xml" ];
− "Devices_Adc" = [ "Devices" ];
− "Devices_Adc_Provider" = [ "Devices_Adc" ];
− "Devices_Background" = [ "Devices" ];
− "Devices_Bluetooth" = [ "Devices" ];
− "Devices_Bluetooth_Advertisement" = [ "Devices_Bluetooth" ];
− "Devices_Bluetooth_Background" = [ "Devices_Bluetooth" ];
− "Devices_Bluetooth_GenericAttributeProfile" = [ "Devices_Bluetooth" ];
− "Devices_Bluetooth_Rfcomm" = [ "Devices_Bluetooth" ];
− "Devices_Custom" = [ "Devices" ];
− "Devices_Display" = [ "Devices" ];
− "Devices_Display_Core" = [ "Devices_Display" ];
− "Devices_Enumeration" = [ "Devices" ];
− "Devices_Enumeration_Pnp" = [ "Devices_Enumeration" ];
− "Devices_Geolocation" = [ "Devices" ];
− "Devices_Geolocation_Geofencing" = [ "Devices_Geolocation" ];
− "Devices_Geolocation_Provider" = [ "Devices_Geolocation" ];
− "Devices_Gpio" = [ "Devices" ];
− "Devices_Gpio_Provider" = [ "Devices_Gpio" ];
− "Devices_Haptics" = [ "Devices" ];
− "Devices_HumanInterfaceDevice" = [ "Devices" ];
− "Devices_I2c" = [ "Devices" ];
− "Devices_I2c_Provider" = [ "Devices_I2c" ];
− "Devices_Input" = [ "Devices" ];
− "Devices_Input_Preview" = [ "Devices_Input" ];
− "Devices_Lights" = [ "Devices" ];
− "Devices_Lights_Effects" = [ "Devices_Lights" ];
− "Devices_Midi" = [ "Devices" ];
− "Devices_PointOfService" = [ "Devices" ];
− "Devices_PointOfService_Provider" = [ "Devices_PointOfService" ];
− "Devices_Portable" = [ "Devices" ];
− "Devices_Power" = [ "Devices" ];
− "Devices_Printers" = [ "Devices" ];
− "Devices_Printers_Extensions" = [ "Devices_Printers" ];
− "Devices_Pwm" = [ "Devices" ];
− "Devices_Pwm_Provider" = [ "Devices_Pwm" ];
− "Devices_Radios" = [ "Devices" ];
− "Devices_Scanners" = [ "Devices" ];
− "Devices_Sensors" = [ "Devices" ];
− "Devices_Sensors_Custom" = [ "Devices_Sensors" ];
− "Devices_SerialCommunication" = [ "Devices" ];
− "Devices_SmartCards" = [ "Devices" ];
− "Devices_Sms" = [ "Devices" ];
− "Devices_Spi" = [ "Devices" ];
− "Devices_Spi_Provider" = [ "Devices_Spi" ];
− "Devices_Usb" = [ "Devices" ];
− "Devices_WiFi" = [ "Devices" ];
− "Devices_WiFiDirect" = [ "Devices" ];
− "Devices_WiFiDirect_Services" = [ "Devices_WiFiDirect" ];
− "Embedded_DeviceLockdown" = [ "Embedded" ];
− "Foundation_Collections" = [ "Foundation" ];
− "Foundation_Diagnostics" = [ "Foundation" ];
− "Foundation_Metadata" = [ "Foundation" ];
− "Foundation_Numerics" = [ "Foundation" ];
− "Gaming_Input" = [ "Gaming" ];
− "Gaming_Input_Custom" = [ "Gaming_Input" ];
− "Gaming_Input_ForceFeedback" = [ "Gaming_Input" ];
− "Gaming_Input_Preview" = [ "Gaming_Input" ];
− "Gaming_Preview" = [ "Gaming" ];
− "Gaming_Preview_GamesEnumeration" = [ "Gaming_Preview" ];
− "Gaming_UI" = [ "Gaming" ];
− "Gaming_XboxLive" = [ "Gaming" ];
− "Gaming_XboxLive_Storage" = [ "Gaming_XboxLive" ];
− "Globalization_Collation" = [ "Globalization" ];
− "Globalization_DateTimeFormatting" = [ "Globalization" ];
− "Globalization_Fonts" = [ "Globalization" ];
− "Globalization_NumberFormatting" = [ "Globalization" ];
− "Globalization_PhoneNumberFormatting" = [ "Globalization" ];
− "Graphics_Capture" = [ "Graphics" ];
− "Graphics_DirectX" = [ "Graphics" ];
− "Graphics_DirectX_Direct3D11" = [ "Graphics_DirectX" ];
− "Graphics_Display" = [ "Graphics" ];
− "Graphics_Display_Core" = [ "Graphics_Display" ];
− "Graphics_Effects" = [ "Graphics" ];
− "Graphics_Holographic" = [ "Graphics" ];
− "Graphics_Imaging" = [ "Graphics" ];
− "Graphics_Printing" = [ "Graphics" ];
− "Graphics_Printing3D" = [ "Graphics" ];
− "Graphics_Printing_OptionDetails" = [ "Graphics_Printing" ];
− "Graphics_Printing_PrintSupport" = [ "Graphics_Printing" ];
− "Graphics_Printing_PrintTicket" = [ "Graphics_Printing" ];
− "Graphics_Printing_Workflow" = [ "Graphics_Printing" ];
− "Management_Core" = [ "Management" ];
− "Management_Deployment" = [ "Management" ];
− "Management_Deployment_Preview" = [ "Management_Deployment" ];
− "Management_Policies" = [ "Management" ];
− "Management_Update" = [ "Management" ];
− "Management_Workplace" = [ "Management" ];
− "Media_AppBroadcasting" = [ "Media" ];
− "Media_AppRecording" = [ "Media" ];
− "Media_Audio" = [ "Media" ];
− "Media_Capture" = [ "Media" ];
− "Media_Capture_Core" = [ "Media_Capture" ];
− "Media_Capture_Frames" = [ "Media_Capture" ];
− "Media_Casting" = [ "Media" ];
− "Media_ClosedCaptioning" = [ "Media" ];
− "Media_ContentRestrictions" = [ "Media" ];
− "Media_Control" = [ "Media" ];
− "Media_Core" = [ "Media" ];
− "Media_Core_Preview" = [ "Media_Core" ];
− "Media_Devices" = [ "Media" ];
− "Media_Devices_Core" = [ "Media_Devices" ];
− "Media_DialProtocol" = [ "Media" ];
− "Media_Editing" = [ "Media" ];
− "Media_Effects" = [ "Media" ];
− "Media_FaceAnalysis" = [ "Media" ];
− "Media_Import" = [ "Media" ];
− "Media_MediaProperties" = [ "Media" ];
− "Media_Miracast" = [ "Media" ];
− "Media_Ocr" = [ "Media" ];
− "Media_PlayTo" = [ "Media" ];
− "Media_Playback" = [ "Media" ];
− "Media_Playlists" = [ "Media" ];
− "Media_Protection" = [ "Media" ];
− "Media_Protection_PlayReady" = [ "Media_Protection" ];
− "Media_Render" = [ "Media" ];
− "Media_SpeechRecognition" = [ "Media" ];
− "Media_SpeechSynthesis" = [ "Media" ];
− "Media_Streaming" = [ "Media" ];
− "Media_Streaming_Adaptive" = [ "Media_Streaming" ];
− "Media_Transcoding" = [ "Media" ];
− "Networking_BackgroundTransfer" = [ "Networking" ];
− "Networking_Connectivity" = [ "Networking" ];
− "Networking_NetworkOperators" = [ "Networking" ];
− "Networking_Proximity" = [ "Networking" ];
− "Networking_PushNotifications" = [ "Networking" ];
− "Networking_ServiceDiscovery" = [ "Networking" ];
− "Networking_ServiceDiscovery_Dnssd" = [ "Networking_ServiceDiscovery" ];
− "Networking_Sockets" = [ "Networking" ];
− "Networking_Vpn" = [ "Networking" ];
− "Networking_XboxLive" = [ "Networking" ];
− "Perception_Automation" = [ "Perception" ];
− "Perception_Automation_Core" = [ "Perception_Automation" ];
− "Perception_People" = [ "Perception" ];
− "Perception_Spatial" = [ "Perception" ];
− "Perception_Spatial_Preview" = [ "Perception_Spatial" ];
− "Perception_Spatial_Surfaces" = [ "Perception_Spatial" ];
− "Phone_ApplicationModel" = [ "Phone" ];
− "Phone_Devices" = [ "Phone" ];
− "Phone_Devices_Notification" = [ "Phone_Devices" ];
− "Phone_Devices_Power" = [ "Phone_Devices" ];
− "Phone_Management" = [ "Phone" ];
− "Phone_Management_Deployment" = [ "Phone_Management" ];
− "Phone_Media" = [ "Phone" ];
− "Phone_Media_Devices" = [ "Phone_Media" ];
− "Phone_Notification" = [ "Phone" ];
− "Phone_Notification_Management" = [ "Phone_Notification" ];
− "Phone_PersonalInformation" = [ "Phone" ];
− "Phone_PersonalInformation_Provisioning" = [ "Phone_PersonalInformation" ];
− "Phone_Speech" = [ "Phone" ];
− "Phone_Speech_Recognition" = [ "Phone_Speech" ];
− "Phone_StartScreen" = [ "Phone" ];
− "Phone_System" = [ "Phone" ];
− "Phone_System_Power" = [ "Phone_System" ];
− "Phone_System_Profile" = [ "Phone_System" ];
− "Phone_System_UserProfile" = [ "Phone_System" ];
− "Phone_System_UserProfile_GameServices" = [ "Phone_System_UserProfile" ];
− "Phone_System_UserProfile_GameServices_Core" = [ "Phone_System_UserProfile_GameServices" ];
− "Phone_UI" = [ "Phone" ];
− "Phone_UI_Input" = [ "Phone_UI" ];
− "Security_Authentication" = [ "Security" ];
− "Security_Authentication_Identity" = [ "Security_Authentication" ];
− "Security_Authentication_Identity_Core" = [ "Security_Authentication_Identity" ];
− "Security_Authentication_OnlineId" = [ "Security_Authentication" ];
− "Security_Authentication_Web" = [ "Security_Authentication" ];
− "Security_Authentication_Web_Core" = [ "Security_Authentication_Web" ];
− "Security_Authentication_Web_Provider" = [ "Security_Authentication_Web" ];
− "Security_Authorization" = [ "Security" ];
− "Security_Authorization_AppCapabilityAccess" = [ "Security_Authorization" ];
− "Security_Credentials" = [ "Security" ];
− "Security_Credentials_UI" = [ "Security_Credentials" ];
− "Security_Cryptography" = [ "Security" ];
− "Security_Cryptography_Certificates" = [ "Security_Cryptography" ];
− "Security_Cryptography_Core" = [ "Security_Cryptography" ];
− "Security_Cryptography_DataProtection" = [ "Security_Cryptography" ];
− "Security_DataProtection" = [ "Security" ];
− "Security_EnterpriseData" = [ "Security" ];
− "Security_ExchangeActiveSyncProvisioning" = [ "Security" ];
− "Security_Isolation" = [ "Security" ];
− "Services_Maps" = [ "Services" ];
− "Services_Maps_Guidance" = [ "Services_Maps" ];
− "Services_Maps_LocalSearch" = [ "Services_Maps" ];
− "Services_Maps_OfflineMaps" = [ "Services_Maps" ];
− "Services_Store" = [ "Services" ];
− "Services_TargetedContent" = [ "Services" ];
− "Storage_AccessCache" = [ "Storage" ];
− "Storage_BulkAccess" = [ "Storage" ];
− "Storage_Compression" = [ "Storage" ];
− "Storage_FileProperties" = [ "Storage" ];
− "Storage_Pickers" = [ "Storage" ];
− "Storage_Pickers_Provider" = [ "Storage_Pickers" ];
− "Storage_Provider" = [ "Storage" ];
− "Storage_Search" = [ "Storage" ];
− "Storage_Streams" = [ "Storage" ];
− "System_Diagnostics" = [ "System" ];
− "System_Diagnostics_DevicePortal" = [ "System_Diagnostics" ];
− "System_Diagnostics_Telemetry" = [ "System_Diagnostics" ];
− "System_Diagnostics_TraceReporting" = [ "System_Diagnostics" ];
− "System_Display" = [ "System" ];
− "System_Implementation" = [ "System" ];
− "System_Implementation_FileExplorer" = [ "System_Implementation" ];
− "System_Inventory" = [ "System" ];
− "System_Power" = [ "System" ];
− "System_Profile" = [ "System" ];
− "System_Profile_SystemManufacturers" = [ "System_Profile" ];
− "System_RemoteDesktop" = [ "System" ];
− "System_RemoteDesktop_Input" = [ "System_RemoteDesktop" ];
− "System_RemoteSystems" = [ "System" ];
− "System_Threading" = [ "System" ];
− "System_Threading_Core" = [ "System_Threading" ];
− "System_Update" = [ "System" ];
− "System_UserProfile" = [ "System" ];
− "UI_Accessibility" = [ "UI" ];
− "UI_ApplicationSettings" = [ "UI" ];
− "UI_Composition" = [ "UI" ];
− "UI_Composition_Core" = [ "UI_Composition" ];
− "UI_Composition_Desktop" = [ "UI_Composition" ];
− "UI_Composition_Diagnostics" = [ "UI_Composition" ];
− "UI_Composition_Effects" = [ "UI_Composition" ];
− "UI_Composition_Interactions" = [ "UI_Composition" ];
− "UI_Composition_Scenes" = [ "UI_Composition" ];
− "UI_Core" = [ "UI" ];
− "UI_Core_AnimationMetrics" = [ "UI_Core" ];
− "UI_Core_Preview" = [ "UI_Core" ];
− "UI_Input" = [ "UI" ];
− "UI_Input_Core" = [ "UI_Input" ];
− "UI_Input_Inking" = [ "UI_Input" ];
− "UI_Input_Inking_Analysis" = [ "UI_Input_Inking" ];
− "UI_Input_Inking_Core" = [ "UI_Input_Inking" ];
− "UI_Input_Inking_Preview" = [ "UI_Input_Inking" ];
− "UI_Input_Preview" = [ "UI_Input" ];
− "UI_Input_Preview_Injection" = [ "UI_Input_Preview" ];
− "UI_Input_Spatial" = [ "UI_Input" ];
− "UI_Notifications" = [ "UI" ];
− "UI_Notifications_Management" = [ "UI_Notifications" ];
− "UI_Popups" = [ "UI" ];
− "UI_Shell" = [ "UI" ];
− "UI_StartScreen" = [ "UI" ];
− "UI_Text" = [ "UI" ];
− "UI_Text_Core" = [ "UI_Text" ];
− "UI_UIAutomation" = [ "UI" ];
− "UI_UIAutomation_Core" = [ "UI_UIAutomation" ];
− "UI_ViewManagement" = [ "UI" ];
− "UI_ViewManagement_Core" = [ "UI_ViewManagement" ];
− "UI_WebUI" = [ "UI" ];
− "UI_WebUI_Core" = [ "UI_WebUI" ];
− "UI_WindowManagement" = [ "UI" ];
− "UI_WindowManagement_Preview" = [ "UI_WindowManagement" ];
− "Web_AtomPub" = [ "Web" ];
− "Web_Http" = [ "Web" ];
− "Web_Http_Diagnostics" = [ "Web_Http" ];
− "Web_Http_Filters" = [ "Web_Http" ];
− "Web_Http_Headers" = [ "Web_Http" ];
− "Web_Syndication" = [ "Web" ];
− "Web_UI" = [ "Web" ];
− "Web_UI_Interop" = [ "Web_UI" ];
− "Win32_AI" = [ "Win32" ];
− "Win32_AI_MachineLearning" = [ "Win32_AI" ];
− "Win32_AI_MachineLearning_DirectML" = [ "Win32_AI_MachineLearning" ];
− "Win32_AI_MachineLearning_WinML" = [ "Win32_AI_MachineLearning" ];
− "Win32_Data" = [ "Win32" ];
− "Win32_Data_HtmlHelp" = [ "Win32_Data" ];
− "Win32_Data_RightsManagement" = [ "Win32_Data" ];
− "Win32_Data_Xml" = [ "Win32_Data" ];
− "Win32_Data_Xml_MsXml" = [ "Win32_Data_Xml" ];
− "Win32_Data_Xml_XmlLite" = [ "Win32_Data_Xml" ];
− "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_DeviceAccess" = [ "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_FunctionDiscovery" = [ "Win32_Devices" ];
− "Win32_Devices_Geolocation" = [ "Win32_Devices" ];
− "Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
− "Win32_Devices_ImageAcquisition" = [ "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_CompositionSwapchain" = [ "Win32_Graphics" ];
− "Win32_Graphics_DXCore" = [ "Win32_Graphics" ];
− "Win32_Graphics_Direct2D" = [ "Win32_Graphics" ];
− "Win32_Graphics_Direct2D_Common" = [ "Win32_Graphics_Direct2D" ];
− "Win32_Graphics_Direct3D" = [ "Win32_Graphics" ];
− "Win32_Graphics_Direct3D10" = [ "Win32_Graphics" ];
− "Win32_Graphics_Direct3D11" = [ "Win32_Graphics" ];
− "Win32_Graphics_Direct3D11on12" = [ "Win32_Graphics" ];
− "Win32_Graphics_Direct3D12" = [ "Win32_Graphics" ];
− "Win32_Graphics_Direct3D9" = [ "Win32_Graphics" ];
− "Win32_Graphics_Direct3D9on12" = [ "Win32_Graphics" ];
− "Win32_Graphics_Direct3D_Dxc" = [ "Win32_Graphics_Direct3D" ];
− "Win32_Graphics_Direct3D_Fxc" = [ "Win32_Graphics_Direct3D" ];
− "Win32_Graphics_DirectComposition" = [ "Win32_Graphics" ];
− "Win32_Graphics_DirectDraw" = [ "Win32_Graphics" ];
− "Win32_Graphics_DirectManipulation" = [ "Win32_Graphics" ];
− "Win32_Graphics_DirectWrite" = [ "Win32_Graphics" ];
− "Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
− "Win32_Graphics_Dxgi" = [ "Win32_Graphics" ];
− "Win32_Graphics_Dxgi_Common" = [ "Win32_Graphics_Dxgi" ];
− "Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
− "Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
− "Win32_Graphics_Imaging" = [ "Win32_Graphics" ];
− "Win32_Graphics_Imaging_D2D" = [ "Win32_Graphics_Imaging" ];
− "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_Audio_Apo" = [ "Win32_Media_Audio" ];
− "Win32_Media_Audio_DirectMusic" = [ "Win32_Media_Audio" ];
− "Win32_Media_Audio_DirectSound" = [ "Win32_Media_Audio" ];
− "Win32_Media_Audio_Endpoints" = [ "Win32_Media_Audio" ];
− "Win32_Media_Audio_XAudio2" = [ "Win32_Media_Audio" ];
− "Win32_Media_DeviceManager" = [ "Win32_Media" ];
− "Win32_Media_DirectShow" = [ "Win32_Media" ];
− "Win32_Media_DirectShow_Xml" = [ "Win32_Media_DirectShow" ];
− "Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
− "Win32_Media_KernelStreaming" = [ "Win32_Media" ];
− "Win32_Media_LibrarySharingServices" = [ "Win32_Media" ];
− "Win32_Media_MediaFoundation" = [ "Win32_Media" ];
− "Win32_Media_MediaPlayer" = [ "Win32_Media" ];
− "Win32_Media_Multimedia" = [ "Win32_Media" ];
− "Win32_Media_PictureAcquisition" = [ "Win32_Media" ];
− "Win32_Media_Speech" = [ "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_MobileBroadband" = [ "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_NetworkPolicyServer" = [ "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_WindowsConnectNow" = [ "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_BackgroundIntelligentTransferService" = [ "Win32_Networking" ];
− "Win32_Networking_Clustering" = [ "Win32_Networking" ];
− "Win32_Networking_HttpServer" = [ "Win32_Networking" ];
− "Win32_Networking_Ldap" = [ "Win32_Networking" ];
− "Win32_Networking_NetworkListManager" = [ "Win32_Networking" ];
− "Win32_Networking_RemoteDifferentialCompression" = [ "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_Authentication_Identity_Provider" = [ "Win32_Security_Authentication_Identity" ];
− "Win32_Security_Authorization" = [ "Win32_Security" ];
− "Win32_Security_Authorization_UI" = [ "Win32_Security_Authorization" ];
− "Win32_Security_ConfigurationSnapin" = [ "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_Tpm" = [ "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_DataDeduplication" = [ "Win32_Storage" ];
− "Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
− "Win32_Storage_EnhancedStorage" = [ "Win32_Storage" ];
− "Win32_Storage_FileHistory" = [ "Win32_Storage" ];
− "Win32_Storage_FileServerResourceManager" = [ "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_OfflineFiles" = [ "Win32_Storage" ];
− "Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
− "Win32_Storage_Packaging" = [ "Win32_Storage" ];
− "Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
− "Win32_Storage_Packaging_Opc" = [ "Win32_Storage_Packaging" ];
− "Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
− "Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
− "Win32_Storage_Vhd" = [ "Win32_Storage" ];
− "Win32_Storage_VirtualDiskService" = [ "Win32_Storage" ];
− "Win32_Storage_Vss" = [ "Win32_Storage" ];
− "Win32_Storage_Xps" = [ "Win32_Storage" ];
− "Win32_Storage_Xps_Printing" = [ "Win32_Storage_Xps" ];
− "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_AssessmentTool" = [ "Win32_System" ];
− "Win32_System_Com" = [ "Win32_System" ];
− "Win32_System_Com_CallObj" = [ "Win32_System_Com" ];
− "Win32_System_Com_ChannelCredentials" = [ "Win32_System_Com" ];
− "Win32_System_Com_Events" = [ "Win32_System_Com" ];
− "Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
− "Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
− "Win32_System_Com_UI" = [ "Win32_System_Com" ];
− "Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
− "Win32_System_ComponentServices" = [ "Win32_System" ];
− "Win32_System_Console" = [ "Win32_System" ];
− "Win32_System_Contacts" = [ "Win32_System" ];
− "Win32_System_CorrelationVector" = [ "Win32_System" ];
− "Win32_System_DataExchange" = [ "Win32_System" ];
− "Win32_System_DeploymentServices" = [ "Win32_System" ];
− "Win32_System_DesktopSharing" = [ "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_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_Mmc" = [ "Win32_System" ];
− "Win32_System_Ole" = [ "Win32_System" ];
− "Win32_System_ParentalControls" = [ "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_RealTimeCommunications" = [ "Win32_System" ];
− "Win32_System_Recovery" = [ "Win32_System" ];
− "Win32_System_Registry" = [ "Win32_System" ];
− "Win32_System_RemoteAssistance" = [ "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_ServerBackup" = [ "Win32_System" ];
− "Win32_System_Services" = [ "Win32_System" ];
− "Win32_System_SettingsManagementInfrastructure" = [ "Win32_System" ];
− "Win32_System_SetupAndMigration" = [ "Win32_System" ];
− "Win32_System_Shutdown" = [ "Win32_System" ];
− "Win32_System_SideShow" = [ "Win32_System" ];
− "Win32_System_StationsAndDesktops" = [ "Win32_System" ];
− "Win32_System_SubsystemForLinux" = [ "Win32_System" ];
− "Win32_System_SystemInformation" = [ "Win32_System" ];
− "Win32_System_SystemServices" = [ "Win32_System" ];
− "Win32_System_TaskScheduler" = [ "Win32_System" ];
− "Win32_System_Threading" = [ "Win32_System" ];
− "Win32_System_Time" = [ "Win32_System" ];
− "Win32_System_TpmBaseServices" = [ "Win32_System" ];
− "Win32_System_TransactionServer" = [ "Win32_System" ];
− "Win32_System_UpdateAgent" = [ "Win32_System" ];
− "Win32_System_UpdateAssessment" = [ "Win32_System" ];
− "Win32_System_UserAccessLogging" = [ "Win32_System" ];
− "Win32_System_VirtualDosMachines" = [ "Win32_System" ];
− "Win32_System_WinRT" = [ "Win32_System" ];
− "Win32_System_WinRT_AllJoyn" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_Composition" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_CoreInputView" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_Direct3D11" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_Display" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_Graphics" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_Graphics_Capture" = [ "Win32_System_WinRT_Graphics" ];
− "Win32_System_WinRT_Graphics_Direct2D" = [ "Win32_System_WinRT_Graphics" ];
− "Win32_System_WinRT_Graphics_Imaging" = [ "Win32_System_WinRT_Graphics" ];
− "Win32_System_WinRT_Holographic" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_Isolation" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_ML" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_Media" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_Pdf" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_Printing" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_Shell" = [ "Win32_System_WinRT" ];
− "Win32_System_WinRT_Storage" = [ "Win32_System_WinRT" ];
− "Win32_System_WindowsProgramming" = [ "Win32_System" ];
− "Win32_System_WindowsSync" = [ "Win32_System" ];
− "Win32_System_Wmi" = [ "Win32_System" ];
− "Win32_UI" = [ "Win32" ];
− "Win32_UI_Accessibility" = [ "Win32_UI" ];
− "Win32_UI_Animation" = [ "Win32_UI" ];
− "Win32_UI_ColorSystem" = [ "Win32_UI" ];
− "Win32_UI_Controls" = [ "Win32_UI" ];
− "Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
− "Win32_UI_Controls_RichEdit" = [ "Win32_UI_Controls" ];
− "Win32_UI_HiDpi" = [ "Win32_UI" ];
− "Win32_UI_Input" = [ "Win32_UI" ];
− "Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_Ink" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_Radial" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
− "Win32_UI_InteractionContext" = [ "Win32_UI" ];
− "Win32_UI_LegacyWindowsEnvironmentFeatures" = [ "Win32_UI" ];
− "Win32_UI_Magnification" = [ "Win32_UI" ];
− "Win32_UI_Notifications" = [ "Win32_UI" ];
− "Win32_UI_Ribbon" = [ "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_UI_Wpf" = [ "Win32_UI" ];
− "implement" = [ "windows-implement" "windows-interface" ];
− "windows-implement" = [ "dep:windows-implement" ];
− "windows-interface" = [ "dep:windows-interface" ];
− };
− resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_Security" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Console" "Win32_System_IO" "Win32_System_Pipes" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
− };
− "windows-sys 0.48.0" = rec {
− crateName = "windows-sys";
− version = "0.48.0";
− edition = "2018";
− sha256 = "1aan23v5gs7gya1lc46hqn9mdh8yph3fhxmhxlw36pn6pqc28zb7";
− libName = "windows_sys";
− authors = [
− "Microsoft"
− ];
− dependencies = [
− {
− name = "windows-targets";
− packageId = "windows-targets 0.48.5";
− }
− ];
− features = {
− "Wdk_System" = [ "Wdk" ];
− "Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
− "Win32_Data" = [ "Win32" ];
− "Win32_Data_HtmlHelp" = [ "Win32_Data" ];
− "Win32_Data_RightsManagement" = [ "Win32_Data" ];
− "Win32_Data_Xml" = [ "Win32_Data" ];
− "Win32_Data_Xml_MsXml" = [ "Win32_Data_Xml" ];
− "Win32_Data_Xml_XmlLite" = [ "Win32_Data_Xml" ];
− "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_DeviceAccess" = [ "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_FunctionDiscovery" = [ "Win32_Devices" ];
− "Win32_Devices_Geolocation" = [ "Win32_Devices" ];
− "Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
− "Win32_Devices_ImageAcquisition" = [ "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_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_Audio_Apo" = [ "Win32_Media_Audio" ];
− "Win32_Media_Audio_DirectMusic" = [ "Win32_Media_Audio" ];
− "Win32_Media_Audio_Endpoints" = [ "Win32_Media_Audio" ];
− "Win32_Media_Audio_XAudio2" = [ "Win32_Media_Audio" ];
− "Win32_Media_DeviceManager" = [ "Win32_Media" ];
− "Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
− "Win32_Media_KernelStreaming" = [ "Win32_Media" ];
− "Win32_Media_LibrarySharingServices" = [ "Win32_Media" ];
− "Win32_Media_MediaPlayer" = [ "Win32_Media" ];
− "Win32_Media_Multimedia" = [ "Win32_Media" ];
− "Win32_Media_Speech" = [ "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_MobileBroadband" = [ "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_NetworkPolicyServer" = [ "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_WindowsConnectNow" = [ "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_BackgroundIntelligentTransferService" = [ "Win32_Networking" ];
− "Win32_Networking_Clustering" = [ "Win32_Networking" ];
− "Win32_Networking_HttpServer" = [ "Win32_Networking" ];
− "Win32_Networking_Ldap" = [ "Win32_Networking" ];
− "Win32_Networking_NetworkListManager" = [ "Win32_Networking" ];
− "Win32_Networking_RemoteDifferentialCompression" = [ "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_Authentication_Identity_Provider" = [ "Win32_Security_Authentication_Identity" ];
− "Win32_Security_Authorization" = [ "Win32_Security" ];
− "Win32_Security_Authorization_UI" = [ "Win32_Security_Authorization" ];
− "Win32_Security_ConfigurationSnapin" = [ "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_Tpm" = [ "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_DataDeduplication" = [ "Win32_Storage" ];
− "Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
− "Win32_Storage_EnhancedStorage" = [ "Win32_Storage" ];
− "Win32_Storage_FileHistory" = [ "Win32_Storage" ];
− "Win32_Storage_FileServerResourceManager" = [ "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_OfflineFiles" = [ "Win32_Storage" ];
− "Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
− "Win32_Storage_Packaging" = [ "Win32_Storage" ];
− "Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
− "Win32_Storage_Packaging_Opc" = [ "Win32_Storage_Packaging" ];
− "Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
− "Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
− "Win32_Storage_Vhd" = [ "Win32_Storage" ];
− "Win32_Storage_VirtualDiskService" = [ "Win32_Storage" ];
− "Win32_Storage_Vss" = [ "Win32_Storage" ];
− "Win32_Storage_Xps" = [ "Win32_Storage" ];
− "Win32_Storage_Xps_Printing" = [ "Win32_Storage_Xps" ];
− "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_AssessmentTool" = [ "Win32_System" ];
− "Win32_System_ClrHosting" = [ "Win32_System" ];
− "Win32_System_Com" = [ "Win32_System" ];
− "Win32_System_Com_CallObj" = [ "Win32_System_Com" ];
− "Win32_System_Com_ChannelCredentials" = [ "Win32_System_Com" ];
− "Win32_System_Com_Events" = [ "Win32_System_Com" ];
− "Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
− "Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
− "Win32_System_Com_UI" = [ "Win32_System_Com" ];
− "Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
− "Win32_System_ComponentServices" = [ "Win32_System" ];
− "Win32_System_Console" = [ "Win32_System" ];
− "Win32_System_Contacts" = [ "Win32_System" ];
− "Win32_System_CorrelationVector" = [ "Win32_System" ];
− "Win32_System_DataExchange" = [ "Win32_System" ];
− "Win32_System_DeploymentServices" = [ "Win32_System" ];
− "Win32_System_DesktopSharing" = [ "Win32_System" ];
− "Win32_System_DeveloperLicensing" = [ "Win32_System" ];
− "Win32_System_Diagnostics" = [ "Win32_System" ];
− "Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
− "Win32_System_Diagnostics_ClrProfiling" = [ "Win32_System_Diagnostics" ];
− "Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
− "Win32_System_Diagnostics_Debug_ActiveScript" = [ "Win32_System_Diagnostics_Debug" ];
− "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_Mmc" = [ "Win32_System" ];
− "Win32_System_Ole" = [ "Win32_System" ];
− "Win32_System_ParentalControls" = [ "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_RealTimeCommunications" = [ "Win32_System" ];
− "Win32_System_Recovery" = [ "Win32_System" ];
− "Win32_System_Registry" = [ "Win32_System" ];
− "Win32_System_RemoteAssistance" = [ "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_ServerBackup" = [ "Win32_System" ];
− "Win32_System_Services" = [ "Win32_System" ];
− "Win32_System_SettingsManagementInfrastructure" = [ "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_TaskScheduler" = [ "Win32_System" ];
− "Win32_System_Threading" = [ "Win32_System" ];
− "Win32_System_Time" = [ "Win32_System" ];
− "Win32_System_TpmBaseServices" = [ "Win32_System" ];
− "Win32_System_UpdateAgent" = [ "Win32_System" ];
− "Win32_System_UpdateAssessment" = [ "Win32_System" ];
− "Win32_System_UserAccessLogging" = [ "Win32_System" ];
− "Win32_System_VirtualDosMachines" = [ "Win32_System" ];
− "Win32_System_WindowsProgramming" = [ "Win32_System" ];
− "Win32_System_WindowsSync" = [ "Win32_System" ];
− "Win32_System_Wmi" = [ "Win32_System" ];
− "Win32_UI" = [ "Win32" ];
− "Win32_UI_Accessibility" = [ "Win32_UI" ];
− "Win32_UI_Animation" = [ "Win32_UI" ];
− "Win32_UI_ColorSystem" = [ "Win32_UI" ];
− "Win32_UI_Controls" = [ "Win32_UI" ];
− "Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
− "Win32_UI_Controls_RichEdit" = [ "Win32_UI_Controls" ];
− "Win32_UI_HiDpi" = [ "Win32_UI" ];
− "Win32_UI_Input" = [ "Win32_UI" ];
− "Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_Ink" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_Radial" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
− "Win32_UI_InteractionContext" = [ "Win32_UI" ];
− "Win32_UI_LegacyWindowsEnvironmentFeatures" = [ "Win32_UI" ];
− "Win32_UI_Magnification" = [ "Win32_UI" ];
− "Win32_UI_Notifications" = [ "Win32_UI" ];
− "Win32_UI_Ribbon" = [ "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_UI_Wpf" = [ "Win32_UI" ];
− "Win32_Web" = [ "Win32" ];
− "Win32_Web_InternetExplorer" = [ "Win32_Web" ];
− };
− resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_Security" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "Win32_System_Registry" "Win32_System_Time" "default" ];
− };
− "windows-sys 0.52.0" = rec {
− crateName = "windows-sys";
− version = "0.52.0";
− edition = "2021";
− sha256 = "0gd3v4ji88490zgb6b5mq5zgbvwv7zx1ibn8v3x83rwcdbryaar8";
− libName = "windows_sys";
− authors = [
− "Microsoft"
− ];
− dependencies = [
− {
− name = "windows-targets";
− packageId = "windows-targets 0.52.6";
− }
− ];
− features = {
− "Wdk_Foundation" = [ "Wdk" ];
− "Wdk_Graphics" = [ "Wdk" ];
− "Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
− "Wdk_Storage" = [ "Wdk" ];
− "Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
− "Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
− "Wdk_System" = [ "Wdk" ];
− "Wdk_System_IO" = [ "Wdk_System" ];
− "Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
− "Wdk_System_Registry" = [ "Wdk_System" ];
− "Wdk_System_SystemInformation" = [ "Wdk_System" ];
− "Wdk_System_SystemServices" = [ "Wdk_System" ];
− "Wdk_System_Threading" = [ "Wdk_System" ];
− "Win32_Data" = [ "Win32" ];
− "Win32_Data_HtmlHelp" = [ "Win32_Data" ];
− "Win32_Data_RightsManagement" = [ "Win32_Data" ];
− "Win32_Devices" = [ "Win32" ];
− "Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
− "Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
− "Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
− "Win32_Devices_Communication" = [ "Win32_Devices" ];
− "Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
− "Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
− "Win32_Devices_Display" = [ "Win32_Devices" ];
− "Win32_Devices_Enumeration" = [ "Win32_Devices" ];
− "Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
− "Win32_Devices_Fax" = [ "Win32_Devices" ];
− "Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
− "Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
− "Win32_Devices_Properties" = [ "Win32_Devices" ];
− "Win32_Devices_Pwm" = [ "Win32_Devices" ];
− "Win32_Devices_Sensors" = [ "Win32_Devices" ];
− "Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
− "Win32_Devices_Tapi" = [ "Win32_Devices" ];
− "Win32_Devices_Usb" = [ "Win32_Devices" ];
− "Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
− "Win32_Foundation" = [ "Win32" ];
− "Win32_Gaming" = [ "Win32" ];
− "Win32_Globalization" = [ "Win32" ];
− "Win32_Graphics" = [ "Win32" ];
− "Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
− "Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
− "Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
− "Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
− "Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
− "Win32_Graphics_Printing" = [ "Win32_Graphics" ];
− "Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
− "Win32_Management" = [ "Win32" ];
− "Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
− "Win32_Media" = [ "Win32" ];
− "Win32_Media_Audio" = [ "Win32_Media" ];
− "Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
− "Win32_Media_KernelStreaming" = [ "Win32_Media" ];
− "Win32_Media_Multimedia" = [ "Win32_Media" ];
− "Win32_Media_Streaming" = [ "Win32_Media" ];
− "Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
− "Win32_NetworkManagement" = [ "Win32" ];
− "Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
− "Win32_Networking" = [ "Win32" ];
− "Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
− "Win32_Networking_Clustering" = [ "Win32_Networking" ];
− "Win32_Networking_HttpServer" = [ "Win32_Networking" ];
− "Win32_Networking_Ldap" = [ "Win32_Networking" ];
− "Win32_Networking_WebSocket" = [ "Win32_Networking" ];
− "Win32_Networking_WinHttp" = [ "Win32_Networking" ];
− "Win32_Networking_WinInet" = [ "Win32_Networking" ];
− "Win32_Networking_WinSock" = [ "Win32_Networking" ];
− "Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
− "Win32_Security" = [ "Win32" ];
− "Win32_Security_AppLocker" = [ "Win32_Security" ];
− "Win32_Security_Authentication" = [ "Win32_Security" ];
− "Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
− "Win32_Security_Authorization" = [ "Win32_Security" ];
− "Win32_Security_Credentials" = [ "Win32_Security" ];
− "Win32_Security_Cryptography" = [ "Win32_Security" ];
− "Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
− "Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
− "Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
− "Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
− "Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
− "Win32_Security_DirectoryServices" = [ "Win32_Security" ];
− "Win32_Security_EnterpriseData" = [ "Win32_Security" ];
− "Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
− "Win32_Security_Isolation" = [ "Win32_Security" ];
− "Win32_Security_LicenseProtection" = [ "Win32_Security" ];
− "Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
− "Win32_Security_WinTrust" = [ "Win32_Security" ];
− "Win32_Security_WinWlx" = [ "Win32_Security" ];
− "Win32_Storage" = [ "Win32" ];
− "Win32_Storage_Cabinets" = [ "Win32_Storage" ];
− "Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
− "Win32_Storage_Compression" = [ "Win32_Storage" ];
− "Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
− "Win32_Storage_FileHistory" = [ "Win32_Storage" ];
− "Win32_Storage_FileSystem" = [ "Win32_Storage" ];
− "Win32_Storage_Imapi" = [ "Win32_Storage" ];
− "Win32_Storage_IndexServer" = [ "Win32_Storage" ];
− "Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
− "Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
− "Win32_Storage_Jet" = [ "Win32_Storage" ];
− "Win32_Storage_Nvme" = [ "Win32_Storage" ];
− "Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
− "Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
− "Win32_Storage_Packaging" = [ "Win32_Storage" ];
− "Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
− "Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
− "Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
− "Win32_Storage_Vhd" = [ "Win32_Storage" ];
− "Win32_Storage_Xps" = [ "Win32_Storage" ];
− "Win32_System" = [ "Win32" ];
− "Win32_System_AddressBook" = [ "Win32_System" ];
− "Win32_System_Antimalware" = [ "Win32_System" ];
− "Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
− "Win32_System_ApplicationVerifier" = [ "Win32_System" ];
− "Win32_System_ClrHosting" = [ "Win32_System" ];
− "Win32_System_Com" = [ "Win32_System" ];
− "Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
− "Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
− "Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
− "Win32_System_ComponentServices" = [ "Win32_System" ];
− "Win32_System_Console" = [ "Win32_System" ];
− "Win32_System_CorrelationVector" = [ "Win32_System" ];
− "Win32_System_DataExchange" = [ "Win32_System" ];
− "Win32_System_DeploymentServices" = [ "Win32_System" ];
− "Win32_System_DeveloperLicensing" = [ "Win32_System" ];
− "Win32_System_Diagnostics" = [ "Win32_System" ];
− "Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
− "Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
− "Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
− "Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
− "Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
− "Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
− "Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
− "Win32_System_Environment" = [ "Win32_System" ];
− "Win32_System_ErrorReporting" = [ "Win32_System" ];
− "Win32_System_EventCollector" = [ "Win32_System" ];
− "Win32_System_EventLog" = [ "Win32_System" ];
− "Win32_System_EventNotificationService" = [ "Win32_System" ];
− "Win32_System_GroupPolicy" = [ "Win32_System" ];
− "Win32_System_HostCompute" = [ "Win32_System" ];
− "Win32_System_HostComputeNetwork" = [ "Win32_System" ];
− "Win32_System_HostComputeSystem" = [ "Win32_System" ];
− "Win32_System_Hypervisor" = [ "Win32_System" ];
− "Win32_System_IO" = [ "Win32_System" ];
− "Win32_System_Iis" = [ "Win32_System" ];
− "Win32_System_Ioctl" = [ "Win32_System" ];
− "Win32_System_JobObjects" = [ "Win32_System" ];
− "Win32_System_Js" = [ "Win32_System" ];
− "Win32_System_Kernel" = [ "Win32_System" ];
− "Win32_System_LibraryLoader" = [ "Win32_System" ];
− "Win32_System_Mailslots" = [ "Win32_System" ];
− "Win32_System_Mapi" = [ "Win32_System" ];
− "Win32_System_Memory" = [ "Win32_System" ];
− "Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
− "Win32_System_MessageQueuing" = [ "Win32_System" ];
− "Win32_System_MixedReality" = [ "Win32_System" ];
− "Win32_System_Ole" = [ "Win32_System" ];
− "Win32_System_PasswordManagement" = [ "Win32_System" ];
− "Win32_System_Performance" = [ "Win32_System" ];
− "Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
− "Win32_System_Pipes" = [ "Win32_System" ];
− "Win32_System_Power" = [ "Win32_System" ];
− "Win32_System_ProcessStatus" = [ "Win32_System" ];
− "Win32_System_Recovery" = [ "Win32_System" ];
− "Win32_System_Registry" = [ "Win32_System" ];
− "Win32_System_RemoteDesktop" = [ "Win32_System" ];
− "Win32_System_RemoteManagement" = [ "Win32_System" ];
− "Win32_System_RestartManager" = [ "Win32_System" ];
− "Win32_System_Restore" = [ "Win32_System" ];
− "Win32_System_Rpc" = [ "Win32_System" ];
− "Win32_System_Search" = [ "Win32_System" ];
− "Win32_System_Search_Common" = [ "Win32_System_Search" ];
− "Win32_System_SecurityCenter" = [ "Win32_System" ];
− "Win32_System_Services" = [ "Win32_System" ];
− "Win32_System_SetupAndMigration" = [ "Win32_System" ];
− "Win32_System_Shutdown" = [ "Win32_System" ];
− "Win32_System_StationsAndDesktops" = [ "Win32_System" ];
− "Win32_System_SubsystemForLinux" = [ "Win32_System" ];
− "Win32_System_SystemInformation" = [ "Win32_System" ];
− "Win32_System_SystemServices" = [ "Win32_System" ];
− "Win32_System_Threading" = [ "Win32_System" ];
− "Win32_System_Time" = [ "Win32_System" ];
− "Win32_System_TpmBaseServices" = [ "Win32_System" ];
− "Win32_System_UserAccessLogging" = [ "Win32_System" ];
− "Win32_System_Variant" = [ "Win32_System" ];
− "Win32_System_VirtualDosMachines" = [ "Win32_System" ];
− "Win32_System_WindowsProgramming" = [ "Win32_System" ];
− "Win32_System_Wmi" = [ "Win32_System" ];
− "Win32_UI" = [ "Win32" ];
− "Win32_UI_Accessibility" = [ "Win32_UI" ];
− "Win32_UI_ColorSystem" = [ "Win32_UI" ];
− "Win32_UI_Controls" = [ "Win32_UI" ];
− "Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
− "Win32_UI_HiDpi" = [ "Win32_UI" ];
− "Win32_UI_Input" = [ "Win32_UI" ];
− "Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
− "Win32_UI_InteractionContext" = [ "Win32_UI" ];
− "Win32_UI_Magnification" = [ "Win32_UI" ];
− "Win32_UI_Shell" = [ "Win32_UI" ];
− "Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
− "Win32_UI_TabletPC" = [ "Win32_UI" ];
− "Win32_UI_TextServices" = [ "Win32_UI" ];
− "Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
− "Win32_Web" = [ "Win32" ];
− "Win32_Web_InternetExplorer" = [ "Win32_Web" ];
− };
− resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_IO" "Win32_System_LibraryLoader" "Win32_System_Pipes" "Win32_System_Registry" "Win32_System_SystemInformation" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_System_WindowsProgramming" "Win32_UI" "Win32_UI_WindowsAndMessaging" "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 0.52.6";
− }
− ];
− 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 = [ "Wdk" "Wdk_Foundation" "Wdk_Storage" "Wdk_Storage_FileSystem" "Wdk_System" "Wdk_System_IO" "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_Com" "Win32_System_Console" "Win32_System_IO" "Win32_System_LibraryLoader" "Win32_System_Memory" "Win32_System_Pipes" "Win32_System_SystemInformation" "Win32_System_Threading" "Win32_System_Time" "Win32_System_WindowsProgramming" "Win32_UI" "Win32_UI_Input" "Win32_UI_Input_KeyboardAndMouse" "Win32_UI_Shell" "default" ];
− };
− "windows-sys 0.60.2" = rec {
− crateName = "windows-sys";
− version = "0.60.2";
− edition = "2021";
− sha256 = "1jrbc615ihqnhjhxplr2kw7rasrskv9wj3lr80hgfd42sbj01xgj";
− libName = "windows_sys";
− authors = [
− "Microsoft"
− ];
− dependencies = [
− {
− name = "windows-targets";
− packageId = "windows-targets 0.53.2";
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "Wdk" = [ "Win32_Foundation" ];
− "Wdk_Devices" = [ "Wdk" ];
− "Wdk_Devices_Bluetooth" = [ "Wdk_Devices" ];
− "Wdk_Devices_HumanInterfaceDevice" = [ "Wdk_Devices" ];
− "Wdk_Foundation" = [ "Wdk" ];
− "Wdk_Graphics" = [ "Wdk" ];
− "Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
− "Wdk_NetworkManagement" = [ "Wdk" ];
− "Wdk_NetworkManagement_Ndis" = [ "Wdk_NetworkManagement" ];
− "Wdk_NetworkManagement_WindowsFilteringPlatform" = [ "Wdk_NetworkManagement" ];
− "Wdk_Storage" = [ "Wdk" ];
− "Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
− "Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
− "Wdk_System" = [ "Wdk" ];
− "Wdk_System_IO" = [ "Wdk_System" ];
− "Wdk_System_Memory" = [ "Wdk_System" ];
− "Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
− "Wdk_System_Registry" = [ "Wdk_System" ];
− "Wdk_System_SystemInformation" = [ "Wdk_System" ];
− "Wdk_System_SystemServices" = [ "Wdk_System" ];
− "Wdk_System_Threading" = [ "Wdk_System" ];
− "Win32" = [ "Win32_Foundation" ];
− "Win32_Data" = [ "Win32" ];
− "Win32_Data_HtmlHelp" = [ "Win32_Data" ];
− "Win32_Data_RightsManagement" = [ "Win32_Data" ];
− "Win32_Devices" = [ "Win32" ];
− "Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
− "Win32_Devices_Beep" = [ "Win32_Devices" ];
− "Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
− "Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
− "Win32_Devices_Cdrom" = [ "Win32_Devices" ];
− "Win32_Devices_Communication" = [ "Win32_Devices" ];
− "Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
− "Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
− "Win32_Devices_Display" = [ "Win32_Devices" ];
− "Win32_Devices_Dvd" = [ "Win32_Devices" ];
− "Win32_Devices_Enumeration" = [ "Win32_Devices" ];
− "Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
− "Win32_Devices_Fax" = [ "Win32_Devices" ];
− "Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
− "Win32_Devices_Nfc" = [ "Win32_Devices" ];
− "Win32_Devices_Nfp" = [ "Win32_Devices" ];
− "Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
− "Win32_Devices_Properties" = [ "Win32_Devices" ];
− "Win32_Devices_Pwm" = [ "Win32_Devices" ];
− "Win32_Devices_Sensors" = [ "Win32_Devices" ];
− "Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
− "Win32_Devices_Tapi" = [ "Win32_Devices" ];
− "Win32_Devices_Usb" = [ "Win32_Devices" ];
− "Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
− "Win32_Foundation" = [ "Win32" ];
− "Win32_Gaming" = [ "Win32" ];
− "Win32_Globalization" = [ "Win32" ];
− "Win32_Graphics" = [ "Win32" ];
− "Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
− "Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
− "Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
− "Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
− "Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
− "Win32_Graphics_Printing" = [ "Win32_Graphics" ];
− "Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
− "Win32_Management" = [ "Win32" ];
− "Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
− "Win32_Media" = [ "Win32" ];
− "Win32_Media_Audio" = [ "Win32_Media" ];
− "Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
− "Win32_Media_KernelStreaming" = [ "Win32_Media" ];
− "Win32_Media_Multimedia" = [ "Win32_Media" ];
− "Win32_Media_Streaming" = [ "Win32_Media" ];
− "Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
− "Win32_NetworkManagement" = [ "Win32" ];
− "Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
− "Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
− "Win32_Networking" = [ "Win32" ];
− "Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
− "Win32_Networking_Clustering" = [ "Win32_Networking" ];
− "Win32_Networking_HttpServer" = [ "Win32_Networking" ];
− "Win32_Networking_Ldap" = [ "Win32_Networking" ];
− "Win32_Networking_WebSocket" = [ "Win32_Networking" ];
− "Win32_Networking_WinHttp" = [ "Win32_Networking" ];
− "Win32_Networking_WinInet" = [ "Win32_Networking" ];
− "Win32_Networking_WinSock" = [ "Win32_Networking" ];
− "Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
− "Win32_Security" = [ "Win32" ];
− "Win32_Security_AppLocker" = [ "Win32_Security" ];
− "Win32_Security_Authentication" = [ "Win32_Security" ];
− "Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
− "Win32_Security_Authorization" = [ "Win32_Security" ];
− "Win32_Security_Credentials" = [ "Win32_Security" ];
− "Win32_Security_Cryptography" = [ "Win32_Security" ];
− "Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
− "Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
− "Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
− "Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
− "Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
− "Win32_Security_DirectoryServices" = [ "Win32_Security" ];
− "Win32_Security_EnterpriseData" = [ "Win32_Security" ];
− "Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
− "Win32_Security_Isolation" = [ "Win32_Security" ];
− "Win32_Security_LicenseProtection" = [ "Win32_Security" ];
− "Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
− "Win32_Security_WinTrust" = [ "Win32_Security" ];
− "Win32_Security_WinWlx" = [ "Win32_Security" ];
− "Win32_Storage" = [ "Win32" ];
− "Win32_Storage_Cabinets" = [ "Win32_Storage" ];
− "Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
− "Win32_Storage_Compression" = [ "Win32_Storage" ];
− "Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
− "Win32_Storage_FileHistory" = [ "Win32_Storage" ];
− "Win32_Storage_FileSystem" = [ "Win32_Storage" ];
− "Win32_Storage_Imapi" = [ "Win32_Storage" ];
− "Win32_Storage_IndexServer" = [ "Win32_Storage" ];
− "Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
− "Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
− "Win32_Storage_Jet" = [ "Win32_Storage" ];
− "Win32_Storage_Nvme" = [ "Win32_Storage" ];
− "Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
− "Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
− "Win32_Storage_Packaging" = [ "Win32_Storage" ];
− "Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
− "Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
− "Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
− "Win32_Storage_Vhd" = [ "Win32_Storage" ];
− "Win32_Storage_Xps" = [ "Win32_Storage" ];
− "Win32_System" = [ "Win32" ];
− "Win32_System_AddressBook" = [ "Win32_System" ];
− "Win32_System_Antimalware" = [ "Win32_System" ];
− "Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
− "Win32_System_ApplicationVerifier" = [ "Win32_System" ];
− "Win32_System_ClrHosting" = [ "Win32_System" ];
− "Win32_System_Com" = [ "Win32_System" ];
− "Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
− "Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
− "Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
− "Win32_System_ComponentServices" = [ "Win32_System" ];
− "Win32_System_Console" = [ "Win32_System" ];
− "Win32_System_CorrelationVector" = [ "Win32_System" ];
− "Win32_System_DataExchange" = [ "Win32_System" ];
− "Win32_System_DeploymentServices" = [ "Win32_System" ];
− "Win32_System_DeveloperLicensing" = [ "Win32_System" ];
− "Win32_System_Diagnostics" = [ "Win32_System" ];
− "Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
− "Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
− "Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
− "Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
− "Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
− "Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
− "Win32_System_Diagnostics_TraceLogging" = [ "Win32_System_Diagnostics" ];
− "Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
− "Win32_System_Environment" = [ "Win32_System" ];
− "Win32_System_ErrorReporting" = [ "Win32_System" ];
− "Win32_System_EventCollector" = [ "Win32_System" ];
− "Win32_System_EventLog" = [ "Win32_System" ];
− "Win32_System_EventNotificationService" = [ "Win32_System" ];
− "Win32_System_GroupPolicy" = [ "Win32_System" ];
− "Win32_System_HostCompute" = [ "Win32_System" ];
− "Win32_System_HostComputeNetwork" = [ "Win32_System" ];
− "Win32_System_HostComputeSystem" = [ "Win32_System" ];
− "Win32_System_Hypervisor" = [ "Win32_System" ];
− "Win32_System_IO" = [ "Win32_System" ];
− "Win32_System_Iis" = [ "Win32_System" ];
− "Win32_System_Ioctl" = [ "Win32_System" ];
− "Win32_System_JobObjects" = [ "Win32_System" ];
− "Win32_System_Js" = [ "Win32_System" ];
− "Win32_System_Kernel" = [ "Win32_System" ];
− "Win32_System_LibraryLoader" = [ "Win32_System" ];
− "Win32_System_Mailslots" = [ "Win32_System" ];
− "Win32_System_Mapi" = [ "Win32_System" ];
− "Win32_System_Memory" = [ "Win32_System" ];
− "Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
− "Win32_System_MessageQueuing" = [ "Win32_System" ];
− "Win32_System_MixedReality" = [ "Win32_System" ];
− "Win32_System_Ole" = [ "Win32_System" ];
− "Win32_System_PasswordManagement" = [ "Win32_System" ];
− "Win32_System_Performance" = [ "Win32_System" ];
− "Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
− "Win32_System_Pipes" = [ "Win32_System" ];
− "Win32_System_Power" = [ "Win32_System" ];
− "Win32_System_ProcessStatus" = [ "Win32_System" ];
− "Win32_System_Recovery" = [ "Win32_System" ];
− "Win32_System_Registry" = [ "Win32_System" ];
− "Win32_System_RemoteDesktop" = [ "Win32_System" ];
− "Win32_System_RemoteManagement" = [ "Win32_System" ];
− "Win32_System_RestartManager" = [ "Win32_System" ];
− "Win32_System_Restore" = [ "Win32_System" ];
− "Win32_System_Rpc" = [ "Win32_System" ];
− "Win32_System_Search" = [ "Win32_System" ];
− "Win32_System_Search_Common" = [ "Win32_System_Search" ];
− "Win32_System_SecurityCenter" = [ "Win32_System" ];
− "Win32_System_Services" = [ "Win32_System" ];
− "Win32_System_SetupAndMigration" = [ "Win32_System" ];
− "Win32_System_Shutdown" = [ "Win32_System" ];
− "Win32_System_StationsAndDesktops" = [ "Win32_System" ];
− "Win32_System_SubsystemForLinux" = [ "Win32_System" ];
− "Win32_System_SystemInformation" = [ "Win32_System" ];
− "Win32_System_SystemServices" = [ "Win32_System" ];
− "Win32_System_Threading" = [ "Win32_System" ];
− "Win32_System_Time" = [ "Win32_System" ];
− "Win32_System_TpmBaseServices" = [ "Win32_System" ];
− "Win32_System_UserAccessLogging" = [ "Win32_System" ];
− "Win32_System_Variant" = [ "Win32_System" ];
− "Win32_System_VirtualDosMachines" = [ "Win32_System" ];
− "Win32_System_WindowsProgramming" = [ "Win32_System" ];
− "Win32_System_Wmi" = [ "Win32_System" ];
− "Win32_UI" = [ "Win32" ];
− "Win32_UI_Accessibility" = [ "Win32_UI" ];
− "Win32_UI_ColorSystem" = [ "Win32_UI" ];
− "Win32_UI_Controls" = [ "Win32_UI" ];
− "Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
− "Win32_UI_HiDpi" = [ "Win32_UI" ];
− "Win32_UI_Input" = [ "Win32_UI" ];
− "Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
− "Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
− "Win32_UI_InteractionContext" = [ "Win32_UI" ];
− "Win32_UI_Magnification" = [ "Win32_UI" ];
− "Win32_UI_Shell" = [ "Win32_UI" ];
− "Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
− "Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
− "Win32_UI_TabletPC" = [ "Win32_UI" ];
− "Win32_UI_TextServices" = [ "Win32_UI" ];
− "Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
− "Win32_Web" = [ "Win32" ];
− "Win32_Web_InternetExplorer" = [ "Win32_Web" ];
− };
− resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_System" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "default" ];
− };
− "windows-targets 0.42.2" = rec {
− crateName = "windows-targets";
− version = "0.42.2";
− edition = "2018";
− sha256 = "0wfhnib2fisxlx8c507dbmh97kgij4r6kcxdi0f9nk6l1k080lcf";
− libName = "windows_targets";
− authors = [
− "Microsoft"
− ];
− dependencies = [
− {
− name = "windows_aarch64_gnullvm";
− packageId = "windows_aarch64_gnullvm 0.42.2";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-gnullvm");
− }
− {
− name = "windows_aarch64_msvc";
− packageId = "windows_aarch64_msvc 0.42.2";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-msvc");
− }
− {
− name = "windows_aarch64_msvc";
− packageId = "windows_aarch64_msvc 0.42.2";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-uwp-windows-msvc");
− }
− {
− name = "windows_i686_gnu";
− packageId = "windows_i686_gnu 0.42.2";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnu");
− }
− {
− name = "windows_i686_gnu";
− packageId = "windows_i686_gnu 0.42.2";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-uwp-windows-gnu");
− }
− {
− name = "windows_i686_msvc";
− packageId = "windows_i686_msvc 0.42.2";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-msvc");
− }
− {
− name = "windows_i686_msvc";
− packageId = "windows_i686_msvc 0.42.2";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-uwp-windows-msvc");
− }
− {
− name = "windows_x86_64_gnu";
− packageId = "windows_x86_64_gnu 0.42.2";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnu");
− }
− {
− name = "windows_x86_64_gnu";
− packageId = "windows_x86_64_gnu 0.42.2";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-uwp-windows-gnu");
− }
− {
− name = "windows_x86_64_gnullvm";
− packageId = "windows_x86_64_gnullvm 0.42.2";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnullvm");
− }
− {
− name = "windows_x86_64_msvc";
− packageId = "windows_x86_64_msvc 0.42.2";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-msvc");
− }
− {
− name = "windows_x86_64_msvc";
− packageId = "windows_x86_64_msvc 0.42.2";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-uwp-windows-msvc");
− }
− ];
−
− };
− "windows-targets 0.48.5" = rec {
− crateName = "windows-targets";
− version = "0.48.5";
− edition = "2018";
− sha256 = "034ljxqshifs1lan89xwpcy1hp0lhdh4b5n0d2z4fwjx2piacbws";
− libName = "windows_targets";
− authors = [
− "Microsoft"
− ];
− dependencies = [
− {
− name = "windows_aarch64_gnullvm";
− packageId = "windows_aarch64_gnullvm 0.48.5";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-gnullvm");
− }
− {
− name = "windows_aarch64_msvc";
− packageId = "windows_aarch64_msvc 0.48.5";
− target = { target, features }: (("aarch64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
− }
− {
− name = "windows_i686_gnu";
− packageId = "windows_i686_gnu 0.48.5";
− target = { target, features }: (("x86" == target."arch" or null) && ("gnu" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
− }
− {
− name = "windows_i686_msvc";
− packageId = "windows_i686_msvc 0.48.5";
− target = { target, features }: (("x86" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
− }
− {
− name = "windows_x86_64_gnu";
− packageId = "windows_x86_64_gnu 0.48.5";
− target = { target, features }: (("x86_64" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
− }
− {
− name = "windows_x86_64_gnullvm";
− packageId = "windows_x86_64_gnullvm 0.48.5";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnullvm");
− }
− {
− name = "windows_x86_64_msvc";
− packageId = "windows_x86_64_msvc 0.48.5";
− target = { target, features }: (("x86_64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
− }
− ];
−
− };
− "windows-targets 0.52.6" = rec {
− crateName = "windows-targets";
− version = "0.52.6";
− edition = "2021";
− sha256 = "0wwrx625nwlfp7k93r2rra568gad1mwd888h1jwnl0vfg5r4ywlv";
− libName = "windows_targets";
− authors = [
− "Microsoft"
− ];
− dependencies = [
− {
− name = "windows_aarch64_gnullvm";
− packageId = "windows_aarch64_gnullvm 0.52.6";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-gnullvm");
− }
− {
− name = "windows_aarch64_msvc";
− packageId = "windows_aarch64_msvc 0.52.6";
− target = { target, features }: (("aarch64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
− }
− {
− name = "windows_i686_gnu";
− packageId = "windows_i686_gnu 0.52.6";
− target = { target, features }: (("x86" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
− }
− {
− name = "windows_i686_gnullvm";
− packageId = "windows_i686_gnullvm 0.52.6";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnullvm");
− }
− {
− name = "windows_i686_msvc";
− packageId = "windows_i686_msvc 0.52.6";
− target = { target, features }: (("x86" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
− }
− {
− name = "windows_x86_64_gnu";
− packageId = "windows_x86_64_gnu 0.52.6";
− target = { target, features }: (("x86_64" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
− }
− {
− name = "windows_x86_64_gnullvm";
− packageId = "windows_x86_64_gnullvm 0.52.6";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnullvm");
− }
− {
− name = "windows_x86_64_msvc";
− packageId = "windows_x86_64_msvc 0.52.6";
− target = { target, features }: ((("x86_64" == target."arch" or null) || ("arm64ec" == target."arch" or null)) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
− }
− ];
−
− };
− "windows-targets 0.53.2" = rec {
− crateName = "windows-targets";
− version = "0.53.2";
− edition = "2021";
− sha256 = "1vwanhx2br7dh8mmrszdbcf01bccjr01mcyxcscxl4ffr7y6jvy6";
− libName = "windows_targets";
− authors = [
− "Microsoft"
− ];
− dependencies = [
− {
− name = "windows_aarch64_gnullvm";
− packageId = "windows_aarch64_gnullvm 0.53.0";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-gnullvm");
− }
− {
− name = "windows_aarch64_msvc";
− packageId = "windows_aarch64_msvc 0.53.0";
− target = { target, features }: (("aarch64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
− }
− {
− name = "windows_i686_gnu";
− packageId = "windows_i686_gnu 0.53.0";
− target = { target, features }: (("x86" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
− }
− {
− name = "windows_i686_gnullvm";
− packageId = "windows_i686_gnullvm 0.53.0";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnullvm");
− }
− {
− name = "windows_i686_msvc";
− packageId = "windows_i686_msvc 0.53.0";
− target = { target, features }: (("x86" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
− }
− {
− name = "windows_x86_64_gnu";
− packageId = "windows_x86_64_gnu 0.53.0";
− target = { target, features }: (("x86_64" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
− }
− {
− name = "windows_x86_64_gnullvm";
− packageId = "windows_x86_64_gnullvm 0.53.0";
− target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnullvm");
− }
− {
− name = "windows_x86_64_msvc";
− packageId = "windows_x86_64_msvc 0.53.0";
− target = { target, features }: ((("x86_64" == target."arch" or null) || ("arm64ec" == target."arch" or null)) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
− }
− ];
−
− };
− "windows_aarch64_gnullvm 0.42.2" = rec {
− crateName = "windows_aarch64_gnullvm";
− version = "0.42.2";
− edition = "2018";
− sha256 = "1y4q0qmvl0lvp7syxvfykafvmwal5hrjb4fmv04bqs0bawc52yjr";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_aarch64_gnullvm 0.48.5" = rec {
− crateName = "windows_aarch64_gnullvm";
− version = "0.48.5";
− edition = "2018";
− sha256 = "1n05v7qblg1ci3i567inc7xrkmywczxrs1z3lj3rkkxw18py6f1b";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_aarch64_gnullvm 0.52.6" = rec {
− crateName = "windows_aarch64_gnullvm";
− version = "0.52.6";
− edition = "2021";
− sha256 = "1lrcq38cr2arvmz19v32qaggvj8bh1640mdm9c2fr877h0hn591j";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_aarch64_gnullvm 0.53.0" = rec {
− crateName = "windows_aarch64_gnullvm";
− version = "0.53.0";
− edition = "2021";
− sha256 = "0r77pbpbcf8bq4yfwpz2hpq3vns8m0yacpvs2i5cn6fx1pwxbf46";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_aarch64_msvc 0.42.2" = rec {
− crateName = "windows_aarch64_msvc";
− version = "0.42.2";
− edition = "2018";
− sha256 = "0hsdikjl5sa1fva5qskpwlxzpc5q9l909fpl1w6yy1hglrj8i3p0";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_aarch64_msvc 0.48.5" = rec {
− crateName = "windows_aarch64_msvc";
− version = "0.48.5";
− edition = "2018";
− sha256 = "1g5l4ry968p73g6bg6jgyvy9lb8fyhcs54067yzxpcpkf44k2dfw";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_aarch64_msvc 0.52.6" = rec {
− crateName = "windows_aarch64_msvc";
− version = "0.52.6";
− edition = "2021";
− sha256 = "0sfl0nysnz32yyfh773hpi49b1q700ah6y7sacmjbqjjn5xjmv09";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_aarch64_msvc 0.53.0" = rec {
− crateName = "windows_aarch64_msvc";
− version = "0.53.0";
− edition = "2021";
− sha256 = "0v766yqw51pzxxwp203yqy39ijgjamp54hhdbsyqq6x1c8gilrf7";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_i686_gnu 0.42.2" = rec {
− crateName = "windows_i686_gnu";
− version = "0.42.2";
− edition = "2018";
− sha256 = "0kx866dfrby88lqs9v1vgmrkk1z6af9lhaghh5maj7d4imyr47f6";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_i686_gnu 0.48.5" = rec {
− crateName = "windows_i686_gnu";
− version = "0.48.5";
− edition = "2018";
− sha256 = "0gklnglwd9ilqx7ac3cn8hbhkraqisd0n83jxzf9837nvvkiand7";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_i686_gnu 0.52.6" = rec {
− crateName = "windows_i686_gnu";
− version = "0.52.6";
− edition = "2021";
− sha256 = "02zspglbykh1jh9pi7gn8g1f97jh1rrccni9ivmrfbl0mgamm6wf";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_i686_gnu 0.53.0" = rec {
− crateName = "windows_i686_gnu";
− version = "0.53.0";
− edition = "2021";
− sha256 = "1hvjc8nv95sx5vdd79fivn8bpm7i517dqyf4yvsqgwrmkmjngp61";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_i686_gnullvm 0.52.6" = rec {
− crateName = "windows_i686_gnullvm";
− version = "0.52.6";
− edition = "2021";
− sha256 = "0rpdx1537mw6slcpqa0rm3qixmsb79nbhqy5fsm3q2q9ik9m5vhf";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_i686_gnullvm 0.53.0" = rec {
− crateName = "windows_i686_gnullvm";
− version = "0.53.0";
− edition = "2021";
− sha256 = "04df1in2k91qyf1wzizvh560bvyzq20yf68k8xa66vdzxnywrrlw";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_i686_msvc 0.42.2" = rec {
− crateName = "windows_i686_msvc";
− version = "0.42.2";
− edition = "2018";
− sha256 = "0q0h9m2aq1pygc199pa5jgc952qhcnf0zn688454i7v4xjv41n24";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_i686_msvc 0.48.5" = rec {
− crateName = "windows_i686_msvc";
− version = "0.48.5";
− edition = "2018";
− sha256 = "01m4rik437dl9rdf0ndnm2syh10hizvq0dajdkv2fjqcywrw4mcg";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_i686_msvc 0.52.6" = rec {
− crateName = "windows_i686_msvc";
− version = "0.52.6";
− edition = "2021";
− sha256 = "0rkcqmp4zzmfvrrrx01260q3xkpzi6fzi2x2pgdcdry50ny4h294";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_i686_msvc 0.53.0" = rec {
− crateName = "windows_i686_msvc";
− version = "0.53.0";
− edition = "2021";
− sha256 = "0pcvb25fkvqnp91z25qr5x61wyya12lx8p7nsa137cbb82ayw7sq";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_x86_64_gnu 0.42.2" = rec {
− crateName = "windows_x86_64_gnu";
− version = "0.42.2";
− edition = "2018";
− sha256 = "0dnbf2xnp3xrvy8v9mgs3var4zq9v9yh9kv79035rdgyp2w15scd";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_x86_64_gnu 0.48.5" = rec {
− crateName = "windows_x86_64_gnu";
− version = "0.48.5";
− edition = "2018";
− sha256 = "13kiqqcvz2vnyxzydjh73hwgigsdr2z1xpzx313kxll34nyhmm2k";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_x86_64_gnu 0.52.6" = rec {
− crateName = "windows_x86_64_gnu";
− version = "0.52.6";
− edition = "2021";
− sha256 = "0y0sifqcb56a56mvn7xjgs8g43p33mfqkd8wj1yhrgxzma05qyhl";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_x86_64_gnu 0.53.0" = rec {
− crateName = "windows_x86_64_gnu";
− version = "0.53.0";
− edition = "2021";
− sha256 = "1flh84xkssn1n6m1riddipydcksp2pdl45vdf70jygx3ksnbam9f";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_x86_64_gnullvm 0.42.2" = rec {
− crateName = "windows_x86_64_gnullvm";
− version = "0.42.2";
− edition = "2018";
− sha256 = "18wl9r8qbsl475j39zvawlidp1bsbinliwfymr43fibdld31pm16";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_x86_64_gnullvm 0.48.5" = rec {
− crateName = "windows_x86_64_gnullvm";
− version = "0.48.5";
− edition = "2018";
− sha256 = "1k24810wfbgz8k48c2yknqjmiigmql6kk3knmddkv8k8g1v54yqb";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_x86_64_gnullvm 0.52.6" = rec {
− crateName = "windows_x86_64_gnullvm";
− version = "0.52.6";
− edition = "2021";
− sha256 = "03gda7zjx1qh8k9nnlgb7m3w3s1xkysg55hkd1wjch8pqhyv5m94";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_x86_64_gnullvm 0.53.0" = rec {
− crateName = "windows_x86_64_gnullvm";
− version = "0.53.0";
− edition = "2021";
− sha256 = "0mvc8119xpbi3q2m6mrjcdzl6afx4wffacp13v76g4jrs1fh6vha";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_x86_64_msvc 0.42.2" = rec {
− crateName = "windows_x86_64_msvc";
− version = "0.42.2";
− edition = "2018";
− sha256 = "1w5r0q0yzx827d10dpjza2ww0j8iajqhmb54s735hhaj66imvv4s";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_x86_64_msvc 0.48.5" = rec {
− crateName = "windows_x86_64_msvc";
− version = "0.48.5";
− edition = "2018";
− sha256 = "0f4mdp895kkjh9zv8dxvn4pc10xr7839lf5pa9l0193i2pkgr57d";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_x86_64_msvc 0.52.6" = rec {
− crateName = "windows_x86_64_msvc";
− version = "0.52.6";
− edition = "2021";
− sha256 = "1v7rb5cibyzx8vak29pdrk8nx9hycsjs4w0jgms08qk49jl6v7sq";
− authors = [
− "Microsoft"
− ];
−
− };
− "windows_x86_64_msvc 0.53.0" = rec {
− crateName = "windows_x86_64_msvc";
− version = "0.53.0";
− edition = "2021";
− sha256 = "11h4i28hq0zlnjcaqi2xdxr7ibnpa8djfggch9rki1zzb8qi8517";
− authors = [
− "Microsoft"
− ];
−
− };
− "winnow" = rec {
− crateName = "winnow";
− version = "0.7.11";
− edition = "2021";
− sha256 = "1kfb2m5ahpqg037a34rgkm18x6nj2mw4fwn89ya0gdw06ipb5ivl";
− dependencies = [
− {
− name = "memchr";
− packageId = "memchr";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "debug" = [ "std" "dep:anstream" "dep:anstyle" "dep:is_terminal_polyfill" "dep:terminal_size" ];
− "default" = [ "std" ];
− "simd" = [ "dep:memchr" ];
− "std" = [ "alloc" "memchr?/std" ];
− "unstable-doc" = [ "alloc" "std" "simd" "unstable-recover" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "std" ];
− };
− "winreg" = rec {
− crateName = "winreg";
− version = "0.50.0";
− edition = "2018";
− sha256 = "1cddmp929k882mdh6i9f2as848f13qqna6czwsqzkh1pqnr5fkjj";
− authors = [
− "Igor Shaula <gentoo90@gmail.com>"
− ];
− dependencies = [
− {
− name = "cfg-if";
− packageId = "cfg-if";
− }
− {
− name = "windows-sys";
− packageId = "windows-sys 0.48.0";
− features = [ "Win32_Foundation" "Win32_System_Time" "Win32_System_Registry" "Win32_Security" "Win32_Storage_FileSystem" "Win32_System_Diagnostics_Debug" ];
− }
− ];
− features = {
− "chrono" = [ "dep:chrono" ];
− "serde" = [ "dep:serde" ];
− "serialization-serde" = [ "transactions" "serde" ];
− };
− };
− "wit-bindgen-rt" = rec {
− crateName = "wit-bindgen-rt";
− version = "0.39.0";
− edition = "2021";
− sha256 = "1hd65pa5hp0nl664m94bg554h4zlhrzmkjsf6lsgsb7yc4734hkg";
− libName = "wit_bindgen_rt";
− dependencies = [
− {
− name = "bitflags";
− packageId = "bitflags 2.9.1";
− optional = true;
− }
− ];
− features = {
− "async" = [ "dep:futures" "dep:once_cell" ];
− "bitflags" = [ "dep:bitflags" ];
− };
− resolvedDefaultFeatures = [ "bitflags" ];
− };
− "writeable" = rec {
− crateName = "writeable";
− version = "0.6.1";
− edition = "2021";
− sha256 = "1fx29zncvbrqzgz7li88vzdm8zvgwgwy2r9bnjqxya09pfwi0bza";
− authors = [
− "The ICU4X Project Developers"
− ];
− features = {
− "either" = [ "dep:either" ];
− };
− };
− "xattr" = rec {
− crateName = "xattr";
− version = "1.5.1";
− edition = "2021";
− sha256 = "0299mqwjfayn4g0aq156mc2myirw5bi2b8gqi6x85p2iff1ijfmg";
− authors = [
− "Steven Allen <steven@stebalien.com>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− target = { target, features }: (("freebsd" == target."os" or null) || ("netbsd" == target."os" or null));
− }
− {
− name = "rustix";
− packageId = "rustix 1.0.7";
− usesDefaultFeatures = false;
− target = { target, features }: (("android" == target."os" or null) || ("linux" == target."os" or null) || ("macos" == target."os" or null) || ("hurd" == target."os" or null));
− features = [ "fs" "std" ];
− }
− ];
− features = {
− "default" = [ "unsupported" ];
− };
− resolvedDefaultFeatures = [ "default" "unsupported" ];
− };
− "yansi" = rec {
− crateName = "yansi";
− version = "1.0.1";
− edition = "2021";
− sha256 = "0jdh55jyv0dpd38ij4qh60zglbw9aa8wafqai6m0wa7xaxk3mrfg";
− authors = [
− "Sergio Benitez <sb@sergio.bz>"
− ];
− features = {
− "default" = [ "std" ];
− "detect-env" = [ "std" ];
− "detect-tty" = [ "is-terminal" "std" ];
− "hyperlink" = [ "std" ];
− "is-terminal" = [ "dep:is-terminal" ];
− "std" = [ "alloc" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "std" ];
− };
− "yasna" = rec {
− crateName = "yasna";
− version = "0.4.0";
− edition = "2018";
− sha256 = "0xgsvxqnycdakh6j3hg4dk3mylrpnba50w0d36vg5k311sfs4qp2";
− authors = [
− "Masaki Hara <ackie.h.gmai@gmail.com>"
− ];
− dependencies = [
− {
− name = "bit-vec";
− packageId = "bit-vec";
− optional = true;
− usesDefaultFeatures = false;
− features = [ "std" ];
− }
− {
− name = "num-bigint";
− packageId = "num-bigint";
− optional = true;
− }
− ];
− features = {
− "bit-vec" = [ "dep:bit-vec" ];
− "chrono" = [ "dep:chrono" ];
− "num-bigint" = [ "dep:num-bigint" ];
− };
− resolvedDefaultFeatures = [ "bit-vec" "default" "num-bigint" ];
− };
− "yoke" = rec {
− crateName = "yoke";
− version = "0.8.0";
− edition = "2021";
− sha256 = "1k4mfr48vgi7wh066y11b7v1ilakghlnlhw9snzz8vi2p00vnhaz";
− 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" "derive" "zerofrom" ];
− };
− "yoke-derive" = rec {
− crateName = "yoke-derive";
− version = "0.8.0";
− edition = "2021";
− sha256 = "1dha5jrjz9jaq8kmxq1aag86b98zbnm9lyjrihy5sv716sbkrniq";
− 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";
− }
− ];
−
− };
− "zerocopy" = rec {
− crateName = "zerocopy";
− version = "0.8.26";
− edition = "2021";
− sha256 = "0bvsj0qzq26zc6nlrm3z10ihvjspyngs7n0jw1fz031i7h6xsf8h";
− authors = [
− "Joshua Liebow-Feeser <joshlf@google.com>"
− "Jack Wrenn <jswrenn@amazon.com>"
− ];
− dependencies = [
− {
− name = "zerocopy-derive";
− packageId = "zerocopy-derive";
− optional = true;
− }
− {
− name = "zerocopy-derive";
− packageId = "zerocopy-derive";
− target = { target, features }: false;
− }
− ];
− devDependencies = [
− {
− name = "zerocopy-derive";
− packageId = "zerocopy-derive";
− }
− ];
− features = {
− "__internal_use_only_features_that_work_on_stable" = [ "alloc" "derive" "simd" "std" ];
− "derive" = [ "zerocopy-derive" ];
− "simd-nightly" = [ "simd" ];
− "std" = [ "alloc" ];
− "zerocopy-derive" = [ "dep:zerocopy-derive" ];
− };
− resolvedDefaultFeatures = [ "simd" ];
− };
− "zerocopy-derive" = rec {
− crateName = "zerocopy-derive";
− version = "0.8.26";
− edition = "2021";
− sha256 = "10aiywi5qkha0mpsnb1zjwi44wl2rhdncaf3ykbp4i9nqm65pkwy";
− procMacro = true;
− libName = "zerocopy_derive";
− authors = [
− "Joshua Liebow-Feeser <joshlf@google.com>"
− "Jack Wrenn <jswrenn@amazon.com>"
− ];
− dependencies = [
− {
− name = "proc-macro2";
− packageId = "proc-macro2";
− }
− {
− name = "quote";
− packageId = "quote";
− }
− {
− name = "syn";
− packageId = "syn";
− features = [ "full" ];
− }
− ];
−
− };
− "zerofrom" = rec {
− crateName = "zerofrom";
− version = "0.1.6";
− edition = "2021";
− sha256 = "19dyky67zkjichsb7ykhv0aqws3q0jfvzww76l66c19y6gh45k2h";
− authors = [
− "Manish Goregaokar <manishsmail@gmail.com>"
− ];
− dependencies = [
− {
− name = "zerofrom-derive";
− packageId = "zerofrom-derive";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "default" = [ "alloc" ];
− "derive" = [ "dep:zerofrom-derive" ];
− };
− resolvedDefaultFeatures = [ "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.3.0";
− edition = "2018";
− sha256 = "1z8yix823b6lz878qwg6bvwhg3lb0cbw3c9yij9p8mbv7zdzfmj7";
− authors = [
− "Tony Arcieri <tony@iqlusion.io>"
− ];
− dependencies = [
− {
− name = "zeroize_derive";
− packageId = "zeroize_derive";
− optional = true;
− }
− ];
− features = {
− "default" = [ "alloc" ];
− "zeroize_derive" = [ "dep:zeroize_derive" ];
− };
− resolvedDefaultFeatures = [ "alloc" "default" "zeroize_derive" ];
− };
− "zeroize_derive" = rec {
− crateName = "zeroize_derive";
− version = "1.4.2";
− edition = "2021";
− sha256 = "0sczjlqjdmrp3wn62g7mw6p438c9j4jgp2f9zamd56991mdycdnf";
− procMacro = true;
− authors = [
− "The RustCrypto Project Developers"
− ];
− dependencies = [
− {
− name = "proc-macro2";
− packageId = "proc-macro2";
− }
− {
− name = "quote";
− packageId = "quote";
− }
− {
− name = "syn";
− packageId = "syn";
− features = [ "full" "extra-traits" "visit" ];
− }
− ];
−
− };
− "zerotrie" = rec {
− crateName = "zerotrie";
− version = "0.2.2";
− edition = "2021";
− sha256 = "15gmka7vw5k0d24s0vxgymr2j6zn2iwl12wpmpnpjgsqg3abpw1n";
− authors = [
− "The ICU4X Project Developers"
− ];
− dependencies = [
− {
− name = "displaydoc";
− packageId = "displaydoc";
− usesDefaultFeatures = false;
− }
− {
− name = "yoke";
− packageId = "yoke";
− optional = true;
− usesDefaultFeatures = false;
− features = [ "derive" ];
− }
− {
− name = "zerofrom";
− packageId = "zerofrom";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− features = {
− "databake" = [ "dep:databake" "zerovec?/databake" ];
− "litemap" = [ "dep:litemap" "alloc" ];
− "serde" = [ "dep:serde" "dep:litemap" "alloc" "litemap/serde" "zerovec?/serde" ];
− "yoke" = [ "dep:yoke" ];
− "zerofrom" = [ "dep:zerofrom" ];
− "zerovec" = [ "dep:zerovec" ];
− };
− resolvedDefaultFeatures = [ "yoke" "zerofrom" ];
− };
− "zerovec" = rec {
− crateName = "zerovec";
− version = "0.11.2";
− edition = "2021";
− sha256 = "0a2457fmz39k9vrrj3rm82q5ykdhgxgbwfz2r6fa6nq11q4fn1aa";
− authors = [
− "The ICU4X Project Developers"
− ];
− dependencies = [
− {
− name = "yoke";
− packageId = "yoke";
− optional = true;
− usesDefaultFeatures = false;
− }
− {
− name = "zerofrom";
− packageId = "zerofrom";
− usesDefaultFeatures = false;
− }
− {
− name = "zerovec-derive";
− packageId = "zerovec-derive";
− optional = true;
− usesDefaultFeatures = false;
− }
− ];
− devDependencies = [
− {
− name = "yoke";
− packageId = "yoke";
− usesDefaultFeatures = false;
− features = [ "derive" ];
− }
− ];
− features = {
− "databake" = [ "dep:databake" ];
− "derive" = [ "dep:zerovec-derive" ];
− "hashmap" = [ "dep:twox-hash" "alloc" ];
− "serde" = [ "dep:serde" "alloc" ];
− "yoke" = [ "dep:yoke" ];
− };
− resolvedDefaultFeatures = [ "alloc" "derive" "yoke" ];
− };
− "zerovec-derive" = rec {
− crateName = "zerovec-derive";
− version = "0.11.1";
− edition = "2021";
− sha256 = "13zms8hj7vzpfswypwggyfr4ckmyc7v3di49pmj8r1qcz9z275jv";
− 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-seekable" = rec {
− crateName = "zstd-seekable";
− version = "0.1.23";
− edition = "2018";
− sha256 = "1hn3lry2p1fzjlx6shwq1k5bcpx4lqckmvl16gqx326vbiy12jjp";
− libName = "zstd_seekable";
− authors = [
− "Pierre-Étienne Meunier <pe@pijul.org>"
− ];
− dependencies = [
− {
− name = "libc";
− packageId = "libc";
− }
− {
− name = "thiserror";
− packageId = "thiserror 1.0.69";
− }
− {
− name = "threadpool";
− packageId = "threadpool";
− }
− ];
− buildDependencies = [
− {
− name = "bincode";
− packageId = "bincode";
− }
− {
− name = "cc";
− packageId = "cc";
− }
− {
− name = "pkg-config";
− packageId = "pkg-config";
− }
− {
− name = "serde";
− packageId = "serde";
− }
− {
− name = "serde_derive";
− packageId = "serde_derive";
− }
− ];
−
− };
− };
−
− #
− # 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)
− #
− };
− }
−