# This file was @generated by crate2nix 0.11.0-rc.4 with the command: # "generate" # See https://github.com/kolloch/crate2nix for more info. { 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 # 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. # rootCrate = rec { packageId = "rpb-s3"; # Use this attribute to refer to the derivation building your root crate package. # You can override the features with rootCrate.build.override { features = [ "default" "feature1" ... ]; }. build = internal.buildRustCrateWithFeatures { inherit packageId; }; # Debug support which might change between releases. # File a bug if you depend on any for non-debug work! debug = internal.debugCrate { inherit packageId; }; }; # Refer your crate build derivation by name here. # You can override the features with # workspaceMembers."${crateName}".build.override { features = [ "default" "feature1" ... ]; }. workspaceMembers = { "rpb-s3" = rec { packageId = "rpb-s3"; build = internal.buildRustCrateWithFeatures { packageId = "rpb-s3"; }; # 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.21.0"; edition = "2018"; sha256 = "1jx0k3iwyqr8klqbzk6kjvr496yd94aspis10vwsj5wy7gib4c4a"; dependencies = [ { name = "gimli"; packageId = "gimli"; usesDefaultFeatures = false; features = [ "read" ]; } ]; features = { "alloc" = [ "dep:alloc" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "cpp_demangle" = [ "dep:cpp_demangle" ]; "default" = [ "rustc-demangle" "cpp_demangle" "std-object" "fallible-iterator" "smallvec" "memmap2" ]; "fallible-iterator" = [ "dep:fallible-iterator" ]; "memmap2" = [ "dep:memmap2" ]; "object" = [ "dep:object" ]; "rustc-demangle" = [ "dep:rustc-demangle" ]; "rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "gimli/rustc-dep-of-std" ]; "smallvec" = [ "dep:smallvec" ]; "std" = [ "gimli/std" ]; "std-object" = [ "std" "object" "object/std" "object/compression" "gimli/endian-reader" ]; }; }; "adler" = rec { crateName = "adler"; version = "1.0.2"; edition = "2015"; sha256 = "1zim79cvzd5yrkzl3nyfx0avijwgk9fqv3yrscdy1cc79ih02qpj"; authors = [ "Jonas Schievink " ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "default" = [ "std" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; "ahash" = rec { crateName = "ahash"; version = "0.7.6"; edition = "2018"; sha256 = "0isw672fiwx8cjl040jrck6pi85xcszkz6q0xsqkiy6qjl31mdgw"; authors = [ "Tom Kaitchuck " ]; dependencies = [ { name = "getrandom"; packageId = "getrandom"; target = { target, features }: (("linux" == target."os") || ("android" == target."os") || ("windows" == target."os") || ("macos" == target."os") || ("ios" == target."os") || ("freebsd" == target."os") || ("openbsd" == target."os") || ("netbsd" == target."os") || ("dragonfly" == target."os") || ("solaris" == target."os") || ("illumos" == target."os") || ("fuchsia" == target."os") || ("redox" == target."os") || ("cloudabi" == target."os") || ("haiku" == target."os") || ("vxworks" == target."os") || ("emscripten" == target."os") || ("wasi" == target."os")); } { name = "once_cell"; packageId = "once_cell"; usesDefaultFeatures = false; target = { target, features }: (!(("arm" == target."arch") && ("none" == target."os"))); features = [ "alloc" ]; } ]; buildDependencies = [ { name = "version_check"; packageId = "version_check"; } ]; features = { "compile-time-rng" = [ "const-random" ]; "const-random" = [ "dep:const-random" ]; "default" = [ "std" ]; "serde" = [ "dep:serde" ]; }; }; "android-tzdata" = rec { crateName = "android-tzdata"; version = "0.1.1"; edition = "2018"; sha256 = "1w7ynjxrfs97xg3qlcdns4kgfpwcdv824g611fq32cag4cdr96g9"; authors = [ "RumovZ" ]; }; "android_system_properties" = rec { crateName = "android_system_properties"; version = "0.1.5"; edition = "2018"; sha256 = "04b3wrz12837j7mdczqd95b732gw5q7q66cv4yn4646lvccp57l1"; authors = [ "Nicolas Silva " ]; dependencies = [ { name = "libc"; packageId = "libc"; } ]; }; "ansi_term" = rec { crateName = "ansi_term"; version = "0.12.1"; edition = "2015"; sha256 = "1ljmkbilxgmhavxvxqa7qvm6f3fjggi7q2l3a72q9x0cxjvrnanm"; authors = [ "ogham@bsago.me" "Ryan Scheel (Havvy) " "Josh Triplett " ]; dependencies = [ { name = "winapi"; packageId = "winapi"; target = { target, features }: ("windows" == target."os"); features = [ "consoleapi" "errhandlingapi" "fileapi" "handleapi" "processenv" ]; } ]; features = { "derive_serde_style" = [ "serde" ]; "serde" = [ "dep:serde" ]; }; }; "async-channel" = rec { crateName = "async-channel"; version = "1.9.0"; edition = "2018"; sha256 = "0dbdlkzlncbibd3ij6y6jmvjd0cmdn48ydcfdpfhw09njd93r5c1"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "concurrent-queue"; packageId = "concurrent-queue"; } { name = "event-listener"; packageId = "event-listener 2.5.3"; } { name = "futures-core"; packageId = "futures-core"; } ]; }; "async-compat" = rec { crateName = "async-compat"; version = "0.2.2"; edition = "2018"; sha256 = "0rxz502llylwrxcjzc38fpdyzxy95msgd3qvwqgg6d19phr53ypl"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "futures-core"; packageId = "futures-core"; } { name = "futures-io"; packageId = "futures-io"; } { name = "once_cell"; packageId = "once_cell"; } { name = "pin-project-lite"; packageId = "pin-project-lite"; } { name = "tokio"; packageId = "tokio"; usesDefaultFeatures = false; features = [ "rt" ]; } ]; devDependencies = [ { name = "tokio"; packageId = "tokio"; usesDefaultFeatures = false; features = [ "rt-multi-thread" "io-std" "io-util" "macros" "net" "time" ]; } ]; }; "async-executor" = rec { crateName = "async-executor"; version = "1.5.4"; edition = "2018"; sha256 = "1684q901f5wkrp6ph91flz0a73dj3zz9scis8l7w1ndbinpa679c"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "async-lock"; packageId = "async-lock"; } { name = "async-task"; packageId = "async-task"; } { name = "concurrent-queue"; packageId = "concurrent-queue"; } { name = "fastrand"; packageId = "fastrand 2.0.1"; } { name = "futures-lite"; packageId = "futures-lite"; usesDefaultFeatures = false; } { name = "slab"; packageId = "slab"; } ]; }; "async-fs" = rec { crateName = "async-fs"; version = "1.6.0"; edition = "2018"; sha256 = "01if2h77mry9cnm91ql2md595108i2c1bfy9gaivzvjfcl2gk717"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "async-lock"; packageId = "async-lock"; } { name = "blocking"; packageId = "blocking"; } { name = "futures-lite"; packageId = "futures-lite"; } ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg"; } ]; }; "async-io" = rec { crateName = "async-io"; version = "1.13.0"; edition = "2018"; sha256 = "1byj7lpw0ahk6k63sbc9859v68f28hpaab41dxsjj1ggjdfv9i8g"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "async-lock"; packageId = "async-lock"; } { name = "cfg-if"; packageId = "cfg-if"; } { name = "concurrent-queue"; packageId = "concurrent-queue"; } { name = "futures-lite"; packageId = "futures-lite"; } { name = "log"; packageId = "log"; } { name = "parking"; packageId = "parking"; } { name = "polling"; packageId = "polling"; } { name = "rustix"; packageId = "rustix 0.37.25"; usesDefaultFeatures = false; features = [ "std" "fs" ]; } { name = "slab"; packageId = "slab"; } { name = "socket2"; packageId = "socket2 0.4.9"; features = [ "all" ]; } { name = "waker-fn"; packageId = "waker-fn"; } ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg"; } ]; }; "async-lock" = rec { crateName = "async-lock"; version = "2.8.0"; edition = "2018"; sha256 = "0asq5xdzgp3d5m82y5rg7a0k9q0g95jy6mgc7ivl334x7qlp4wi8"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "event-listener"; packageId = "event-listener 2.5.3"; } ]; }; "async-net" = rec { crateName = "async-net"; version = "1.8.0"; edition = "2018"; sha256 = "0by1m21ciwq6kvd8jplb0mqr9yh17zil1icakdvga76f33nv2d04"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "async-io"; packageId = "async-io"; } { name = "blocking"; packageId = "blocking"; } { name = "futures-lite"; packageId = "futures-lite"; } ]; }; "async-process" = rec { crateName = "async-process"; version = "1.8.1"; edition = "2018"; sha256 = "126s968lvhg9rlwsnxp7wfzkfn7rl87p0dlvqqlibn081ax3hr7a"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "async-io"; packageId = "async-io"; target = { target, features }: (target."unix" or false); } { name = "async-lock"; packageId = "async-lock"; } { name = "async-signal"; packageId = "async-signal"; target = { target, features }: (target."unix" or false); } { name = "blocking"; packageId = "blocking"; target = { target, features }: (target."windows" or false); } { name = "cfg-if"; packageId = "cfg-if"; } { name = "event-listener"; packageId = "event-listener 3.0.0"; } { name = "futures-lite"; packageId = "futures-lite"; } { name = "rustix"; packageId = "rustix 0.38.19"; usesDefaultFeatures = false; target = { target, features }: (target."unix" or false); features = [ "std" "fs" ]; } { name = "windows-sys"; packageId = "windows-sys"; usesDefaultFeatures = false; target = { target, features }: (target."windows" or false); features = [ "Win32_Foundation" "Win32_System_Threading" ]; } ]; devDependencies = [ { name = "async-io"; packageId = "async-io"; } ]; }; "async-signal" = rec { crateName = "async-signal"; version = "0.2.4"; edition = "2018"; sha256 = "16933agl81glp1rl3g9zgq0wmcl8aaxassrxsvbrrp5wg9dl39fj"; authors = [ "John Nunley " ]; dependencies = [ { name = "async-io"; packageId = "async-io"; target = { target, features }: (target."unix" or false); } { name = "async-lock"; packageId = "async-lock"; target = { target, features }: (target."windows" or false); } { name = "atomic-waker"; packageId = "atomic-waker"; target = { target, features }: (target."windows" or false); } { name = "cfg-if"; packageId = "cfg-if"; } { name = "futures-core"; packageId = "futures-core"; } { name = "futures-io"; packageId = "futures-io"; target = { target, features }: (target."unix" or false); } { name = "rustix"; packageId = "rustix 0.38.19"; usesDefaultFeatures = false; target = { target, features }: (target."unix" or false); features = [ "process" "std" ]; } { name = "signal-hook-registry"; packageId = "signal-hook-registry"; target = { target, features }: (target."unix" or false); } { name = "slab"; packageId = "slab"; target = { target, features }: (target."windows" or false); } { name = "windows-sys"; packageId = "windows-sys"; usesDefaultFeatures = false; target = { target, features }: (target."windows" or false); features = [ "Win32_Foundation" "Win32_System_Console" ]; } ]; devDependencies = [ { name = "async-io"; packageId = "async-io"; } ]; }; "async-task" = rec { crateName = "async-task"; version = "4.4.1"; edition = "2018"; sha256 = "08f9vf1s9ym3rhgl0zjvkvh1rwqd9p1l82k8pz1afa715xmiqi5r"; authors = [ "Stjepan Glavina " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "async-trait" = rec { crateName = "async-trait"; version = "0.1.74"; edition = "2021"; sha256 = "1ydhbsqjqqa6bxbv0kgys2wq2vi3jpwjy57dk162ajwppgqkfrd6"; procMacro = true; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 2.0.38"; features = [ "full" "visit-mut" ]; } ]; }; "atomic-waker" = rec { crateName = "atomic-waker"; version = "1.1.2"; edition = "2018"; sha256 = "1h5av1lw56m0jf0fd3bchxq8a30xv0b4wv8s4zkp4s0i7mfvs18m"; authors = [ "Stjepan Glavina " "Contributors to futures-rs" ]; features = { "portable-atomic" = [ "dep:portable-atomic" ]; }; }; "atty" = rec { crateName = "atty"; version = "0.2.14"; edition = "2015"; sha256 = "1s7yslcs6a28c5vz7jwj63lkfgyx8mx99fdirlhi9lbhhzhrpcyr"; authors = [ "softprops " ]; dependencies = [ { name = "hermit-abi"; packageId = "hermit-abi 0.1.19"; target = { target, features }: ("hermit" == target."os"); } { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: (target."unix" or false); } { name = "winapi"; packageId = "winapi"; target = { target, features }: (target."windows" or false); features = [ "consoleapi" "processenv" "minwinbase" "minwindef" "winbase" ]; } ]; }; "autocfg" = rec { crateName = "autocfg"; version = "1.1.0"; edition = "2015"; sha256 = "1ylp3cb47ylzabimazvbz9ms6ap784zhb6syaz6c1jqpmcmq0s6l"; authors = [ "Josh Stone " ]; }; "backtrace" = rec { crateName = "backtrace"; version = "0.3.69"; edition = "2018"; sha256 = "0dsq23dhw4pfndkx2nsa1ml2g31idm7ss7ljxp8d57avygivg290"; authors = [ "The Rust Project Developers" ]; dependencies = [ { name = "addr2line"; packageId = "addr2line"; usesDefaultFeatures = false; target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env") && (!("uwp" == target."vendor")))); } { name = "cfg-if"; packageId = "cfg-if"; } { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env") && (!("uwp" == target."vendor")))); } { name = "miniz_oxide"; packageId = "miniz_oxide"; usesDefaultFeatures = false; target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env") && (!("uwp" == target."vendor")))); } { name = "object"; packageId = "object"; usesDefaultFeatures = false; target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env") && (!("uwp" == target."vendor")))); features = [ "read_core" "elf" "macho" "pe" "unaligned" "archive" ]; } { name = "rustc-demangle"; packageId = "rustc-demangle"; } ]; buildDependencies = [ { name = "cc"; packageId = "cc"; } ]; features = { "cpp_demangle" = [ "dep:cpp_demangle" ]; "default" = [ "std" ]; "rustc-serialize" = [ "dep:rustc-serialize" ]; "serde" = [ "dep:serde" ]; "serialize-rustc" = [ "rustc-serialize" ]; "serialize-serde" = [ "serde" ]; "verify-winapi" = [ "winapi/dbghelp" "winapi/handleapi" "winapi/libloaderapi" "winapi/memoryapi" "winapi/minwindef" "winapi/processthreadsapi" "winapi/synchapi" "winapi/tlhelp32" "winapi/winbase" "winapi/winnt" ]; "winapi" = [ "dep:winapi" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "base64 0.13.1" = rec { crateName = "base64"; version = "0.13.1"; edition = "2018"; sha256 = "1s494mqmzjb766fy1kqlccgfg2sdcjb6hzbvzqv2jw65fdi5h6wy"; authors = [ "Alice Maz " "Marshall Pierce " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "base64 0.21.4" = rec { crateName = "base64"; version = "0.21.4"; edition = "2018"; sha256 = "18jhmsli1l7zn6pgslgjdrnghqnz12g68n25fv48ids3yfk3x94v"; authors = [ "Alice Maz " "Marshall Pierce " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "bincode" = rec { crateName = "bincode"; version = "1.3.3"; edition = "2015"; sha256 = "1bfw3mnwzx5g1465kiqllp5n4r10qrqy88kdlp3jfwnq2ya5xx5i"; authors = [ "Ty Overby " "Francesco Mazzoli " "David Tolnay " "Zoey Riordan " ]; dependencies = [ { name = "serde"; packageId = "serde"; } ]; features = { }; }; "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.4.0" = rec { crateName = "bitflags"; version = "2.4.0"; edition = "2021"; sha256 = "0dc6xa7flfl59makmhixjcrslwlvdxxwrgxbr8p7bkvz53k2ls5l"; authors = [ "The Rust Project Developers" ]; features = { "arbitrary" = [ "dep:arbitrary" ]; "bytemuck" = [ "dep:bytemuck" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; "serde" = [ "dep:serde" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "block-buffer 0.10.4" = rec { crateName = "block-buffer"; version = "0.10.4"; edition = "2018"; sha256 = "0w9sa2ypmrsqqvc20nhwr75wbb5cjr4kkyhpjm1z1lv2kdicfy1h"; 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"; authors = [ "RustCrypto Developers" ]; dependencies = [ { name = "generic-array"; packageId = "generic-array"; } ]; features = { "block-padding" = [ "dep:block-padding" ]; }; }; "blocking" = rec { crateName = "blocking"; version = "1.4.1"; edition = "2018"; sha256 = "0aiy8y524jvxl942hh5naxjjn7b5rjapsjqb6vfv6x45sk8a8dlc"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "async-channel"; packageId = "async-channel"; } { name = "async-lock"; packageId = "async-lock"; } { name = "async-task"; packageId = "async-task"; } { name = "fastrand"; packageId = "fastrand 2.0.1"; } { name = "futures-io"; packageId = "futures-io"; usesDefaultFeatures = false; features = [ "std" ]; } { name = "futures-lite"; packageId = "futures-lite"; usesDefaultFeatures = false; } { name = "piper"; packageId = "piper"; } { name = "tracing"; packageId = "tracing"; usesDefaultFeatures = false; } ]; devDependencies = [ { name = "futures-lite"; packageId = "futures-lite"; } ]; }; "bumpalo" = rec { crateName = "bumpalo"; version = "3.14.0"; edition = "2021"; sha256 = "1v4arnv9kwk54v5d0qqpv4vyw2sgr660nk0w3apzixi1cm3yfc3z"; authors = [ "Nick Fitzgerald " ]; features = { "allocator-api2" = [ "dep:allocator-api2" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "bytes" = rec { crateName = "bytes"; version = "1.5.0"; edition = "2018"; sha256 = "08w2i8ac912l8vlvkv3q51cd4gr09pwlg3sjsjffcizlrb0i5gd2"; authors = [ "Carl Lerche " "Sean McArthur " ]; features = { "default" = [ "std" ]; "serde" = [ "dep:serde" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "cc" = rec { crateName = "cc"; version = "1.0.83"; edition = "2018"; crateBin = []; sha256 = "1l643zidlb5iy1dskc5ggqs4wqa29a02f44piczqc8zcnsq4y5zi"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: (target."unix" or false); } ]; features = { "jobserver" = [ "dep:jobserver" ]; "parallel" = [ "jobserver" ]; }; }; "cfg-if" = rec { crateName = "cfg-if"; version = "1.0.0"; edition = "2018"; sha256 = "1za0vb97n4brpzpv8lsbnzmq5r8f2b0cpqqr0sy8h5bn751xxwds"; authors = [ "Alex Crichton " ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; "chrono" = rec { crateName = "chrono"; version = "0.4.31"; edition = "2021"; sha256 = "0f6vg67pipm8cziad2yms6a639pssnvysk1m05dd9crymmdnhb3z"; dependencies = [ { name = "android-tzdata"; packageId = "android-tzdata"; optional = true; target = { target, features }: ("android" == target."os"); } { name = "iana-time-zone"; packageId = "iana-time-zone"; optional = true; target = { target, features }: (target."unix" or false); features = [ "fallback" ]; } { name = "num-traits"; packageId = "num-traits"; usesDefaultFeatures = false; } { name = "serde"; packageId = "serde"; optional = true; usesDefaultFeatures = false; } { name = "windows-targets"; packageId = "windows-targets"; optional = true; target = { target, features }: (target."windows" or false); } ]; features = { "android-tzdata" = [ "dep:android-tzdata" ]; "arbitrary" = [ "dep:arbitrary" ]; "clock" = [ "std" "winapi" "iana-time-zone" "android-tzdata" ]; "default" = [ "clock" "std" "oldtime" "wasmbind" ]; "iana-time-zone" = [ "dep:iana-time-zone" ]; "js-sys" = [ "dep:js-sys" ]; "pure-rust-locales" = [ "dep:pure-rust-locales" ]; "rkyv" = [ "dep:rkyv" ]; "rustc-serialize" = [ "dep:rustc-serialize" ]; "serde" = [ "dep:serde" ]; "unstable-locales" = [ "pure-rust-locales" "alloc" ]; "wasm-bindgen" = [ "dep:wasm-bindgen" ]; "wasmbind" = [ "wasm-bindgen" "js-sys" ]; "winapi" = [ "windows-targets" ]; "windows-targets" = [ "dep:windows-targets" ]; }; resolvedDefaultFeatures = [ "android-tzdata" "clock" "iana-time-zone" "serde" "std" "winapi" "windows-targets" ]; }; "clap" = rec { crateName = "clap"; version = "2.34.0"; edition = "2018"; sha256 = "071q5d8jfwbazi6zhik9xwpacx5i6kb2vkzy060vhf0c3120aqd0"; authors = [ "Kevin K. " ]; dependencies = [ { name = "ansi_term"; packageId = "ansi_term"; optional = true; target = { target, features }: (!(target."windows" or false)); } { name = "atty"; packageId = "atty"; optional = true; } { name = "bitflags"; packageId = "bitflags 1.3.2"; } { name = "strsim"; packageId = "strsim"; optional = true; } { name = "textwrap"; packageId = "textwrap"; } { name = "unicode-width"; packageId = "unicode-width"; } { name = "vec_map"; packageId = "vec_map"; optional = true; } ]; features = { "ansi_term" = [ "dep:ansi_term" ]; "atty" = [ "dep:atty" ]; "clippy" = [ "dep:clippy" ]; "color" = [ "ansi_term" "atty" ]; "default" = [ "suggestions" "color" "vec_map" ]; "doc" = [ "yaml" ]; "strsim" = [ "dep:strsim" ]; "suggestions" = [ "strsim" ]; "term_size" = [ "dep:term_size" ]; "vec_map" = [ "dep:vec_map" ]; "wrap_help" = [ "term_size" "textwrap/term_size" ]; "yaml" = [ "yaml-rust" ]; "yaml-rust" = [ "dep:yaml-rust" ]; }; resolvedDefaultFeatures = [ "ansi_term" "atty" "color" "default" "strsim" "suggestions" "vec_map" ]; }; "concurrent-queue" = rec { crateName = "concurrent-queue"; version = "2.3.0"; edition = "2018"; sha256 = "006lfgl3hn38pxgkafsrymkxalmvhlb8m5dh9583c4jglnaacmzh"; authors = [ "Stjepan Glavina " "Taiki Endo " "John Nunley " ]; dependencies = [ { name = "crossbeam-utils"; packageId = "crossbeam-utils"; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" ]; "loom" = [ "dep:loom" ]; "portable-atomic" = [ "dep:portable-atomic" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "config" = rec { crateName = "config"; version = "0.13.3"; edition = "2018"; sha256 = "19sjgx88jkx55yqln9z85hfp80a2aj1sipn7qqa1ghmzd1zsyyfk"; authors = [ "Ryan Leckey " ]; dependencies = [ { name = "async-trait"; packageId = "async-trait"; } { name = "json5"; packageId = "json5"; rename = "json5_rs"; optional = true; } { name = "lazy_static"; packageId = "lazy_static"; } { name = "nom"; packageId = "nom"; } { name = "pathdiff"; packageId = "pathdiff"; } { name = "ron"; packageId = "ron"; optional = true; } { name = "rust-ini"; packageId = "rust-ini"; optional = true; } { name = "serde"; packageId = "serde"; } { name = "serde_json"; packageId = "serde_json"; optional = true; } { name = "toml"; packageId = "toml"; optional = true; } { name = "yaml-rust"; packageId = "yaml-rust"; optional = true; } ]; devDependencies = [ { name = "lazy_static"; packageId = "lazy_static"; } { name = "serde"; packageId = "serde"; } ]; features = { "default" = [ "toml" "json" "yaml" "ini" "ron" "json5" ]; "indexmap" = [ "dep:indexmap" ]; "ini" = [ "rust-ini" ]; "json" = [ "serde_json" ]; "json5" = [ "json5_rs" ]; "json5_rs" = [ "dep:json5_rs" ]; "preserve_order" = [ "indexmap" "toml/preserve_order" "serde_json/preserve_order" "ron/indexmap" ]; "ron" = [ "dep:ron" ]; "rust-ini" = [ "dep:rust-ini" ]; "serde_json" = [ "dep:serde_json" ]; "toml" = [ "dep:toml" ]; "yaml" = [ "yaml-rust" ]; "yaml-rust" = [ "dep:yaml-rust" ]; }; resolvedDefaultFeatures = [ "default" "ini" "json" "json5" "json5_rs" "ron" "rust-ini" "serde_json" "toml" "yaml" "yaml-rust" ]; }; "core-foundation" = rec { crateName = "core-foundation"; version = "0.9.3"; edition = "2015"; sha256 = "0ii1ihpjb30fk38gdikm5wqlkmyr8k46fh4k2r8sagz5dng7ljhr"; authors = [ "The Servo Project Developers" ]; dependencies = [ { name = "core-foundation-sys"; packageId = "core-foundation-sys"; } { name = "libc"; packageId = "libc"; } ]; features = { "chrono" = [ "dep:chrono" ]; "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" ]; }; }; "core-foundation-sys" = rec { crateName = "core-foundation-sys"; version = "0.8.4"; edition = "2015"; sha256 = "1yhf471qj6snnm2mcswai47vsbc9w30y4abmdp4crb4av87sb5p4"; authors = [ "The Servo Project Developers" ]; features = { }; }; "cpufeatures" = rec { crateName = "cpufeatures"; version = "0.2.9"; edition = "2018"; sha256 = "1wg1vmsx3gd30xkc7h7r6nfx7njx063hqjimgyrb0qj17bzpcyx1"; authors = [ "RustCrypto Developers" ]; dependencies = [ { name = "libc"; packageId = "libc"; target = { target, features }: (pkgs.rust.lib.toRustTarget stdenv.hostPlatform == "aarch64-linux-android"); } { name = "libc"; packageId = "libc"; target = { target, features }: (("aarch64" == target."arch") && ("linux" == target."os")); } { name = "libc"; packageId = "libc"; target = { target, features }: (("aarch64" == target."arch") && ("apple" == target."vendor")); } ]; }; "crc32fast" = rec { crateName = "crc32fast"; version = "1.3.2"; edition = "2015"; sha256 = "03c8f29yx293yf43xar946xbls1g60c207m9drf8ilqhr25vsh5m"; authors = [ "Sam Rijs " "Alex Crichton " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if"; } ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "crossbeam-utils" = rec { crateName = "crossbeam-utils"; version = "0.8.16"; edition = "2018"; sha256 = "153j0gikblz7n7qdvdi8pslhi008s1yp9cmny6vw07ad7pbb48js"; dependencies = [ { name = "cfg-if"; packageId = "cfg-if"; } ]; features = { "default" = [ "std" ]; "loom" = [ "dep:loom" ]; }; }; "crypto-common" = rec { crateName = "crypto-common"; version = "0.1.6"; edition = "2018"; sha256 = "1cvby95a6xg7kxdz5ln3rl9xh66nz66w46mm3g56ri1z5x815yqv"; 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"; 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" ]; }; }; "deranged" = rec { crateName = "deranged"; version = "0.3.9"; edition = "2021"; sha256 = "1lqzxgxqa1jdsvh4r7fbckpxvvfr8b819vwzdzd2f166494x0chg"; authors = [ "Jacob Pratt " ]; dependencies = [ { name = "powerfmt"; packageId = "powerfmt"; optional = true; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" ]; "num" = [ "dep:num-traits" ]; "powerfmt" = [ "dep:powerfmt" ]; "quickcheck" = [ "dep:quickcheck" "alloc" ]; "rand" = [ "dep:rand" ]; "serde" = [ "dep:serde" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "powerfmt" "std" ]; }; "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"; } ]; 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" ]; }; "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-next" = rec { crateName = "dirs-next"; version = "2.0.0"; edition = "2018"; sha256 = "1q9kr151h9681wwp6is18750ssghz6j9j7qm7qi1ngcwy7mzi35r"; authors = [ "The @xdg-rs members" ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if"; } { name = "dirs-sys-next"; packageId = "dirs-sys-next"; } ]; }; "dirs-sys-next" = rec { crateName = "dirs-sys-next"; version = "0.1.2"; edition = "2018"; sha256 = "0kavhavdxv4phzj4l0psvh55hszwnr0rcz8sxbvx20pyqi2a3gaf"; 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"); } { name = "winapi"; packageId = "winapi"; target = { target, features }: (target."windows" or false); features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ]; } ]; }; "dlv-list" = rec { crateName = "dlv-list"; version = "0.3.0"; edition = "2018"; sha256 = "0mqj5rdkcjksw3kvjj0nga6rzcpppx0kimjwi527yhifz6kw5206"; authors = [ "Scott Godwin " ]; }; "either" = rec { crateName = "either"; version = "1.9.0"; edition = "2018"; sha256 = "01qy3anr7jal5lpc20791vxrw0nl6vksb5j7x56q2fycgcyy8sm2"; authors = [ "bluss" ]; features = { "default" = [ "use_std" ]; "serde" = [ "dep:serde" ]; }; resolvedDefaultFeatures = [ "use_std" ]; }; "errno" = rec { crateName = "errno"; version = "0.3.5"; edition = "2018"; sha256 = "0q78awjy3pr36xacgc0x1v57ha6ljmmiza7a74mf759gdbv16gmc"; authors = [ "Chris Wong " ]; dependencies = [ { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: ("hermit" == target."os"); } { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: ("wasi" == target."os"); } { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: (target."unix" or false); } { name = "windows-sys"; packageId = "windows-sys"; target = { target, features }: (target."windows" or false); features = [ "Win32_Foundation" "Win32_System_Diagnostics_Debug" ]; } ]; features = { "default" = [ "std" ]; "std" = [ "libc/std" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "event-listener 2.5.3" = rec { crateName = "event-listener"; version = "2.5.3"; edition = "2018"; sha256 = "1q4w3pndc518crld6zsqvvpy9lkzwahp2zgza9kbzmmqh9gif1h2"; authors = [ "Stjepan Glavina " ]; }; "event-listener 3.0.0" = rec { crateName = "event-listener"; version = "3.0.0"; edition = "2018"; sha256 = "09d3vqhjk7qrqsa2739xyp0qhg32nhkp1iykgyyc350dy2265r99"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "concurrent-queue"; packageId = "concurrent-queue"; usesDefaultFeatures = false; } { name = "parking"; packageId = "parking"; optional = true; target = { target, features }: (!(builtins.elem "wasm" target."family")); } { name = "pin-project-lite"; packageId = "pin-project-lite"; } ]; features = { "default" = [ "std" ]; "parking" = [ "dep:parking" ]; "portable-atomic" = [ "portable-atomic-util" "portable_atomic_crate" ]; "portable-atomic-util" = [ "dep:portable-atomic-util" ]; "portable_atomic_crate" = [ "dep:portable_atomic_crate" ]; "std" = [ "concurrent-queue/std" "parking" ]; }; resolvedDefaultFeatures = [ "default" "parking" "std" ]; }; "fastrand 1.9.0" = rec { crateName = "fastrand"; version = "1.9.0"; edition = "2018"; sha256 = "1gh12m56265ihdbzh46bhh0jf74i197wm51jg1cw75q7ggi96475"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "instant"; packageId = "instant"; target = { target, features }: (("wasm32" == target."arch") && (!("wasi" == target."os"))); } ]; devDependencies = [ { name = "instant"; packageId = "instant"; target = {target, features}: (("wasm32" == target."arch") && (!("wasi" == target."os"))); features = [ "wasm-bindgen" ]; } ]; }; "fastrand 2.0.1" = rec { crateName = "fastrand"; version = "2.0.1"; edition = "2018"; sha256 = "19flpv5zbzpf0rk4x77z4zf25in0brg8l7m304d3yrf47qvwxjr5"; authors = [ "Stjepan Glavina " ]; features = { "default" = [ "std" ]; "getrandom" = [ "dep:getrandom" ]; "js" = [ "std" "getrandom" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; "flate2" = rec { crateName = "flate2"; version = "1.0.28"; edition = "2018"; sha256 = "03llhsh4gqdirnfxxb9g2w9n0721dyn4yjir3pz7z4vjaxb3yc26"; authors = [ "Alex Crichton " "Josh Triplett " ]; 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") && (!("emscripten" == target."os"))); 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-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" ]; }; 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 " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "foreign-types" = rec { crateName = "foreign-types"; version = "0.3.2"; edition = "2015"; sha256 = "1cgk0vyd7r45cj769jym4a6s7vwshvd0z4bqrb92q1fwibmkkwzn"; authors = [ "Steven Fackler " ]; 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"; authors = [ "Steven Fackler " ]; }; "futures" = rec { crateName = "futures"; version = "0.3.28"; edition = "2018"; sha256 = "0h7c1xvxk751c7xlnph6fh3rb77z4lig4qif7f8q79db2az2ld13"; 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.28"; edition = "2018"; sha256 = "1wmm9wm5zjigxz61qkscmxp7c30zp08dy63spjz5pch9gva1hmcm"; 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.28"; edition = "2018"; sha256 = "137fdxy5amg9zkpa1kqnj7bnha6b94fmddz59w973x96gqxmijjb"; features = { "default" = [ "std" ]; "portable-atomic" = [ "dep:portable-atomic" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; "futures-executor" = rec { crateName = "futures-executor"; version = "0.3.28"; edition = "2018"; sha256 = "1q468di96knnla72xdvswic1ir2qkrf5czsdigc5n4l86a1fxv6c"; 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.28"; edition = "2018"; sha256 = "0r4rhkdhq1my4fahlhz59barqa511bylq813w3w4gvbidq4p9zsg"; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "futures-lite" = rec { crateName = "futures-lite"; version = "1.13.0"; edition = "2018"; sha256 = "1kkbqhaib68nzmys2dc8j9fl2bwzf2s91jfk13lb2q3nwhfdbaa9"; authors = [ "Stjepan Glavina " "Contributors to futures-rs" ]; dependencies = [ { name = "fastrand"; packageId = "fastrand 1.9.0"; optional = true; } { name = "futures-core"; packageId = "futures-core"; usesDefaultFeatures = false; } { name = "futures-io"; packageId = "futures-io"; optional = true; } { name = "memchr"; packageId = "memchr"; optional = true; } { name = "parking"; packageId = "parking"; optional = true; } { name = "pin-project-lite"; packageId = "pin-project-lite"; } { name = "waker-fn"; packageId = "waker-fn"; optional = true; } ]; features = { "default" = [ "std" ]; "fastrand" = [ "dep:fastrand" ]; "futures-io" = [ "dep:futures-io" ]; "memchr" = [ "dep:memchr" ]; "parking" = [ "dep:parking" ]; "std" = [ "alloc" "fastrand" "futures-io" "parking" "memchr" "waker-fn" ]; "waker-fn" = [ "dep:waker-fn" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "fastrand" "futures-io" "memchr" "parking" "std" "waker-fn" ]; }; "futures-macro" = rec { crateName = "futures-macro"; version = "0.3.28"; edition = "2018"; sha256 = "0wpfsqxwqk5k569xl0jzz4zxy85x695mndf7y9jn66q6jid59jl9"; procMacro = true; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 2.0.38"; features = [ "full" ]; } ]; }; "futures-sink" = rec { crateName = "futures-sink"; version = "0.3.28"; edition = "2018"; sha256 = "0vkv4frf4c6gm1ag9imjz8d0xvpnn22lkylsls0rffx147zf8fzl"; features = { "default" = [ "std" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; "futures-task" = rec { crateName = "futures-task"; version = "0.3.28"; edition = "2018"; sha256 = "0ravgihyarbplj32zp60asirfnaalw2wfsa0afhnl3kcpqrd3lvn"; features = { "default" = [ "std" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "std" ]; }; "futures-util" = rec { crateName = "futures-util"; version = "0.3.28"; edition = "2018"; sha256 = "0cwmls9369w6q6hwlbm10q0plr6hmg8w28fpqvv4rmbjnx01xc16"; dependencies = [ { name = "futures-channel"; packageId = "futures-channel"; optional = true; usesDefaultFeatures = false; features = [ "std" ]; } { name = "futures-core"; packageId = "futures-core"; usesDefaultFeatures = false; } { name = "futures-io"; packageId = "futures-io"; optional = true; usesDefaultFeatures = false; features = [ "std" ]; } { name = "futures-macro"; packageId = "futures-macro"; optional = true; usesDefaultFeatures = false; } { name = "futures-sink"; packageId = "futures-sink"; optional = true; usesDefaultFeatures = false; } { name = "futures-task"; packageId = "futures-task"; usesDefaultFeatures = false; } { name = "memchr"; packageId = "memchr"; optional = true; } { name = "pin-project-lite"; packageId = "pin-project-lite"; } { name = "pin-utils"; packageId = "pin-utils"; } { name = "slab"; packageId = "slab"; optional = true; } ]; features = { "alloc" = [ "futures-core/alloc" "futures-task/alloc" ]; "async-await-macro" = [ "async-await" "futures-macro" ]; "channel" = [ "std" "futures-channel" ]; "compat" = [ "std" "futures_01" ]; "default" = [ "std" "async-await" "async-await-macro" ]; "futures-channel" = [ "dep:futures-channel" ]; "futures-io" = [ "dep:futures-io" ]; "futures-macro" = [ "dep:futures-macro" ]; "futures-sink" = [ "dep:futures-sink" ]; "futures_01" = [ "dep:futures_01" ]; "io" = [ "std" "futures-io" "memchr" ]; "io-compat" = [ "io" "compat" "tokio-io" ]; "memchr" = [ "dep:memchr" ]; "portable-atomic" = [ "futures-core/portable-atomic" ]; "sink" = [ "futures-sink" ]; "slab" = [ "dep:slab" ]; "std" = [ "alloc" "futures-core/std" "futures-task/std" "slab" ]; "tokio-io" = [ "dep:tokio-io" ]; "unstable" = [ "futures-core/unstable" "futures-task/unstable" ]; "write-all-vectored" = [ "io" ]; }; resolvedDefaultFeatures = [ "alloc" "async-await" "async-await-macro" "channel" "futures-channel" "futures-io" "futures-macro" "futures-sink" "io" "memchr" "sink" "slab" "std" ]; }; "generic-array" = rec { crateName = "generic-array"; version = "0.14.7"; edition = "2015"; sha256 = "16lyyrzrljfq424c3n8kfwkqihlimmsg5nhshbbp48np3yjrqr45"; libName = "generic_array"; authors = [ "Bartłomiej Kamiński " "Aaron Trent " ]; dependencies = [ { name = "typenum"; packageId = "typenum"; } ]; buildDependencies = [ { name = "version_check"; packageId = "version_check"; } ]; features = { "serde" = [ "dep:serde" ]; "zeroize" = [ "dep:zeroize" ]; }; resolvedDefaultFeatures = [ "more_lengths" ]; }; "getrandom" = rec { crateName = "getrandom"; version = "0.2.10"; edition = "2018"; sha256 = "09zlimhhskzf7cmgcszix05wyz2i6fcpvh711cv1klsxl6r3chdy"; 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"; usesDefaultFeatures = false; target = { target, features }: ("wasi" == target."os"); } ]; 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 = [ "std" ]; }; "gimli" = rec { crateName = "gimli"; version = "0.28.0"; edition = "2018"; sha256 = "1h7hcl3chfvd2gfrrxjymnwj7anqxjslvz20kcargkvsya2dgf3g"; features = { "default" = [ "read-all" "write" ]; "endian-reader" = [ "read" "dep:stable_deref_trait" ]; "fallible-iterator" = [ "dep:fallible-iterator" ]; "read" = [ "read-core" ]; "read-all" = [ "read" "std" "fallible-iterator" "endian-reader" ]; "rustc-dep-of-std" = [ "dep:core" "dep:alloc" "dep:compiler_builtins" ]; "std" = [ "fallible-iterator?/std" "stable_deref_trait?/std" ]; "write" = [ "dep:indexmap" ]; }; resolvedDefaultFeatures = [ "read" "read-core" ]; }; "h2" = rec { crateName = "h2"; version = "0.3.21"; edition = "2018"; sha256 = "0cq8g5bgk3fihnqicy3g8gc3dpsalzqjg4bjyip9g4my26m27z4i"; authors = [ "Carl Lerche " "Sean McArthur " ]; 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" ]; } { 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.12.3"; edition = "2021"; sha256 = "1268ka4750pyg2pbgsr43f0289l5zah4arir2k4igx5a8c6fg7la"; authors = [ "Amanieu d'Antras " ]; dependencies = [ { name = "ahash"; packageId = "ahash"; optional = true; usesDefaultFeatures = false; } ]; features = { "ahash" = [ "dep:ahash" ]; "ahash-compile-time-rng" = [ "ahash/compile-time-rng" ]; "alloc" = [ "dep:alloc" ]; "bumpalo" = [ "dep:bumpalo" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "default" = [ "ahash" "inline-more" ]; "rayon" = [ "dep:rayon" ]; "rustc-dep-of-std" = [ "nightly" "core" "compiler_builtins" "alloc" "rustc-internal-api" ]; "serde" = [ "dep:serde" ]; }; resolvedDefaultFeatures = [ "ahash" "default" "inline-more" "raw" ]; }; "heck" = rec { crateName = "heck"; version = "0.3.3"; edition = "2018"; sha256 = "0b0kkr790p66lvzn9nsmfjvydrbmh9z5gb664jchwgw64vxiwqkd"; authors = [ "Without Boats " ]; dependencies = [ { name = "unicode-segmentation"; packageId = "unicode-segmentation"; } ]; }; "hermit-abi 0.1.19" = rec { crateName = "hermit-abi"; version = "0.1.19"; edition = "2018"; sha256 = "0cxcm8093nf5fyn114w8vxbrbcyvv91d4015rdnlgfll7cs6gd32"; authors = [ "Stefan Lankes" ]; dependencies = [ { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; } ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins/rustc-dep-of-std" "libc/rustc-dep-of-std" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "hermit-abi 0.3.3" = rec { crateName = "hermit-abi"; version = "0.3.3"; edition = "2021"; sha256 = "1dyc8qsjh876n74a3rcz8h43s27nj1sypdhsn2ms61bd3b47wzyp"; authors = [ "Stefan Lankes" ]; features = { "alloc" = [ "dep:alloc" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins/rustc-dep-of-std" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "hex" = rec { crateName = "hex"; version = "0.4.3"; edition = "2018"; sha256 = "0w1a4davm1lgzpamwnba907aysmlrnygbqmfis2mqjx5m552a93z"; authors = [ "KokaKiwi " ]; features = { "default" = [ "std" ]; "serde" = [ "dep:serde" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; "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" ]; }; }; "http" = rec { crateName = "http"; version = "0.2.9"; edition = "2018"; sha256 = "10j4jjpngaymxjvi92hllr2y6acr09pq61cvzxd44qzvkb4zyvmx"; authors = [ "Alex Crichton " "Carl Lerche " "Sean McArthur " ]; dependencies = [ { name = "bytes"; packageId = "bytes"; } { name = "fnv"; packageId = "fnv"; } { name = "itoa"; packageId = "itoa"; } ]; }; "http-body" = rec { crateName = "http-body"; version = "0.4.5"; edition = "2018"; sha256 = "1l967qwwlvhp198xdrnc0p5d7jwfcp6q2lm510j6zqw4s4b8zwym"; authors = [ "Carl Lerche " "Lucio Franco " "Sean McArthur " ]; dependencies = [ { name = "bytes"; packageId = "bytes"; } { name = "http"; packageId = "http"; } { name = "pin-project-lite"; packageId = "pin-project-lite"; } ]; }; "httparse" = rec { crateName = "httparse"; version = "1.8.0"; edition = "2018"; sha256 = "010rrfahm1jss3p022fqf3j3jmm72vhn4iqhykahb9ynpaag75yq"; authors = [ "Sean McArthur " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "httpdate" = rec { crateName = "httpdate"; version = "1.0.3"; edition = "2021"; sha256 = "1aa9rd2sac0zhjqh24c9xvir96g188zldkx0hr6dnnlx5904cfyz"; authors = [ "Pyfisch " ]; }; "hyper" = rec { crateName = "hyper"; version = "0.14.27"; edition = "2018"; sha256 = "0s2l74p3harvjgb0bvaxlxgxq71vpfrzv0cqz2p9w8d8akbczcgz"; authors = [ "Sean McArthur " ]; 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 0.4.9"; optional = true; features = [ "all" ]; } { name = "tokio"; packageId = "tokio"; features = [ "sync" ]; } { name = "tower-service"; packageId = "tower-service"; } { name = "tracing"; packageId = "tracing"; usesDefaultFeatures = false; features = [ "std" ]; } { name = "want"; packageId = "want"; } ]; devDependencies = [ { name = "futures-util"; packageId = "futures-util"; usesDefaultFeatures = false; features = [ "alloc" ]; } { name = "tokio"; packageId = "tokio"; features = [ "fs" "macros" "io-std" "io-util" "rt" "rt-multi-thread" "sync" "time" "test-util" ]; } ]; features = { "ffi" = [ "libc" ]; "full" = [ "client" "http1" "http2" "server" "stream" "runtime" ]; "h2" = [ "dep:h2" ]; "http2" = [ "h2" ]; "libc" = [ "dep:libc" ]; "runtime" = [ "tcp" "tokio/rt" "tokio/time" ]; "socket2" = [ "dep:socket2" ]; "tcp" = [ "socket2" "tokio/net" "tokio/rt" "tokio/time" ]; }; resolvedDefaultFeatures = [ "client" "default" "h2" "http1" "http2" "socket2" "stream" "tcp" ]; }; "hyper-tls" = rec { crateName = "hyper-tls"; version = "0.5.0"; edition = "2018"; sha256 = "01crgy13102iagakf6q4mb75dprzr7ps1gj0l5hxm1cvm7gks66n"; authors = [ "Sean McArthur " ]; 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" ]; }; }; "iana-time-zone" = rec { crateName = "iana-time-zone"; version = "0.1.57"; edition = "2018"; sha256 = "04yn5npa008fqd2y6qd3y3bmyqjpd4fyiwq6sa5v7lj2b215pb9g"; authors = [ "Andrew Straw " "René Kijewski " "Ryan Lopopolo " ]; dependencies = [ { name = "android_system_properties"; packageId = "android_system_properties"; target = { target, features }: ("android" == target."os"); } { name = "core-foundation-sys"; packageId = "core-foundation-sys"; target = { target, features }: (("macos" == target."os") || ("ios" == target."os")); } { name = "iana-time-zone-haiku"; packageId = "iana-time-zone-haiku"; target = { target, features }: ("haiku" == target."os"); } { name = "js-sys"; packageId = "js-sys"; target = { target, features }: ("wasm32" == target."arch"); } { name = "wasm-bindgen"; packageId = "wasm-bindgen"; target = { target, features }: ("wasm32" == target."arch"); } { name = "windows"; packageId = "windows"; target = { target, features }: ("windows" == target."os"); features = [ "Globalization" ]; } ]; features = { }; resolvedDefaultFeatures = [ "fallback" ]; }; "iana-time-zone-haiku" = rec { crateName = "iana-time-zone-haiku"; version = "0.1.2"; edition = "2018"; sha256 = "17r6jmj31chn7xs9698r122mapq85mfnv98bb4pg6spm0si2f67k"; authors = [ "René Kijewski " ]; buildDependencies = [ { name = "cc"; packageId = "cc"; } ]; }; "indexmap" = rec { crateName = "indexmap"; version = "1.9.3"; edition = "2021"; sha256 = "16dxmy7yvk51wvnih3a3im6fp5lmx0wx76i03n06wyak6cwhw1xx"; dependencies = [ { name = "hashbrown"; packageId = "hashbrown"; usesDefaultFeatures = false; features = [ "raw" ]; } ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg"; } ]; features = { "arbitrary" = [ "dep:arbitrary" ]; "quickcheck" = [ "dep:quickcheck" ]; "rayon" = [ "dep:rayon" ]; "rustc-rayon" = [ "dep:rustc-rayon" ]; "serde" = [ "dep:serde" ]; "serde-1" = [ "serde" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "instant" = rec { crateName = "instant"; version = "0.1.12"; edition = "2018"; sha256 = "0b2bx5qdlwayriidhrag8vhy10kdfimfhmb3jnjmsz2h9j1bwnvs"; authors = [ "sebcrozet " ]; 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" ]; }; }; "io-lifetimes" = rec { crateName = "io-lifetimes"; version = "1.0.11"; edition = "2018"; sha256 = "1hph5lz4wd3drnn6saakwxr497liznpfnv70via6s0v8x6pbkrza"; authors = [ "Dan Gohman " ]; dependencies = [ { name = "hermit-abi"; packageId = "hermit-abi 0.3.3"; optional = true; target = { target, features }: ("hermit" == target."os"); } { name = "libc"; packageId = "libc"; optional = true; target = { target, features }: (!(target."windows" or false)); } { name = "windows-sys"; packageId = "windows-sys"; optional = true; target = { target, features }: (target."windows" or false); features = [ "Win32_Foundation" "Win32_Storage_FileSystem" "Win32_Networking_WinSock" "Win32_Security" "Win32_System_IO" "Win32_System_Threading" ]; } ]; features = { "async-std" = [ "dep:async-std" ]; "close" = [ "libc" "hermit-abi" "windows-sys" ]; "default" = [ "close" ]; "fs-err" = [ "dep:fs-err" ]; "hermit-abi" = [ "dep:hermit-abi" ]; "libc" = [ "dep:libc" ]; "mio" = [ "dep:mio" ]; "os_pipe" = [ "dep:os_pipe" ]; "socket2" = [ "dep:socket2" ]; "tokio" = [ "dep:tokio" ]; "windows-sys" = [ "dep:windows-sys" ]; }; resolvedDefaultFeatures = [ "close" "hermit-abi" "libc" "windows-sys" ]; }; "itertools" = rec { crateName = "itertools"; version = "0.11.0"; edition = "2018"; sha256 = "0mzyqcc59azx9g5cg6fs8k529gvh4463smmka6jvzs3cd2jp7hdi"; authors = [ "bluss" ]; dependencies = [ { name = "either"; packageId = "either"; usesDefaultFeatures = false; } ]; features = { "default" = [ "use_std" ]; "use_std" = [ "use_alloc" "either/use_std" ]; }; resolvedDefaultFeatures = [ "default" "use_alloc" "use_std" ]; }; "itoa" = rec { crateName = "itoa"; version = "1.0.9"; edition = "2018"; sha256 = "0f6cpb4yqzhkrhhg6kqsw3wnmmhdnnffi6r2xzy248gzi2v0l5dg"; authors = [ "David Tolnay " ]; features = { "no-panic" = [ "dep:no-panic" ]; }; }; "js-sys" = rec { crateName = "js-sys"; version = "0.3.64"; edition = "2018"; sha256 = "0nlkiwpm8dyqcf1xyc6qmrankcgdd3fpzc0qyfq2sw3z97z9bwf5"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "wasm-bindgen"; packageId = "wasm-bindgen"; } ]; }; "json5" = rec { crateName = "json5"; version = "0.4.1"; edition = "2018"; sha256 = "1h9hni897zmn3vcixfbwwkj2gkz27h7z9dah8bk1qv37mwhxpc4n"; authors = [ "Callum Oakley " ]; dependencies = [ { name = "pest"; packageId = "pest"; } { name = "pest_derive"; packageId = "pest_derive"; } { name = "serde"; packageId = "serde"; } ]; }; "lazy_static" = rec { crateName = "lazy_static"; version = "1.4.0"; edition = "2015"; sha256 = "0in6ikhw8mgl33wjv6q6xfrb5b9jr16q8ygjy803fay4zcisvaz2"; authors = [ "Marvin Löbel " ]; features = { "spin" = [ "dep:spin" ]; "spin_no_std" = [ "spin" ]; }; }; "libc" = rec { crateName = "libc"; version = "0.2.149"; edition = "2015"; sha256 = "16z2zqswcbk1qg5yigfyr0d44v0974amdaj564dmv5dpi2y770d0"; 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" ]; }; "line-wrap" = rec { crateName = "line-wrap"; version = "0.1.1"; edition = "2015"; sha256 = "1ffa2whkyh9mwvdlpk6v8pjkg8p8mlzyjfymq5adll9a18sl80zk"; authors = [ "Marshall Pierce " ]; dependencies = [ { name = "safemem"; packageId = "safemem"; } ]; }; "linked-hash-map" = rec { crateName = "linked-hash-map"; version = "0.5.6"; edition = "2015"; sha256 = "03vpgw7x507g524nx5i1jf5dl8k3kv0fzg8v3ip6qqwbpkqww5q7"; authors = [ "Stepan Koltsov " "Andrew Paseltiner " ]; features = { "heapsize" = [ "dep:heapsize" ]; "heapsize_impl" = [ "heapsize" ]; "serde" = [ "dep:serde" ]; "serde_impl" = [ "serde" ]; }; }; "linux-raw-sys 0.3.8" = rec { crateName = "linux-raw-sys"; version = "0.3.8"; edition = "2018"; sha256 = "068mbigb3frrxvbi5g61lx25kksy98f2qgkvc4xg8zxznwp98lzg"; authors = [ "Dan Gohman " ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "default" = [ "std" "general" "errno" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" "no_std" ]; }; resolvedDefaultFeatures = [ "errno" "general" "ioctl" "no_std" ]; }; "linux-raw-sys 0.4.10" = rec { crateName = "linux-raw-sys"; version = "0.4.10"; edition = "2021"; sha256 = "0gz0671d4hgrdngrryaajxl962ny4g40pykg0vq0pr32q3l7j96s"; authors = [ "Dan Gohman " ]; 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" "prctl" ]; }; "log" = rec { crateName = "log"; version = "0.4.20"; edition = "2015"; sha256 = "13rf7wphnwd61vazpxr7fiycin6cb1g8fmvgqg18i464p0y1drmm"; authors = [ "The Rust Project Developers" ]; features = { "kv_unstable" = [ "value-bag" ]; "kv_unstable_serde" = [ "kv_unstable_std" "value-bag/serde" "serde" ]; "kv_unstable_std" = [ "std" "kv_unstable" "value-bag/error" ]; "kv_unstable_sval" = [ "kv_unstable" "value-bag/sval" "sval" "sval_ref" ]; "serde" = [ "dep:serde" ]; "sval" = [ "dep:sval" ]; "sval_ref" = [ "dep:sval_ref" ]; "value-bag" = [ "dep:value-bag" ]; }; }; "md-5" = rec { crateName = "md-5"; version = "0.9.1"; edition = "2018"; sha256 = "059ajjacz1q3cms7vl6cvhdqs4qdw2nnwj9dq99ryzv0p6djfnkv"; libName = "md5"; authors = [ "RustCrypto Developers" ]; dependencies = [ { name = "block-buffer"; packageId = "block-buffer 0.9.0"; } { name = "digest"; packageId = "digest 0.9.0"; } { name = "opaque-debug"; packageId = "opaque-debug"; } ]; devDependencies = [ { name = "digest"; packageId = "digest 0.9.0"; features = [ "dev" ]; } ]; features = { "asm" = [ "md5-asm" ]; "default" = [ "std" ]; "md5-asm" = [ "dep:md5-asm" ]; "std" = [ "digest/std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "memchr" = rec { crateName = "memchr"; version = "2.6.4"; edition = "2021"; sha256 = "0rq1ka8790ns41j147npvxcqcl2anxyngsdimy85ag2api0fwrgn"; authors = [ "Andrew Gallant " "bluss" ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "default" = [ "std" ]; "logging" = [ "dep:log" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; "std" = [ "alloc" ]; "use_std" = [ "std" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; "mime" = rec { crateName = "mime"; version = "0.3.17"; edition = "2015"; sha256 = "16hkibgvb9klh0w0jk5crr5xv90l3wlf77ggymzjmvl1818vnxv8"; authors = [ "Sean McArthur " ]; }; "mime_guess" = rec { crateName = "mime_guess"; version = "2.0.4"; edition = "2015"; sha256 = "1vs28rxnbfwil6f48hh58lfcx90klcvg68gxdc60spwa4cy2d4j1"; authors = [ "Austin Bonander " ]; dependencies = [ { name = "mime"; packageId = "mime"; } { name = "unicase"; packageId = "unicase"; } ]; buildDependencies = [ { name = "unicase"; packageId = "unicase"; } ]; features = { "default" = [ "rev-mappings" ]; }; resolvedDefaultFeatures = [ "default" "rev-mappings" ]; }; "minimal-lexical" = rec { crateName = "minimal-lexical"; version = "0.2.1"; edition = "2018"; sha256 = "16ppc5g84aijpri4jzv14rvcnslvlpphbszc7zzp6vfkddf4qdb8"; authors = [ "Alex Huszagh " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "miniz_oxide" = rec { crateName = "miniz_oxide"; version = "0.7.1"; edition = "2018"; sha256 = "1ivl3rbbdm53bzscrd01g60l46lz5krl270487d8lhjvwl5hx0g7"; authors = [ "Frommi " "oyvindln " ]; dependencies = [ { name = "adler"; packageId = "adler"; usesDefaultFeatures = false; } ]; features = { "alloc" = [ "dep:alloc" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "default" = [ "with-alloc" ]; "rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "adler/rustc-dep-of-std" ]; "simd" = [ "simd-adler32" ]; "simd-adler32" = [ "dep:simd-adler32" ]; }; resolvedDefaultFeatures = [ "with-alloc" ]; }; "mio" = rec { crateName = "mio"; version = "0.8.8"; edition = "2018"; sha256 = "1lhrdgcmcy8f0qy1n7357q0aprfkm5gld5mjcrp209pwsdf7cylj"; authors = [ "Carl Lerche " "Thomas de Zeeuw " "Tokio Contributors " ]; dependencies = [ { name = "libc"; packageId = "libc"; target = { target, features }: ("wasi" == target."os"); } { name = "libc"; packageId = "libc"; target = { target, features }: (target."unix" or false); } { name = "wasi"; packageId = "wasi"; target = { target, features }: ("wasi" == target."os"); } { name = "windows-sys"; packageId = "windows-sys"; target = { target, features }: (target."windows" or false); features = [ "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.11"; edition = "2015"; sha256 = "0bmrlg0fmzxaycjpkgkchi93av07v2yf9k33gc12ca9gqdrn28h7"; authors = [ "Steven Fackler " ]; dependencies = [ { name = "lazy_static"; packageId = "lazy_static"; target = { target, features }: (("macos" == target."os") || ("ios" == target."os")); } { name = "libc"; packageId = "libc"; target = { target, features }: (("macos" == target."os") || ("ios" == target."os")); } { name = "log"; packageId = "log"; target = { target, features }: (!(("windows" == target."os") || ("macos" == target."os") || ("ios" == target."os"))); } { name = "openssl"; packageId = "openssl"; target = { target, features }: (!(("windows" == target."os") || ("macos" == target."os") || ("ios" == target."os"))); } { name = "openssl-probe"; packageId = "openssl-probe"; target = { target, features }: (!(("windows" == target."os") || ("macos" == target."os") || ("ios" == target."os"))); } { name = "openssl-sys"; packageId = "openssl-sys"; target = { target, features }: (!(("windows" == target."os") || ("macos" == target."os") || ("ios" == target."os"))); } { name = "schannel"; packageId = "schannel"; target = { target, features }: ("windows" == target."os"); } { name = "security-framework"; packageId = "security-framework"; target = { target, features }: (("macos" == target."os") || ("ios" == target."os")); } { name = "security-framework-sys"; packageId = "security-framework-sys"; target = { target, features }: (("macos" == target."os") || ("ios" == target."os")); } { name = "tempfile"; packageId = "tempfile"; target = { target, features }: (("macos" == target."os") || ("ios" == target."os")); } ]; devDependencies = [ { name = "tempfile"; packageId = "tempfile"; } ]; features = { "alpn" = [ "security-framework/alpn" ]; "vendored" = [ "openssl/vendored" ]; }; }; "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-traits" = rec { crateName = "num-traits"; version = "0.2.17"; edition = "2018"; sha256 = "0z16bi5zwgfysz6765v3rd6whfbjpihx3mhsn4dg8dzj2c221qrr"; authors = [ "The Rust Project Developers" ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg"; } ]; features = { "default" = [ "std" ]; "libm" = [ "dep:libm" ]; }; }; "num_cpus" = rec { crateName = "num_cpus"; version = "1.16.0"; edition = "2015"; sha256 = "0hra6ihpnh06dvfvz9ipscys0xfqa9ca9hzp384d5m02ssvgqqa1"; authors = [ "Sean McArthur " ]; dependencies = [ { name = "hermit-abi"; packageId = "hermit-abi 0.3.3"; target = { target, features }: ("hermit" == target."os"); } { name = "libc"; packageId = "libc"; target = { target, features }: (!(target."windows" or false)); } ]; }; "object" = rec { crateName = "object"; version = "0.32.1"; edition = "2018"; sha256 = "1c02x4kvqpnl3wn7gz9idm4jrbirbycyqjgiw6lm1g9k77fzkxcw"; dependencies = [ { name = "memchr"; packageId = "memchr"; usesDefaultFeatures = false; } ]; features = { "all" = [ "read" "write" "std" "compression" "wasm" ]; "alloc" = [ "dep:alloc" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "compression" = [ "dep:flate2" "dep:ruzstd" "std" ]; "core" = [ "dep:core" ]; "default" = [ "read" "compression" ]; "doc" = [ "read_core" "write_std" "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" ]; }; "once_cell" = rec { crateName = "once_cell"; version = "1.18.0"; edition = "2021"; sha256 = "0vapcd5ambwck95wyz3ymlim35jirgnqn9a0qmi19msymv95v2yx"; authors = [ "Aleksey Kladov " ]; features = { "alloc" = [ "race" ]; "atomic-polyfill" = [ "critical-section" ]; "critical-section" = [ "dep:critical-section" "dep:atomic-polyfill" ]; "default" = [ "std" ]; "parking_lot" = [ "dep:parking_lot_core" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "race" "std" ]; }; "onig" = rec { crateName = "onig"; version = "6.4.0"; edition = "2018"; sha256 = "0kyaz2fwa5dkr04rvk5ga2yv5jkqn1ymblvpdlf1gn9afb432jwc"; authors = [ "Will Speak " "Ivan Ivashchenko " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.3.2"; } { name = "libc"; packageId = "libc"; target = { target, features }: (target."windows" or false); } { name = "once_cell"; packageId = "once_cell"; } { name = "onig_sys"; packageId = "onig_sys"; usesDefaultFeatures = false; } ]; features = { "default" = [ "generate" ]; "generate" = [ "onig_sys/generate" ]; "posix-api" = [ "onig_sys/posix-api" ]; "print-debug" = [ "onig_sys/print-debug" ]; }; }; "onig_sys" = rec { crateName = "onig_sys"; version = "69.8.1"; edition = "2018"; sha256 = "1rw6y2qkb765gzylmrydbbd90hdzhnqyvs2y65z4riwwgqyrx0kv"; authors = [ "Will Speak " "Ivan Ivashchenko " ]; buildDependencies = [ { name = "cc"; packageId = "cc"; } { name = "pkg-config"; packageId = "pkg-config"; } ]; features = { "bindgen" = [ "dep:bindgen" ]; "default" = [ "generate" ]; "generate" = [ "bindgen" ]; }; }; "opaque-debug" = rec { crateName = "opaque-debug"; version = "0.3.0"; edition = "2018"; sha256 = "1m8kzi4nd6shdqimn0mgb24f0hxslhnqd1whakyq06wcqd086jk2"; authors = [ "RustCrypto Developers" ]; }; "openssl" = rec { crateName = "openssl"; version = "0.10.57"; edition = "2018"; sha256 = "0z0f8g84y0lvnbc60586ibjpf8r1q1dv672vfqan5d5bk7imxhms"; authors = [ "Steven Fackler " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 2.4.0"; } { name = "cfg-if"; packageId = "cfg-if"; } { name = "foreign-types"; packageId = "foreign-types"; } { name = "libc"; packageId = "libc"; } { name = "once_cell"; packageId = "once_cell"; } { name = "openssl-macros"; packageId = "openssl-macros"; } { name = "openssl-sys"; packageId = "openssl-sys"; rename = "ffi"; } ]; features = { "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; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 2.0.38"; features = [ "full" ]; } ]; }; "openssl-probe" = rec { crateName = "openssl-probe"; version = "0.1.5"; edition = "2015"; sha256 = "1kq18qm48rvkwgcggfkqq6pm948190czqc94d6bm2sir5hq1l0gz"; authors = [ "Alex Crichton " ]; }; "openssl-sys" = rec { crateName = "openssl-sys"; version = "0.9.93"; edition = "2018"; sha256 = "078vnn4s18kj8m5sd7b684frhjnxjcjc9z7s7h4871s7q2j5ckfv"; build = "build/main.rs"; authors = [ "Alex Crichton " "Steven Fackler " ]; dependencies = [ { name = "libc"; packageId = "libc"; } ]; buildDependencies = [ { name = "cc"; packageId = "cc"; } { name = "pkg-config"; packageId = "pkg-config"; } { name = "vcpkg"; packageId = "vcpkg"; } ]; features = { "bindgen" = [ "dep:bindgen" ]; "bssl-sys" = [ "dep:bssl-sys" ]; "openssl-src" = [ "dep:openssl-src" ]; "unstable_boringssl" = [ "bssl-sys" ]; "vendored" = [ "openssl-src" ]; }; }; "ordered-multimap" = rec { crateName = "ordered-multimap"; version = "0.4.3"; edition = "2018"; sha256 = "0jljv1257pfyf855jlwwas5mqkzk40b9lqfx40f73qbpf7ildmyc"; authors = [ "Scott Godwin " ]; dependencies = [ { name = "dlv-list"; packageId = "dlv-list"; } { name = "hashbrown"; packageId = "hashbrown"; } ]; features = { "serde" = [ "dep:serde" ]; }; }; "parking" = rec { crateName = "parking"; version = "2.1.1"; edition = "2018"; sha256 = "0rr0kddcjc7cir02bj2j8rhmm9wivmrkzr2j3hfrqd9r9i57fb75"; authors = [ "Stjepan Glavina " "The Rust Project Developers" ]; features = { "loom" = [ "dep:loom" ]; }; }; "pathdiff" = rec { crateName = "pathdiff"; version = "0.2.1"; edition = "2018"; sha256 = "1pa4dcmb7lwir4himg1mnl97a05b2z0svczg62l8940pbim12dc8"; authors = [ "Manish Goregaokar " ]; features = { "camino" = [ "dep:camino" ]; }; }; "percent-encoding" = rec { crateName = "percent-encoding"; version = "2.3.0"; edition = "2018"; sha256 = "152slflmparkh27hprw62sph8rv77wckzhwl2dhqk6bf563lfalv"; authors = [ "The rust-url developers" ]; features = { "default" = [ "std" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; "pest" = rec { crateName = "pest"; version = "2.7.4"; edition = "2021"; sha256 = "194qbnc2y3qhr2hp9bp5yc0vr0b8qr2b6pxxvg028sjxnvkz28n0"; authors = [ "Dragoș Tiselice " ]; dependencies = [ { name = "memchr"; packageId = "memchr"; optional = true; } { name = "thiserror"; packageId = "thiserror"; optional = true; } { name = "ucd-trie"; packageId = "ucd-trie"; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" "memchr" ]; "memchr" = [ "dep:memchr" ]; "pretty-print" = [ "dep:serde" "dep:serde_json" ]; "std" = [ "ucd-trie/std" "dep:thiserror" ]; }; resolvedDefaultFeatures = [ "default" "memchr" "std" ]; }; "pest_derive" = rec { crateName = "pest_derive"; version = "2.7.4"; edition = "2021"; sha256 = "1n36kh9xd6kvs8vhrrhn8d1h3gmzw5w8zdacgjbhlh261mikyl9m"; procMacro = true; authors = [ "Dragoș Tiselice " ]; dependencies = [ { name = "pest"; packageId = "pest"; usesDefaultFeatures = false; } { name = "pest_generator"; packageId = "pest_generator"; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" ]; "grammar-extras" = [ "pest_generator/grammar-extras" ]; "not-bootstrap-in-src" = [ "pest_generator/not-bootstrap-in-src" ]; "std" = [ "pest/std" "pest_generator/std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "pest_generator" = rec { crateName = "pest_generator"; version = "2.7.4"; edition = "2021"; sha256 = "0fhjr0g10d3qgkf69c3fbfp821plsvi2dimmi6hsnyq5wyww37xw"; authors = [ "Dragoș Tiselice " ]; dependencies = [ { name = "pest"; packageId = "pest"; usesDefaultFeatures = false; } { name = "pest_meta"; packageId = "pest_meta"; } { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 2.0.38"; } ]; features = { "default" = [ "std" ]; "grammar-extras" = [ "pest_meta/grammar-extras" ]; "not-bootstrap-in-src" = [ "pest_meta/not-bootstrap-in-src" ]; "std" = [ "pest/std" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "pest_meta" = rec { crateName = "pest_meta"; version = "2.7.4"; edition = "2021"; sha256 = "13bhqvlfha69m6mivy8svrzrfkjrsf5hqz0fk3mkq1f4gsg4xxqx"; authors = [ "Dragoș Tiselice " ]; dependencies = [ { name = "once_cell"; packageId = "once_cell"; } { name = "pest"; packageId = "pest"; } ]; buildDependencies = [ { name = "sha2"; packageId = "sha2 0.10.8"; usesDefaultFeatures = false; } ]; features = { "not-bootstrap-in-src" = [ "dep:cargo" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "pin-project-lite" = rec { crateName = "pin-project-lite"; version = "0.2.13"; edition = "2018"; sha256 = "0n0bwr5qxlf0mhn2xkl36sy55118s9qmvx2yl5f3ixkb007lbywa"; }; "pin-utils" = rec { crateName = "pin-utils"; version = "0.1.0"; edition = "2018"; sha256 = "117ir7vslsl2z1a7qzhws4pd01cg2d3338c47swjyvqv2n60v1wb"; authors = [ "Josef Brandl " ]; }; "piper" = rec { crateName = "piper"; version = "0.2.1"; edition = "2018"; sha256 = "1m45fkdq7q5l9mv3b0ra10qwm0kb67rjp2q8y91958gbqjqk33b6"; authors = [ "Stjepan Glavina " "John Nunley " ]; dependencies = [ { name = "atomic-waker"; packageId = "atomic-waker"; } { name = "fastrand"; packageId = "fastrand 2.0.1"; usesDefaultFeatures = false; } { name = "futures-io"; packageId = "futures-io"; optional = true; } ]; features = { "default" = [ "std" ]; "futures-io" = [ "dep:futures-io" ]; "portable-atomic" = [ "atomic-waker/portable-atomic" "portable_atomic_crate" "portable-atomic-util" ]; "portable-atomic-util" = [ "dep:portable-atomic-util" ]; "portable_atomic_crate" = [ "dep:portable_atomic_crate" ]; "std" = [ "fastrand/std" "futures-io" ]; }; resolvedDefaultFeatures = [ "default" "futures-io" "std" ]; }; "pkg-config" = rec { crateName = "pkg-config"; version = "0.3.27"; edition = "2015"; sha256 = "0r39ryh1magcq4cz5g9x88jllsnxnhcqr753islvyk4jp9h2h1r6"; authors = [ "Alex Crichton " ]; }; "plist" = rec { crateName = "plist"; version = "1.5.0"; edition = "2021"; sha256 = "01mfd4129p1iqadvpylpbx5ma3p2x4cdih2bwai5gnx3zqf01h5x"; authors = [ "Ed Barnard " ]; dependencies = [ { name = "base64"; packageId = "base64 0.21.4"; } { name = "indexmap"; packageId = "indexmap"; } { name = "line-wrap"; packageId = "line-wrap"; } { 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" ]; }; "polling" = rec { crateName = "polling"; version = "2.8.0"; edition = "2018"; sha256 = "1kixxfq1af1k7gkmmk9yv4j2krpp4fji2r8j4cz6p6d7ihz34bab"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.3.2"; target = { target, features }: (target."windows" or false); } { name = "cfg-if"; packageId = "cfg-if"; } { name = "concurrent-queue"; packageId = "concurrent-queue"; target = { target, features }: (target."windows" or false); } { name = "libc"; packageId = "libc"; target = { target, features }: ((target."unix" or false) || ("fuchsia" == target."os") || ("vxworks" == target."os")); } { name = "log"; packageId = "log"; } { name = "pin-project-lite"; packageId = "pin-project-lite"; target = { target, features }: (target."windows" or false); } { name = "windows-sys"; packageId = "windows-sys"; target = { target, features }: (target."windows" or false); features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_Storage_FileSystem" "Win32_System_IO" "Win32_System_LibraryLoader" "Win32_System_Threading" "Win32_System_WindowsProgramming" ]; } ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg"; } ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "powerfmt" = rec { crateName = "powerfmt"; version = "0.2.0"; edition = "2021"; sha256 = "14ckj2xdpkhv3h6l5sdmb9f1d57z8hbfpdldjc2vl5givq2y77j3"; authors = [ "Jacob Pratt " ]; features = { "default" = [ "std" "macros" ]; "macros" = [ "dep:powerfmt-macros" ]; "std" = [ "alloc" ]; }; }; "ppv-lite86" = rec { crateName = "ppv-lite86"; version = "0.2.17"; edition = "2018"; sha256 = "1pp6g52aw970adv3x2310n7glqnji96z0a9wiamzw89ibf0ayh2v"; authors = [ "The CryptoCorrosion Contributors" ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "simd" "std" ]; }; "proc-macro-error" = rec { crateName = "proc-macro-error"; version = "1.0.4"; edition = "2018"; sha256 = "1373bhxaf0pagd8zkyd03kkx6bchzf6g0dkwrwzsnal9z47lj9fs"; authors = [ "CreepySkeleton " ]; dependencies = [ { name = "proc-macro-error-attr"; packageId = "proc-macro-error-attr"; } { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 1.0.109"; optional = true; usesDefaultFeatures = false; } ]; buildDependencies = [ { name = "version_check"; packageId = "version_check"; } ]; features = { "default" = [ "syn-error" ]; "syn" = [ "dep:syn" ]; "syn-error" = [ "syn" ]; }; resolvedDefaultFeatures = [ "default" "syn" "syn-error" ]; }; "proc-macro-error-attr" = rec { crateName = "proc-macro-error-attr"; version = "1.0.4"; edition = "2018"; sha256 = "0sgq6m5jfmasmwwy8x4mjygx5l7kp8s4j60bv25ckv2j1qc41gm1"; procMacro = true; authors = [ "CreepySkeleton " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } ]; buildDependencies = [ { name = "version_check"; packageId = "version_check"; } ]; }; "proc-macro2" = rec { crateName = "proc-macro2"; version = "1.0.69"; edition = "2021"; sha256 = "1nljgyllbm3yr3pa081bf83gxh6l4zvjqzaldw7v4mj9xfgihk0k"; authors = [ "David Tolnay " "Alex Crichton " ]; dependencies = [ { name = "unicode-ident"; packageId = "unicode-ident"; } ]; features = { "default" = [ "proc-macro" ]; }; resolvedDefaultFeatures = [ "default" "proc-macro" ]; }; "quick-xml" = rec { crateName = "quick-xml"; version = "0.29.0"; edition = "2018"; sha256 = "0lfaciwimmlsx9c6w3vhypk5ssqkhzi1vv0g95hpnb6q2n125fc1"; dependencies = [ { name = "memchr"; packageId = "memchr"; } ]; features = { "arbitrary" = [ "dep:arbitrary" ]; "async-tokio" = [ "tokio" ]; "document-features" = [ "dep:document-features" ]; "encoding" = [ "encoding_rs" ]; "encoding_rs" = [ "dep:encoding_rs" ]; "serde" = [ "dep:serde" ]; "serde-types" = [ "serde/derive" ]; "serialize" = [ "serde" ]; "tokio" = [ "dep:tokio" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "quote" = rec { crateName = "quote"; version = "1.0.33"; edition = "2018"; sha256 = "1biw54hbbr12wdwjac55z1m2x2rylciw83qnjn564a3096jgqrsj"; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; usesDefaultFeatures = false; } ]; features = { "default" = [ "proc-macro" ]; "proc-macro" = [ "proc-macro2/proc-macro" ]; }; resolvedDefaultFeatures = [ "default" "proc-macro" ]; }; "rand" = 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"; optional = true; usesDefaultFeatures = false; } { name = "rand_core"; packageId = "rand_core"; } ]; 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" "std" "std_rng" ]; }; "rand_chacha" = 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"; } ]; features = { "default" = [ "std" ]; "serde" = [ "dep:serde" ]; "serde1" = [ "serde" ]; "std" = [ "ppv-lite86/std" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "rand_core" = 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"; optional = true; } ]; features = { "getrandom" = [ "dep:getrandom" ]; "serde" = [ "dep:serde" ]; "serde1" = [ "serde" ]; "std" = [ "alloc" "getrandom" "getrandom/std" ]; }; resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ]; }; "redox_syscall 0.2.16" = rec { crateName = "redox_syscall"; version = "0.2.16"; edition = "2018"; sha256 = "16jicm96kjyzm802cxdd1k9jmcph0db1a4lhslcnhjsvhp0mhnpv"; libName = "syscall"; authors = [ "Jeremy Soller " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.3.2"; } ]; }; "redox_syscall 0.3.5" = rec { crateName = "redox_syscall"; version = "0.3.5"; edition = "2018"; sha256 = "0acgiy2lc1m2vr8cr33l5s7k9wzby8dybyab1a9p753hcbr68xjn"; libName = "syscall"; authors = [ "Jeremy Soller " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.3.2"; } ]; features = { "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ]; }; }; "redox_users" = rec { crateName = "redox_users"; version = "0.4.3"; edition = "2018"; sha256 = "0asw3s4iy69knafkhvlbchy230qawc297vddjdwjs5nglwvxhcxh"; authors = [ "Jose Narvaez " "Wesley Hershberger " ]; dependencies = [ { name = "getrandom"; packageId = "getrandom"; features = [ "std" ]; } { name = "redox_syscall"; packageId = "redox_syscall 0.2.16"; } { name = "thiserror"; packageId = "thiserror"; } ]; features = { "auth" = [ "rust-argon2" "zeroize" ]; "default" = [ "auth" ]; "rust-argon2" = [ "dep:rust-argon2" ]; "zeroize" = [ "dep:zeroize" ]; }; }; "regex-syntax" = rec { crateName = "regex-syntax"; version = "0.7.5"; edition = "2021"; sha256 = "1nhjmqdlakfi4yb8lh7vbbh71dsy90jjvrjvvnrih6larldgpdfv"; authors = [ "The Rust Project Developers" "Andrew Gallant " ]; 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" ]; }; "ron" = rec { crateName = "ron"; version = "0.7.1"; edition = "2018"; sha256 = "06iz51r6pyi197jjpfddq8h8884y85myaswfan07cnqylqwkj1w8"; authors = [ "Christopher Durham " "Dzmitry Malyshau " "Thomas Schaller " ]; dependencies = [ { name = "base64"; packageId = "base64 0.13.1"; } { name = "bitflags"; packageId = "bitflags 1.3.2"; } { name = "serde"; packageId = "serde"; features = [ "serde_derive" ]; } ]; features = { "indexmap" = [ "dep:indexmap" ]; }; }; "rpb-s3" = rec { crateName = "rpb-s3"; version = "0.1.0"; edition = "2018"; crateBin = [ { name = "rpb-s3"; path = "src/main.rs"; requiredFeatures = [ ]; } ]; # We can't filter paths with references in Nix 2.4 # See https://github.com/NixOS/nix/issues/5410 src = if ((lib.versionOlder builtins.nixVersion "2.4pre20211007") || (lib.versionOlder "2.5" builtins.nixVersion )) then lib.cleanSourceWith { filter = sourceFilter; src = ./.; } else ./.; authors = [ "tilpner" ]; dependencies = [ { name = "async-compat"; packageId = "async-compat"; } { name = "bytes"; packageId = "bytes"; } { name = "config"; packageId = "config"; } { name = "futures"; packageId = "futures"; } { name = "itertools"; packageId = "itertools"; } { name = "mime_guess"; packageId = "mime_guess"; } { name = "rand"; packageId = "rand"; } { name = "rusoto_core"; packageId = "rusoto_core"; } { name = "rusoto_s3"; packageId = "rusoto_s3"; } { name = "serde"; packageId = "serde"; } { name = "serde_derive"; packageId = "serde_derive"; } { name = "smol"; packageId = "smol"; } { name = "structopt"; packageId = "structopt"; } { name = "syntect"; packageId = "syntect"; } { name = "tinytemplate"; packageId = "tinytemplate"; } { name = "xdg"; packageId = "xdg"; } ]; }; "rusoto_core" = rec { crateName = "rusoto_core"; version = "0.48.0"; edition = "2018"; sha256 = "18ig9x4n68cgfvhzkyhl9w2qlhk945xczbb9c8r52dd79ss0vcqx"; authors = [ "Anthony DiMarco " "Jimmy Cuadra " "Matthew Mayer " "Nikita Pekin " ]; dependencies = [ { name = "async-trait"; packageId = "async-trait"; } { name = "base64"; packageId = "base64 0.13.1"; } { name = "bytes"; packageId = "bytes"; } { name = "crc32fast"; packageId = "crc32fast"; } { name = "futures"; packageId = "futures"; } { name = "http"; packageId = "http"; } { name = "hyper"; packageId = "hyper"; features = [ "client" "http1" "http2" "tcp" ]; } { name = "hyper-tls"; packageId = "hyper-tls"; optional = true; } { name = "lazy_static"; packageId = "lazy_static"; } { name = "log"; packageId = "log"; } { name = "rusoto_credential"; packageId = "rusoto_credential"; } { name = "rusoto_signature"; packageId = "rusoto_signature"; } { name = "serde"; packageId = "serde"; features = [ "derive" ]; } { name = "serde_json"; packageId = "serde_json"; } { name = "tokio"; packageId = "tokio"; features = [ "time" "io-util" ]; } { name = "xml-rs"; packageId = "xml-rs"; } ]; buildDependencies = [ { name = "rustc_version"; packageId = "rustc_version"; } ]; devDependencies = [ { name = "serde_json"; packageId = "serde_json"; } { name = "tokio"; packageId = "tokio"; features = [ "macros" ]; } ]; features = { "default" = [ "native-tls" ]; "encoding" = [ "flate2" ]; "flate2" = [ "dep:flate2" ]; "hyper-rustls" = [ "dep:hyper-rustls" ]; "hyper-tls" = [ "dep:hyper-tls" ]; "native-tls" = [ "hyper-tls" ]; "nightly-testing" = [ "rusoto_credential/nightly-testing" ]; "rustls" = [ "hyper-rustls/native-tokio" ]; "rustls-webpki" = [ "hyper-rustls/webpki-tokio" ]; }; resolvedDefaultFeatures = [ "default" "hyper-tls" "native-tls" ]; }; "rusoto_credential" = rec { crateName = "rusoto_credential"; version = "0.48.0"; edition = "2018"; sha256 = "019dq3aq6hnfg4xvxdfsnrba08dwvciz0km4nr3n1basvc9nq2pf"; authors = [ "Anthony DiMarco " "Jimmy Cuadra " "Matthew Mayer " "Nikita Pekin " ]; dependencies = [ { name = "async-trait"; packageId = "async-trait"; } { name = "chrono"; packageId = "chrono"; usesDefaultFeatures = false; features = [ "clock" "serde" ]; } { name = "dirs-next"; packageId = "dirs-next"; } { name = "futures"; packageId = "futures"; } { name = "hyper"; packageId = "hyper"; features = [ "client" "http1" "tcp" "stream" ]; } { name = "serde"; packageId = "serde"; features = [ "derive" ]; } { name = "serde_json"; packageId = "serde_json"; } { name = "shlex"; packageId = "shlex"; } { name = "tokio"; packageId = "tokio"; features = [ "process" "sync" "time" ]; } { name = "zeroize"; packageId = "zeroize"; } ]; devDependencies = [ { name = "tokio"; packageId = "tokio"; features = [ "macros" "rt-multi-thread" ]; } ]; features = { }; }; "rusoto_s3" = rec { crateName = "rusoto_s3"; version = "0.48.0"; edition = "2018"; sha256 = "0kdiqljcq1wg26mp0vnn2wwjj0slxya63mhjnjqgc49l31vldbks"; authors = [ "Anthony DiMarco " "Jimmy Cuadra " "Matthew Mayer " "Nikita Pekin " ]; dependencies = [ { name = "async-trait"; packageId = "async-trait"; } { name = "bytes"; packageId = "bytes"; } { name = "futures"; packageId = "futures"; } { name = "rusoto_core"; packageId = "rusoto_core"; usesDefaultFeatures = false; } { name = "xml-rs"; packageId = "xml-rs"; } ]; features = { "default" = [ "native-tls" ]; "deserialize_structs" = [ "bytes/serde" "serde" "serde_derive" ]; "native-tls" = [ "rusoto_core/native-tls" ]; "rustls" = [ "rusoto_core/rustls" ]; "serde" = [ "dep:serde" ]; "serde_derive" = [ "dep:serde_derive" ]; "serialize_structs" = [ "bytes/serde" "serde" "serde_derive" ]; }; resolvedDefaultFeatures = [ "default" "native-tls" ]; }; "rusoto_signature" = rec { crateName = "rusoto_signature"; version = "0.48.0"; edition = "2018"; sha256 = "0wjjn3n3a01xxc1kdwqkrbw6zkgc4w8ia6r93s9lfj4b3i4rbbm5"; authors = [ "Anthony DiMarco " "Jimmy Cuadra " "Matthew Mayer " "Nikita Pekin " ]; dependencies = [ { name = "base64"; packageId = "base64 0.13.1"; } { name = "bytes"; packageId = "bytes"; } { name = "chrono"; packageId = "chrono"; usesDefaultFeatures = false; features = [ "clock" ]; } { name = "digest"; packageId = "digest 0.9.0"; } { name = "futures"; packageId = "futures"; } { name = "hex"; packageId = "hex"; } { name = "hmac"; packageId = "hmac"; } { name = "http"; packageId = "http"; } { name = "hyper"; packageId = "hyper"; features = [ "stream" ]; } { name = "log"; packageId = "log"; } { name = "md-5"; packageId = "md-5"; } { name = "percent-encoding"; packageId = "percent-encoding"; } { name = "pin-project-lite"; packageId = "pin-project-lite"; } { name = "rusoto_credential"; packageId = "rusoto_credential"; } { name = "serde"; packageId = "serde"; } { name = "sha2"; packageId = "sha2 0.9.9"; } { name = "tokio"; packageId = "tokio"; features = [ "macros" "rt-multi-thread" ]; } ]; buildDependencies = [ { name = "rustc_version"; packageId = "rustc_version"; } ]; devDependencies = [ { name = "tokio"; packageId = "tokio"; features = [ "io-util" ]; } ]; }; "rust-ini" = rec { crateName = "rust-ini"; version = "0.18.0"; edition = "2018"; sha256 = "1px22l3m84v7f46pa3p4bsjykivw8ryq6af8kpkzdd16c11z5mgn"; libName = "ini"; authors = [ "Y. T. Chung " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if"; } { name = "ordered-multimap"; packageId = "ordered-multimap"; } ]; features = { "case-insensitive" = [ "unicase" ]; "unicase" = [ "dep:unicase" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "rustc-demangle" = rec { crateName = "rustc-demangle"; version = "0.1.23"; edition = "2015"; sha256 = "0xnbk2bmyzshacjm2g1kd4zzv2y2az14bw3sjccq5qkpmsfvn9nn"; authors = [ "Alex Crichton " ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; "rustc_version" = rec { crateName = "rustc_version"; version = "0.4.0"; edition = "2018"; sha256 = "0rpk9rcdk405xhbmgclsh4pai0svn49x35aggl4nhbkd4a2zb85z"; authors = [ "Dirkjan Ochtman " "Marvin Löbel " ]; dependencies = [ { name = "semver"; packageId = "semver"; } ]; }; "rustix 0.37.25" = rec { crateName = "rustix"; version = "0.37.25"; edition = "2018"; sha256 = "0dd0alaz1q5hwpbg22kjiw5xigij6hf50ky2ww1jqk14a6c5gsyl"; authors = [ "Dan Gohman " "Jakub Konka " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.3.2"; } { name = "errno"; packageId = "errno"; rename = "libc_errno"; optional = true; usesDefaultFeatures = false; target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os") && (("x86" == target."arch") || (("x86_64" == target."arch") && ("64" == target."pointer_width")) || (("little" == target."endian") && (("arm" == target."arch") || (("aarch64" == target."arch") && ("64" == target."pointer_width")) || ("powerpc64" == target."arch") || ("riscv64" == target."arch") || ("mips" == target."arch") || ("mips64" == target."arch"))))); } { name = "errno"; packageId = "errno"; rename = "libc_errno"; usesDefaultFeatures = false; target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os") && (("x86" == target."arch") || (("x86_64" == target."arch") && ("64" == target."pointer_width")) || (("little" == target."endian") && (("arm" == target."arch") || (("aarch64" == target."arch") && ("64" == target."pointer_width")) || ("powerpc64" == target."arch") || ("riscv64" == target."arch") || ("mips" == target."arch") || ("mips64" == target."arch")))))))); } { name = "errno"; packageId = "errno"; rename = "libc_errno"; usesDefaultFeatures = false; target = { target, features }: (target."windows" or false); } { name = "io-lifetimes"; packageId = "io-lifetimes"; optional = true; usesDefaultFeatures = false; features = [ "close" ]; } { name = "libc"; packageId = "libc"; optional = true; target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os") && (("x86" == target."arch") || (("x86_64" == target."arch") && ("64" == target."pointer_width")) || (("little" == target."endian") && (("arm" == target."arch") || (("aarch64" == target."arch") && ("64" == target."pointer_width")) || ("powerpc64" == target."arch") || ("riscv64" == target."arch") || ("mips" == target."arch") || ("mips64" == target."arch"))))); features = [ "extra_traits" ]; } { name = "libc"; packageId = "libc"; target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os") && (("x86" == target."arch") || (("x86_64" == target."arch") && ("64" == target."pointer_width")) || (("little" == target."endian") && (("arm" == target."arch") || (("aarch64" == target."arch") && ("64" == target."pointer_width")) || ("powerpc64" == target."arch") || ("riscv64" == target."arch") || ("mips" == target."arch") || ("mips64" == target."arch")))))))); features = [ "extra_traits" ]; } { name = "linux-raw-sys"; packageId = "linux-raw-sys 0.3.8"; usesDefaultFeatures = false; target = { target, features }: ((("android" == target."os") || ("linux" == target."os")) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os") && (("x86" == target."arch") || (("x86_64" == target."arch") && ("64" == target."pointer_width")) || (("little" == target."endian") && (("arm" == target."arch") || (("aarch64" == target."arch") && ("64" == target."pointer_width")) || ("powerpc64" == target."arch") || ("riscv64" == target."arch") || ("mips" == target."arch") || ("mips64" == target."arch")))))))); features = [ "general" "ioctl" "no_std" ]; } { name = "linux-raw-sys"; packageId = "linux-raw-sys 0.3.8"; usesDefaultFeatures = false; target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os") && (("x86" == target."arch") || (("x86_64" == target."arch") && ("64" == target."pointer_width")) || (("little" == target."endian") && (("arm" == target."arch") || (("aarch64" == target."arch") && ("64" == target."pointer_width")) || ("powerpc64" == target."arch") || ("riscv64" == target."arch") || ("mips" == target."arch") || ("mips64" == target."arch"))))); features = [ "general" "errno" "ioctl" "no_std" ]; } { name = "windows-sys"; packageId = "windows-sys"; target = { target, features }: (target."windows" or false); features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_NetworkManagement_IpHelper" "Win32_System_Threading" ]; } ]; devDependencies = [ { name = "errno"; packageId = "errno"; rename = "libc_errno"; usesDefaultFeatures = false; } { name = "io-lifetimes"; packageId = "io-lifetimes"; usesDefaultFeatures = false; features = [ "close" ]; } { name = "libc"; packageId = "libc"; } ]; features = { "all-apis" = [ "fs" "io_uring" "mm" "net" "param" "process" "procfs" "pty" "rand" "runtime" "termios" "thread" "time" ]; "all-impls" = [ "os_pipe" "fs-err" ]; "alloc" = [ "dep:alloc" ]; "cc" = [ "dep:cc" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "default" = [ "std" "use-libc-auxv" ]; "fs-err" = [ "io-lifetimes/fs-err" ]; "io-lifetimes" = [ "dep:io-lifetimes" ]; "io_uring" = [ "fs" "net" ]; "itoa" = [ "dep:itoa" ]; "libc" = [ "dep:libc" ]; "libc_errno" = [ "dep:libc_errno" ]; "linux_latest" = [ "linux_4_11" ]; "once_cell" = [ "dep:once_cell" ]; "os_pipe" = [ "io-lifetimes/os_pipe" ]; "param" = [ "fs" ]; "procfs" = [ "once_cell" "itoa" "fs" ]; "pty" = [ "itoa" "fs" ]; "rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" ]; "std" = [ "io-lifetimes" ]; "use-libc" = [ "libc_errno" "libc" ]; "use-libc-auxv" = [ "libc" ]; }; resolvedDefaultFeatures = [ "fs" "io-lifetimes" "std" ]; }; "rustix 0.38.19" = rec { crateName = "rustix"; version = "0.38.19"; edition = "2021"; sha256 = "1vc61v3pgg4zhzwnpf5h0gl0k8gfw0vcnqcar1ijnsz6g2kwypkl"; authors = [ "Dan Gohman " "Jakub Konka " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 2.4.0"; usesDefaultFeatures = false; } { name = "errno"; packageId = "errno"; rename = "libc_errno"; optional = true; usesDefaultFeatures = false; target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os") && ("little" == target."endian") && (("arm" == target."arch") || (("aarch64" == target."arch") && ("64" == target."pointer_width")) || ("riscv64" == target."arch") || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch")) || ("x86" == target."arch") || (("x86_64" == target."arch") && ("64" == target."pointer_width")))); } { name = "errno"; packageId = "errno"; rename = "libc_errno"; usesDefaultFeatures = false; target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os") && ("little" == target."endian") && (("arm" == target."arch") || (("aarch64" == target."arch") && ("64" == target."pointer_width")) || ("riscv64" == target."arch") || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch")) || ("x86" == target."arch") || (("x86_64" == target."arch") && ("64" == target."pointer_width"))))))); } { name = "errno"; packageId = "errno"; rename = "libc_errno"; usesDefaultFeatures = false; target = { target, features }: (target."windows" or false); } { name = "libc"; packageId = "libc"; optional = true; usesDefaultFeatures = false; target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os") && ("little" == target."endian") && (("arm" == target."arch") || (("aarch64" == target."arch") && ("64" == target."pointer_width")) || ("riscv64" == target."arch") || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch")) || ("x86" == target."arch") || (("x86_64" == target."arch") && ("64" == target."pointer_width")))); features = [ "extra_traits" ]; } { 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") && ("little" == target."endian") && (("arm" == target."arch") || (("aarch64" == target."arch") && ("64" == target."pointer_width")) || ("riscv64" == target."arch") || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch")) || ("x86" == target."arch") || (("x86_64" == target."arch") && ("64" == target."pointer_width"))))))); features = [ "extra_traits" ]; } { name = "linux-raw-sys"; packageId = "linux-raw-sys 0.4.10"; usesDefaultFeatures = false; target = { target, features }: ((("android" == target."os") || ("linux" == target."os")) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os") && ("little" == target."endian") && (("arm" == target."arch") || (("aarch64" == target."arch") && ("64" == target."pointer_width")) || ("riscv64" == target."arch") || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch")) || ("x86" == target."arch") || (("x86_64" == target."arch") && ("64" == target."pointer_width"))))))); features = [ "general" "ioctl" "no_std" ]; } { name = "linux-raw-sys"; packageId = "linux-raw-sys 0.4.10"; usesDefaultFeatures = false; target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os") && ("little" == target."endian") && (("arm" == target."arch") || (("aarch64" == target."arch") && ("64" == target."pointer_width")) || ("riscv64" == target."arch") || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch")) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch")) || ("x86" == target."arch") || (("x86_64" == target."arch") && ("64" == target."pointer_width")))); features = [ "general" "errno" "ioctl" "no_std" "elf" ]; } { name = "windows-sys"; packageId = "windows-sys"; target = { target, features }: (target."windows" or false); features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_NetworkManagement_IpHelper" "Win32_System_Threading" ]; } ]; devDependencies = [ { name = "errno"; packageId = "errno"; rename = "libc_errno"; usesDefaultFeatures = false; } { name = "libc"; packageId = "libc"; } ]; features = { "all-apis" = [ "event" "fs" "io_uring" "mm" "mount" "net" "param" "pipe" "process" "procfs" "pty" "rand" "runtime" "shm" "stdio" "system" "termios" "thread" "time" ]; "default" = [ "std" "use-libc-auxv" ]; "io_uring" = [ "event" "fs" "net" "linux-raw-sys/io_uring" ]; "itoa" = [ "dep:itoa" ]; "libc" = [ "dep:libc" ]; "libc_errno" = [ "dep:libc_errno" ]; "linux_latest" = [ "linux_4_11" ]; "net" = [ "linux-raw-sys/net" "linux-raw-sys/netlink" "linux-raw-sys/if_ether" ]; "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" = [ "dep:core" "dep:alloc" "dep:compiler_builtins" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" "compiler_builtins?/rustc-dep-of-std" ]; "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" "process" "std" "use-libc-auxv" ]; }; "ryu" = rec { crateName = "ryu"; version = "1.0.15"; edition = "2018"; sha256 = "0hfphpn1xnpzxwj8qg916ga1lyc33lc03lnf1gb3wwpglj6wrm0s"; authors = [ "David Tolnay " ]; features = { "no-panic" = [ "dep:no-panic" ]; }; }; "safemem" = rec { crateName = "safemem"; version = "0.3.3"; edition = "2015"; sha256 = "0wp0d2b2284lw11xhybhaszsczpbq1jbdklkxgifldcknmy3nw7g"; authors = [ "Austin Bonander " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "same-file" = rec { crateName = "same-file"; version = "1.0.6"; edition = "2018"; sha256 = "00h5j1w87dmhnvbv9l8bic3y7xxsnjmssvifw2ayvgx9mb1ivz4k"; authors = [ "Andrew Gallant " ]; dependencies = [ { name = "winapi-util"; packageId = "winapi-util"; target = { target, features }: (target."windows" or false); } ]; }; "schannel" = rec { crateName = "schannel"; version = "0.1.22"; edition = "2018"; sha256 = "126zy5jb95fc5hvzyjwiq6lc81r08rdcn6affn00ispp9jzk6dqc"; authors = [ "Steven Fackler " "Steffen Butzer " ]; dependencies = [ { name = "windows-sys"; packageId = "windows-sys"; features = [ "Win32_Foundation" "Win32_Security_Cryptography" "Win32_Security_Authentication_Identity" "Win32_Security_Credentials" "Win32_System_Memory" ]; } ]; devDependencies = [ { name = "windows-sys"; packageId = "windows-sys"; features = [ "Win32_System_SystemInformation" "Win32_System_Time" ]; } ]; }; "security-framework" = rec { crateName = "security-framework"; version = "2.9.2"; edition = "2021"; sha256 = "1pplxk15s5yxvi2m1sz5xfmjibp96cscdcl432w9jzbk0frlzdh5"; authors = [ "Steven Fackler " "Kornel " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.3.2"; } { name = "core-foundation"; packageId = "core-foundation"; } { name = "core-foundation-sys"; packageId = "core-foundation-sys"; } { name = "libc"; packageId = "libc"; } { name = "security-framework-sys"; packageId = "security-framework-sys"; usesDefaultFeatures = false; } ]; features = { "OSX_10_10" = [ "OSX_10_9" "security-framework-sys/OSX_10_10" ]; "OSX_10_11" = [ "OSX_10_10" "security-framework-sys/OSX_10_11" ]; "OSX_10_12" = [ "OSX_10_11" "security-framework-sys/OSX_10_12" ]; "OSX_10_13" = [ "OSX_10_12" "security-framework-sys/OSX_10_13" "alpn" "session-tickets" "serial-number-bigint" ]; "OSX_10_14" = [ "OSX_10_13" "security-framework-sys/OSX_10_14" ]; "OSX_10_15" = [ "OSX_10_14" "security-framework-sys/OSX_10_15" ]; "OSX_10_9" = [ "security-framework-sys/OSX_10_9" ]; "default" = [ "OSX_10_9" ]; "log" = [ "dep:log" ]; "serial-number-bigint" = [ "dep:num-bigint" ]; }; resolvedDefaultFeatures = [ "OSX_10_9" "default" ]; }; "security-framework-sys" = rec { crateName = "security-framework-sys"; version = "2.9.1"; edition = "2021"; sha256 = "0yhciwlsy9dh0ps1gw3197kvyqx1bvc4knrhiznhid6kax196cp9"; authors = [ "Steven Fackler " "Kornel " ]; 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_9" ]; }; resolvedDefaultFeatures = [ "OSX_10_9" "default" ]; }; "semver" = rec { crateName = "semver"; version = "1.0.20"; edition = "2018"; sha256 = "140hmbfa743hbmah1zjf07s8apavhvn04204qjigjiz5w6iscvw3"; authors = [ "David Tolnay " ]; features = { "default" = [ "std" ]; "serde" = [ "dep:serde" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "serde" = rec { crateName = "serde"; version = "1.0.189"; edition = "2018"; sha256 = "0dq542wki7rn2inhg70f35qjzd8aayjfkvcfvhdh1m2awx22lhlf"; authors = [ "Erick Tryzelaar " "David Tolnay " ]; 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_derive" = rec { crateName = "serde_derive"; version = "1.0.189"; edition = "2015"; sha256 = "1m9j5f5dd010arr75mipj4ykngk1ipv8qdqialaf770033wx2j0y"; procMacro = true; authors = [ "Erick Tryzelaar " "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 2.0.38"; } ]; features = { }; resolvedDefaultFeatures = [ "default" ]; }; "serde_json" = rec { crateName = "serde_json"; version = "1.0.107"; edition = "2021"; sha256 = "0r8cyb8nh3afb15yfscp1h8sdjfv6pnnwg14kcp8igfqwgk0qhkb"; authors = [ "Erick Tryzelaar " "David Tolnay " ]; dependencies = [ { name = "itoa"; packageId = "itoa"; } { 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" = [ "serde/std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "sha2 0.10.8" = rec { crateName = "sha2"; version = "0.10.8"; edition = "2018"; sha256 = "1j1x78zk9il95w9iv46dh9wm73r6xrgj32y6lzzw7bxws9dbfgbr"; authors = [ "RustCrypto Developers" ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if"; } { name = "cpufeatures"; packageId = "cpufeatures"; target = { target, features }: (("aarch64" == target."arch") || ("x86_64" == target."arch") || ("x86" == target."arch")); } { 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") || ("x86_64" == target."arch") || ("x86" == target."arch")); } { 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" ]; }; "shlex" = rec { crateName = "shlex"; version = "1.2.0"; edition = "2015"; sha256 = "1033pj9dyb76nm5yv597nnvj3zpvr2aw9rm5wy0gah3dk99f1km7"; authors = [ "comex " "Fenhl " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "signal-hook-registry" = rec { crateName = "signal-hook-registry"; version = "1.4.1"; edition = "2015"; sha256 = "18crkkw5k82bvcx088xlf5g4n3772m24qhzgfan80nda7d3rn8nq"; authors = [ "Michal 'vorner' Vaner " "Masaki Hara " ]; dependencies = [ { name = "libc"; packageId = "libc"; } ]; }; "slab" = rec { crateName = "slab"; version = "0.4.9"; edition = "2018"; sha256 = "0rxvsgir0qw5lkycrqgb1cxsvxzjv9bmx73bk5y42svnzfba94lg"; authors = [ "Carl Lerche " ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg"; } ]; features = { "default" = [ "std" ]; "serde" = [ "dep:serde" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "smol" = rec { crateName = "smol"; version = "1.3.0"; edition = "2018"; sha256 = "18c7d7n9dl5h0isf81cs0g3ly3zp54lmj76z1zgghiw4rm4bbwhk"; authors = [ "Stjepan Glavina " ]; dependencies = [ { name = "async-channel"; packageId = "async-channel"; } { name = "async-executor"; packageId = "async-executor"; } { name = "async-fs"; packageId = "async-fs"; } { name = "async-io"; packageId = "async-io"; } { name = "async-lock"; packageId = "async-lock"; } { name = "async-net"; packageId = "async-net"; } { name = "async-process"; packageId = "async-process"; } { name = "blocking"; packageId = "blocking"; } { name = "futures-lite"; packageId = "futures-lite"; } ]; }; "socket2 0.4.9" = rec { crateName = "socket2"; version = "0.4.9"; edition = "2018"; sha256 = "0qnn1r41jqj20m0a2nzzjgzndlmpg5maiyjchccaypfqxq8sk934"; authors = [ "Alex Crichton " "Thomas de Zeeuw " ]; 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" "ws2ipdef" "ws2tcpip" ]; } ]; features = { }; resolvedDefaultFeatures = [ "all" ]; }; "socket2 0.5.4" = rec { crateName = "socket2"; version = "0.5.4"; edition = "2021"; sha256 = "17lqx8w2b3nysrkdbdz8y7fkikz5v77c052q57lxwajmxchfhca0"; authors = [ "Alex Crichton " "Thomas de Zeeuw " ]; dependencies = [ { name = "libc"; packageId = "libc"; target = { target, features }: (target."unix" or false); } { name = "windows-sys"; packageId = "windows-sys"; 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" ]; }; "strsim" = rec { crateName = "strsim"; version = "0.8.0"; edition = "2015"; sha256 = "0sjsm7hrvjdifz661pjxq5w4hf190hx53fra8dfvamacvff139cf"; authors = [ "Danny Guo " ]; }; "structopt" = rec { crateName = "structopt"; version = "0.3.26"; edition = "2018"; sha256 = "043sg3qxllann6q9i71d05qp3q13scmcvhxhd950ka2v8ij5qsqc"; authors = [ "Guillaume Pinot " "others" ]; dependencies = [ { name = "clap"; packageId = "clap"; usesDefaultFeatures = false; } { name = "lazy_static"; packageId = "lazy_static"; } { name = "structopt-derive"; packageId = "structopt-derive"; } ]; features = { "color" = [ "clap/color" ]; "debug" = [ "clap/debug" ]; "default" = [ "clap/default" ]; "doc" = [ "clap/doc" ]; "lints" = [ "clap/lints" ]; "no_cargo" = [ "clap/no_cargo" ]; "paw" = [ "structopt-derive/paw" "paw_dep" ]; "paw_dep" = [ "dep:paw_dep" ]; "suggestions" = [ "clap/suggestions" ]; "wrap_help" = [ "clap/wrap_help" ]; "yaml" = [ "clap/yaml" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "structopt-derive" = rec { crateName = "structopt-derive"; version = "0.4.18"; edition = "2018"; sha256 = "1q5gcigmvw0cinjxzpyrkflliq5r1ivljmrvfrl3phcwgwraxdfw"; procMacro = true; authors = [ "Guillaume Pinot " ]; dependencies = [ { name = "heck"; packageId = "heck"; } { name = "proc-macro-error"; packageId = "proc-macro-error"; } { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 1.0.109"; features = [ "full" ]; } ]; features = { }; }; "subtle" = rec { crateName = "subtle"; version = "2.4.1"; edition = "2015"; sha256 = "00b6jzh9gzb0h9n25g06nqr90z3xzqppfhhb260s1hjhh4pg7pkb"; authors = [ "Isis Lovecruft " "Henry de Valence " ]; features = { "default" = [ "std" "i128" ]; }; }; "syn 1.0.109" = rec { crateName = "syn"; version = "1.0.109"; edition = "2018"; sha256 = "0ds2if4600bd59wsv7jjgfkayfzy3hnazs394kz6zdkmna8l3dkj"; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; usesDefaultFeatures = false; } { name = "quote"; packageId = "quote"; optional = true; usesDefaultFeatures = false; } { name = "unicode-ident"; packageId = "unicode-ident"; } ]; features = { "default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ]; "printing" = [ "quote" ]; "proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ]; "quote" = [ "dep:quote" ]; "test" = [ "syn-test-suite/all-features" ]; }; resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "full" "parsing" "printing" "proc-macro" "quote" ]; }; "syn 2.0.38" = rec { crateName = "syn"; version = "2.0.38"; edition = "2021"; sha256 = "12s06bi068scc4fpv2x2bp3lx2vxnk4s0qv3w9hqznrpl6m7jsz9"; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; usesDefaultFeatures = false; } { name = "quote"; packageId = "quote"; optional = true; usesDefaultFeatures = false; } { name = "unicode-ident"; packageId = "unicode-ident"; } ]; features = { "default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ]; "printing" = [ "quote" ]; "proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ]; "quote" = [ "dep:quote" ]; "test" = [ "syn-test-suite/all-features" ]; }; resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "full" "parsing" "printing" "proc-macro" "quote" "visit" "visit-mut" ]; }; "syntect" = rec { crateName = "syntect"; version = "5.1.0"; edition = "2018"; sha256 = "14cg314vzabi45cdbqgcpav0dlx3d18blp24n3z8pl7q7cq4naz0"; authors = [ "Tristan Hume " ]; dependencies = [ { name = "bincode"; packageId = "bincode"; optional = true; } { name = "bitflags"; packageId = "bitflags 1.3.2"; } { name = "flate2"; packageId = "flate2"; optional = true; } { name = "fnv"; packageId = "fnv"; optional = true; } { name = "once_cell"; packageId = "once_cell"; } { name = "onig"; packageId = "onig"; optional = true; usesDefaultFeatures = false; } { name = "plist"; packageId = "plist"; optional = true; } { name = "regex-syntax"; packageId = "regex-syntax"; optional = true; } { name = "serde"; packageId = "serde"; features = [ "derive" ]; } { name = "serde_json"; packageId = "serde_json"; } { name = "thiserror"; packageId = "thiserror"; } { name = "walkdir"; packageId = "walkdir"; } { name = "yaml-rust"; packageId = "yaml-rust"; optional = true; } ]; features = { "bincode" = [ "dep:bincode" ]; "default" = [ "default-onig" ]; "default-fancy" = [ "parsing" "default-syntaxes" "default-themes" "html" "plist-load" "yaml-load" "dump-load" "dump-create" "regex-fancy" ]; "default-onig" = [ "parsing" "default-syntaxes" "default-themes" "html" "plist-load" "yaml-load" "dump-load" "dump-create" "regex-onig" ]; "default-syntaxes" = [ "parsing" "dump-load" ]; "default-themes" = [ "dump-load" ]; "dump-create" = [ "flate2" "bincode" ]; "dump-load" = [ "flate2" "bincode" ]; "fancy-regex" = [ "dep:fancy-regex" ]; "flate2" = [ "dep:flate2" ]; "fnv" = [ "dep:fnv" ]; "html" = [ "parsing" ]; "metadata" = [ "parsing" "plist-load" ]; "onig" = [ "dep:onig" ]; "parsing" = [ "regex-syntax" "fnv" "dump-create" "dump-load" ]; "plist" = [ "dep:plist" ]; "plist-load" = [ "plist" ]; "regex-fancy" = [ "fancy-regex" ]; "regex-onig" = [ "onig" ]; "regex-syntax" = [ "dep:regex-syntax" ]; "yaml-load" = [ "yaml-rust" "parsing" ]; "yaml-rust" = [ "dep:yaml-rust" ]; }; resolvedDefaultFeatures = [ "bincode" "default" "default-onig" "default-syntaxes" "default-themes" "dump-create" "dump-load" "flate2" "fnv" "html" "onig" "parsing" "plist" "plist-load" "regex-onig" "regex-syntax" "yaml-load" "yaml-rust" ]; }; "tempfile" = rec { crateName = "tempfile"; version = "3.8.0"; edition = "2018"; sha256 = "1vsl2193w3gpx3mwj36fwx3v6q2qyvmzrdn6m8fgfsjkrkrx556b"; authors = [ "Steven Allen " "The Rust Project Developers" "Ashley Mannix " "Jason White " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if"; } { name = "fastrand"; packageId = "fastrand 2.0.1"; } { name = "redox_syscall"; packageId = "redox_syscall 0.3.5"; target = { target, features }: ("redox" == target."os"); } { name = "rustix"; packageId = "rustix 0.38.19"; target = { target, features }: ((target."unix" or false) || ("wasi" == target."os")); features = [ "fs" ]; } { name = "windows-sys"; packageId = "windows-sys"; target = { target, features }: (target."windows" or false); features = [ "Win32_Storage_FileSystem" "Win32_Foundation" ]; } ]; features = { }; }; "textwrap" = rec { crateName = "textwrap"; version = "0.11.0"; edition = "2015"; sha256 = "0q5hky03ik3y50s9sz25r438bc4nwhqc6dqwynv4wylc807n29nk"; authors = [ "Martin Geisler " ]; dependencies = [ { name = "unicode-width"; packageId = "unicode-width"; } ]; features = { "hyphenation" = [ "dep:hyphenation" ]; "term_size" = [ "dep:term_size" ]; }; }; "thiserror" = rec { crateName = "thiserror"; version = "1.0.49"; edition = "2021"; sha256 = "1m3yalbcx89bx397igc1ckypw8hiwq9jbzc56pgazrzdsz3fhxqi"; authors = [ "David Tolnay " ]; dependencies = [ { name = "thiserror-impl"; packageId = "thiserror-impl"; } ]; }; "thiserror-impl" = rec { crateName = "thiserror-impl"; version = "1.0.49"; edition = "2021"; sha256 = "1k643ga9sbqpcb873n299n3zjzc4srfakyv98xwqi4ly0412yw8h"; procMacro = true; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 2.0.38"; } ]; }; "time" = rec { crateName = "time"; version = "0.3.30"; edition = "2021"; sha256 = "1xgnflidij6361zjg4mzz4lqndayq1ph82n1cbjydppj02rlm8y4"; authors = [ "Jacob Pratt " "Time contributors" ]; dependencies = [ { name = "deranged"; packageId = "deranged"; usesDefaultFeatures = false; features = [ "powerfmt" ]; } { name = "itoa"; packageId = "itoa"; optional = true; } { 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 = "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.2"; edition = "2021"; sha256 = "1wx3qizcihw6z151hywfzzyd1y5dl804ydyxci6qm07vbakpr4pg"; authors = [ "Jacob Pratt " "Time contributors" ]; }; "time-macros" = rec { crateName = "time-macros"; version = "0.2.15"; edition = "2021"; sha256 = "086frcn3m2yh3fji3wv9r35c3zjxjq8ngam7xnngiqd9vdl0vmsa"; procMacro = true; authors = [ "Jacob Pratt " "Time contributors" ]; dependencies = [ { name = "time-core"; packageId = "time-core"; } ]; features = { }; resolvedDefaultFeatures = [ "formatting" "parsing" ]; }; "tinytemplate" = rec { crateName = "tinytemplate"; version = "1.2.1"; edition = "2015"; sha256 = "1g5n77cqkdh9hy75zdb01adxn45mkh9y40wdr7l68xpz35gnnkdy"; authors = [ "Brook Heisler " ]; dependencies = [ { name = "serde"; packageId = "serde"; } { name = "serde_json"; packageId = "serde_json"; } ]; }; "tokio" = rec { crateName = "tokio"; version = "1.33.0"; edition = "2021"; sha256 = "0lynj8nfqziviw72qns9mjlhmnm66bsc5bivy5g5x6gp7q720f2g"; authors = [ "Tokio Contributors " ]; 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 = "num_cpus"; packageId = "num_cpus"; optional = true; } { name = "pin-project-lite"; packageId = "pin-project-lite"; } { name = "signal-hook-registry"; packageId = "signal-hook-registry"; optional = true; target = { target, features }: (target."unix" or false); } { name = "socket2"; packageId = "socket2 0.5.4"; 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"; optional = true; target = { target, features }: (target."windows" or false); } ]; devDependencies = [ { name = "libc"; packageId = "libc"; target = {target, features}: (target."unix" or false); } { name = "socket2"; packageId = "socket2 0.5.4"; target = {target, features}: (!(builtins.elem "wasm" target."family")); } { name = "windows-sys"; packageId = "windows-sys"; 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" ]; "num_cpus" = [ "dep:num_cpus" ]; "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" = [ "num_cpus" "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" "io-util" "libc" "macros" "mio" "net" "num_cpus" "process" "rt" "rt-multi-thread" "signal-hook-registry" "socket2" "sync" "time" "tokio-macros" "windows-sys" ]; }; "tokio-macros" = rec { crateName = "tokio-macros"; version = "2.1.0"; edition = "2018"; sha256 = "0pk7y9dfanab886iaqwcbri39jkw33kgl7y07v0kg1pp8prdq2v3"; procMacro = true; authors = [ "Tokio Contributors " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 2.0.38"; features = [ "full" ]; } ]; }; "tokio-native-tls" = rec { crateName = "tokio-native-tls"; version = "0.3.1"; edition = "2018"; sha256 = "1wkfg6zn85zckmv4im7mv20ca6b1vmlib5xwz9p7g19wjfmpdbmv"; authors = [ "Tokio Contributors " ]; 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-util" = rec { crateName = "tokio-util"; version = "0.7.9"; edition = "2021"; sha256 = "03d63ivnd8pwi6qzrlw0gyqkiawq5vmkb5sdb4hhnypm4130fs0x"; authors = [ "Tokio Contributors " ]; 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" ]; } { name = "tracing"; packageId = "tracing"; optional = true; usesDefaultFeatures = false; features = [ "std" ]; } ]; devDependencies = [ { name = "tokio"; packageId = "tokio"; features = [ "full" ]; } ]; features = { "__docs_rs" = [ "futures-util" ]; "codec" = [ "tracing" ]; "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" "tracing" ]; }; "toml" = rec { crateName = "toml"; version = "0.5.11"; edition = "2018"; sha256 = "0d2266nx8b3n22c7k24x4428z6di8n83a9n466jm7a2hipfz1xzl"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "serde"; packageId = "serde"; } ]; features = { "indexmap" = [ "dep:indexmap" ]; "preserve_order" = [ "indexmap" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "tower-service" = rec { crateName = "tower-service"; version = "0.3.2"; edition = "2018"; sha256 = "0lmfzmmvid2yp2l36mbavhmqgsvzqf7r2wiwz73ml4xmwaf1rg5n"; authors = [ "Tower Maintainers " ]; }; "tracing" = rec { crateName = "tracing"; version = "0.1.39"; edition = "2018"; sha256 = "1ycp0zgl6icv823dns58xp3lw2pdvlpwxbrhsk0m0sl5hjpz4bpf"; authors = [ "Eliza Weisman " "Tokio Contributors " ]; 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.32"; edition = "2018"; sha256 = "0m5aglin3cdwxpvbg6kz0r9r0k31j48n0kcfwsp6l49z26k3svf0"; authors = [ "Tokio Contributors " ]; 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.4"; edition = "2015"; sha256 = "1vc15paa4zi06ixsxihwbvfn24d708nsyg1ncgqwcrn42byyqa1m"; authors = [ "Sean McArthur " ]; }; "typenum" = rec { crateName = "typenum"; version = "1.17.0"; edition = "2018"; sha256 = "09dqxv69m9lj9zvv6xw5vxaqx15ps0vxyy5myg33i0kbqvq0pzs2"; build = "build/main.rs"; authors = [ "Paho Lurie-Gregg " "Andre Bogus " ]; features = { "scale-info" = [ "dep:scale-info" ]; "scale_info" = [ "scale-info/derive" ]; }; }; "ucd-trie" = rec { crateName = "ucd-trie"; version = "0.1.6"; edition = "2021"; sha256 = "1ff4yfksirqs37ybin9aw71aa5gva00hw7jdxbw8w668zy964r7d"; authors = [ "Andrew Gallant " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "unicase" = rec { crateName = "unicase"; version = "2.7.0"; edition = "2015"; sha256 = "12gd74j79f94k4clxpf06l99wiv4p30wjr0qm04ihqk9zgdd9lpp"; authors = [ "Sean McArthur " ]; buildDependencies = [ { name = "version_check"; packageId = "version_check"; } ]; features = { }; }; "unicode-ident" = rec { crateName = "unicode-ident"; version = "1.0.12"; edition = "2018"; sha256 = "0jzf1znfpb2gx8nr8mvmyqs1crnv79l57nxnbiszc7xf7ynbjm1k"; authors = [ "David Tolnay " ]; }; "unicode-segmentation" = rec { crateName = "unicode-segmentation"; version = "1.10.1"; edition = "2018"; sha256 = "0dky2hm5k51xy11hc3nk85p533rvghd462b6i0c532b7hl4j9mhx"; authors = [ "kwantam " "Manish Goregaokar " ]; features = { }; }; "unicode-width" = rec { crateName = "unicode-width"; version = "0.1.11"; edition = "2015"; sha256 = "11ds4ydhg8g7l06rlmh712q41qsrd0j0h00n1jm74kww3kqk65z5"; authors = [ "kwantam " "Manish Goregaokar " ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "std" "core" "compiler_builtins" ]; "std" = [ "dep:std" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "vcpkg" = rec { crateName = "vcpkg"; version = "0.2.15"; edition = "2015"; sha256 = "09i4nf5y8lig6xgj3f7fyrvzd3nlaw4znrihw8psidvv5yk4xkdc"; authors = [ "Jim McGrath " ]; }; "vec_map" = rec { crateName = "vec_map"; version = "0.8.2"; edition = "2015"; sha256 = "1481w9g1dw9rxp3l6snkdqihzyrd2f8vispzqmwjwsdyhw8xzggi"; authors = [ "Alex Crichton " "Jorge Aparicio " "Alexis Beingessner " "Brian Anderson <>" "tbu- <>" "Manish Goregaokar <>" "Aaron Turon " "Adolfo Ochagavía <>" "Niko Matsakis <>" "Steven Fackler <>" "Chase Southwood " "Eduard Burtescu <>" "Florian Wilkens <>" "Félix Raimundo <>" "Tibor Benke <>" "Markus Siemens " "Josh Branchaud " "Huon Wilson " "Corey Farwell " "Aaron Liblong <>" "Nick Cameron " "Patrick Walton " "Felix S Klock II <>" "Andrew Paseltiner " "Sean McArthur " "Vadim Petrochenkov <>" ]; features = { "eders" = [ "serde" ]; "serde" = [ "dep:serde" ]; }; }; "version_check" = rec { crateName = "version_check"; version = "0.9.4"; edition = "2015"; sha256 = "0gs8grwdlgh0xq660d7wr80x14vxbizmd8dbp29p2pdncx8lp1s9"; authors = [ "Sergio Benitez " ]; }; "waker-fn" = rec { crateName = "waker-fn"; version = "1.1.1"; edition = "2018"; sha256 = "142n74wlmpwcazfb5v7vhnzj3lb3r97qy8mzpjdpg345aizm3i7k"; authors = [ "Stjepan Glavina " ]; }; "walkdir" = rec { crateName = "walkdir"; version = "2.4.0"; edition = "2018"; sha256 = "1vjl9fmfc4v8k9ald23qrpcbyb8dl1ynyq8d516cm537r1yqa7fp"; authors = [ "Andrew Gallant " ]; 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 " ]; dependencies = [ { name = "try-lock"; packageId = "try-lock"; } ]; }; "wasi" = rec { crateName = "wasi"; version = "0.11.0+wasi-snapshot-preview1"; edition = "2018"; sha256 = "08z4hxwkpdpalxjps1ai9y7ihin26y9f476i53dv98v45gkqg3cw"; authors = [ "The Cranelift Project Developers" ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "default" = [ "std" ]; "rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ]; "rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "wasm-bindgen" = rec { crateName = "wasm-bindgen"; version = "0.2.87"; edition = "2018"; sha256 = "0hm3k42gcnrps2jh339h186scx1radqy1w7v1zwb333dncmaf1kp"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if"; } { name = "wasm-bindgen-macro"; packageId = "wasm-bindgen-macro"; } ]; features = { "default" = [ "spans" "std" ]; "enable-interning" = [ "std" ]; "gg-alloc" = [ "wasm-bindgen-test/gg-alloc" ]; "serde" = [ "dep:serde" ]; "serde-serialize" = [ "serde" "serde_json" "std" ]; "serde_json" = [ "dep:serde_json" ]; "spans" = [ "wasm-bindgen-macro/spans" ]; "strict-macro" = [ "wasm-bindgen-macro/strict-macro" ]; "xxx_debug_only_print_generated_code" = [ "wasm-bindgen-macro/xxx_debug_only_print_generated_code" ]; }; resolvedDefaultFeatures = [ "default" "spans" "std" ]; }; "wasm-bindgen-backend" = rec { crateName = "wasm-bindgen-backend"; version = "0.2.87"; edition = "2018"; sha256 = "1gcsh3bjxhw3cirmin45107pcsnn0ymhkxg6bxg65s8hqp9vdwjy"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "bumpalo"; packageId = "bumpalo"; } { name = "log"; packageId = "log"; } { name = "once_cell"; packageId = "once_cell"; } { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 2.0.38"; features = [ "full" ]; } { name = "wasm-bindgen-shared"; packageId = "wasm-bindgen-shared"; } ]; features = { "extra-traits" = [ "syn/extra-traits" ]; }; resolvedDefaultFeatures = [ "spans" ]; }; "wasm-bindgen-macro" = rec { crateName = "wasm-bindgen-macro"; version = "0.2.87"; edition = "2018"; sha256 = "07cg0b6zkcxa1yg1n10h62paid59s9zr8yss214bv8w2b7jrbr6y"; procMacro = true; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "quote"; packageId = "quote"; } { name = "wasm-bindgen-macro-support"; packageId = "wasm-bindgen-macro-support"; } ]; features = { "spans" = [ "wasm-bindgen-macro-support/spans" ]; "strict-macro" = [ "wasm-bindgen-macro-support/strict-macro" ]; }; resolvedDefaultFeatures = [ "spans" ]; }; "wasm-bindgen-macro-support" = rec { crateName = "wasm-bindgen-macro-support"; version = "0.2.87"; edition = "2018"; sha256 = "0yqc46pr6mlgb9bsnfdnd50qvsqnrz8g5243fnaz0rb7lhc1ns2l"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 2.0.38"; features = [ "visit" "full" ]; } { name = "wasm-bindgen-backend"; packageId = "wasm-bindgen-backend"; } { name = "wasm-bindgen-shared"; packageId = "wasm-bindgen-shared"; } ]; features = { "extra-traits" = [ "syn/extra-traits" ]; "spans" = [ "wasm-bindgen-backend/spans" ]; }; resolvedDefaultFeatures = [ "spans" ]; }; "wasm-bindgen-shared" = rec { crateName = "wasm-bindgen-shared"; version = "0.2.87"; edition = "2018"; sha256 = "18bmjwvfyhvlq49nzw6mgiyx4ys350vps4cmx5gvzckh91dd0sna"; authors = [ "The wasm-bindgen Developers" ]; }; "winapi" = rec { crateName = "winapi"; version = "0.3.9"; edition = "2015"; sha256 = "06gl025x418lchw1wxj64ycr7gha83m44cjr5sarhynd9xkrm0sw"; authors = [ "Peter Atashian " ]; dependencies = [ { name = "winapi-i686-pc-windows-gnu"; packageId = "winapi-i686-pc-windows-gnu"; target = { target, features }: (pkgs.rust.lib.toRustTarget stdenv.hostPlatform == "i686-pc-windows-gnu"); } { name = "winapi-x86_64-pc-windows-gnu"; packageId = "winapi-x86_64-pc-windows-gnu"; target = { target, features }: (pkgs.rust.lib.toRustTarget stdenv.hostPlatform == "x86_64-pc-windows-gnu"); } ]; features = { "debug" = [ "impl-debug" ]; }; resolvedDefaultFeatures = [ "consoleapi" "errhandlingapi" "fileapi" "handleapi" "knownfolders" "minwinbase" "minwindef" "objbase" "processenv" "shlobj" "std" "sysinfoapi" "winbase" "wincon" "winerror" "winnt" "ws2ipdef" "ws2tcpip" ]; }; "winapi-i686-pc-windows-gnu" = rec { crateName = "winapi-i686-pc-windows-gnu"; version = "0.4.0"; edition = "2015"; sha256 = "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc"; authors = [ "Peter Atashian " ]; }; "winapi-util" = rec { crateName = "winapi-util"; version = "0.1.6"; edition = "2021"; sha256 = "15i5lm39wd44004i9d5qspry2cynkrpvwzghr6s2c3dsk28nz7pj"; authors = [ "Andrew Gallant " ]; dependencies = [ { name = "winapi"; packageId = "winapi"; target = { target, features }: (target."windows" or false); features = [ "std" "consoleapi" "errhandlingapi" "fileapi" "minwindef" "processenv" "sysinfoapi" "winbase" "wincon" "winerror" "winnt" ]; } ]; }; "winapi-x86_64-pc-windows-gnu" = rec { crateName = "winapi-x86_64-pc-windows-gnu"; version = "0.4.0"; edition = "2015"; sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki"; authors = [ "Peter Atashian " ]; }; "windows" = rec { crateName = "windows"; version = "0.48.0"; edition = "2018"; sha256 = "03vh89ilnxdxdh0n9np4ns4m10fvm93h3b0cc05ipg3qq1mqi1p6"; authors = [ "Microsoft" ]; dependencies = [ { name = "windows-targets"; packageId = "windows-targets"; } ]; 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" ]; "Wdk_System" = [ "Wdk" ]; "Wdk_System_OfflineRegistry" = [ "Wdk_System" ]; "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_Tv" = [ "Win32_Media_DirectShow" ]; "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_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_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_Metadata" = [ "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" ]; "Win32_Web" = [ "Win32" ]; "Win32_Web_InternetExplorer" = [ "Win32_Web" ]; "implement" = [ "windows-implement" "windows-interface" ]; "windows-implement" = [ "dep:windows-implement" ]; "windows-interface" = [ "dep:windows-interface" ]; }; resolvedDefaultFeatures = [ "Globalization" "default" ]; }; "windows-sys" = rec { crateName = "windows-sys"; version = "0.48.0"; edition = "2018"; sha256 = "1aan23v5gs7gya1lc46hqn9mdh8yph3fhxmhxlw36pn6pqc28zb7"; authors = [ "Microsoft" ]; dependencies = [ { name = "windows-targets"; packageId = "windows-targets"; } ]; 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_NetworkManagement" "Win32_NetworkManagement_IpHelper" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Security_Authentication" "Win32_Security_Authentication_Identity" "Win32_Security_Credentials" "Win32_Security_Cryptography" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Console" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "Win32_System_IO" "Win32_System_LibraryLoader" "Win32_System_Memory" "Win32_System_Pipes" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ]; }; "windows-targets" = rec { crateName = "windows-targets"; version = "0.48.5"; edition = "2018"; sha256 = "034ljxqshifs1lan89xwpcy1hp0lhdh4b5n0d2z4fwjx2piacbws"; authors = [ "Microsoft" ]; dependencies = [ { name = "windows_aarch64_gnullvm"; packageId = "windows_aarch64_gnullvm"; target = { target, features }: (pkgs.rust.lib.toRustTarget stdenv.hostPlatform == "aarch64-pc-windows-gnullvm"); } { name = "windows_aarch64_msvc"; packageId = "windows_aarch64_msvc"; target = { target, features }: (("aarch64" == target."arch") && ("msvc" == target."env") && (!(target."windows_raw_dylib" or false))); } { name = "windows_i686_gnu"; packageId = "windows_i686_gnu"; target = { target, features }: (("x86" == target."arch") && ("gnu" == target."env") && (!(target."windows_raw_dylib" or false))); } { name = "windows_i686_msvc"; packageId = "windows_i686_msvc"; target = { target, features }: (("x86" == target."arch") && ("msvc" == target."env") && (!(target."windows_raw_dylib" or false))); } { name = "windows_x86_64_gnu"; packageId = "windows_x86_64_gnu"; target = { target, features }: (("x86_64" == target."arch") && ("gnu" == target."env") && (!("llvm" == target."abi")) && (!(target."windows_raw_dylib" or false))); } { name = "windows_x86_64_gnullvm"; packageId = "windows_x86_64_gnullvm"; target = { target, features }: (pkgs.rust.lib.toRustTarget stdenv.hostPlatform == "x86_64-pc-windows-gnullvm"); } { name = "windows_x86_64_msvc"; packageId = "windows_x86_64_msvc"; target = { target, features }: (("x86_64" == target."arch") && ("msvc" == target."env") && (!(target."windows_raw_dylib" or false))); } ]; }; "windows_aarch64_gnullvm" = rec { crateName = "windows_aarch64_gnullvm"; version = "0.48.5"; edition = "2018"; sha256 = "1n05v7qblg1ci3i567inc7xrkmywczxrs1z3lj3rkkxw18py6f1b"; authors = [ "Microsoft" ]; }; "windows_aarch64_msvc" = rec { crateName = "windows_aarch64_msvc"; version = "0.48.5"; edition = "2018"; sha256 = "1g5l4ry968p73g6bg6jgyvy9lb8fyhcs54067yzxpcpkf44k2dfw"; authors = [ "Microsoft" ]; }; "windows_i686_gnu" = rec { crateName = "windows_i686_gnu"; version = "0.48.5"; edition = "2018"; sha256 = "0gklnglwd9ilqx7ac3cn8hbhkraqisd0n83jxzf9837nvvkiand7"; authors = [ "Microsoft" ]; }; "windows_i686_msvc" = rec { crateName = "windows_i686_msvc"; version = "0.48.5"; edition = "2018"; sha256 = "01m4rik437dl9rdf0ndnm2syh10hizvq0dajdkv2fjqcywrw4mcg"; authors = [ "Microsoft" ]; }; "windows_x86_64_gnu" = rec { crateName = "windows_x86_64_gnu"; version = "0.48.5"; edition = "2018"; sha256 = "13kiqqcvz2vnyxzydjh73hwgigsdr2z1xpzx313kxll34nyhmm2k"; authors = [ "Microsoft" ]; }; "windows_x86_64_gnullvm" = rec { crateName = "windows_x86_64_gnullvm"; version = "0.48.5"; edition = "2018"; sha256 = "1k24810wfbgz8k48c2yknqjmiigmql6kk3knmddkv8k8g1v54yqb"; authors = [ "Microsoft" ]; }; "windows_x86_64_msvc" = rec { crateName = "windows_x86_64_msvc"; version = "0.48.5"; edition = "2018"; sha256 = "0f4mdp895kkjh9zv8dxvn4pc10xr7839lf5pa9l0193i2pkgr57d"; authors = [ "Microsoft" ]; }; "xdg" = rec { crateName = "xdg"; version = "2.5.2"; edition = "2018"; sha256 = "0im5nzmywxjgm2pmb48k0cc9hkalarz57f1d9d0x4lvb6cj76fr1"; authors = [ "Ben Longbons " "whitequark " ]; features = { "serde" = [ "dep:serde" ]; }; }; "xml-rs" = rec { crateName = "xml-rs"; version = "0.8.19"; edition = "2021"; crateBin = []; sha256 = "0nnpvk3fv32hgh7vs9gbg2swmzxx5yz73f4b7rak7q39q2x9rjqg"; libName = "xml"; authors = [ "Vladimir Matveev " ]; }; "yaml-rust" = rec { crateName = "yaml-rust"; version = "0.4.5"; edition = "2018"; sha256 = "118wbqrr4n6wgk5rjjnlrdlahawlxc1bdsx146mwk8f79in97han"; authors = [ "Yuheng Chen " ]; dependencies = [ { name = "linked-hash-map"; packageId = "linked-hash-map"; } ]; }; "zeroize" = rec { crateName = "zeroize"; version = "1.6.0"; edition = "2021"; sha256 = "1ndar43r58zbmasjhrhgas168vxb4i0rwbkcnszhjybwpbqmc29a"; authors = [ "The RustCrypto Project Developers" ]; features = { "default" = [ "alloc" ]; "derive" = [ "zeroize_derive" ]; "serde" = [ "dep:serde" ]; "std" = [ "alloc" ]; "zeroize_derive" = [ "dep:zeroize_derive" ]; }; resolvedDefaultFeatures = [ "alloc" "default" ]; }; }; # # 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; /* We are choosing an arbitrary rust version to grab `lib` from, which is unfortunate, but `lib` has been version-agnostic the whole time so this is good enough for now. */ os = pkgs.rust.lib.toTargetOs platform; arch = pkgs.rust.lib.toTargetArch platform; family = pkgs.rust.lib.toTargetFamily platform; env = "gnu"; endian = if platform.parsed.cpu.significantByte.name == "littleEndian" then "little" else "big"; pointer_width = toString platform.parsed.cpu.bits; vendor = platform.parsed.vendor.name; 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 -ex export RUST_BACKTRACE=1 # recreate a file hierarchy as when running tests with cargo # the source for test data ${pkgs.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; }; } '' 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 pkgs.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; version = package.version; }; in lib.mapAttrs (name: choices: builtins.map versionAndRename choices) 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: v: sanitizeForJson v) 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 packageId = 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 expandFeature = feature: assert (builtins.isString feature); [ feature ] ++ (expandFeatures featureMap (featureMap."${feature}" or [ ])); outFeatures = lib.concatMap expandFeature 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) # }; }