# This file was @generated by crate2nix 0.14.1 with the command:
# "generate"
# See https://github.com/kolloch/crate2nix for more info.
{ nixpkgs ? <nixpkgs>
, pkgs ? import nixpkgs { config = {}; }
, lib ? pkgs.lib
, stdenv ? pkgs.stdenv
, buildRustCrateForPkgs ? pkgs: pkgs.buildRustCrate
# This is used as the `crateOverrides` argument for `buildRustCrate`.
, defaultCrateOverrides ? pkgs.defaultCrateOverrides
# The features to enable for the root_crate or the workspace_members.
, rootFeatures ? [ "default" ]
# If true, throw errors instead of issueing deprecation warnings.
, strictDeprecation ? false
# Elements to add to the `-C target-feature=` argument passed to `rustc`
# (separated by `,`, prefixed with `+`).
# Used for conditional compilation based on CPU feature detection.
, targetFeatures ? []
# Whether to perform release builds: longer compile times, faster binaries.
, release ? true
# Additional crate2nix configuration if it exists.
, crateConfig
? if builtins.pathExists ./crate-config.nix
then pkgs.callPackage ./crate-config.nix {}
else {}
}:
rec {
#
# "public" attributes that we attempt to keep stable with new versions of crate2nix.
#
# Refer your crate build derivation by name here.
# You can override the features with
# workspaceMembers."${crateName}".build.override { features = [ "default" "feature1" ... ]; }.
workspaceMembers = {
"libpijul" = rec {
packageId = "libpijul";
build = internal.buildRustCrateWithFeatures {
packageId = "libpijul";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"pijul" = rec {
packageId = "pijul";
build = internal.buildRustCrateWithFeatures {
packageId = "pijul";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"pijul-config" = rec {
packageId = "pijul-config";
build = internal.buildRustCrateWithFeatures {
packageId = "pijul-config";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"pijul-identity" = rec {
packageId = "pijul-identity";
build = internal.buildRustCrateWithFeatures {
packageId = "pijul-identity";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"pijul-interaction" = rec {
packageId = "pijul-interaction";
build = internal.buildRustCrateWithFeatures {
packageId = "pijul-interaction";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"pijul-macros" = rec {
packageId = "pijul-macros";
build = internal.buildRustCrateWithFeatures {
packageId = "pijul-macros";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"pijul-remote" = rec {
packageId = "pijul-remote";
build = internal.buildRustCrateWithFeatures {
packageId = "pijul-remote";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"pijul-repository" = rec {
packageId = "pijul-repository";
build = internal.buildRustCrateWithFeatures {
packageId = "pijul-repository";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
};
# A derivation that joins the outputs of all workspace members together.
allWorkspaceMembers = pkgs.symlinkJoin {
name = "all-workspace-members";
paths =
let members = builtins.attrValues workspaceMembers;
in builtins.map (m: m.build) members;
};
#
# "internal" ("private") attributes that may change in every new version of crate2nix.
#
internal = rec {
# Build and dependency information for crates.
# Many of the fields are passed one-to-one to buildRustCrate.
#
# Noteworthy:
# * `dependencies`/`buildDependencies`: similar to the corresponding fields for buildRustCrate.
# but with additional information which is used during dependency/feature resolution.
# * `resolvedDependencies`: the selected default features reported by cargo - only included for debugging.
# * `devDependencies` as of now not used by `buildRustCrate` but used to
# inject test dependencies into the build
crates = {
"addr2line" = rec {
crateName = "addr2line";
version = "0.25.1";
edition = "2018";
crateBin = [];
sha256 = "0jwb96gv17vdr29hbzi0ha5q6jkpgjyn7rjlg5nis65k41rk0p8v";
dependencies = [
{
name = "gimli";
packageId = "gimli";
usesDefaultFeatures = false;
features = [ "read" ];
}
];
features = {
"all" = [ "bin" "wasm" ];
"alloc" = [ "dep:alloc" ];
"bin" = [ "loader" "rustc-demangle" "cpp_demangle" "fallible-iterator" "smallvec" "dep:clap" ];
"core" = [ "dep:core" ];
"cpp_demangle" = [ "dep:cpp_demangle" ];
"default" = [ "rustc-demangle" "cpp_demangle" "loader" "fallible-iterator" "smallvec" ];
"fallible-iterator" = [ "dep:fallible-iterator" ];
"loader" = [ "std" "dep:object" "dep:memmap2" "dep:typed-arena" ];
"rustc-demangle" = [ "dep:rustc-demangle" ];
"rustc-dep-of-std" = [ "core" "alloc" "gimli/rustc-dep-of-std" ];
"smallvec" = [ "dep:smallvec" ];
"std" = [ "gimli/std" ];
"wasm" = [ "object/wasm" ];
};
};
"adler2" = rec {
crateName = "adler2";
version = "2.0.1";
edition = "2021";
sha256 = "1ymy18s9hs7ya1pjc9864l30wk8p2qfqdi7mhhcc5nfakxbij09j";
authors = [
"Jonas Schievink <jonasschievink@gmail.com>"
"oyvindln <oyvindln@users.noreply.github.com>"
];
features = {
"core" = [ "dep:core" ];
"default" = [ "std" ];
"rustc-dep-of-std" = [ "core" ];
};
};
"adler32" = rec {
crateName = "adler32";
version = "1.2.0";
edition = "2018";
sha256 = "0d7jq7jsjyhsgbhnfq5fvrlh9j0i9g1fqrl2735ibv5f75yjgqda";
authors = [
"Remi Rampin <remirampin@gmail.com>"
];
features = {
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"default" = [ "std" ];
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"aes" = rec {
crateName = "aes";
version = "0.7.5";
edition = "2018";
sha256 = "1f0sdx2fsa8w3l7xzsyi9ry3shvnnsgc0znh50if9fm95vslg2wy";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "cipher";
packageId = "cipher 0.3.0";
}
{
name = "cpufeatures";
packageId = "cpufeatures";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
}
{
name = "ctr";
packageId = "ctr";
optional = true;
}
{
name = "opaque-debug";
packageId = "opaque-debug";
}
];
devDependencies = [
{
name = "cipher";
packageId = "cipher 0.3.0";
features = [ "dev" ];
}
];
features = {
"ctr" = [ "dep:ctr" ];
};
resolvedDefaultFeatures = [ "ctr" ];
};
"aho-corasick" = rec {
crateName = "aho-corasick";
version = "1.1.4";
edition = "2021";
sha256 = "00a32wb2h07im3skkikc495jvncf62jl6s96vwc7bhi70h9imlyx";
libName = "aho_corasick";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "perf-literal" ];
"logging" = [ "dep:log" ];
"perf-literal" = [ "dep:memchr" ];
"std" = [ "memchr?/std" ];
};
resolvedDefaultFeatures = [ "default" "perf-literal" "std" ];
};
"anstream" = rec {
crateName = "anstream";
version = "0.6.21";
edition = "2021";
sha256 = "0jjgixms4qjj58dzr846h2s29p8w7ynwr9b9x6246m1pwy0v5ma3";
dependencies = [
{
name = "anstyle";
packageId = "anstyle";
}
{
name = "anstyle-parse";
packageId = "anstyle-parse";
}
{
name = "anstyle-query";
packageId = "anstyle-query";
optional = true;
}
{
name = "anstyle-wincon";
packageId = "anstyle-wincon";
optional = true;
target = { target, features }: (target."windows" or false);
}
{
name = "colorchoice";
packageId = "colorchoice";
}
{
name = "is_terminal_polyfill";
packageId = "is_terminal_polyfill";
}
{
name = "utf8parse";
packageId = "utf8parse";
}
];
features = {
"auto" = [ "dep:anstyle-query" ];
"default" = [ "auto" "wincon" ];
"wincon" = [ "dep:anstyle-wincon" ];
};
resolvedDefaultFeatures = [ "auto" "default" "wincon" ];
};
"anstyle" = rec {
crateName = "anstyle";
version = "1.0.13";
edition = "2021";
sha256 = "0y2ynjqajpny6q0amvfzzgw0gfw3l47z85km4gvx87vg02lcr4ji";
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"anstyle-parse" = rec {
crateName = "anstyle-parse";
version = "0.2.7";
edition = "2021";
sha256 = "1hhmkkfr95d462b3zf6yl2vfzdqfy5726ya572wwg8ha9y148xjf";
libName = "anstyle_parse";
dependencies = [
{
name = "utf8parse";
packageId = "utf8parse";
optional = true;
}
];
features = {
"core" = [ "dep:arrayvec" ];
"default" = [ "utf8" ];
"utf8" = [ "dep:utf8parse" ];
};
resolvedDefaultFeatures = [ "default" "utf8" ];
};
"anstyle-query" = rec {
crateName = "anstyle-query";
version = "1.1.5";
edition = "2021";
sha256 = "1p6shfpnbghs6jsa0vnqd8bb8gd7pjd0jr7w0j8jikakzmr8zi20";
libName = "anstyle_query";
dependencies = [
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_System_Console" "Win32_Foundation" ];
}
];
};
"anstyle-wincon" = rec {
crateName = "anstyle-wincon";
version = "3.0.11";
edition = "2021";
sha256 = "0zblannm70sk3xny337mz7c6d8q8i24vhbqi42ld8v7q1wjnl7i9";
libName = "anstyle_wincon";
dependencies = [
{
name = "anstyle";
packageId = "anstyle";
}
{
name = "once_cell_polyfill";
packageId = "once_cell_polyfill";
target = { target, features }: (target."windows" or false);
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_System_Console" "Win32_Foundation" ];
}
];
};
"anyhow" = rec {
crateName = "anyhow";
version = "1.0.100";
edition = "2018";
sha256 = "0qbfmw4hhv2ampza1csyvf1jqjs2dgrj29cv3h3sh623c6qvcgm2";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"backtrace" = [ "dep:backtrace" ];
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"arrayref" = rec {
crateName = "arrayref";
version = "0.3.9";
edition = "2015";
sha256 = "1jzyp0nvp10dmahaq9a2rnxqdd5wxgbvp8xaibps3zai8c9fi8kn";
authors = [
"David Roundy <roundyd@physics.oregonstate.edu>"
];
};
"arrayvec" = rec {
crateName = "arrayvec";
version = "0.7.6";
edition = "2018";
sha256 = "0l1fz4ccgv6pm609rif37sl5nv5k6lbzi7kkppgzqzh1vwix20kw";
authors = [
"bluss"
];
features = {
"borsh" = [ "dep:borsh" ];
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"zeroize" = [ "dep:zeroize" ];
};
};
"autocfg" = rec {
crateName = "autocfg";
version = "1.5.0";
edition = "2015";
sha256 = "1s77f98id9l4af4alklmzq46f21c980v13z2r1pcxx6bqgw0d1n0";
authors = [
"Josh Stone <cuviper@gmail.com>"
];
};
"backtrace" = rec {
crateName = "backtrace";
version = "0.3.76";
edition = "2021";
sha256 = "1mibx75x4jf6wz7qjifynld3hpw3vq6sy3d3c9y5s88sg59ihlxv";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "addr2line";
packageId = "addr2line";
usesDefaultFeatures = false;
target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null))));
}
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null))));
}
{
name = "miniz_oxide";
packageId = "miniz_oxide";
usesDefaultFeatures = false;
target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null))));
}
{
name = "object";
packageId = "object";
usesDefaultFeatures = false;
target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null))));
features = [ "read_core" "elf" "macho" "pe" "xcoff" "unaligned" "archive" ];
}
{
name = "rustc-demangle";
packageId = "rustc-demangle";
}
{
name = "windows-link";
packageId = "windows-link";
target = { target, features }: ((target."windows" or false) || ("cygwin" == target."os" or null));
}
];
features = {
"cpp_demangle" = [ "dep:cpp_demangle" ];
"default" = [ "std" ];
"ruzstd" = [ "dep:ruzstd" ];
"serde" = [ "dep:serde" ];
"serialize-serde" = [ "serde" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"base64" = rec {
crateName = "base64";
version = "0.21.7";
edition = "2018";
sha256 = "0rw52yvsk75kar9wgqfwgb414kvil1gn7mqkrhn9zf1537mpsacx";
authors = [
"Alice Maz <alice@alicemaz.com>"
"Marshall Pierce <marshall@mpierce.org>"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"base64ct" = rec {
crateName = "base64ct";
version = "1.8.1";
edition = "2024";
sha256 = "12h6iwd0ib6xxwd0814wf3x6nd91r851xcycvlkpm199cii0y18f";
authors = [
"RustCrypto Developers"
];
features = {
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"bcrypt-pbkdf" = rec {
crateName = "bcrypt-pbkdf";
version = "0.10.0";
edition = "2021";
sha256 = "18pjhsy3m2v0silsp4mjzz8i92zrpqxk9b059zrnk1w8zvhw5ska";
libName = "bcrypt_pbkdf";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "blowfish";
packageId = "blowfish";
features = [ "bcrypt" ];
}
{
name = "pbkdf2";
packageId = "pbkdf2 0.12.2";
usesDefaultFeatures = false;
}
{
name = "sha2";
packageId = "sha2 0.10.9";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "alloc" "std" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"bincode" = rec {
crateName = "bincode";
version = "1.3.3";
edition = "2015";
sha256 = "1bfw3mnwzx5g1465kiqllp5n4r10qrqy88kdlp3jfwnq2ya5xx5i";
authors = [
"Ty Overby <ty@pre-alpha.com>"
"Francesco Mazzoli <f@mazzo.li>"
"David Tolnay <dtolnay@gmail.com>"
"Zoey Riordan <zoey@dos.cafe>"
];
dependencies = [
{
name = "serde";
packageId = "serde";
}
];
features = {
};
};
"bit-vec" = rec {
crateName = "bit-vec";
version = "0.6.3";
edition = "2015";
sha256 = "1ywqjnv60cdh1slhz67psnp422md6jdliji6alq0gmly2xm9p7rl";
libName = "bit_vec";
authors = [
"Alexis Beingessner <a.beingessner@gmail.com>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"serde_no_std" = [ "serde/alloc" ];
"serde_std" = [ "std" "serde/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"bitflags 1.3.2" = rec {
crateName = "bitflags";
version = "1.3.2";
edition = "2018";
sha256 = "12ki6w8gn1ldq7yz9y680llwk5gmrhrzszaa17g1sbrw2r2qvwxy";
authors = [
"The Rust Project Developers"
];
features = {
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"bitflags 2.10.0" = rec {
crateName = "bitflags";
version = "2.10.0";
edition = "2021";
sha256 = "1lqxwc3625lcjrjm5vygban9v8a6dlxisp1aqylibiaw52si4bl1";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "serde_core";
packageId = "serde_core";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"bytemuck" = [ "dep:bytemuck" ];
"serde" = [ "serde_core" ];
"serde_core" = [ "dep:serde_core" ];
};
resolvedDefaultFeatures = [ "serde" "serde_core" "std" ];
};
"blake3" = rec {
crateName = "blake3";
version = "1.8.2";
edition = "2021";
sha256 = "1854x65zmjh9w9cfhyyyg0wmm2k5d87l13l4m7y40ajbkslam21q";
authors = [
"Jack O'Connor <oconnor663@gmail.com>"
"Samuel Neves"
];
dependencies = [
{
name = "arrayref";
packageId = "arrayref";
}
{
name = "arrayvec";
packageId = "arrayvec";
usesDefaultFeatures = false;
}
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "constant_time_eq";
packageId = "constant_time_eq";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
];
features = {
"default" = [ "std" ];
"digest" = [ "dep:digest" ];
"mmap" = [ "std" "dep:memmap2" ];
"rayon" = [ "dep:rayon-core" ];
"serde" = [ "dep:serde" ];
"traits-preview" = [ "dep:digest" ];
"zeroize" = [ "dep:zeroize" "arrayvec/zeroize" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"block-buffer 0.10.4" = rec {
crateName = "block-buffer";
version = "0.10.4";
edition = "2018";
sha256 = "0w9sa2ypmrsqqvc20nhwr75wbb5cjr4kkyhpjm1z1lv2kdicfy1h";
libName = "block_buffer";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
}
];
};
"block-buffer 0.9.0" = rec {
crateName = "block-buffer";
version = "0.9.0";
edition = "2018";
sha256 = "1r4pf90s7d7lj1wdjhlnqa26vvbm6pnc33z138lxpnp9srpi2lj1";
libName = "block_buffer";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
}
];
features = {
"block-padding" = [ "dep:block-padding" ];
};
};
"block-modes" = rec {
crateName = "block-modes";
version = "0.8.1";
edition = "2018";
sha256 = "13id7rw1lhi83i701za8w5is3a8qkf4vfigqw3f8jp8mxldkvc1c";
libName = "block_modes";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "block-padding";
packageId = "block-padding";
}
{
name = "cipher";
packageId = "cipher 0.3.0";
}
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"block-padding" = rec {
crateName = "block-padding";
version = "0.2.1";
edition = "2018";
sha256 = "1bickjlmfw9iv63dp781n589rfybw879mik1va59833m1hvnqscd";
libName = "block_padding";
authors = [
"RustCrypto Developers"
];
};
"block2" = rec {
crateName = "block2";
version = "0.6.2";
edition = "2021";
sha256 = "1xcfllzx6c3jc554nmb5qy6xmlkl6l6j5ib4wd11800n0n3rvsyd";
authors = [
"Mads Marquart <mads@marquart.dk>"
];
dependencies = [
{
name = "objc2";
packageId = "objc2";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
features = {
"compiler-rt" = [ "objc2/unstable-compiler-rt" ];
"default" = [ "std" ];
"gnustep-1-7" = [ "objc2/gnustep-1-7" ];
"gnustep-1-8" = [ "gnustep-1-7" "objc2/gnustep-1-8" ];
"gnustep-1-9" = [ "gnustep-1-8" "objc2/gnustep-1-9" ];
"gnustep-2-0" = [ "gnustep-1-9" "objc2/gnustep-2-0" ];
"gnustep-2-1" = [ "gnustep-2-0" "objc2/gnustep-2-1" ];
"std" = [ "alloc" ];
"unstable-winobjc" = [ "gnustep-1-8" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"blowfish" = rec {
crateName = "blowfish";
version = "0.9.1";
edition = "2021";
sha256 = "1mw7bvj3bg5w8vh9xw9xawqh7ixk2xwsxkj34ph96b9b1z6y44p4";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
usesDefaultFeatures = false;
}
{
name = "cipher";
packageId = "cipher 0.4.4";
}
];
devDependencies = [
{
name = "cipher";
packageId = "cipher 0.4.4";
features = [ "dev" ];
}
];
features = {
"zeroize" = [ "cipher/zeroize" ];
};
resolvedDefaultFeatures = [ "bcrypt" ];
};
"bs58" = rec {
crateName = "bs58";
version = "0.4.0";
edition = "2018";
sha256 = "1lr3vwzhhyica4y7rbkf26vr1h7vpjb1m6rml8zcqgw81c2y07vp";
authors = [
"Wim Looman <wim@nemo157.com>"
];
features = {
"check" = [ "sha2" ];
"default" = [ "std" ];
"sha2" = [ "dep:sha2" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"bstr" = rec {
crateName = "bstr";
version = "1.12.1";
edition = "2021";
sha256 = "1arc1v7h5l86vd6z76z3xykjzldqd5icldn7j9d3p7z6x0d4w133";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "memchr/alloc" "serde?/alloc" ];
"default" = [ "std" "unicode" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" "memchr/std" "serde?/std" ];
"unicode" = [ "dep:regex-automata" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"bumpalo" = rec {
crateName = "bumpalo";
version = "3.19.1";
edition = "2021";
sha256 = "044555i277xcinmqs7nnv8n5y4fqfi4l4lp1mp3i30vsidrxrnax";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
];
features = {
"allocator-api2" = [ "dep:allocator-api2" ];
"bench_allocator_api" = [ "allocator_api" "blink-alloc/nightly" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"byteorder" = rec {
crateName = "byteorder";
version = "1.5.0";
edition = "2021";
sha256 = "0jzncxyf404mwqdbspihyzpkndfgda450l0893pz5xj685cg5l0z";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "i128" "std" ];
};
"bytes" = rec {
crateName = "bytes";
version = "1.11.0";
edition = "2021";
sha256 = "1cww1ybcvisyj8pbzl4m36bni2jaz0narhczp1348gqbvkxh8lmk";
authors = [
"Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
features = {
"default" = [ "std" ];
"extra-platforms" = [ "dep:extra-platforms" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"canonical-path" = rec {
crateName = "canonical-path";
version = "2.0.2";
edition = "2018";
sha256 = "0vvsjda6ka5nz8zvx6r08zqi0j59sjccgcbjxj96xj764w9y1sg6";
libName = "canonical_path";
authors = [
"Tony Arcieri <tony@iqlusion.io>"
];
};
"cc" = rec {
crateName = "cc";
version = "1.2.51";
edition = "2018";
sha256 = "00zj303al745qymzfx3qp4wnj5s5wncaadc8c64hbagi9zzyl2ks";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "find-msvc-tools";
packageId = "find-msvc-tools";
}
{
name = "jobserver";
packageId = "jobserver";
optional = true;
usesDefaultFeatures = false;
}
{
name = "libc";
packageId = "libc";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (target."unix" or false);
}
{
name = "shlex";
packageId = "shlex";
}
];
features = {
"parallel" = [ "dep:libc" "dep:jobserver" ];
};
resolvedDefaultFeatures = [ "parallel" ];
};
"cfg-if" = rec {
crateName = "cfg-if";
version = "1.0.4";
edition = "2018";
sha256 = "008q28ajc546z5p2hcwdnckmg0hia7rnx52fni04bwqkzyrghc4k";
libName = "cfg_if";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"core" = [ "dep:core" ];
"rustc-dep-of-std" = [ "core" ];
};
};
"cfg_aliases" = rec {
crateName = "cfg_aliases";
version = "0.2.1";
edition = "2018";
sha256 = "092pxdc1dbgjb6qvh83gk56rkic2n2ybm4yvy76cgynmzi3zwfk1";
authors = [
"Zicklag <zicklag@katharostech.com>"
];
};
"chardetng" = rec {
crateName = "chardetng";
version = "0.1.17";
edition = "2018";
sha256 = "1spikjcnblwa5n1nnk46fxkwn86yfiqxgs47h4yaw23vbfvg1f0l";
authors = [
"Henri Sivonen <hsivonen@hsivonen.fi>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "encoding_rs";
packageId = "encoding_rs";
usesDefaultFeatures = false;
}
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
];
features = {
"arrayvec" = [ "dep:arrayvec" ];
"multithreading" = [ "rayon" "arrayvec" ];
"rayon" = [ "dep:rayon" ];
};
};
"cipher 0.3.0" = rec {
crateName = "cipher";
version = "0.3.0";
edition = "2018";
sha256 = "1dyzsv0c84rgz98d5glnhsz4320wl24x3bq511vnyf0mxir21rby";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
}
];
features = {
"blobby" = [ "dep:blobby" ];
"dev" = [ "blobby" ];
};
};
"cipher 0.4.4" = rec {
crateName = "cipher";
version = "0.4.4";
edition = "2021";
sha256 = "1b9x9agg67xq5nq879z66ni4l08m6m3hqcshk37d4is4ysd3ngvp";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "crypto-common";
packageId = "crypto-common";
}
{
name = "inout";
packageId = "inout";
}
];
features = {
"blobby" = [ "dep:blobby" ];
"block-padding" = [ "inout/block-padding" ];
"dev" = [ "blobby" ];
"rand_core" = [ "crypto-common/rand_core" ];
"std" = [ "alloc" "crypto-common/std" "inout/std" ];
"zeroize" = [ "dep:zeroize" ];
};
};
"clap" = rec {
crateName = "clap";
version = "4.5.53";
edition = "2021";
crateBin = [];
sha256 = "1y035lyy5w2xx83q4c3jiy75928ldm1x2bi8ylslkgx12bh41qy9";
dependencies = [
{
name = "clap_builder";
packageId = "clap_builder";
usesDefaultFeatures = false;
}
{
name = "clap_derive";
packageId = "clap_derive";
optional = true;
}
];
features = {
"cargo" = [ "clap_builder/cargo" ];
"color" = [ "clap_builder/color" ];
"debug" = [ "clap_builder/debug" "clap_derive?/debug" ];
"default" = [ "std" "color" "help" "usage" "error-context" "suggestions" ];
"deprecated" = [ "clap_builder/deprecated" "clap_derive?/deprecated" ];
"derive" = [ "dep:clap_derive" ];
"env" = [ "clap_builder/env" ];
"error-context" = [ "clap_builder/error-context" ];
"help" = [ "clap_builder/help" ];
"std" = [ "clap_builder/std" ];
"string" = [ "clap_builder/string" ];
"suggestions" = [ "clap_builder/suggestions" ];
"unicode" = [ "clap_builder/unicode" ];
"unstable-doc" = [ "clap_builder/unstable-doc" "derive" ];
"unstable-ext" = [ "clap_builder/unstable-ext" ];
"unstable-markdown" = [ "clap_derive/unstable-markdown" ];
"unstable-styles" = [ "clap_builder/unstable-styles" ];
"unstable-v5" = [ "clap_builder/unstable-v5" "clap_derive?/unstable-v5" "deprecated" ];
"usage" = [ "clap_builder/usage" ];
"wrap_help" = [ "clap_builder/wrap_help" ];
};
resolvedDefaultFeatures = [ "cargo" "color" "default" "derive" "error-context" "help" "std" "suggestions" "usage" ];
};
"clap_builder" = rec {
crateName = "clap_builder";
version = "4.5.53";
edition = "2021";
sha256 = "004xasw24a9vvzpiymjkm4khffpyzqwskz7ps8gr1351x89mssyp";
dependencies = [
{
name = "anstream";
packageId = "anstream";
optional = true;
}
{
name = "anstyle";
packageId = "anstyle";
}
{
name = "clap_lex";
packageId = "clap_lex";
}
{
name = "strsim";
packageId = "strsim";
optional = true;
}
];
features = {
"color" = [ "dep:anstream" ];
"debug" = [ "dep:backtrace" ];
"default" = [ "std" "color" "help" "usage" "error-context" "suggestions" ];
"std" = [ "anstyle/std" ];
"suggestions" = [ "dep:strsim" "error-context" ];
"unicode" = [ "dep:unicode-width" "dep:unicase" ];
"unstable-doc" = [ "cargo" "wrap_help" "env" "unicode" "string" "unstable-ext" ];
"unstable-styles" = [ "color" ];
"unstable-v5" = [ "deprecated" ];
"wrap_help" = [ "help" "dep:terminal_size" ];
};
resolvedDefaultFeatures = [ "cargo" "color" "error-context" "help" "std" "suggestions" "usage" ];
};
"clap_complete" = rec {
crateName = "clap_complete";
version = "4.5.62";
edition = "2021";
sha256 = "1d03810a9dd49ivd6gkayiiz8s732wrfljnylyd7ad6f2imyykh0";
dependencies = [
{
name = "clap";
packageId = "clap";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
devDependencies = [
{
name = "clap";
packageId = "clap";
usesDefaultFeatures = false;
features = [ "std" "derive" "help" ];
}
];
features = {
"debug" = [ "clap/debug" ];
"unstable-doc" = [ "unstable-dynamic" ];
"unstable-dynamic" = [ "dep:clap_lex" "dep:shlex" "dep:is_executable" "clap/unstable-ext" ];
"unstable-shell-tests" = [ "dep:completest" "dep:completest-pty" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"clap_derive" = rec {
crateName = "clap_derive";
version = "4.5.49";
edition = "2021";
sha256 = "0wbngw649138v3jwx8pm5x9sq0qsml3sh0sfzyrdxcpamy3m82ra";
procMacro = true;
dependencies = [
{
name = "heck";
packageId = "heck";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
features = [ "full" ];
}
];
features = {
"raw-deprecated" = [ "deprecated" ];
"unstable-markdown" = [ "dep:pulldown-cmark" "dep:anstyle" ];
"unstable-v5" = [ "deprecated" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"clap_lex" = rec {
crateName = "clap_lex";
version = "0.7.6";
edition = "2021";
sha256 = "13cxw9m2rqvplgazgkq2awms0rgf34myc19bz6gywfngi762imx1";
};
"colorchoice" = rec {
crateName = "colorchoice";
version = "1.0.4";
edition = "2021";
sha256 = "0x8ymkz1xr77rcj1cfanhf416pc4v681gmkc9dzb3jqja7f62nxh";
};
"conpty" = rec {
crateName = "conpty";
version = "0.5.1";
edition = "2021";
sha256 = "1nmkhiysnssvbi4kqaq8cybb0ffngbl64kfpk8s86ihdg940caxp";
authors = [
"Maxim Zhiburt <zhiburt@gmail.com>"
];
dependencies = [
{
name = "windows";
packageId = "windows 0.44.0";
features = [ "Win32_Foundation" "Win32_Security" "Win32_System_Threading" "Win32_System_Console" "Win32_System_Pipes" "Win32_System_SystemServices" "Win32_System_WindowsProgramming" "Win32_System_IO" "Win32_Storage_FileSystem" ];
}
];
};
"console" = rec {
crateName = "console";
version = "0.15.11";
edition = "2021";
sha256 = "1n5gmsjk6isbnw6qss043377kln20lfwlmdk3vswpwpr21dwnk05";
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>"
];
dependencies = [
{
name = "encode_unicode";
packageId = "encode_unicode";
target = { target, features }: (target."windows" or false);
}
{
name = "libc";
packageId = "libc";
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "unicode-width";
packageId = "unicode-width";
optional = true;
}
{
name = "windows-sys";
packageId = "windows-sys 0.59.0";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_System_Console" "Win32_Storage_FileSystem" "Win32_UI_Input_KeyboardAndMouse" ];
}
];
features = {
"default" = [ "unicode-width" "ansi-parsing" ];
"unicode-width" = [ "dep:unicode-width" ];
"windows-console-colors" = [ "ansi-parsing" ];
};
resolvedDefaultFeatures = [ "ansi-parsing" "default" "unicode-width" ];
};
"const-oid" = rec {
crateName = "const-oid";
version = "0.9.6";
edition = "2021";
sha256 = "1y0jnqaq7p2wvspnx7qj76m7hjcqpz73qzvr9l2p9n2s51vr6if2";
libName = "const_oid";
authors = [
"RustCrypto Developers"
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
};
};
"constant_time_eq" = rec {
crateName = "constant_time_eq";
version = "0.3.1";
edition = "2021";
sha256 = "19nwwczii762pwlsm7bpizgjg8hkg1kqi32b2g4rglijklsbhx3w";
authors = [
"Cesar Eduardo Barros <cesarb@cesarb.eti.br>"
];
features = {
};
};
"core-foundation 0.10.1" = rec {
crateName = "core-foundation";
version = "0.10.1";
edition = "2021";
sha256 = "1xjns6dqf36rni2x9f47b65grxwdm20kwdg9lhmzdrrkwadcv9mj";
libName = "core_foundation";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "core-foundation-sys";
packageId = "core-foundation-sys";
usesDefaultFeatures = false;
}
{
name = "libc";
packageId = "libc";
}
];
features = {
"default" = [ "link" ];
"link" = [ "core-foundation-sys/link" ];
"mac_os_10_7_support" = [ "core-foundation-sys/mac_os_10_7_support" ];
"mac_os_10_8_features" = [ "core-foundation-sys/mac_os_10_8_features" ];
"with-uuid" = [ "dep:uuid" ];
};
resolvedDefaultFeatures = [ "default" "link" ];
};
"core-foundation 0.9.4" = rec {
crateName = "core-foundation";
version = "0.9.4";
edition = "2018";
sha256 = "13zvbbj07yk3b61b8fhwfzhy35535a583irf23vlcg59j7h9bqci";
libName = "core_foundation";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "core-foundation-sys";
packageId = "core-foundation-sys";
usesDefaultFeatures = false;
}
{
name = "libc";
packageId = "libc";
}
];
features = {
"chrono" = [ "dep:chrono" ];
"default" = [ "link" ];
"link" = [ "core-foundation-sys/link" ];
"mac_os_10_7_support" = [ "core-foundation-sys/mac_os_10_7_support" ];
"mac_os_10_8_features" = [ "core-foundation-sys/mac_os_10_8_features" ];
"uuid" = [ "dep:uuid" ];
"with-chrono" = [ "chrono" ];
"with-uuid" = [ "uuid" ];
};
resolvedDefaultFeatures = [ "default" "link" ];
};
"core-foundation-sys" = rec {
crateName = "core-foundation-sys";
version = "0.8.7";
edition = "2018";
sha256 = "12w8j73lazxmr1z0h98hf3z623kl8ms7g07jch7n4p8f9nwlhdkp";
libName = "core_foundation_sys";
authors = [
"The Servo Project Developers"
];
features = {
"default" = [ "link" ];
};
resolvedDefaultFeatures = [ "default" "link" ];
};
"cpufeatures" = rec {
crateName = "cpufeatures";
version = "0.2.17";
edition = "2018";
sha256 = "10023dnnaghhdl70xcds12fsx2b966sxbxjq5sxs49mvxqw5ivar";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-linux-android");
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("aarch64" == target."arch" or null) && ("linux" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("aarch64" == target."arch" or null) && ("apple" == target."vendor" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("loongarch64" == target."arch" or null) && ("linux" == target."os" or null));
}
];
};
"crc32fast" = rec {
crateName = "crc32fast";
version = "1.5.0";
edition = "2021";
sha256 = "04d51liy8rbssra92p0qnwjw8i9rm9c4m3bwy19wjamz1k4w30cl";
authors = [
"Sam Rijs <srijs@airpost.net>"
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"crossbeam-deque" = rec {
crateName = "crossbeam-deque";
version = "0.8.6";
edition = "2021";
sha256 = "0l9f1saqp1gn5qy0rxvkmz4m6n7fc0b3dbm6q1r5pmgpnyvi3lcx";
libName = "crossbeam_deque";
dependencies = [
{
name = "crossbeam-epoch";
packageId = "crossbeam-epoch";
usesDefaultFeatures = false;
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "crossbeam-epoch/std" "crossbeam-utils/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"crossbeam-epoch" = rec {
crateName = "crossbeam-epoch";
version = "0.9.18";
edition = "2021";
sha256 = "03j2np8llwf376m3fxqx859mgp9f83hj1w34153c7a9c7i5ar0jv";
libName = "crossbeam_epoch";
dependencies = [
{
name = "crossbeam-utils";
packageId = "crossbeam-utils";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"loom" = [ "loom-crate" "crossbeam-utils/loom" ];
"loom-crate" = [ "dep:loom-crate" ];
"nightly" = [ "crossbeam-utils/nightly" ];
"std" = [ "alloc" "crossbeam-utils/std" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"crossbeam-utils" = rec {
crateName = "crossbeam-utils";
version = "0.8.21";
edition = "2021";
sha256 = "0a3aa2bmc8q35fb67432w16wvi54sfmb69rk9h5bhd18vw0c99fh";
libName = "crossbeam_utils";
features = {
"default" = [ "std" ];
"loom" = [ "dep:loom" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"crypto-common" = rec {
crateName = "crypto-common";
version = "0.1.7";
edition = "2018";
sha256 = "02nn2rhfy7kvdkdjl457q2z0mklcvj9h662xrq6dzhfialh2kj3q";
libName = "crypto_common";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
features = [ "more_lengths" ];
}
{
name = "typenum";
packageId = "typenum";
}
];
features = {
"getrandom" = [ "rand_core/getrandom" ];
"rand_core" = [ "dep:rand_core" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"crypto-mac" = rec {
crateName = "crypto-mac";
version = "0.11.1";
edition = "2018";
sha256 = "05672ncc54h66vph42s0a42ljl69bwnqjh0x4xgj2v1395psildi";
libName = "crypto_mac";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
}
{
name = "subtle";
packageId = "subtle";
usesDefaultFeatures = false;
}
];
features = {
"blobby" = [ "dep:blobby" ];
"cipher" = [ "dep:cipher" ];
"dev" = [ "blobby" ];
};
};
"cryptovec" = rec {
crateName = "cryptovec";
version = "0.6.1";
edition = "2015";
sha256 = "1pqb2g1n3sx0d2cjiy06amcr2wlf9izwb4jj68nk5cmvlq9zmiyc";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "winapi";
packageId = "winapi";
features = [ "basetsd" "minwindef" "memoryapi" ];
}
];
};
"ctr" = rec {
crateName = "ctr";
version = "0.8.0";
edition = "2018";
sha256 = "1sk1aykwhkny92cnvl6s75dx3fyvfzw5xkd6xz3y7w5anhgvk6q4";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cipher";
packageId = "cipher 0.3.0";
}
];
devDependencies = [
{
name = "cipher";
packageId = "cipher 0.3.0";
features = [ "dev" ];
}
];
};
"ctrlc" = rec {
crateName = "ctrlc";
version = "3.5.1";
edition = "2021";
sha256 = "146p40m5mj6w4nncj3wpsh0dlm0r0rjyblifp8sk1xxgqj4nlwvk";
authors = [
"Antti Keränen <detegr@gmail.com>"
];
dependencies = [
{
name = "dispatch2";
packageId = "dispatch2";
target = { target, features }: ("apple" == target."vendor" or null);
}
{
name = "nix";
packageId = "nix 0.30.1";
usesDefaultFeatures = false;
target = { target, features }: (target."unix" or false);
features = [ "signal" ];
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_System_Threading" "Win32_Security" "Win32_System_Console" ];
}
];
devDependencies = [
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = {target, features}: (target."windows" or false);
features = [ "Win32_Storage_FileSystem" "Win32_Foundation" "Win32_System_IO" "Win32_System_Console" ];
}
];
features = {
};
};
"curve25519-dalek 3.2.0" = rec {
crateName = "curve25519-dalek";
version = "3.2.0";
edition = "2015";
sha256 = "0q8v97275cy6v4ly6y2qwv9a8phnpjg9sy8kv7r6mgdjfacxz7qb";
libName = "curve25519_dalek";
authors = [
"Isis Lovecruft <isis@patternsinthevoid.net>"
"Henry de Valence <hdevalence@hdevalence.ca>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
usesDefaultFeatures = false;
features = [ "i128" ];
}
{
name = "digest";
packageId = "digest 0.9.0";
usesDefaultFeatures = false;
}
{
name = "rand_core";
packageId = "rand_core 0.5.1";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "subtle";
packageId = "subtle";
usesDefaultFeatures = false;
}
{
name = "zeroize";
packageId = "zeroize";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "zeroize/alloc" ];
"avx2_backend" = [ "simd_backend" ];
"default" = [ "std" "u64_backend" ];
"fiat-crypto" = [ "dep:fiat-crypto" ];
"fiat_u32_backend" = [ "fiat-crypto" ];
"fiat_u64_backend" = [ "fiat-crypto" ];
"nightly" = [ "subtle/nightly" ];
"packed_simd" = [ "dep:packed_simd" ];
"serde" = [ "dep:serde" ];
"simd_backend" = [ "nightly" "u64_backend" "packed_simd" ];
"std" = [ "alloc" "subtle/std" "rand_core/std" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "serde" "std" "u64_backend" ];
};
"curve25519-dalek 4.1.3" = rec {
crateName = "curve25519-dalek";
version = "4.1.3";
edition = "2021";
sha256 = "1gmjb9dsknrr8lypmhkyjd67p1arb8mbfamlwxm7vph38my8pywp";
libName = "curve25519_dalek";
authors = [
"Isis Lovecruft <isis@patternsinthevoid.net>"
"Henry de Valence <hdevalence@hdevalence.ca>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "cpufeatures";
packageId = "cpufeatures";
target = { target, features }: ("x86_64" == target."arch" or null);
}
{
name = "curve25519-dalek-derive";
packageId = "curve25519-dalek-derive";
target = { target, features }: ((!("fiat" == target."curve25519_dalek_backend" or null)) && (!("serial" == target."curve25519_dalek_backend" or null)) && ("x86_64" == target."arch" or null));
}
{
name = "digest";
packageId = "digest 0.10.7";
optional = true;
usesDefaultFeatures = false;
}
{
name = "fiat-crypto";
packageId = "fiat-crypto";
usesDefaultFeatures = false;
target = { target, features }: ("fiat" == target."curve25519_dalek_backend" or null);
}
{
name = "subtle";
packageId = "subtle";
usesDefaultFeatures = false;
}
{
name = "zeroize";
packageId = "zeroize";
optional = true;
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "rustc_version";
packageId = "rustc_version";
}
];
features = {
"alloc" = [ "zeroize?/alloc" ];
"default" = [ "alloc" "precomputed-tables" "zeroize" ];
"digest" = [ "dep:digest" ];
"ff" = [ "dep:ff" ];
"group" = [ "dep:group" "rand_core" ];
"group-bits" = [ "group" "ff/bits" ];
"rand_core" = [ "dep:rand_core" ];
"serde" = [ "dep:serde" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "alloc" "digest" "precomputed-tables" "zeroize" ];
};
"curve25519-dalek-derive" = rec {
crateName = "curve25519-dalek-derive";
version = "0.1.1";
edition = "2021";
sha256 = "1cry71xxrr0mcy5my3fb502cwfxy6822k4pm19cwrilrg7hq4s7l";
procMacro = true;
libName = "curve25519_dalek_derive";
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
features = [ "full" ];
}
];
};
"data-encoding" = rec {
crateName = "data-encoding";
version = "2.9.0";
edition = "2018";
sha256 = "0xm46371aw613ghc12ay4vsnn49hpcmcwlijnqy8lbp2bpd308ra";
libName = "data_encoding";
authors = [
"Julien Cretin <git@ia0.eu>"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"dbus" = rec {
crateName = "dbus";
version = "0.9.10";
edition = "2018";
sha256 = "1m252djlnskgb89i2177yf9w6p4nx9475gamc8ryxaz7sxlamcr1";
authors = [
"David Henningsson <diwic@ubuntu.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "libdbus-sys";
packageId = "libdbus-sys";
}
{
name = "windows-sys";
packageId = "windows-sys 0.59.0";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Networking_WinSock" ];
}
];
features = {
"futures" = [ "futures-util" "futures-channel" ];
"futures-channel" = [ "dep:futures-channel" ];
"futures-executor" = [ "dep:futures-executor" ];
"futures-util" = [ "dep:futures-util" ];
"vendored" = [ "libdbus-sys/vendored" ];
};
};
"dbus-secret-service" = rec {
crateName = "dbus-secret-service";
version = "4.1.0";
edition = "2021";
sha256 = "19jgbqb841kbzmfgaqnbbhsc5ijck7fzl3zvgqyyb2bqvyg512vh";
libName = "dbus_secret_service";
authors = [
"Daniel Brotsky <dev@brotsky.com>"
];
dependencies = [
{
name = "dbus";
packageId = "dbus";
}
{
name = "zeroize";
packageId = "zeroize";
features = [ "derive" ];
}
];
features = {
"crypto-openssl" = [ "dep:fastrand" "dep:num" "dep:once_cell" "dep:openssl" ];
"crypto-rust" = [ "dep:aes" "dep:block-padding" "dep:cbc" "dep:fastrand" "dep:hkdf" "dep:num" "dep:once_cell" "dep:sha2" ];
"vendored" = [ "dbus/vendored" "openssl?/vendored" ];
};
};
"der" = rec {
crateName = "der";
version = "0.7.10";
edition = "2021";
sha256 = "1jyxacyxdx6mxbkfw99jz59dzvcd9k17rq01a7xvn1dr6wl87hg7";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "const-oid";
packageId = "const-oid";
optional = true;
}
{
name = "zeroize";
packageId = "zeroize";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "zeroize?/alloc" ];
"arbitrary" = [ "dep:arbitrary" "const-oid?/arbitrary" "std" ];
"bytes" = [ "dep:bytes" "alloc" ];
"derive" = [ "dep:der_derive" ];
"flagset" = [ "dep:flagset" ];
"oid" = [ "dep:const-oid" ];
"pem" = [ "dep:pem-rfc7468" "alloc" "zeroize" ];
"std" = [ "alloc" ];
"time" = [ "dep:time" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "alloc" "oid" "std" "zeroize" ];
};
"dialoguer" = rec {
crateName = "dialoguer";
version = "0.10.4";
edition = "2018";
sha256 = "11rgzrhi677w9gf1r3ip2x361svdkjkr2m5dsfca9fcljacg5ijr";
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>"
"Pavan Kumar Sunkara <pavan.sss1991@gmail.com>"
];
dependencies = [
{
name = "console";
packageId = "console";
}
{
name = "fuzzy-matcher";
packageId = "fuzzy-matcher";
optional = true;
}
{
name = "shell-words";
packageId = "shell-words";
}
{
name = "tempfile";
packageId = "tempfile";
optional = true;
}
{
name = "zeroize";
packageId = "zeroize";
optional = true;
}
];
features = {
"default" = [ "editor" "password" ];
"editor" = [ "tempfile" ];
"fuzzy-matcher" = [ "dep:fuzzy-matcher" ];
"fuzzy-select" = [ "fuzzy-matcher" ];
"password" = [ "zeroize" ];
"tempfile" = [ "dep:tempfile" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "editor" "fuzzy-matcher" "fuzzy-select" "password" "tempfile" "zeroize" ];
};
"diffs" = rec {
crateName = "diffs";
version = "0.5.1";
edition = "2018";
sha256 = "01f8bp77kgahgvr3s2igmnmsxynjklq830lmp2wp2jyph6bnq4gz";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
};
"digest 0.10.7" = rec {
crateName = "digest";
version = "0.10.7";
edition = "2018";
sha256 = "14p2n6ih29x81akj097lvz7wi9b6b9hvls0lwrv7b6xwyy0s5ncy";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "block-buffer";
packageId = "block-buffer 0.10.4";
optional = true;
}
{
name = "crypto-common";
packageId = "crypto-common";
}
{
name = "subtle";
packageId = "subtle";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"blobby" = [ "dep:blobby" ];
"block-buffer" = [ "dep:block-buffer" ];
"const-oid" = [ "dep:const-oid" ];
"core-api" = [ "block-buffer" ];
"default" = [ "core-api" ];
"dev" = [ "blobby" ];
"mac" = [ "subtle" ];
"oid" = [ "const-oid" ];
"rand_core" = [ "crypto-common/rand_core" ];
"std" = [ "alloc" "crypto-common/std" ];
"subtle" = [ "dep:subtle" ];
};
resolvedDefaultFeatures = [ "alloc" "block-buffer" "core-api" "default" "mac" "std" "subtle" ];
};
"digest 0.9.0" = rec {
crateName = "digest";
version = "0.9.0";
edition = "2018";
sha256 = "0rmhvk33rgvd6ll71z8sng91a52rw14p0drjn1da0mqa138n1pfk";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
}
];
features = {
"blobby" = [ "dep:blobby" ];
"dev" = [ "blobby" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"dirs" = rec {
crateName = "dirs";
version = "3.0.2";
edition = "2015";
sha256 = "028kqy0vrbfgrk1yc1flq2fqh8snyg17qlygawm0r79w211s1fih";
authors = [
"Simon Ochsenreither <simon@ochsenreither.de>"
];
dependencies = [
{
name = "dirs-sys";
packageId = "dirs-sys";
}
];
};
"dirs-next" = rec {
crateName = "dirs-next";
version = "2.0.0";
edition = "2018";
sha256 = "1q9kr151h9681wwp6is18750ssghz6j9j7qm7qi1ngcwy7mzi35r";
libName = "dirs_next";
authors = [
"The @xdg-rs members"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "dirs-sys-next";
packageId = "dirs-sys-next";
}
];
};
"dirs-sys" = rec {
crateName = "dirs-sys";
version = "0.3.7";
edition = "2015";
sha256 = "19md1cnkazham8a6kh22v12d8hh3raqahfk6yb043vrjr68is78v";
libName = "dirs_sys";
authors = [
"Simon Ochsenreither <simon@ochsenreither.de>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "redox_users";
packageId = "redox_users";
usesDefaultFeatures = false;
target = { target, features }: ("redox" == target."os" or null);
}
{
name = "winapi";
packageId = "winapi";
target = { target, features }: (target."windows" or false);
features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ];
}
];
};
"dirs-sys-next" = rec {
crateName = "dirs-sys-next";
version = "0.1.2";
edition = "2018";
sha256 = "0kavhavdxv4phzj4l0psvh55hszwnr0rcz8sxbvx20pyqi2a3gaf";
libName = "dirs_sys_next";
authors = [
"The @xdg-rs members"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "redox_users";
packageId = "redox_users";
usesDefaultFeatures = false;
target = { target, features }: ("redox" == target."os" or null);
}
{
name = "winapi";
packageId = "winapi";
target = { target, features }: (target."windows" or false);
features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ];
}
];
};
"dispatch2" = rec {
crateName = "dispatch2";
version = "0.3.0";
edition = "2021";
sha256 = "1v1ak9w0s8z1g13x4mj2y5im9wmck0i2vf8f8wc9l1n6lqi9z849";
authors = [
"Mads Marquart <mads@marquart.dk>"
"Mary <mary@mary.zone>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "block2";
packageId = "block2";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "libc";
packageId = "libc";
optional = true;
usesDefaultFeatures = false;
}
{
name = "objc2";
packageId = "objc2";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
];
features = {
"block2" = [ "dep:block2" ];
"default" = [ "std" "block2" "libc" "objc2" ];
"libc" = [ "dep:libc" ];
"objc2" = [ "dep:objc2" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "block2" "default" "libc" "objc2" "std" ];
};
"displaydoc" = rec {
crateName = "displaydoc";
version = "0.2.5";
edition = "2021";
sha256 = "1q0alair462j21iiqwrr21iabkfnb13d6x5w95lkdg21q2xrqdlp";
procMacro = true;
authors = [
"Jane Lusby <jlusby@yaah.dev>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
}
];
features = {
"default" = [ "std" ];
};
};
"duplicate" = rec {
crateName = "duplicate";
version = "2.0.1";
edition = "2021";
sha256 = "091cfk8krd3k31pc50qaz2h1xnsi3nhzmazdrbxbyv0p945g34lf";
procMacro = true;
authors = [
"Emad Jacob Maroun <emoun.open@gmail.com>"
];
dependencies = [
{
name = "heck";
packageId = "heck";
optional = true;
}
{
name = "proc-macro2";
packageId = "proc-macro2";
optional = true;
}
{
name = "proc-macro2-diagnostics";
packageId = "proc-macro2-diagnostics";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "pretty_errors" "module_disambiguation" ];
"module_disambiguation" = [ "dep:heck" ];
"pretty_errors" = [ "dep:proc-macro2-diagnostics" "dep:proc-macro2" ];
};
resolvedDefaultFeatures = [ "default" "module_disambiguation" "pretty_errors" ];
};
"ed25519" = rec {
crateName = "ed25519";
version = "2.2.3";
edition = "2021";
sha256 = "0lydzdf26zbn82g7xfczcac9d7mzm3qgx934ijjrd5hjpjx32m8i";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "pkcs8";
packageId = "pkcs8";
optional = true;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
}
{
name = "signature";
packageId = "signature";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "pkcs8?/alloc" ];
"default" = [ "std" ];
"pem" = [ "alloc" "pkcs8/pem" ];
"pkcs8" = [ "dep:pkcs8" ];
"serde" = [ "dep:serde" ];
"serde_bytes" = [ "serde" "dep:serde_bytes" ];
"std" = [ "pkcs8?/std" "signature/std" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "alloc" "serde" "std" ];
};
"ed25519-dalek" = rec {
crateName = "ed25519-dalek";
version = "2.2.0";
edition = "2021";
sha256 = "1agcwij1z687hg26ngzwhnmpz29b2w56m8z1ap3pvrnfh709drvh";
libName = "ed25519_dalek";
authors = [
"isis lovecruft <isis@patternsinthevoid.net>"
"Tony Arcieri <bascule@gmail.com>"
"Michael Rosenberg <michael@mrosenberg.pub>"
];
dependencies = [
{
name = "curve25519-dalek";
packageId = "curve25519-dalek 4.1.3";
usesDefaultFeatures = false;
features = [ "digest" ];
}
{
name = "ed25519";
packageId = "ed25519";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
}
{
name = "sha2";
packageId = "sha2 0.10.9";
usesDefaultFeatures = false;
}
{
name = "signature";
packageId = "signature";
optional = true;
usesDefaultFeatures = false;
}
{
name = "subtle";
packageId = "subtle";
usesDefaultFeatures = false;
}
{
name = "zeroize";
packageId = "zeroize";
optional = true;
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "curve25519-dalek";
packageId = "curve25519-dalek 4.1.3";
usesDefaultFeatures = false;
features = [ "digest" "rand_core" ];
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
];
features = {
"alloc" = [ "curve25519-dalek/alloc" "ed25519/alloc" "serde?/alloc" "zeroize/alloc" ];
"asm" = [ "sha2/asm" ];
"batch" = [ "alloc" "merlin" "rand_core" ];
"default" = [ "fast" "std" "zeroize" ];
"digest" = [ "signature/digest" ];
"fast" = [ "curve25519-dalek/precomputed-tables" ];
"legacy_compatibility" = [ "curve25519-dalek/legacy_compatibility" ];
"merlin" = [ "dep:merlin" ];
"pem" = [ "alloc" "ed25519/pem" "pkcs8" ];
"pkcs8" = [ "ed25519/pkcs8" ];
"rand_core" = [ "dep:rand_core" ];
"serde" = [ "dep:serde" "ed25519/serde" ];
"signature" = [ "dep:signature" ];
"std" = [ "alloc" "ed25519/std" "serde?/std" "sha2/std" ];
"zeroize" = [ "dep:zeroize" "curve25519-dalek/zeroize" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "fast" "serde" "signature" "std" "zeroize" ];
};
"edit" = rec {
crateName = "edit";
version = "0.1.5";
edition = "2018";
sha256 = "02dan6bg9pcj42ny48g8fq9f76w30c826n4gihy1d1s7fq78cr7k";
authors = [
"Milkey Mouse <milkeymouse@meme.institute>"
];
dependencies = [
{
name = "tempfile";
packageId = "tempfile";
}
{
name = "which";
packageId = "which";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"better-path" = [ "which" ];
"default" = [ "better-path" ];
"quoted-env" = [ "shell-words" ];
"shell-words" = [ "dep:shell-words" ];
"which" = [ "dep:which" ];
};
resolvedDefaultFeatures = [ "better-path" "default" "which" ];
};
"either" = rec {
crateName = "either";
version = "1.15.0";
edition = "2021";
sha256 = "069p1fknsmzn9llaizh77kip0pqmcwpdsykv2x30xpjyija5gis8";
authors = [
"bluss"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"use_std" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"encode_unicode" = rec {
crateName = "encode_unicode";
version = "1.0.0";
edition = "2021";
sha256 = "1h5j7j7byi289by63s3w4a8b3g6l5ccdrws7a67nn07vdxj77ail";
authors = [
"Torbjørn Birch Moltu <t.b.moltu@lyse.net>"
];
features = {
"ascii" = [ "dep:ascii" ];
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"encoding_rs" = rec {
crateName = "encoding_rs";
version = "0.8.35";
edition = "2018";
sha256 = "1wv64xdrr9v37rqqdjsyb8l8wzlcbab80ryxhrszvnj59wy0y0vm";
authors = [
"Henri Sivonen <hsivonen@hsivonen.fi>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
];
features = {
"any_all_workaround" = [ "dep:any_all_workaround" ];
"default" = [ "alloc" ];
"fast-legacy-encode" = [ "fast-hangul-encode" "fast-hanja-encode" "fast-kanji-encode" "fast-gb-hanzi-encode" "fast-big5-hanzi-encode" ];
"serde" = [ "dep:serde" ];
"simd-accel" = [ "any_all_workaround" ];
};
resolvedDefaultFeatures = [ "alloc" "default" ];
};
"env_filter" = rec {
crateName = "env_filter";
version = "0.1.4";
edition = "2021";
sha256 = "1qk8yn4lsqzxsz025kf4kaabika6aidykqih3c2p1jjms9cw5wqv";
dependencies = [
{
name = "log";
packageId = "log";
features = [ "std" ];
}
{
name = "regex";
packageId = "regex";
optional = true;
usesDefaultFeatures = false;
features = [ "std" "perf" ];
}
];
features = {
"default" = [ "regex" ];
"regex" = [ "dep:regex" ];
};
resolvedDefaultFeatures = [ "regex" ];
};
"env_logger 0.11.8" = rec {
crateName = "env_logger";
version = "0.11.8";
edition = "2021";
sha256 = "17q6zbjam4wq75fa3m4gvvmv3rj3ch25abwbm84b28a0j3q67j0k";
dependencies = [
{
name = "anstream";
packageId = "anstream";
optional = true;
usesDefaultFeatures = false;
features = [ "wincon" ];
}
{
name = "anstyle";
packageId = "anstyle";
optional = true;
}
{
name = "env_filter";
packageId = "env_filter";
usesDefaultFeatures = false;
}
{
name = "jiff";
packageId = "jiff";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "log";
packageId = "log";
features = [ "std" ];
}
];
features = {
"auto-color" = [ "color" "anstream/auto" ];
"color" = [ "dep:anstream" "dep:anstyle" ];
"default" = [ "auto-color" "humantime" "regex" ];
"humantime" = [ "dep:jiff" ];
"kv" = [ "log/kv" ];
"regex" = [ "env_filter/regex" ];
"unstable-kv" = [ "kv" ];
};
resolvedDefaultFeatures = [ "auto-color" "color" "default" "humantime" "regex" ];
};
"env_logger 0.8.4" = rec {
crateName = "env_logger";
version = "0.8.4";
edition = "2018";
sha256 = "1qzw8g11dbdfi7ixm44ldykwcqsxqkh8vx5cgpd88zmclgz8g4d1";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "log";
packageId = "log";
features = [ "std" ];
}
{
name = "regex";
packageId = "regex";
optional = true;
usesDefaultFeatures = false;
features = [ "std" "perf" ];
}
];
features = {
"atty" = [ "dep:atty" ];
"default" = [ "termcolor" "atty" "humantime" "regex" ];
"humantime" = [ "dep:humantime" ];
"regex" = [ "dep:regex" ];
"termcolor" = [ "dep:termcolor" ];
};
resolvedDefaultFeatures = [ "regex" ];
};
"equivalent" = rec {
crateName = "equivalent";
version = "1.0.2";
edition = "2015";
sha256 = "03swzqznragy8n0x31lqc78g2af054jwivp7lkrbrc0khz74lyl7";
};
"errno 0.2.8" = rec {
crateName = "errno";
version = "0.2.8";
edition = "2015";
sha256 = "18cnqgk8r6lq1n5cfy3bryiyz9zkqr10dxj49sa3fkzfamih8fgn";
authors = [
"Chris Wong <lambda.fairy@gmail.com>"
];
dependencies = [
{
name = "errno-dragonfly";
packageId = "errno-dragonfly";
target = { target, features }: ("dragonfly" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
target = { target, features }: ("hermit" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
target = { target, features }: ("wasi" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "winapi";
packageId = "winapi";
target = { target, features }: (target."windows" or false);
features = [ "errhandlingapi" "minwindef" "ntdef" "winbase" ];
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"errno 0.3.14" = rec {
crateName = "errno";
version = "0.3.14";
edition = "2018";
sha256 = "1szgccmh8vgryqyadg8xd58mnwwicf39zmin3bsn63df2wbbgjir";
authors = [
"Chris Wong <lambda.fairy@gmail.com>"
"Dan Gohman <dev@sunfishcode.online>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("hermit" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("wasi" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (target."unix" or false);
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_System_Diagnostics_Debug" ];
}
];
features = {
"default" = [ "std" ];
"std" = [ "libc/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"errno-dragonfly" = rec {
crateName = "errno-dragonfly";
version = "0.1.2";
edition = "2018";
sha256 = "1grrmcm6q8512hkq5yzch3yv8wafflc2apbmsaabiyk44yqz2s5a";
libName = "errno_dragonfly";
authors = [
"Michael Neumann <mneumann@ntecs.de>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
];
};
"expectrl" = rec {
crateName = "expectrl";
version = "0.7.1";
edition = "2021";
sha256 = "0ykiqkh2r3ky1244r4j0x49hqawdrfdh1mai6fdapz2kb6989rzd";
authors = [
"Maxim Zhiburt <zhiburt@gmail.com>"
];
dependencies = [
{
name = "conpty";
packageId = "conpty";
target = { target, features }: (target."windows" or false);
}
{
name = "nix";
packageId = "nix 0.26.4";
target = { target, features }: (target."unix" or false);
}
{
name = "ptyprocess";
packageId = "ptyprocess";
target = { target, features }: (target."unix" or false);
}
{
name = "regex";
packageId = "regex";
}
];
features = {
"async" = [ "futures-lite" "futures-timer" "async-io" "blocking" ];
"async-io" = [ "dep:async-io" ];
"blocking" = [ "dep:blocking" ];
"futures-lite" = [ "dep:futures-lite" ];
"futures-timer" = [ "dep:futures-timer" ];
"polling" = [ "dep:polling" "dep:crossbeam-channel" ];
};
};
"fastrand" = rec {
crateName = "fastrand";
version = "2.3.0";
edition = "2018";
sha256 = "1ghiahsw1jd68df895cy5h3gzwk30hndidn3b682zmshpgmrx41p";
authors = [
"Stjepan Glavina <stjepang@gmail.com>"
];
features = {
"default" = [ "std" ];
"getrandom" = [ "dep:getrandom" ];
"js" = [ "std" "getrandom" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"fiat-crypto" = rec {
crateName = "fiat-crypto";
version = "0.2.9";
edition = "2018";
sha256 = "07c1vknddv3ak7w89n85ik0g34nzzpms6yb845vrjnv9m4csbpi8";
libName = "fiat_crypto";
authors = [
"Fiat Crypto library authors <jgross@mit.edu>"
];
features = {
"default" = [ "std" ];
};
};
"filetime" = rec {
crateName = "filetime";
version = "0.2.26";
edition = "2018";
sha256 = "1vb3vz83saxr084wjf2032hspx7wfc5ggggnhc15i9kg3g6ha1dw";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "libredox";
packageId = "libredox";
target = { target, features }: ("redox" == target."os" or null);
}
{
name = "windows-sys";
packageId = "windows-sys 0.60.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Storage_FileSystem" ];
}
];
};
"find-msvc-tools" = rec {
crateName = "find-msvc-tools";
version = "0.1.6";
edition = "2018";
sha256 = "1zwdxinsg7i0agvapxa5cj7k09vygzjy8nkxc4qpa2z6hhxbnp34";
libName = "find_msvc_tools";
};
"flate2" = rec {
crateName = "flate2";
version = "1.1.5";
edition = "2018";
sha256 = "1yrvxgxyg7mzksmmcd9i7vc3023kbv3zhdsf8mkjm8c5ivfkxqxz";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Josh Triplett <josh@joshtriplett.org>"
];
dependencies = [
{
name = "crc32fast";
packageId = "crc32fast";
}
{
name = "miniz_oxide";
packageId = "miniz_oxide";
optional = true;
usesDefaultFeatures = false;
features = [ "with-alloc" "simd" ];
}
{
name = "miniz_oxide";
packageId = "miniz_oxide";
usesDefaultFeatures = false;
target = { target, features }: (("wasm32" == target."arch" or null) && (!("emscripten" == target."os" or null)));
features = [ "with-alloc" "simd" ];
}
];
features = {
"any_zlib" = [ "any_impl" ];
"cloudflare-zlib-sys" = [ "dep:cloudflare-zlib-sys" ];
"cloudflare_zlib" = [ "any_zlib" "cloudflare-zlib-sys" ];
"default" = [ "rust_backend" ];
"libz-ng-sys" = [ "dep:libz-ng-sys" ];
"libz-rs-sys" = [ "dep:libz-rs-sys" ];
"libz-sys" = [ "dep:libz-sys" ];
"miniz-sys" = [ "rust_backend" ];
"miniz_oxide" = [ "dep:miniz_oxide" ];
"rust_backend" = [ "miniz_oxide" "any_impl" ];
"zlib" = [ "any_zlib" "libz-sys" ];
"zlib-default" = [ "any_zlib" "libz-sys/default" ];
"zlib-ng" = [ "any_zlib" "libz-ng-sys" ];
"zlib-ng-compat" = [ "zlib" "libz-sys/zlib-ng" ];
"zlib-rs" = [ "any_zlib" "libz-rs-sys" ];
};
resolvedDefaultFeatures = [ "any_impl" "default" "miniz_oxide" "rust_backend" ];
};
"fnv" = rec {
crateName = "fnv";
version = "1.0.7";
edition = "2015";
sha256 = "1hc2mcqha06aibcaza94vbi81j6pr9a1bbxrxjfhc91zin8yr7iz";
libPath = "lib.rs";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"foldhash" = rec {
crateName = "foldhash";
version = "0.1.5";
edition = "2021";
sha256 = "1wisr1xlc2bj7hk4rgkcjkz3j2x4dhd1h9lwk7mj8p71qpdgbi6r";
authors = [
"Orson Peters <orsonpeters@gmail.com>"
];
features = {
"default" = [ "std" ];
};
};
"foreign-types" = rec {
crateName = "foreign-types";
version = "0.3.2";
edition = "2015";
sha256 = "1cgk0vyd7r45cj769jym4a6s7vwshvd0z4bqrb92q1fwibmkkwzn";
libName = "foreign_types";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "foreign-types-shared";
packageId = "foreign-types-shared";
}
];
};
"foreign-types-shared" = rec {
crateName = "foreign-types-shared";
version = "0.1.1";
edition = "2015";
sha256 = "0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00";
libName = "foreign_types_shared";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
};
"form_urlencoded" = rec {
crateName = "form_urlencoded";
version = "1.2.2";
edition = "2018";
sha256 = "1kqzb2qn608rxl3dws04zahcklpplkd5r1vpabwga5l50d2v4k6b";
authors = [
"The rust-url developers"
];
dependencies = [
{
name = "percent-encoding";
packageId = "percent-encoding";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "percent-encoding/alloc" ];
"default" = [ "std" ];
"std" = [ "alloc" "percent-encoding/std" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"fs2" = rec {
crateName = "fs2";
version = "0.4.3";
edition = "2015";
sha256 = "04v2hwk7035c088f19mfl5b1lz84gnvv2hv6m935n0hmirszqr4m";
authors = [
"Dan Burkert <dan@danburkert.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "winapi";
packageId = "winapi";
target = { target, features }: (target."windows" or false);
features = [ "handleapi" "processthreadsapi" "winerror" "fileapi" "winbase" "std" ];
}
];
};
"futures" = rec {
crateName = "futures";
version = "0.3.31";
edition = "2018";
sha256 = "0xh8ddbkm9jy8kc5gbvjp9a4b6rqqxvc8471yb2qaz5wm2qhgg35";
dependencies = [
{
name = "futures-channel";
packageId = "futures-channel";
usesDefaultFeatures = false;
features = [ "sink" ];
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-executor";
packageId = "futures-executor";
optional = true;
usesDefaultFeatures = false;
}
{
name = "futures-io";
packageId = "futures-io";
usesDefaultFeatures = false;
}
{
name = "futures-sink";
packageId = "futures-sink";
usesDefaultFeatures = false;
}
{
name = "futures-task";
packageId = "futures-task";
usesDefaultFeatures = false;
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "sink" ];
}
];
features = {
"alloc" = [ "futures-core/alloc" "futures-task/alloc" "futures-sink/alloc" "futures-channel/alloc" "futures-util/alloc" ];
"async-await" = [ "futures-util/async-await" "futures-util/async-await-macro" ];
"bilock" = [ "futures-util/bilock" ];
"compat" = [ "std" "futures-util/compat" ];
"default" = [ "std" "async-await" "executor" ];
"executor" = [ "std" "futures-executor/std" ];
"futures-executor" = [ "dep:futures-executor" ];
"io-compat" = [ "compat" "futures-util/io-compat" ];
"std" = [ "alloc" "futures-core/std" "futures-task/std" "futures-io/std" "futures-sink/std" "futures-util/std" "futures-util/io" "futures-util/channel" ];
"thread-pool" = [ "executor" "futures-executor/thread-pool" ];
"unstable" = [ "futures-core/unstable" "futures-task/unstable" "futures-channel/unstable" "futures-io/unstable" "futures-util/unstable" ];
"write-all-vectored" = [ "futures-util/write-all-vectored" ];
};
resolvedDefaultFeatures = [ "alloc" "async-await" "default" "executor" "futures-executor" "std" ];
};
"futures-channel" = rec {
crateName = "futures-channel";
version = "0.3.31";
edition = "2018";
sha256 = "040vpqpqlbk099razq8lyn74m0f161zd0rp36hciqrwcg2zibzrd";
libName = "futures_channel";
dependencies = [
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-sink";
packageId = "futures-sink";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "futures-core/alloc" ];
"default" = [ "std" ];
"futures-sink" = [ "dep:futures-sink" ];
"sink" = [ "futures-sink" ];
"std" = [ "alloc" "futures-core/std" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "futures-sink" "sink" "std" ];
};
"futures-core" = rec {
crateName = "futures-core";
version = "0.3.31";
edition = "2018";
sha256 = "0gk6yrxgi5ihfanm2y431jadrll00n5ifhnpx090c2f2q1cr1wh5";
libName = "futures_core";
features = {
"default" = [ "std" ];
"portable-atomic" = [ "dep:portable-atomic" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"futures-executor" = rec {
crateName = "futures-executor";
version = "0.3.31";
edition = "2018";
sha256 = "17vcci6mdfzx4gbk0wx64chr2f13wwwpvyf3xd5fb1gmjzcx2a0y";
libName = "futures_executor";
dependencies = [
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-task";
packageId = "futures-task";
usesDefaultFeatures = false;
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"num_cpus" = [ "dep:num_cpus" ];
"std" = [ "futures-core/std" "futures-task/std" "futures-util/std" ];
"thread-pool" = [ "std" "num_cpus" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"futures-io" = rec {
crateName = "futures-io";
version = "0.3.31";
edition = "2018";
sha256 = "1ikmw1yfbgvsychmsihdkwa8a1knank2d9a8dk01mbjar9w1np4y";
libName = "futures_io";
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"futures-macro" = rec {
crateName = "futures-macro";
version = "0.3.31";
edition = "2018";
sha256 = "0l1n7kqzwwmgiznn0ywdc5i24z72zvh9q1dwps54mimppi7f6bhn";
procMacro = true;
libName = "futures_macro";
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
features = [ "full" ];
}
];
};
"futures-sink" = rec {
crateName = "futures-sink";
version = "0.3.31";
edition = "2018";
sha256 = "1xyly6naq6aqm52d5rh236snm08kw8zadydwqz8bip70s6vzlxg5";
libName = "futures_sink";
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"futures-task" = rec {
crateName = "futures-task";
version = "0.3.31";
edition = "2018";
sha256 = "124rv4n90f5xwfsm9qw6y99755y021cmi5dhzh253s920z77s3zr";
libName = "futures_task";
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"futures-util" = rec {
crateName = "futures-util";
version = "0.3.31";
edition = "2018";
sha256 = "10aa1ar8bgkgbr4wzxlidkqkcxf77gffyj8j7768h831pcaq784z";
libName = "futures_util";
dependencies = [
{
name = "futures-channel";
packageId = "futures-channel";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-io";
packageId = "futures-io";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "futures-macro";
packageId = "futures-macro";
optional = true;
usesDefaultFeatures = false;
}
{
name = "futures-sink";
packageId = "futures-sink";
optional = true;
usesDefaultFeatures = false;
}
{
name = "futures-task";
packageId = "futures-task";
usesDefaultFeatures = false;
}
{
name = "memchr";
packageId = "memchr";
optional = true;
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "pin-utils";
packageId = "pin-utils";
}
{
name = "slab";
packageId = "slab";
optional = true;
}
];
features = {
"alloc" = [ "futures-core/alloc" "futures-task/alloc" ];
"async-await-macro" = [ "async-await" "futures-macro" ];
"channel" = [ "std" "futures-channel" ];
"compat" = [ "std" "futures_01" ];
"default" = [ "std" "async-await" "async-await-macro" ];
"futures-channel" = [ "dep:futures-channel" ];
"futures-io" = [ "dep:futures-io" ];
"futures-macro" = [ "dep:futures-macro" ];
"futures-sink" = [ "dep:futures-sink" ];
"futures_01" = [ "dep:futures_01" ];
"io" = [ "std" "futures-io" "memchr" ];
"io-compat" = [ "io" "compat" "tokio-io" ];
"memchr" = [ "dep:memchr" ];
"portable-atomic" = [ "futures-core/portable-atomic" ];
"sink" = [ "futures-sink" ];
"slab" = [ "dep:slab" ];
"std" = [ "alloc" "futures-core/std" "futures-task/std" "slab" ];
"tokio-io" = [ "dep:tokio-io" ];
"unstable" = [ "futures-core/unstable" "futures-task/unstable" ];
"write-all-vectored" = [ "io" ];
};
resolvedDefaultFeatures = [ "alloc" "async-await" "async-await-macro" "channel" "default" "futures-channel" "futures-io" "futures-macro" "futures-sink" "io" "memchr" "sink" "slab" "std" ];
};
"fuzzy-matcher" = rec {
crateName = "fuzzy-matcher";
version = "0.3.7";
edition = "2018";
sha256 = "153csv8rsk2vxagb68kpmiknvdd3bzqj03x805khckck28rllqal";
libName = "fuzzy_matcher";
authors = [
"Jinzhou Zhang <lotabout@gmail.com>"
];
dependencies = [
{
name = "thread_local";
packageId = "thread_local";
}
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"generic-array" = rec {
crateName = "generic-array";
version = "0.14.7";
edition = "2015";
sha256 = "16lyyrzrljfq424c3n8kfwkqihlimmsg5nhshbbp48np3yjrqr45";
libName = "generic_array";
authors = [
"Bartłomiej Kamiński <fizyk20@gmail.com>"
"Aaron Trent <novacrazy@gmail.com>"
];
dependencies = [
{
name = "typenum";
packageId = "typenum";
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check";
}
];
features = {
"serde" = [ "dep:serde" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "more_lengths" ];
};
"getrandom 0.1.16" = rec {
crateName = "getrandom";
version = "0.1.16";
edition = "2018";
sha256 = "1kjzmz60qx9mn615ks1akjbf36n3lkv27zfwbcam0fzmj56wphwg";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (target."unix" or false);
}
{
name = "wasi";
packageId = "wasi 0.9.0+wasi-snapshot-preview1";
target = { target, features }: ("wasi" == target."os" or null);
}
];
features = {
"bindgen" = [ "dep:bindgen" ];
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"js-sys" = [ "dep:js-sys" ];
"log" = [ "dep:log" ];
"rustc-dep-of-std" = [ "compiler_builtins" "core" ];
"stdweb" = [ "dep:stdweb" ];
"test-in-browser" = [ "wasm-bindgen" ];
"wasm-bindgen" = [ "bindgen" "js-sys" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"getrandom 0.2.16" = rec {
crateName = "getrandom";
version = "0.2.16";
edition = "2018";
sha256 = "14l5aaia20cc6cc08xdlhrzmfcylmrnprwnna20lqf746pqzjprk";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "js-sys";
packageId = "js-sys";
optional = true;
target = { target, features }: ((("wasm32" == target."arch" or null) || ("wasm64" == target."arch" or null)) && ("unknown" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (target."unix" or false);
}
{
name = "wasi";
packageId = "wasi 0.11.1+wasi-snapshot-preview1";
usesDefaultFeatures = false;
target = { target, features }: ("wasi" == target."os" or null);
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((("wasm32" == target."arch" or null) || ("wasm64" == target."arch" or null)) && ("unknown" == target."os" or null));
}
];
features = {
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"js" = [ "wasm-bindgen" "js-sys" ];
"js-sys" = [ "dep:js-sys" ];
"rustc-dep-of-std" = [ "compiler_builtins" "core" "libc/rustc-dep-of-std" "wasi/rustc-dep-of-std" ];
"wasm-bindgen" = [ "dep:wasm-bindgen" ];
};
resolvedDefaultFeatures = [ "js" "js-sys" "std" "wasm-bindgen" ];
};
"getrandom 0.3.4" = rec {
crateName = "getrandom";
version = "0.3.4";
edition = "2021";
sha256 = "1zbpvpicry9lrbjmkd4msgj3ihff1q92i334chk7pzf46xffz7c9";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ((("linux" == target."os" or null) || ("android" == target."os" or null)) && (!((("linux" == target."os" or null) && ("" == target."env" or null)) || ("custom" == target."getrandom_backend" or null) || ("linux_raw" == target."getrandom_backend" or null) || ("rdrand" == target."getrandom_backend" or null) || ("rndr" == target."getrandom_backend" or null))));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("dragonfly" == target."os" or null) || ("freebsd" == target."os" or null) || ("hurd" == target."os" or null) || ("illumos" == target."os" or null) || ("cygwin" == target."os" or null) || (("horizon" == target."os" or null) && ("arm" == target."arch" or null)));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("haiku" == target."os" or null) || ("redox" == target."os" or null) || ("nto" == target."os" or null) || ("aix" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("ios" == target."os" or null) || ("visionos" == target."os" or null) || ("watchos" == target."os" or null) || ("tvos" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("macos" == target."os" or null) || ("openbsd" == target."os" or null) || ("vita" == target."os" or null) || ("emscripten" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("netbsd" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("solaris" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("vxworks" == target."os" or null);
}
{
name = "r-efi";
packageId = "r-efi";
usesDefaultFeatures = false;
target = { target, features }: (("uefi" == target."os" or null) && ("efi_rng" == target."getrandom_backend" or null));
}
{
name = "wasip2";
packageId = "wasip2";
usesDefaultFeatures = false;
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p2" == target."env" or null));
}
];
features = {
"wasm_js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"gimli" = rec {
crateName = "gimli";
version = "0.32.3";
edition = "2018";
sha256 = "1iqk5xznimn5bfa8jy4h7pa1dv3c624hzgd2dkz8mpgkiswvjag6";
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" ];
"std" = [ "fallible-iterator?/std" "stable_deref_trait?/std" ];
"write" = [ "dep:indexmap" ];
};
resolvedDefaultFeatures = [ "read" "read-core" ];
};
"git2" = rec {
crateName = "git2";
version = "0.20.3";
edition = "2018";
sha256 = "131hmxb2iq9328wrwqgw56fcd0z3dwxnn3hzl6nwsa97yvi3fary";
authors = [
"Josh Triplett <josh@joshtriplett.org>"
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
}
{
name = "libc";
packageId = "libc";
}
{
name = "libgit2-sys";
packageId = "libgit2-sys";
}
{
name = "log";
packageId = "log";
}
{
name = "openssl-probe";
packageId = "openssl-probe";
optional = true;
target = { target, features }: ((target."unix" or false) && (!("macos" == target."os" or null)));
}
{
name = "openssl-sys";
packageId = "openssl-sys";
optional = true;
target = { target, features }: ((target."unix" or false) && (!("macos" == target."os" or null)));
}
{
name = "url";
packageId = "url";
}
];
features = {
"default" = [ "ssh" "https" ];
"https" = [ "libgit2-sys/https" "openssl-sys" "openssl-probe" ];
"openssl-probe" = [ "dep:openssl-probe" ];
"openssl-sys" = [ "dep:openssl-sys" ];
"ssh" = [ "libgit2-sys/ssh" ];
"vendored-libgit2" = [ "libgit2-sys/vendored" ];
"vendored-openssl" = [ "openssl-sys/vendored" "libgit2-sys/vendored-openssl" ];
"zlib-ng-compat" = [ "libgit2-sys/zlib-ng-compat" ];
};
resolvedDefaultFeatures = [ "default" "https" "openssl-probe" "openssl-sys" "ssh" ];
};
"globset" = rec {
crateName = "globset";
version = "0.4.18";
edition = "2024";
sha256 = "1qsp3wg0mgxzmshcgymdlpivqlc1bihm6133pl6dx2x4af8w3psj";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "aho-corasick";
packageId = "aho-corasick";
}
{
name = "bstr";
packageId = "bstr";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "log";
packageId = "log";
optional = true;
}
{
name = "regex-automata";
packageId = "regex-automata";
usesDefaultFeatures = false;
features = [ "std" "perf" "syntax" "meta" "nfa" "hybrid" ];
}
{
name = "regex-syntax";
packageId = "regex-syntax";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"default" = [ "log" ];
"log" = [ "dep:log" ];
"serde" = [ "dep:serde" ];
"serde1" = [ "serde" ];
};
resolvedDefaultFeatures = [ "default" "log" ];
};
"h2" = rec {
crateName = "h2";
version = "0.3.27";
edition = "2018";
sha256 = "0b92141hilij015av6i5ziw9xfx4py3lbjy17yc35z5ih01sbv0b";
authors = [
"Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "fnv";
packageId = "fnv";
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-sink";
packageId = "futures-sink";
usesDefaultFeatures = false;
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
}
{
name = "http";
packageId = "http";
}
{
name = "indexmap";
packageId = "indexmap";
features = [ "std" ];
}
{
name = "slab";
packageId = "slab";
}
{
name = "tokio";
packageId = "tokio";
features = [ "io-util" ];
}
{
name = "tokio-util";
packageId = "tokio-util";
features = [ "codec" "io" ];
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "rt-multi-thread" "macros" "sync" "net" ];
}
];
features = {
};
};
"hashbrown 0.15.5" = rec {
crateName = "hashbrown";
version = "0.15.5";
edition = "2021";
sha256 = "189qaczmjxnikm9db748xyhiw04kpmhm9xj9k9hg0sgx7pjwyacj";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "foldhash";
packageId = "foldhash";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "dep:alloc" ];
"allocator-api2" = [ "dep:allocator-api2" ];
"core" = [ "dep:core" ];
"default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
"default-hasher" = [ "dep:foldhash" ];
"equivalent" = [ "dep:equivalent" ];
"nightly" = [ "bumpalo/allocator_api" ];
"rayon" = [ "dep:rayon" ];
"rustc-dep-of-std" = [ "nightly" "core" "alloc" "rustc-internal-api" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default-hasher" "inline-more" ];
};
"hashbrown 0.16.1" = rec {
crateName = "hashbrown";
version = "0.16.1";
edition = "2021";
sha256 = "004i3njw38ji3bzdp9z178ba9x3k0c1pgy8x69pj7yfppv4iq7c4";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
features = {
"alloc" = [ "dep:alloc" ];
"allocator-api2" = [ "dep:allocator-api2" ];
"core" = [ "dep:core" ];
"default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
"default-hasher" = [ "dep:foldhash" ];
"equivalent" = [ "dep:equivalent" ];
"nightly" = [ "foldhash?/nightly" "bumpalo/allocator_api" ];
"rayon" = [ "dep:rayon" ];
"rustc-dep-of-std" = [ "nightly" "core" "alloc" "rustc-internal-api" ];
"serde" = [ "dep:serde_core" "dep:serde" ];
};
};
"heck" = rec {
crateName = "heck";
version = "0.5.0";
edition = "2021";
sha256 = "1sjmpsdl8czyh9ywl3qcsfsq9a307dg4ni2vnlwgnzzqhc4y0113";
};
"hermit-abi" = rec {
crateName = "hermit-abi";
version = "0.5.2";
edition = "2021";
sha256 = "1744vaqkczpwncfy960j2hxrbjl1q01csm84jpd9dajbdr2yy3zw";
libName = "hermit_abi";
authors = [
"Stefan Lankes"
];
features = {
"alloc" = [ "dep:alloc" ];
"core" = [ "dep:core" ];
"rustc-dep-of-std" = [ "core" "alloc" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"hex" = rec {
crateName = "hex";
version = "0.4.3";
edition = "2018";
sha256 = "0w1a4davm1lgzpamwnba907aysmlrnygbqmfis2mqjx5m552a93z";
authors = [
"KokaKiwi <kokakiwi@kokakiwi.net>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"hmac" = rec {
crateName = "hmac";
version = "0.11.0";
edition = "2018";
sha256 = "16z61aibdg4di40sqi4ks2s4rz6r29w4sx4gvblfph3yxch26aia";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "crypto-mac";
packageId = "crypto-mac";
}
{
name = "digest";
packageId = "digest 0.9.0";
}
];
devDependencies = [
{
name = "crypto-mac";
packageId = "crypto-mac";
features = [ "dev" ];
}
];
features = {
"std" = [ "crypto-mac/std" ];
};
};
"home" = rec {
crateName = "home";
version = "0.5.12";
edition = "2024";
sha256 = "13bjyzgx6q9srnfvl43dvmhn93qc8mh5w7cylk2g13sj3i3pyqnc";
authors = [
"Brian Anderson <andersrb@gmail.com>"
];
dependencies = [
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_UI_Shell" "Win32_System_Com" ];
}
];
};
"http" = rec {
crateName = "http";
version = "0.2.12";
edition = "2018";
sha256 = "1w81s4bcbmcj9bjp7mllm8jlz6b31wzvirz8bgpzbqkpwmbvn730";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "fnv";
packageId = "fnv";
}
{
name = "itoa";
packageId = "itoa";
}
];
};
"http-body" = rec {
crateName = "http-body";
version = "0.4.6";
edition = "2018";
sha256 = "1lmyjfk6bqk6k9gkn1dxq770sb78pqbqshga241hr5p995bb5skw";
libName = "http_body";
authors = [
"Carl Lerche <me@carllerche.com>"
"Lucio Franco <luciofranco14@gmail.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "http";
packageId = "http";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
];
};
"httparse" = rec {
crateName = "httparse";
version = "1.10.1";
edition = "2018";
sha256 = "11ycd554bw2dkgw0q61xsa7a4jn1wb1xbfacmf3dbwsikvkkvgvd";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"httpdate" = rec {
crateName = "httpdate";
version = "1.0.3";
edition = "2021";
sha256 = "1aa9rd2sac0zhjqh24c9xvir96g188zldkx0hr6dnnlx5904cfyz";
authors = [
"Pyfisch <pyfisch@posteo.org>"
];
};
"human-panic" = rec {
crateName = "human-panic";
version = "2.0.5";
edition = "2021";
sha256 = "0d0pdr39qz8i1dssa908j6r2lac4fpym1qy92zf6658rrgnabhv9";
libName = "human_panic";
dependencies = [
{
name = "anstream";
packageId = "anstream";
optional = true;
}
{
name = "anstyle";
packageId = "anstyle";
optional = true;
}
{
name = "backtrace";
packageId = "backtrace";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "sysinfo";
packageId = "sysinfo";
usesDefaultFeatures = false;
features = [ "system" ];
}
{
name = "toml";
packageId = "toml 0.9.10+spec-1.1.0";
usesDefaultFeatures = false;
features = [ "display" "serde" ];
}
{
name = "uuid";
packageId = "uuid";
usesDefaultFeatures = false;
features = [ "v4" ];
}
];
features = {
"color" = [ "dep:anstyle" "dep:anstream" ];
"default" = [ "color" ];
"unstable-doc" = [ "default" ];
};
resolvedDefaultFeatures = [ "color" "default" ];
};
"hyper" = rec {
crateName = "hyper";
version = "0.14.32";
edition = "2018";
sha256 = "1rvcb0smz8q1i0y6p7rwxr02x5sclfg2hhxf3g0774zczn0cgps1";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "futures-channel";
packageId = "futures-channel";
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
}
{
name = "h2";
packageId = "h2";
optional = true;
}
{
name = "http";
packageId = "http";
}
{
name = "http-body";
packageId = "http-body";
}
{
name = "httparse";
packageId = "httparse";
}
{
name = "httpdate";
packageId = "httpdate";
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "socket2";
packageId = "socket2 0.5.10";
optional = true;
features = [ "all" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "sync" ];
}
{
name = "tower-service";
packageId = "tower-service";
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "want";
packageId = "want";
}
];
devDependencies = [
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "fs" "macros" "io-std" "io-util" "rt" "rt-multi-thread" "sync" "time" "test-util" ];
}
];
features = {
"ffi" = [ "libc" ];
"full" = [ "client" "http1" "http2" "server" "stream" "runtime" ];
"h2" = [ "dep:h2" ];
"http2" = [ "h2" ];
"libc" = [ "dep:libc" ];
"runtime" = [ "tcp" "tokio/rt" "tokio/time" ];
"socket2" = [ "dep:socket2" ];
"tcp" = [ "socket2" "tokio/net" "tokio/rt" "tokio/time" ];
};
resolvedDefaultFeatures = [ "client" "default" "h2" "http1" "http2" "runtime" "server" "socket2" "tcp" ];
};
"hyper-tls" = rec {
crateName = "hyper-tls";
version = "0.5.0";
edition = "2018";
sha256 = "01crgy13102iagakf6q4mb75dprzr7ps1gj0l5hxm1cvm7gks66n";
libName = "hyper_tls";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "hyper";
packageId = "hyper";
usesDefaultFeatures = false;
features = [ "tcp" "client" ];
}
{
name = "native-tls";
packageId = "native-tls";
}
{
name = "tokio";
packageId = "tokio";
}
{
name = "tokio-native-tls";
packageId = "tokio-native-tls";
}
];
devDependencies = [
{
name = "hyper";
packageId = "hyper";
usesDefaultFeatures = false;
features = [ "http1" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "io-std" "macros" "io-util" ];
}
];
features = {
"vendored" = [ "native-tls/vendored" ];
};
};
"icu_collections" = rec {
crateName = "icu_collections";
version = "2.1.1";
edition = "2021";
sha256 = "0hsblchsdl64q21qwrs4hvc2672jrf466zivbj1bwyv606bn8ssc";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "potential_utf";
packageId = "potential_utf";
usesDefaultFeatures = false;
features = [ "zerovec" ];
}
{
name = "yoke";
packageId = "yoke";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerofrom";
packageId = "zerofrom";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerovec";
packageId = "zerovec";
usesDefaultFeatures = false;
features = [ "derive" "yoke" ];
}
];
features = {
"alloc" = [ "serde?/alloc" "zerovec/alloc" ];
"databake" = [ "dep:databake" "zerovec/databake" ];
"serde" = [ "dep:serde" "zerovec/serde" "potential_utf/serde" "alloc" ];
};
};
"icu_locale_core" = rec {
crateName = "icu_locale_core";
version = "2.1.1";
edition = "2021";
sha256 = "1djvdc2f5ylmp1ymzv4gcnmq1s4hqfim9nxlcm173lsd01hpifpd";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "litemap";
packageId = "litemap";
usesDefaultFeatures = false;
}
{
name = "tinystr";
packageId = "tinystr";
usesDefaultFeatures = false;
}
{
name = "writeable";
packageId = "writeable";
usesDefaultFeatures = false;
}
{
name = "zerovec";
packageId = "zerovec";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "litemap/alloc" "tinystr/alloc" "writeable/alloc" "serde?/alloc" ];
"databake" = [ "dep:databake" "alloc" ];
"serde" = [ "dep:serde" "tinystr/serde" ];
"zerovec" = [ "dep:zerovec" "tinystr/zerovec" ];
};
resolvedDefaultFeatures = [ "zerovec" ];
};
"icu_normalizer" = rec {
crateName = "icu_normalizer";
version = "2.1.1";
edition = "2021";
sha256 = "16dmn5596la2qm0r3vih0bzjfi0vx9a20yqjha6r1y3vnql8hv2z";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "icu_collections";
packageId = "icu_collections";
usesDefaultFeatures = false;
}
{
name = "icu_normalizer_data";
packageId = "icu_normalizer_data";
optional = true;
usesDefaultFeatures = false;
}
{
name = "icu_properties";
packageId = "icu_properties";
optional = true;
usesDefaultFeatures = false;
}
{
name = "icu_provider";
packageId = "icu_provider";
usesDefaultFeatures = false;
}
{
name = "smallvec";
packageId = "smallvec";
usesDefaultFeatures = false;
}
{
name = "zerovec";
packageId = "zerovec";
usesDefaultFeatures = false;
}
];
features = {
"compiled_data" = [ "dep:icu_normalizer_data" "icu_properties?/compiled_data" "icu_provider/baked" ];
"datagen" = [ "serde" "dep:databake" "icu_properties" "icu_collections/databake" "zerovec/databake" "icu_properties?/datagen" "icu_provider/export" ];
"default" = [ "compiled_data" "utf8_iter" "utf16_iter" ];
"icu_properties" = [ "dep:icu_properties" ];
"serde" = [ "dep:serde" "icu_collections/serde" "zerovec/serde" "icu_properties?/serde" "icu_provider/serde" ];
"utf16_iter" = [ "dep:utf16_iter" "dep:write16" ];
"utf8_iter" = [ "dep:utf8_iter" ];
};
resolvedDefaultFeatures = [ "compiled_data" ];
};
"icu_normalizer_data" = rec {
crateName = "icu_normalizer_data";
version = "2.1.1";
edition = "2021";
sha256 = "02jnzizg6q75m41l6c13xc7nkc5q8yr1b728dcgfhpzw076wrvbs";
authors = [
"The ICU4X Project Developers"
];
};
"icu_properties" = rec {
crateName = "icu_properties";
version = "2.1.2";
edition = "2021";
sha256 = "1v3lbmhhi7i6jgw51ikjb1p50qh5rb67grlkdnkc63l7zq1gq2q2";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "icu_collections";
packageId = "icu_collections";
usesDefaultFeatures = false;
}
{
name = "icu_locale_core";
packageId = "icu_locale_core";
usesDefaultFeatures = false;
features = [ "zerovec" ];
}
{
name = "icu_properties_data";
packageId = "icu_properties_data";
optional = true;
usesDefaultFeatures = false;
}
{
name = "icu_provider";
packageId = "icu_provider";
usesDefaultFeatures = false;
}
{
name = "zerotrie";
packageId = "zerotrie";
usesDefaultFeatures = false;
features = [ "yoke" "zerofrom" ];
}
{
name = "zerovec";
packageId = "zerovec";
usesDefaultFeatures = false;
features = [ "derive" "yoke" ];
}
];
features = {
"alloc" = [ "zerovec/alloc" "icu_collections/alloc" "serde?/alloc" ];
"compiled_data" = [ "dep:icu_properties_data" "icu_provider/baked" ];
"datagen" = [ "serde" "dep:databake" "zerovec/databake" "icu_collections/databake" "icu_locale_core/databake" "zerotrie/databake" "icu_provider/export" ];
"default" = [ "compiled_data" ];
"serde" = [ "dep:serde" "icu_locale_core/serde" "zerovec/serde" "icu_collections/serde" "icu_provider/serde" "zerotrie/serde" ];
"unicode_bidi" = [ "dep:unicode-bidi" ];
};
resolvedDefaultFeatures = [ "compiled_data" ];
};
"icu_properties_data" = rec {
crateName = "icu_properties_data";
version = "2.1.2";
edition = "2021";
sha256 = "1bvpkh939rgzrjfdb7hz47v4wijngk0snmcgrnpwc9fpz162jv31";
authors = [
"The ICU4X Project Developers"
];
};
"icu_provider" = rec {
crateName = "icu_provider";
version = "2.1.1";
edition = "2021";
sha256 = "0576b7dizgyhpfa74kacv86y4g1p7v5ffd6c56kf1q82rvq2r5l5";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "icu_locale_core";
packageId = "icu_locale_core";
usesDefaultFeatures = false;
}
{
name = "writeable";
packageId = "writeable";
optional = true;
usesDefaultFeatures = false;
}
{
name = "yoke";
packageId = "yoke";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerofrom";
packageId = "zerofrom";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerotrie";
packageId = "zerotrie";
optional = true;
usesDefaultFeatures = false;
}
{
name = "zerovec";
packageId = "zerovec";
usesDefaultFeatures = false;
features = [ "derive" ];
}
];
features = {
"alloc" = [ "icu_locale_core/alloc" "serde?/alloc" "yoke/alloc" "zerofrom/alloc" "zerovec/alloc" "zerotrie?/alloc" "dep:stable_deref_trait" "dep:writeable" ];
"baked" = [ "dep:zerotrie" "dep:writeable" ];
"deserialize_bincode_1" = [ "serde" "dep:bincode" "std" ];
"deserialize_json" = [ "serde" "dep:serde_json" ];
"deserialize_postcard_1" = [ "serde" "dep:postcard" ];
"export" = [ "serde" "dep:erased-serde" "dep:databake" "std" "sync" "dep:postcard" "zerovec/databake" ];
"logging" = [ "dep:log" ];
"serde" = [ "dep:serde" "yoke/serde" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "baked" ];
};
"idna" = rec {
crateName = "idna";
version = "1.1.0";
edition = "2018";
sha256 = "1pp4n7hppm480zcx411dsv9wfibai00wbpgnjj4qj0xa7kr7a21v";
authors = [
"The rust-url developers"
];
dependencies = [
{
name = "idna_adapter";
packageId = "idna_adapter";
}
{
name = "smallvec";
packageId = "smallvec";
features = [ "const_generics" ];
}
{
name = "utf8_iter";
packageId = "utf8_iter";
}
];
features = {
"compiled_data" = [ "idna_adapter/compiled_data" ];
"default" = [ "std" "compiled_data" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "compiled_data" "default" "std" ];
};
"idna_adapter" = rec {
crateName = "idna_adapter";
version = "1.2.1";
edition = "2021";
sha256 = "0i0339pxig6mv786nkqcxnwqa87v4m94b2653f6k3aj0jmhfkjis";
authors = [
"The rust-url developers"
];
dependencies = [
{
name = "icu_normalizer";
packageId = "icu_normalizer";
usesDefaultFeatures = false;
}
{
name = "icu_properties";
packageId = "icu_properties";
usesDefaultFeatures = false;
}
];
features = {
"compiled_data" = [ "icu_normalizer/compiled_data" "icu_properties/compiled_data" ];
};
resolvedDefaultFeatures = [ "compiled_data" ];
};
"ignore" = rec {
crateName = "ignore";
version = "0.4.25";
edition = "2024";
sha256 = "0jlv2s4fxqj9fsz6y015j5vbz6i475hj80j9q3sy05d0cniq5myk";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "crossbeam-deque";
packageId = "crossbeam-deque";
}
{
name = "globset";
packageId = "globset";
}
{
name = "log";
packageId = "log";
}
{
name = "memchr";
packageId = "memchr";
}
{
name = "regex-automata";
packageId = "regex-automata";
usesDefaultFeatures = false;
features = [ "std" "perf" "syntax" "meta" "nfa" "hybrid" "dfa-onepass" ];
}
{
name = "same-file";
packageId = "same-file";
}
{
name = "walkdir";
packageId = "walkdir";
}
{
name = "winapi-util";
packageId = "winapi-util";
target = { target, features }: (target."windows" or false);
}
];
features = {
};
};
"imara-diff" = rec {
crateName = "imara-diff";
version = "0.1.8";
edition = "2021";
sha256 = "1lmk5dpha2fhahrnsrgavxn1qz6ydp1w8jz8fpvlb28p89ylplqp";
libName = "imara_diff";
authors = [
"pascalkuthe <pascalkuthe@pm.me>"
];
dependencies = [
{
name = "hashbrown";
packageId = "hashbrown 0.15.5";
usesDefaultFeatures = false;
features = [ "default-hasher" "inline-more" ];
}
];
features = {
"default" = [ "unified_diff" ];
};
resolvedDefaultFeatures = [ "default" "unified_diff" ];
};
"indexmap" = rec {
crateName = "indexmap";
version = "2.12.1";
edition = "2021";
sha256 = "1wmcfk7g7d9wz1dninlijx70kfkzz6d5r36nyi2hdjjvaqmvpm0a";
dependencies = [
{
name = "equivalent";
packageId = "equivalent";
usesDefaultFeatures = false;
}
{
name = "hashbrown";
packageId = "hashbrown 0.16.1";
usesDefaultFeatures = false;
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"borsh" = [ "dep:borsh" ];
"default" = [ "std" ];
"quickcheck" = [ "dep:quickcheck" ];
"rayon" = [ "dep:rayon" ];
"serde" = [ "dep:serde_core" "dep:serde" ];
"sval" = [ "dep:sval" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"indicatif" = rec {
crateName = "indicatif";
version = "0.17.11";
edition = "2021";
sha256 = "0db2b2r79r9x8x4lysq1ci9xm13c0xg0sqn3z960yh2bk2430fqq";
dependencies = [
{
name = "console";
packageId = "console";
usesDefaultFeatures = false;
features = [ "ansi-parsing" ];
}
{
name = "number_prefix";
packageId = "number_prefix";
}
{
name = "portable-atomic";
packageId = "portable-atomic";
}
{
name = "unicode-segmentation";
packageId = "unicode-segmentation";
optional = true;
}
{
name = "unicode-width";
packageId = "unicode-width";
optional = true;
}
{
name = "web-time";
packageId = "web-time";
target = { target, features }: ("wasm32" == target."arch" or null);
}
];
features = {
"default" = [ "unicode-width" "console/unicode-width" ];
"futures" = [ "dep:futures-core" ];
"improved_unicode" = [ "unicode-segmentation" "unicode-width" "console/unicode-width" ];
"in_memory" = [ "vt100" ];
"rayon" = [ "dep:rayon" ];
"tokio" = [ "dep:tokio" ];
"unicode-segmentation" = [ "dep:unicode-segmentation" ];
"unicode-width" = [ "dep:unicode-width" ];
"vt100" = [ "dep:vt100" ];
};
resolvedDefaultFeatures = [ "default" "improved_unicode" "unicode-segmentation" "unicode-width" ];
};
"inout" = rec {
crateName = "inout";
version = "0.1.4";
edition = "2021";
sha256 = "008xfl1jn9rxsq19phnhbimccf4p64880jmnpg59wqi07kk117w7";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
}
];
features = {
"block-padding" = [ "dep:block-padding" ];
"std" = [ "block-padding/std" ];
};
};
"instant" = rec {
crateName = "instant";
version = "0.1.13";
edition = "2018";
sha256 = "08h27kzvb5jw74mh0ajv0nv9ggwvgqm8ynjsn2sa9jsks4cjh970";
authors = [
"sebcrozet <developer@crozet.re>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
];
features = {
"js-sys" = [ "dep:js-sys" ];
"stdweb" = [ "dep:stdweb" ];
"wasm-bindgen" = [ "js-sys" "wasm-bindgen_rs" "web-sys" ];
"wasm-bindgen_rs" = [ "dep:wasm-bindgen_rs" ];
"web-sys" = [ "dep:web-sys" ];
};
};
"ipnet" = rec {
crateName = "ipnet";
version = "2.11.0";
edition = "2018";
sha256 = "0c5i9sfi2asai28m8xp48k5gvwkqrg5ffpi767py6mzsrswv17s6";
authors = [
"Kris Price <kris@krisprice.nz>"
];
features = {
"default" = [ "std" ];
"heapless" = [ "dep:heapless" ];
"json" = [ "serde" "schemars" ];
"schemars" = [ "dep:schemars" ];
"ser_as_str" = [ "heapless" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"is-docker" = rec {
crateName = "is-docker";
version = "0.2.0";
edition = "2015";
sha256 = "1cyibrv6817cqcpf391m327ss40xlbik8wxcv5h9pj9byhksx2wj";
libName = "is_docker";
authors = [
"Sean Larkin <TheLarkInn@users.noreply.github.com>"
];
dependencies = [
{
name = "once_cell";
packageId = "once_cell";
}
];
};
"is-wsl" = rec {
crateName = "is-wsl";
version = "0.4.0";
edition = "2015";
sha256 = "19bs5pq221d4bknnwiqqkqrnsx2in0fsk8fylxm1747iim4hjdhp";
libName = "is_wsl";
authors = [
"Sean Larkin <TheLarkInn@users.noreply.github.com>"
];
dependencies = [
{
name = "is-docker";
packageId = "is-docker";
}
{
name = "once_cell";
packageId = "once_cell";
}
];
};
"is_terminal_polyfill" = rec {
crateName = "is_terminal_polyfill";
version = "1.70.2";
edition = "2021";
sha256 = "15anlc47sbz0jfs9q8fhwf0h3vs2w4imc030shdnq54sny5i7jx6";
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"itoa" = rec {
crateName = "itoa";
version = "1.0.16";
edition = "2021";
sha256 = "040hqvfkxl7mpjs54y495ch2qkxx26kbfxyydmi42k7vk8rvbrby";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"no-panic" = [ "dep:no-panic" ];
};
};
"jiff" = rec {
crateName = "jiff";
version = "0.2.17";
edition = "2021";
sha256 = "1f76bd8gfzqz4zlpxklqrg2j512xyz8h7bmv1ksl4dn20n0rnzd8";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "jiff-static";
packageId = "jiff-static";
optional = true;
}
{
name = "jiff-static";
packageId = "jiff-static";
target = { target, features }: false;
}
{
name = "jiff-tzdb-platform";
packageId = "jiff-tzdb-platform";
optional = true;
target = { target, features }: ((target."windows" or false) || (builtins.elem "wasm" target."family"));
}
{
name = "log";
packageId = "log";
optional = true;
usesDefaultFeatures = false;
}
{
name = "portable-atomic";
packageId = "portable-atomic";
usesDefaultFeatures = false;
target = { target, features }: (!("ptr" == target."has_atomic" or null));
}
{
name = "portable-atomic-util";
packageId = "portable-atomic-util";
usesDefaultFeatures = false;
target = { target, features }: (!("ptr" == target."has_atomic" or null));
}
{
name = "serde_core";
packageId = "serde_core";
optional = true;
usesDefaultFeatures = false;
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_System_Time" ];
}
];
devDependencies = [
{
name = "log";
packageId = "log";
}
];
features = {
"alloc" = [ "serde_core?/alloc" "portable-atomic-util/alloc" ];
"default" = [ "std" "tz-system" "tz-fat" "tzdb-bundle-platform" "tzdb-zoneinfo" "tzdb-concatenated" "perf-inline" ];
"js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
"logging" = [ "dep:log" ];
"serde" = [ "dep:serde_core" ];
"static" = [ "static-tz" "jiff-static?/tzdb" ];
"static-tz" = [ "dep:jiff-static" ];
"std" = [ "alloc" "log?/std" "serde_core?/std" ];
"tz-fat" = [ "jiff-static?/tz-fat" ];
"tz-system" = [ "std" "dep:windows-sys" ];
"tzdb-bundle-always" = [ "dep:jiff-tzdb" "alloc" ];
"tzdb-bundle-platform" = [ "dep:jiff-tzdb-platform" "alloc" ];
"tzdb-concatenated" = [ "std" ];
"tzdb-zoneinfo" = [ "std" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "perf-inline" "serde" "std" "tz-fat" "tz-system" "tzdb-bundle-platform" "tzdb-concatenated" "tzdb-zoneinfo" ];
};
"jiff-static" = rec {
crateName = "jiff-static";
version = "0.2.17";
edition = "2021";
sha256 = "0n3fkwzkwply7gzmdbmbqs33l5xbmz81zi9h4q9nk29zajxvx1xp";
procMacro = true;
libName = "jiff_static";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
}
];
features = {
"tzdb" = [ "dep:jiff-tzdb" ];
};
resolvedDefaultFeatures = [ "default" "tz-fat" ];
};
"jiff-tzdb" = rec {
crateName = "jiff-tzdb";
version = "0.1.5";
edition = "2021";
sha256 = "1hm5xn3q092zac6apjy4492ddid473mwa0d64z5f5f95yyzix5v8";
libName = "jiff_tzdb";
libPath = "lib.rs";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
};
"jiff-tzdb-platform" = rec {
crateName = "jiff-tzdb-platform";
version = "0.1.3";
edition = "2021";
sha256 = "1s1ja692wyhbv7f60mc0x90h7kn1pv65xkqi2y4imarbmilmlnl7";
libName = "jiff_tzdb_platform";
libPath = "lib.rs";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "jiff-tzdb";
packageId = "jiff-tzdb";
}
];
};
"jobserver" = rec {
crateName = "jobserver";
version = "0.1.34";
edition = "2021";
sha256 = "0cwx0fllqzdycqn4d6nb277qx5qwnmjdxdl0lxkkwssx77j3vyws";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom 0.3.4";
target = { target, features }: (target."windows" or false);
features = [ "std" ];
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
];
};
"js-sys" = rec {
crateName = "js-sys";
version = "0.3.83";
edition = "2021";
sha256 = "1n71vpxrzclly0530lwkcsx6mg73lipam2ak3rr1ypzmqw4kfjj6";
libName = "js_sys";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "once_cell";
packageId = "once_cell";
usesDefaultFeatures = false;
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "wasm-bindgen/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"keyring" = rec {
crateName = "keyring";
version = "3.6.3";
edition = "2021";
sha256 = "072mzc4rk2qffdlc8c5s9h38c6fifyr9xxmsix599ra4y2pw7g7f";
authors = [
"Walther Chen <walther.chen@gmail.com>"
"Daniel Brotsky <dev@brotsky.com>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
optional = true;
target = { target, features }: ("windows" == target."os" or null);
}
{
name = "dbus-secret-service";
packageId = "dbus-secret-service";
optional = true;
target = { target, features }: ("freebsd" == target."os" or null);
}
{
name = "dbus-secret-service";
packageId = "dbus-secret-service";
optional = true;
target = { target, features }: ("linux" == target."os" or null);
}
{
name = "dbus-secret-service";
packageId = "dbus-secret-service";
optional = true;
target = { target, features }: ("openbsd" == target."os" or null);
}
{
name = "linux-keyutils";
packageId = "linux-keyutils";
optional = true;
target = { target, features }: ("linux" == target."os" or null);
features = [ "std" ];
}
{
name = "log";
packageId = "log";
}
{
name = "security-framework";
packageId = "security-framework 2.11.1";
optional = true;
target = { target, features }: ("ios" == target."os" or null);
}
{
name = "security-framework";
packageId = "security-framework 3.5.1";
optional = true;
target = { target, features }: ("macos" == target."os" or null);
}
{
name = "windows-sys";
packageId = "windows-sys 0.60.2";
optional = true;
target = { target, features }: ("windows" == target."os" or null);
features = [ "Win32_Foundation" "Win32_Security_Credentials" ];
}
{
name = "zeroize";
packageId = "zeroize";
target = { target, features }: ("windows" == target."os" or null);
}
];
features = {
"apple-native" = [ "dep:security-framework" ];
"async-io" = [ "zbus?/async-io" ];
"async-secret-service" = [ "dep:secret-service" "dep:zbus" ];
"crypto-openssl" = [ "dbus-secret-service?/crypto-openssl" "secret-service?/crypto-openssl" ];
"crypto-rust" = [ "dbus-secret-service?/crypto-rust" "secret-service?/crypto-rust" ];
"linux-native" = [ "dep:linux-keyutils" ];
"linux-native-async-persistent" = [ "linux-native" "async-secret-service" ];
"linux-native-sync-persistent" = [ "linux-native" "sync-secret-service" ];
"openssl" = [ "dep:openssl" ];
"sync-secret-service" = [ "dep:dbus-secret-service" ];
"tokio" = [ "zbus?/tokio" ];
"vendored" = [ "dbus-secret-service?/vendored" "openssl?/vendored" ];
"windows-native" = [ "dep:windows-sys" "dep:byteorder" ];
};
resolvedDefaultFeatures = [ "apple-native" "linux-native" "linux-native-sync-persistent" "sync-secret-service" "windows-native" ];
};
"lazy_static 0.2.11" = rec {
crateName = "lazy_static";
version = "0.2.11";
edition = "2015";
sha256 = "0wxy8vak7jsx6r8gx475pjqpx11p2bfq4wvw6idmqi31mp3k7w3n";
authors = [
"Marvin Löbel <loebel.marvin@gmail.com>"
];
features = {
"compiletest" = [ "compiletest_rs" ];
"compiletest_rs" = [ "dep:compiletest_rs" ];
"spin" = [ "dep:spin" ];
"spin_no_std" = [ "nightly" "spin" ];
};
};
"lazy_static 1.5.0" = rec {
crateName = "lazy_static";
version = "1.5.0";
edition = "2015";
sha256 = "1zk6dqqni0193xg6iijh7i3i44sryglwgvx20spdvwk3r6sbrlmv";
authors = [
"Marvin Löbel <loebel.marvin@gmail.com>"
];
features = {
"spin" = [ "dep:spin" ];
"spin_no_std" = [ "spin" ];
};
};
"libc" = rec {
crateName = "libc";
version = "0.2.178";
edition = "2021";
sha256 = "1490yks6mria93i3xdva1gm05cjz824g14mbv0ph32lxma6kvj9p";
authors = [
"The Rust Project Developers"
];
features = {
"default" = [ "std" ];
"rustc-dep-of-std" = [ "align" "rustc-std-workspace-core" ];
"rustc-std-workspace-core" = [ "dep:rustc-std-workspace-core" ];
"use_std" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "extra_traits" "std" ];
};
"libdbus-sys" = rec {
crateName = "libdbus-sys";
version = "0.2.7";
edition = "2018";
links = "dbus";
sha256 = "0hzhq0dz6lfzmhsym9m95cfhjzrwq74qdg85xkpg2012sj4lg31j";
libName = "libdbus_sys";
authors = [
"David Henningsson <diwic@ubuntu.com>"
];
buildDependencies = [
{
name = "pkg-config";
packageId = "pkg-config";
optional = true;
}
];
features = {
"cc" = [ "dep:cc" ];
"default" = [ "pkg-config" ];
"pkg-config" = [ "dep:pkg-config" ];
"vendored" = [ "cc" ];
};
resolvedDefaultFeatures = [ "default" "pkg-config" ];
};
"libgit2-sys" = rec {
crateName = "libgit2-sys";
version = "0.18.3+1.9.2";
edition = "2021";
links = "git2";
sha256 = "11rlbyihj3k35mnkxxz4yvsnlx33a4r9srl66c5vp08pp72arcy9";
libName = "libgit2_sys";
libPath = "lib.rs";
authors = [
"Josh Triplett <josh@joshtriplett.org>"
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "libssh2-sys";
packageId = "libssh2-sys";
optional = true;
}
{
name = "libz-sys";
packageId = "libz-sys";
usesDefaultFeatures = false;
features = [ "libc" ];
}
{
name = "openssl-sys";
packageId = "openssl-sys";
optional = true;
target = { target, features }: (target."unix" or false);
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
features = [ "parallel" ];
}
{
name = "pkg-config";
packageId = "pkg-config";
}
];
features = {
"https" = [ "openssl-sys" ];
"libssh2-sys" = [ "dep:libssh2-sys" ];
"openssl-sys" = [ "dep:openssl-sys" ];
"ssh" = [ "libssh2-sys" ];
"vendored-openssl" = [ "openssl-sys/vendored" ];
"zlib-ng-compat" = [ "libz-sys/zlib-ng" "libssh2-sys?/zlib-ng-compat" ];
};
resolvedDefaultFeatures = [ "https" "libssh2-sys" "openssl-sys" "ssh" ];
};
"libpijul" = rec {
crateName = "libpijul";
version = "1.0.0-beta.10";
edition = "2021";
src = lib.cleanSourceWith { filter = sourceFilter; src = ./libpijul; };
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "adler32";
packageId = "adler32";
}
{
name = "aes";
packageId = "aes";
features = [ "ctr" ];
}
{
name = "bincode";
packageId = "bincode";
}
{
name = "bitflags";
packageId = "bitflags 2.10.0";
features = [ "serde" ];
}
{
name = "blake3";
packageId = "blake3";
}
{
name = "bs58";
packageId = "bs58";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "canonical-path";
packageId = "canonical-path";
optional = true;
}
{
name = "chardetng";
packageId = "chardetng";
}
{
name = "crossbeam-deque";
packageId = "crossbeam-deque";
}
{
name = "curve25519-dalek";
packageId = "curve25519-dalek 3.2.0";
features = [ "serde" ];
}
{
name = "data-encoding";
packageId = "data-encoding";
}
{
name = "diffs";
packageId = "diffs";
}
{
name = "ed25519-dalek";
packageId = "ed25519-dalek";
features = [ "serde" "signature" ];
}
{
name = "encoding_rs";
packageId = "encoding_rs";
}
{
name = "flate2";
packageId = "flate2";
optional = true;
}
{
name = "generic-array";
packageId = "generic-array";
}
{
name = "getrandom";
packageId = "getrandom 0.2.16";
target = { target, features }: ("wasm32" == target."arch" or null);
features = [ "js" ];
}
{
name = "git2";
packageId = "git2";
optional = true;
}
{
name = "hmac";
packageId = "hmac";
}
{
name = "ignore";
packageId = "ignore";
optional = true;
}
{
name = "imara-diff";
packageId = "imara-diff";
}
{
name = "jiff";
packageId = "jiff";
features = [ "serde" ];
}
{
name = "log";
packageId = "log";
}
{
name = "lru-cache";
packageId = "lru-cache";
optional = true;
}
{
name = "nom";
packageId = "nom";
}
{
name = "parking_lot";
packageId = "parking_lot 0.12.5";
}
{
name = "path-slash";
packageId = "path-slash";
optional = true;
}
{
name = "pbkdf2";
packageId = "pbkdf2 0.9.0";
usesDefaultFeatures = false;
}
{
name = "pijul-macros";
packageId = "pijul-macros";
}
{
name = "rand";
packageId = "rand";
}
{
name = "regex";
packageId = "regex";
}
{
name = "sanakirja";
packageId = "sanakirja";
usesDefaultFeatures = false;
features = [ "crc32" ];
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "sha2";
packageId = "sha2 0.9.9";
}
{
name = "tar";
packageId = "tar";
optional = true;
}
{
name = "tempfile";
packageId = "tempfile";
optional = true;
}
{
name = "thiserror";
packageId = "thiserror 2.0.17";
}
{
name = "toml";
packageId = "toml 0.8.23";
features = [ "preserve_order" ];
}
{
name = "twox-hash";
packageId = "twox-hash";
}
{
name = "zstd-seekable";
packageId = "zstd-seekable";
optional = true;
}
];
devDependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "env_logger";
packageId = "env_logger 0.11.8";
}
{
name = "quickcheck";
packageId = "quickcheck";
}
{
name = "rand";
packageId = "rand";
}
{
name = "rand_chacha";
packageId = "rand_chacha";
}
];
features = {
"canonical-path" = [ "dep:canonical-path" ];
"default" = [ "ondisk-repos" "text-changes" ];
"flate2" = [ "dep:flate2" ];
"git2" = [ "dep:git2" ];
"ignore" = [ "dep:ignore" ];
"lru-cache" = [ "dep:lru-cache" ];
"mmap" = [ "sanakirja/mmap" ];
"ondisk-repos" = [ "mmap" "zstd" "ignore" "canonical-path" "lru-cache" "tempfile" "path-slash" ];
"path-slash" = [ "dep:path-slash" ];
"tar" = [ "dep:tar" ];
"tarball" = [ "tar" "flate2" ];
"tempfile" = [ "dep:tempfile" ];
"zstd" = [ "zstd-seekable" ];
"zstd-seekable" = [ "dep:zstd-seekable" ];
};
resolvedDefaultFeatures = [ "canonical-path" "default" "flate2" "git2" "ignore" "lru-cache" "mmap" "ondisk-repos" "path-slash" "tar" "tarball" "tempfile" "text-changes" "zstd" "zstd-seekable" ];
};
"libredox" = rec {
crateName = "libredox";
version = "0.1.11";
edition = "2021";
sha256 = "0l7dm6b069y5skdipxg74z1ffmwz75hfxcb5b3r1rvciqbmgc5fz";
authors = [
"4lDO2 <4lDO2@protonmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
}
{
name = "libc";
packageId = "libc";
}
{
name = "redox_syscall";
packageId = "redox_syscall 0.6.0";
optional = true;
}
];
features = {
"default" = [ "call" "std" "redox_syscall" ];
"ioslice" = [ "dep:ioslice" ];
"mkns" = [ "ioslice" ];
"redox_syscall" = [ "dep:redox_syscall" ];
};
resolvedDefaultFeatures = [ "call" "default" "redox_syscall" "std" ];
};
"libsodium-sys" = rec {
crateName = "libsodium-sys";
version = "0.2.7";
edition = "2015";
links = "sodium";
sha256 = "1zcjka23grayr8kjrgbada6vwagp0kkni9m45v0gpbanrn3r6xvb";
libName = "libsodium_sys";
authors = [
"dnaq"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
target = {target, features}: (!("msvc" == target."env" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = {target, features}: ("msvc" == target."env" or null);
}
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "walkdir";
packageId = "walkdir";
}
];
features = {
};
resolvedDefaultFeatures = [ "use-pkg-config" ];
};
"libssh2-sys" = rec {
crateName = "libssh2-sys";
version = "0.3.1";
edition = "2015";
links = "ssh2";
sha256 = "1f8i31h3666rl6sq7v64ajdq03hmylkh6c1vaf9828aaml2ly3i2";
libName = "libssh2_sys";
libPath = "lib.rs";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Wez Furlong <wez@wezfurlong.org>"
"Matteo Bigoi <bigo@crisidev.org>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "libz-sys";
packageId = "libz-sys";
usesDefaultFeatures = false;
features = [ "libc" ];
}
{
name = "openssl-sys";
packageId = "openssl-sys";
target = { target, features }: (target."unix" or false);
}
{
name = "openssl-sys";
packageId = "openssl-sys";
optional = true;
target = { target, features }: (target."windows" or false);
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "vcpkg";
packageId = "vcpkg";
target = {target, features}: ("msvc" == target."env" or null);
}
];
features = {
"openssl-on-win32" = [ "openssl-sys" ];
"openssl-sys" = [ "dep:openssl-sys" ];
"vendored-openssl" = [ "openssl-sys/vendored" ];
"zlib-ng-compat" = [ "libz-sys/zlib-ng" ];
};
};
"libz-sys" = rec {
crateName = "libz-sys";
version = "1.1.23";
edition = "2018";
links = "z";
sha256 = "1xy0l46gmhfyk28r9pm7njl0h7dh8l2vpiqw67kn043pyfxiil8m";
libName = "libz_sys";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Josh Triplett <josh@joshtriplett.org>"
"Sebastian Thiel <sebastian.thiel@icloud.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
optional = true;
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "vcpkg";
packageId = "vcpkg";
}
];
features = {
"cmake" = [ "dep:cmake" ];
"default" = [ "libc" "stock-zlib" ];
"libc" = [ "dep:libc" ];
"zlib-ng" = [ "libc" "cmake" ];
"zlib-ng-no-cmake-experimental-community-maintained" = [ "libc" ];
};
resolvedDefaultFeatures = [ "libc" ];
};
"linked-hash-map" = rec {
crateName = "linked-hash-map";
version = "0.5.6";
edition = "2015";
sha256 = "03vpgw7x507g524nx5i1jf5dl8k3kv0fzg8v3ip6qqwbpkqww5q7";
libName = "linked_hash_map";
authors = [
"Stepan Koltsov <stepan.koltsov@gmail.com>"
"Andrew Paseltiner <apaseltiner@gmail.com>"
];
features = {
"heapsize" = [ "dep:heapsize" ];
"heapsize_impl" = [ "heapsize" ];
"serde" = [ "dep:serde" ];
"serde_impl" = [ "serde" ];
};
};
"linux-keyutils" = rec {
crateName = "linux-keyutils";
version = "0.2.4";
edition = "2021";
sha256 = "13nipvk2mzk76y7yfsqwnwsqk21x6xy8fkmqz5is99fqbzn4j7kn";
libName = "linux_keyutils";
authors = [
"landhb <landhb@users.noreply.github.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
usesDefaultFeatures = false;
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
}
];
features = {
"std" = [ "bitflags/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"linux-raw-sys 0.11.0" = rec {
crateName = "linux-raw-sys";
version = "0.11.0";
edition = "2021";
sha256 = "0fghx0nn8nvbz5yzgizfcwd6ap2pislp68j8c1bwyr6sacxkq7fz";
libName = "linux_raw_sys";
authors = [
"Dan Gohman <dev@sunfishcode.online>"
];
features = {
"core" = [ "dep:core" ];
"default" = [ "std" "general" "errno" ];
"rustc-dep-of-std" = [ "core" "no_std" ];
};
resolvedDefaultFeatures = [ "auxvec" "elf" "errno" "general" "ioctl" "no_std" ];
};
"linux-raw-sys 0.4.15" = rec {
crateName = "linux-raw-sys";
version = "0.4.15";
edition = "2021";
sha256 = "1aq7r2g7786hyxhv40spzf2nhag5xbw2axxc1k8z5k1dsgdm4v6j";
libName = "linux_raw_sys";
authors = [
"Dan Gohman <dev@sunfishcode.online>"
];
features = {
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"default" = [ "std" "general" "errno" ];
"rustc-dep-of-std" = [ "core" "compiler_builtins" "no_std" ];
};
resolvedDefaultFeatures = [ "elf" "errno" "general" "ioctl" "no_std" ];
};
"litemap" = rec {
crateName = "litemap";
version = "0.8.1";
edition = "2021";
sha256 = "0xsy8pfp9s802rsj1bq2ys2kbk1g36w5dr3gkfip7gphb5x60wv3";
authors = [
"The ICU4X Project Developers"
];
features = {
"databake" = [ "dep:databake" ];
"default" = [ "alloc" ];
"serde" = [ "dep:serde_core" "alloc" ];
"testing" = [ "alloc" ];
"yoke" = [ "dep:yoke" ];
};
};
"lock_api" = rec {
crateName = "lock_api";
version = "0.4.14";
edition = "2021";
sha256 = "0rg9mhx7vdpajfxvdjmgmlyrn20ligzqvn8ifmaz7dc79gkrjhr2";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "scopeguard";
packageId = "scopeguard";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "atomic_usize" ];
"owning_ref" = [ "dep:owning_ref" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "atomic_usize" "default" ];
};
"log" = rec {
crateName = "log";
version = "0.4.29";
edition = "2021";
sha256 = "15q8j9c8g5zpkcw0hnd6cf2z7fxqnvsjh3rw5mv5q10r83i34l2y";
authors = [
"The Rust Project Developers"
];
features = {
"kv_serde" = [ "kv_std" "value-bag/serde" "serde" ];
"kv_std" = [ "std" "kv" "value-bag/error" ];
"kv_sval" = [ "kv" "value-bag/sval" "sval" "sval_ref" ];
"kv_unstable" = [ "kv" "value-bag" ];
"kv_unstable_serde" = [ "kv_serde" "kv_unstable_std" ];
"kv_unstable_std" = [ "kv_std" "kv_unstable" ];
"kv_unstable_sval" = [ "kv_sval" "kv_unstable" ];
"serde" = [ "serde_core" ];
"serde_core" = [ "dep:serde_core" ];
"sval" = [ "dep:sval" ];
"sval_ref" = [ "dep:sval_ref" ];
"value-bag" = [ "dep:value-bag" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"lru-cache" = rec {
crateName = "lru-cache";
version = "0.1.2";
edition = "2015";
sha256 = "071viv6g2p3akwqmfb3c8vsycs5n7kr17b70l7la071jv0d4zqii";
libName = "lru_cache";
authors = [
"Stepan Koltsov <stepan.koltsov@gmail.com>"
];
dependencies = [
{
name = "linked-hash-map";
packageId = "linked-hash-map";
}
];
features = {
"heapsize" = [ "dep:heapsize" ];
"heapsize_impl" = [ "heapsize" "linked-hash-map/heapsize_impl" ];
};
};
"md5" = rec {
crateName = "md5";
version = "0.7.0";
edition = "2015";
sha256 = "0wcps37hrhz59fkhf8di1ppdnqld6l1w5sdy7jp7p51z0i4c8329";
authors = [
"Ivan Ukhov <ivan.ukhov@gmail.com>"
"Kamal Ahmad <shibe@openmailbox.org>"
"Konstantin Stepanov <milezv@gmail.com>"
"Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"
"Nathan Musoke <nathan.musoke@gmail.com>"
"Scott Mabin <scott@mabez.dev>"
"Tony Arcieri <bascule@gmail.com>"
"Wim de With <register@dewith.io>"
"Yosef Dinerstein <yosefdi@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"memchr" = rec {
crateName = "memchr";
version = "2.7.6";
edition = "2021";
sha256 = "0wy29kf6pb4fbhfksjbs05jy2f32r2f3r1ga6qkmpz31k79h0azm";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
"bluss"
];
features = {
"core" = [ "dep:core" ];
"default" = [ "std" ];
"logging" = [ "dep:log" ];
"rustc-dep-of-std" = [ "core" ];
"std" = [ "alloc" ];
"use_std" = [ "std" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"memmap2" = rec {
crateName = "memmap2";
version = "0.9.9";
edition = "2021";
sha256 = "146lfx0mpib44wvws6hibahm4h2w867bzwsc6zhmi9p0l3j36hbl";
authors = [
"Dan Burkert <dan@danburkert.com>"
"Yevhenii Reizner <razrfalcon@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
];
features = {
"stable_deref_trait" = [ "dep:stable_deref_trait" ];
};
};
"memoffset" = rec {
crateName = "memoffset";
version = "0.7.1";
edition = "2015";
sha256 = "1x2zv8hv9c9bvgmhsjvr9bymqwyxvgbca12cm8xkhpyy5k1r7s2x";
authors = [
"Gilad Naaman <gilad.naaman@gmail.com>"
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg";
}
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"mime" = rec {
crateName = "mime";
version = "0.3.17";
edition = "2015";
sha256 = "16hkibgvb9klh0w0jk5crr5xv90l3wlf77ggymzjmvl1818vnxv8";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
};
"minimal-lexical" = rec {
crateName = "minimal-lexical";
version = "0.2.1";
edition = "2018";
sha256 = "16ppc5g84aijpri4jzv14rvcnslvlpphbszc7zzp6vfkddf4qdb8";
libName = "minimal_lexical";
authors = [
"Alex Huszagh <ahuszagh@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"miniz_oxide" = rec {
crateName = "miniz_oxide";
version = "0.8.9";
edition = "2021";
sha256 = "05k3pdg8bjjzayq3rf0qhpirq9k37pxnasfn4arbs17phqn6m9qz";
authors = [
"Frommi <daniil.liferenko@gmail.com>"
"oyvindln <oyvindln@users.noreply.github.com>"
"Rich Geldreich richgel99@gmail.com"
];
dependencies = [
{
name = "adler2";
packageId = "adler2";
usesDefaultFeatures = false;
}
{
name = "simd-adler32";
packageId = "simd-adler32";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "dep:alloc" ];
"core" = [ "dep:core" ];
"default" = [ "with-alloc" ];
"rustc-dep-of-std" = [ "core" "alloc" "adler2/rustc-dep-of-std" ];
"serde" = [ "dep:serde" ];
"simd" = [ "simd-adler32" ];
"simd-adler32" = [ "dep:simd-adler32" ];
};
resolvedDefaultFeatures = [ "simd" "simd-adler32" "with-alloc" ];
};
"mio" = rec {
crateName = "mio";
version = "1.1.1";
edition = "2021";
sha256 = "1z2phpalqbdgihrcjp8y09l3kgq6309jnhnr6h11l9s7mnqcm6x6";
authors = [
"Carl Lerche <me@carllerche.com>"
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: ("hermit" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
target = { target, features }: ("wasi" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "wasi";
packageId = "wasi 0.11.1+wasi-snapshot-preview1";
target = { target, features }: ("wasi" == target."os" or null);
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Wdk_Foundation" "Wdk_Storage_FileSystem" "Wdk_System_IO" "Win32_Foundation" "Win32_Networking_WinSock" "Win32_Storage_FileSystem" "Win32_Security" "Win32_System_IO" "Win32_System_WindowsProgramming" ];
}
];
features = {
"default" = [ "log" ];
"log" = [ "dep:log" ];
"os-ext" = [ "os-poll" "windows-sys/Win32_System_Pipes" "windows-sys/Win32_Security" ];
};
resolvedDefaultFeatures = [ "net" "os-ext" "os-poll" ];
};
"native-tls" = rec {
crateName = "native-tls";
version = "0.2.14";
edition = "2015";
sha256 = "03hga800x8bzkp8h7frnm7yp545dwwawgmaq673vx7byk1139pl7";
libName = "native_tls";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: ("apple" == target."vendor" or null);
}
{
name = "log";
packageId = "log";
target = { target, features }: (!(("windows" == target."os" or null) || ("apple" == target."vendor" or null)));
}
{
name = "openssl";
packageId = "openssl";
target = { target, features }: (!(("windows" == target."os" or null) || ("apple" == target."vendor" or null)));
}
{
name = "openssl-probe";
packageId = "openssl-probe";
target = { target, features }: (!(("windows" == target."os" or null) || ("apple" == target."vendor" or null)));
}
{
name = "openssl-sys";
packageId = "openssl-sys";
target = { target, features }: (!(("windows" == target."os" or null) || ("apple" == target."vendor" or null)));
}
{
name = "schannel";
packageId = "schannel";
target = { target, features }: ("windows" == target."os" or null);
}
{
name = "security-framework";
packageId = "security-framework 2.11.1";
target = { target, features }: ("apple" == target."vendor" or null);
}
{
name = "security-framework-sys";
packageId = "security-framework-sys";
target = { target, features }: ("apple" == target."vendor" or null);
}
{
name = "tempfile";
packageId = "tempfile";
target = { target, features }: ("macos" == target."os" or null);
}
];
devDependencies = [
{
name = "tempfile";
packageId = "tempfile";
}
];
features = {
"alpn" = [ "security-framework/alpn" ];
"vendored" = [ "openssl/vendored" ];
};
};
"nix 0.26.4" = rec {
crateName = "nix";
version = "0.26.4";
edition = "2018";
sha256 = "06xgl4ybb8pvjrbmc3xggbgk3kbs1j0c4c0nzdfrmpbgrkrym2sr";
authors = [
"The nix-rust Project Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 1.3.2";
}
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
features = [ "extra_traits" ];
}
{
name = "memoffset";
packageId = "memoffset";
optional = true;
target = { target, features }: (!("redox" == target."os" or null));
}
{
name = "pin-utils";
packageId = "pin-utils";
optional = true;
}
];
features = {
"aio" = [ "pin-utils" ];
"default" = [ "acct" "aio" "dir" "env" "event" "feature" "fs" "hostname" "inotify" "ioctl" "kmod" "mman" "mount" "mqueue" "net" "personality" "poll" "process" "pthread" "ptrace" "quota" "reboot" "resource" "sched" "signal" "socket" "term" "time" "ucontext" "uio" "user" "zerocopy" ];
"dir" = [ "fs" ];
"memoffset" = [ "dep:memoffset" ];
"mount" = [ "uio" ];
"mqueue" = [ "fs" ];
"net" = [ "socket" ];
"pin-utils" = [ "dep:pin-utils" ];
"ptrace" = [ "process" ];
"sched" = [ "process" ];
"signal" = [ "process" ];
"socket" = [ "memoffset" ];
"ucontext" = [ "signal" ];
"user" = [ "feature" ];
"zerocopy" = [ "fs" "uio" ];
};
resolvedDefaultFeatures = [ "acct" "aio" "default" "dir" "env" "event" "feature" "fs" "hostname" "inotify" "ioctl" "kmod" "memoffset" "mman" "mount" "mqueue" "net" "personality" "pin-utils" "poll" "process" "pthread" "ptrace" "quota" "reboot" "resource" "sched" "signal" "socket" "term" "time" "ucontext" "uio" "user" "zerocopy" ];
};
"nix 0.30.1" = rec {
crateName = "nix";
version = "0.30.1";
edition = "2021";
sha256 = "1dixahq9hk191g0c2ydc0h1ppxj0xw536y6rl63vlnp06lx3ylkl";
authors = [
"The nix-rust Project Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
}
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
features = [ "extra_traits" ];
}
];
buildDependencies = [
{
name = "cfg_aliases";
packageId = "cfg_aliases";
}
];
features = {
"aio" = [ "pin-utils" ];
"dir" = [ "fs" ];
"event" = [ "poll" ];
"memoffset" = [ "dep:memoffset" ];
"mount" = [ "uio" ];
"mqueue" = [ "fs" ];
"net" = [ "socket" ];
"pin-utils" = [ "dep:pin-utils" ];
"ptrace" = [ "process" ];
"sched" = [ "process" ];
"signal" = [ "process" ];
"socket" = [ "memoffset" ];
"ucontext" = [ "signal" ];
"user" = [ "feature" ];
"zerocopy" = [ "fs" "uio" ];
};
resolvedDefaultFeatures = [ "process" "signal" ];
};
"nom" = rec {
crateName = "nom";
version = "7.1.3";
edition = "2018";
sha256 = "0jha9901wxam390jcf5pfa0qqfrgh8li787jx2ip0yk5b8y9hwyj";
authors = [
"contact@geoffroycouprie.com"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "minimal-lexical";
packageId = "minimal-lexical";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" "memchr/std" "minimal-lexical/std" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"ntapi" = rec {
crateName = "ntapi";
version = "0.4.2";
edition = "2018";
sha256 = "10ghcc1kmj5ygy4ls81as6s5akd1wflwcc0b1k3nf8ql46g223y7";
authors = [
"MSxDOS <melcodos@gmail.com>"
];
dependencies = [
{
name = "winapi";
packageId = "winapi";
features = [ "cfg" "evntrace" "in6addr" "inaddr" "minwinbase" "ntsecapi" "windef" "winioctl" ];
}
];
features = {
"default" = [ "user" ];
"impl-default" = [ "winapi/impl-default" ];
};
resolvedDefaultFeatures = [ "default" "user" ];
};
"num-bigint" = rec {
crateName = "num-bigint";
version = "0.4.6";
edition = "2021";
sha256 = "1f903zd33i6hkjpsgwhqwi2wffnvkxbn6rv4mkgcjcqi7xr4zr55";
libName = "num_bigint";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
features = [ "i128" ];
}
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
features = [ "i128" ];
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"default" = [ "std" ];
"quickcheck" = [ "dep:quickcheck" ];
"rand" = [ "dep:rand" ];
"serde" = [ "dep:serde" ];
"std" = [ "num-integer/std" "num-traits/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"num-integer" = rec {
crateName = "num-integer";
version = "0.1.46";
edition = "2018";
sha256 = "13w5g54a9184cqlbsq80rnxw4jj4s0d8wv75jsq5r2lms8gncsbr";
libName = "num_integer";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
features = [ "i128" ];
}
];
features = {
"default" = [ "std" ];
"std" = [ "num-traits/std" ];
};
resolvedDefaultFeatures = [ "default" "i128" "std" ];
};
"num-traits" = rec {
crateName = "num-traits";
version = "0.2.19";
edition = "2021";
sha256 = "0h984rhdkkqd4ny9cif7y2azl3xdfb7768hb9irhpsch4q3gq787";
libName = "num_traits";
authors = [
"The Rust Project Developers"
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg";
}
];
features = {
"default" = [ "std" ];
"libm" = [ "dep:libm" ];
};
resolvedDefaultFeatures = [ "i128" "std" ];
};
"num_cpus" = rec {
crateName = "num_cpus";
version = "1.17.0";
edition = "2015";
sha256 = "0fxjazlng4z8cgbmsvbzv411wrg7x3hyxdq8nxixgzjswyylppwi";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "hermit-abi";
packageId = "hermit-abi";
target = { target, features }: ("hermit" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (!(target."windows" or false));
}
];
};
"number_prefix" = rec {
crateName = "number_prefix";
version = "0.4.0";
edition = "2015";
sha256 = "1wvh13wvlajqxkb1filsfzbrnq0vrmrw298v2j3sy82z1rm282w3";
authors = [
"Benjamin Sago <ogham@bsago.me>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"objc2" = rec {
crateName = "objc2";
version = "0.6.3";
edition = "2021";
sha256 = "01ccrb558qav2rqrmk0clzqzdd6r1rmicqnf55xqam7cw2f5khmp";
authors = [
"Mads Marquart <mads@marquart.dk>"
];
dependencies = [
{
name = "objc2-encode";
packageId = "objc2-encode";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "objc2-encode/alloc" ];
"catch-all" = [ "exception" ];
"default" = [ "std" ];
"exception" = [ "dep:objc2-exception-helper" ];
"gnustep-1-7" = [ "unstable-static-class" "objc2-exception-helper?/gnustep-1-7" ];
"gnustep-1-8" = [ "gnustep-1-7" "objc2-exception-helper?/gnustep-1-8" ];
"gnustep-1-9" = [ "gnustep-1-8" "objc2-exception-helper?/gnustep-1-9" ];
"gnustep-2-0" = [ "gnustep-1-9" "objc2-exception-helper?/gnustep-2-0" ];
"gnustep-2-1" = [ "gnustep-2-0" "objc2-exception-helper?/gnustep-2-1" ];
"std" = [ "alloc" "objc2-encode/std" ];
"unstable-compiler-rt" = [ "gnustep-1-7" ];
"unstable-gnustep-strict-apple-compat" = [ "gnustep-1-7" ];
"unstable-static-class" = [ "dep:objc2-proc-macros" ];
"unstable-static-class-inlined" = [ "unstable-static-class" ];
"unstable-static-sel" = [ "dep:objc2-proc-macros" ];
"unstable-static-sel-inlined" = [ "unstable-static-sel" ];
"unstable-winobjc" = [ "gnustep-1-8" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"objc2-core-foundation" = rec {
crateName = "objc2-core-foundation";
version = "0.3.2";
edition = "2021";
sha256 = "0dnmg7606n4zifyjw4ff554xvjmi256cs8fpgpdmr91gckc0s61a";
libName = "objc2_core_foundation";
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
];
features = {
"CFCalendar" = [ "bitflags" ];
"CFData" = [ "bitflags" ];
"CFDate" = [ "bitflags" ];
"CFDateFormatter" = [ "bitflags" ];
"CFFileSecurity" = [ "bitflags" ];
"CFNumberFormatter" = [ "bitflags" ];
"CFPropertyList" = [ "bitflags" ];
"CFRunLoop" = [ "bitflags" ];
"CFSocket" = [ "bitflags" ];
"CFStream" = [ "bitflags" ];
"CFString" = [ "bitflags" ];
"CFStringTokenizer" = [ "bitflags" ];
"CFURL" = [ "bitflags" ];
"CFURLEnumerator" = [ "bitflags" ];
"CFXMLParser" = [ "bitflags" ];
"bitflags" = [ "dep:bitflags" ];
"block2" = [ "dep:block2" ];
"default" = [ "std" "CFArray" "CFAttributedString" "CFAvailability" "CFBag" "CFBinaryHeap" "CFBitVector" "CFBundle" "CFByteOrder" "CFCGTypes" "CFCalendar" "CFCharacterSet" "CFData" "CFDate" "CFDateFormatter" "CFDictionary" "CFError" "CFFileDescriptor" "CFFileSecurity" "CFLocale" "CFMachPort" "CFMessagePort" "CFNotificationCenter" "CFNumber" "CFNumberFormatter" "CFPlugIn" "CFPlugInCOM" "CFPreferences" "CFPropertyList" "CFRunLoop" "CFSet" "CFSocket" "CFStream" "CFString" "CFStringEncodingExt" "CFStringTokenizer" "CFTimeZone" "CFTree" "CFURL" "CFURLAccess" "CFURLEnumerator" "CFUUID" "CFUserNotification" "CFUtilities" "CFXMLNode" "CFXMLParser" "bitflags" "block2" "dispatch2" "libc" "objc2" ];
"dispatch2" = [ "dep:dispatch2" ];
"libc" = [ "dep:libc" ];
"objc2" = [ "dep:objc2" "dispatch2?/objc2" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "CFBase" "CFData" "CFDictionary" "CFString" "alloc" "bitflags" "std" ];
};
"objc2-encode" = rec {
crateName = "objc2-encode";
version = "4.1.0";
edition = "2021";
sha256 = "0cqckp4cpf68mxyc2zgnazj8klv0z395nsgbafa61cjgsyyan9gg";
libName = "objc2_encode";
authors = [
"Mads Marquart <mads@marquart.dk>"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"object" = rec {
crateName = "object";
version = "0.37.3";
edition = "2018";
sha256 = "1zikiy9xhk6lfx1dn2gn2pxbnfpmlkn0byd7ib1n720x0cgj0xpz";
dependencies = [
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
];
features = {
"all" = [ "read" "write" "build" "std" "compression" "wasm" ];
"alloc" = [ "dep:alloc" ];
"build" = [ "build_core" "write_std" "elf" ];
"build_core" = [ "read_core" "write_core" ];
"compression" = [ "dep:flate2" "dep:ruzstd" "std" ];
"core" = [ "dep:core" ];
"default" = [ "read" "compression" ];
"doc" = [ "read_core" "write_std" "build_core" "std" "compression" "archive" "coff" "elf" "macho" "pe" "wasm" "xcoff" ];
"pe" = [ "coff" ];
"read" = [ "read_core" "archive" "coff" "elf" "macho" "pe" "xcoff" "unaligned" ];
"rustc-dep-of-std" = [ "core" "alloc" "memchr/rustc-dep-of-std" ];
"std" = [ "memchr/std" ];
"unstable-all" = [ "all" "unstable" ];
"wasm" = [ "dep:wasmparser" ];
"write" = [ "write_std" "coff" "elf" "macho" "pe" "xcoff" ];
"write_core" = [ "dep:crc32fast" "dep:indexmap" "dep:hashbrown" ];
"write_std" = [ "write_core" "std" "indexmap?/std" "crc32fast?/std" ];
};
resolvedDefaultFeatures = [ "archive" "coff" "elf" "macho" "pe" "read_core" "unaligned" "xcoff" ];
};
"once_cell" = rec {
crateName = "once_cell";
version = "1.21.3";
edition = "2021";
sha256 = "0b9x77lb9f1j6nqgf5aka4s2qj0nly176bpbrv6f9iakk5ff3xa2";
authors = [
"Aleksey Kladov <aleksey.kladov@gmail.com>"
];
features = {
"alloc" = [ "race" ];
"atomic-polyfill" = [ "critical-section" ];
"critical-section" = [ "dep:critical-section" "portable-atomic" ];
"default" = [ "std" ];
"parking_lot" = [ "dep:parking_lot_core" ];
"portable-atomic" = [ "dep:portable-atomic" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "race" "std" ];
};
"once_cell_polyfill" = rec {
crateName = "once_cell_polyfill";
version = "1.70.2";
edition = "2021";
sha256 = "1zmla628f0sk3fhjdjqzgxhalr2xrfna958s632z65bjsfv8ljrq";
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"opaque-debug" = rec {
crateName = "opaque-debug";
version = "0.3.1";
edition = "2018";
sha256 = "10b3w0kydz5jf1ydyli5nv10gdfp97xh79bgz327d273bs46b3f0";
libName = "opaque_debug";
authors = [
"RustCrypto Developers"
];
};
"open" = rec {
crateName = "open";
version = "5.3.3";
edition = "2018";
crateBin = [];
sha256 = "1g1403a17xfa136h6jshxkaa0yq2fh8sb404jycb369pzakp7fs3";
authors = [
"Sebastian Thiel <byronimo@gmail.com>"
];
dependencies = [
{
name = "is-wsl";
packageId = "is-wsl";
target = { target, features }: (("linux" == target."os" or null) || ("android" == target."os" or null) || ("freebsd" == target."os" or null) || ("dragonfly" == target."os" or null) || ("netbsd" == target."os" or null) || ("openbsd" == target."os" or null) || ("illumos" == target."os" or null) || ("solaris" == target."os" or null) || ("aix" == target."os" or null) || ("hurd" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "pathdiff";
packageId = "pathdiff";
target = { target, features }: ((target."unix" or false) && (!(target."macos" or false)));
}
];
features = {
"shellexecute-on-windows" = [ "dep:dunce" ];
};
};
"openssl" = rec {
crateName = "openssl";
version = "0.10.75";
edition = "2021";
sha256 = "0a238gvrzjq0r62a7472i685hi5jjzgfj72kp1xd32ir46qqv0q8";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
}
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "foreign-types";
packageId = "foreign-types";
}
{
name = "libc";
packageId = "libc";
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "openssl-macros";
packageId = "openssl-macros";
}
{
name = "openssl-sys";
packageId = "openssl-sys";
rename = "ffi";
}
];
features = {
"aws-lc" = [ "ffi/aws-lc" ];
"aws-lc-fips" = [ "ffi/aws-lc-fips" ];
"bindgen" = [ "ffi/bindgen" ];
"unstable_boringssl" = [ "ffi/unstable_boringssl" ];
"vendored" = [ "ffi/vendored" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"openssl-macros" = rec {
crateName = "openssl-macros";
version = "0.1.1";
edition = "2018";
sha256 = "173xxvfc63rr5ybwqwylsir0vq6xsj4kxiv4hmg4c3vscdmncj59";
procMacro = true;
libName = "openssl_macros";
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
features = [ "full" ];
}
];
};
"openssl-probe" = rec {
crateName = "openssl-probe";
version = "0.1.6";
edition = "2021";
sha256 = "0bl52x55laalqb707k009h8kfawliwp992rlsvkzy49n47p2fpnh";
libName = "openssl_probe";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
};
"openssl-sys" = rec {
crateName = "openssl-sys";
version = "0.9.111";
edition = "2021";
links = "openssl";
sha256 = "08f3mpsabivfi3fd0qv9231qidqy68lr8a4qi32y6xda43av5jl2";
build = "build/main.rs";
libName = "openssl_sys";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "vcpkg";
packageId = "vcpkg";
}
];
features = {
"aws-lc" = [ "dep:aws-lc-sys" ];
"aws-lc-fips" = [ "dep:aws-lc-fips-sys" ];
"bindgen" = [ "dep:bindgen" ];
"bssl-sys" = [ "dep:bssl-sys" ];
"openssl-src" = [ "dep:openssl-src" ];
"unstable_boringssl" = [ "bssl-sys" ];
"vendored" = [ "openssl-src" ];
};
};
"pager" = rec {
crateName = "pager";
version = "0.16.1";
edition = "2018";
sha256 = "10188qgnsz988g30fvl4whkljh2zl4gpbp6kc48bpywpbhd23695";
authors = [
"Cyril Plisko <cyril.plisko@mountall.com>"
];
dependencies = [
{
name = "errno";
packageId = "errno 0.2.8";
}
{
name = "libc";
packageId = "libc";
}
];
features = {
};
};
"parking_lot 0.11.2" = rec {
crateName = "parking_lot";
version = "0.11.2";
edition = "2018";
sha256 = "16gzf41bxmm10x82bla8d6wfppy9ym3fxsmdjyvn61m66s0bf5vx";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "instant";
packageId = "instant";
}
{
name = "lock_api";
packageId = "lock_api";
}
{
name = "parking_lot_core";
packageId = "parking_lot_core 0.8.6";
}
];
features = {
"arc_lock" = [ "lock_api/arc_lock" ];
"deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
"nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
"owning_ref" = [ "lock_api/owning_ref" ];
"serde" = [ "lock_api/serde" ];
"stdweb" = [ "instant/stdweb" ];
"wasm-bindgen" = [ "instant/wasm-bindgen" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"parking_lot 0.12.5" = rec {
crateName = "parking_lot";
version = "0.12.5";
edition = "2021";
sha256 = "06jsqh9aqmc94j2rlm8gpccilqm6bskbd67zf6ypfc0f4m9p91ck";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "lock_api";
packageId = "lock_api";
}
{
name = "parking_lot_core";
packageId = "parking_lot_core 0.9.12";
}
];
features = {
"arc_lock" = [ "lock_api/arc_lock" ];
"deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
"nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
"owning_ref" = [ "lock_api/owning_ref" ];
"serde" = [ "lock_api/serde" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"parking_lot_core 0.8.6" = rec {
crateName = "parking_lot_core";
version = "0.8.6";
edition = "2018";
sha256 = "1p2nfcbr0b9lm9rglgm28k6mwyjwgm4knipsmqbgqaxdy3kcz8k0";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "instant";
packageId = "instant";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "redox_syscall";
packageId = "redox_syscall 0.2.16";
target = { target, features }: ("redox" == target."os" or null);
}
{
name = "smallvec";
packageId = "smallvec";
}
{
name = "winapi";
packageId = "winapi";
target = { target, features }: (target."windows" or false);
features = [ "winnt" "ntstatus" "minwindef" "winerror" "winbase" "errhandlingapi" "handleapi" ];
}
];
features = {
"backtrace" = [ "dep:backtrace" ];
"deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ];
"petgraph" = [ "dep:petgraph" ];
"thread-id" = [ "dep:thread-id" ];
};
};
"parking_lot_core 0.9.12" = rec {
crateName = "parking_lot_core";
version = "0.9.12";
edition = "2021";
sha256 = "1hb4rggy70fwa1w9nb0svbyflzdc69h047482v2z3sx2hmcnh896";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "redox_syscall";
packageId = "redox_syscall 0.5.18";
target = { target, features }: ("redox" == target."os" or null);
}
{
name = "smallvec";
packageId = "smallvec";
}
{
name = "windows-link";
packageId = "windows-link";
target = { target, features }: (target."windows" or false);
}
];
features = {
"backtrace" = [ "dep:backtrace" ];
"deadlock_detection" = [ "petgraph" "backtrace" ];
"petgraph" = [ "dep:petgraph" ];
};
};
"password-hash" = rec {
crateName = "password-hash";
version = "0.2.3";
edition = "2018";
sha256 = "1rr4kd52ld978a2xhcvlc54p1d92yhxl9kvbajba7ia6rs5b5q3p";
libName = "password_hash";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "base64ct";
packageId = "base64ct";
}
{
name = "rand_core";
packageId = "rand_core 0.6.4";
optional = true;
usesDefaultFeatures = false;
}
{
name = "subtle";
packageId = "subtle";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "base64ct/alloc" ];
"default" = [ "rand_core" ];
"rand_core" = [ "dep:rand_core" ];
"std" = [ "alloc" "base64ct/std" "rand_core/std" ];
};
resolvedDefaultFeatures = [ "rand_core" ];
};
"path-slash" = rec {
crateName = "path-slash";
version = "0.2.1";
edition = "2018";
sha256 = "0hjgljv4vy97qqw9gxnwzqhhpysjss2yhdphfccy3c388afhk48y";
libName = "path_slash";
authors = [
"rhysd <https://rhysd.github.io>"
];
};
"pathdiff" = rec {
crateName = "pathdiff";
version = "0.2.3";
edition = "2018";
sha256 = "1lrqp4ip05df8dzldq6gb2c1sq2gs54gly8lcnv3rhav1qhwx56z";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
features = {
"camino" = [ "dep:camino" ];
};
};
"pbkdf2 0.12.2" = rec {
crateName = "pbkdf2";
version = "0.12.2";
edition = "2021";
sha256 = "1wms79jh4flpy1zi8xdp4h8ccxv4d85adc6zjagknvppc5vnmvgq";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "digest";
packageId = "digest 0.10.7";
features = [ "mac" ];
}
];
features = {
"default" = [ "hmac" ];
"hmac" = [ "dep:hmac" ];
"parallel" = [ "rayon" "std" ];
"password-hash" = [ "dep:password-hash" ];
"rayon" = [ "dep:rayon" ];
"sha1" = [ "dep:sha1" ];
"sha2" = [ "dep:sha2" ];
"simple" = [ "hmac" "password-hash" "sha2" ];
"std" = [ "password-hash/std" ];
};
};
"pbkdf2 0.8.0" = rec {
crateName = "pbkdf2";
version = "0.8.0";
edition = "2018";
sha256 = "1ykgicvyjm41701mzqhrfmiz5sm5y0zwfg6csaapaqaf49a54pyr";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "base64ct";
packageId = "base64ct";
optional = true;
usesDefaultFeatures = false;
}
{
name = "crypto-mac";
packageId = "crypto-mac";
}
{
name = "hmac";
packageId = "hmac";
optional = true;
usesDefaultFeatures = false;
}
{
name = "password-hash";
packageId = "password-hash";
optional = true;
usesDefaultFeatures = false;
features = [ "rand_core" ];
}
{
name = "sha2";
packageId = "sha2 0.9.9";
optional = true;
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "hmac";
packageId = "hmac";
}
{
name = "sha2";
packageId = "sha2 0.9.9";
}
];
features = {
"base64ct" = [ "dep:base64ct" ];
"default" = [ "simple" ];
"hmac" = [ "dep:hmac" ];
"parallel" = [ "rayon" "std" ];
"password-hash" = [ "dep:password-hash" ];
"rayon" = [ "dep:rayon" ];
"sha1" = [ "dep:sha1" ];
"sha2" = [ "dep:sha2" ];
"simple" = [ "sha2" "hmac" "password-hash" "base64ct" ];
"std" = [ "password-hash/std" ];
};
resolvedDefaultFeatures = [ "base64ct" "default" "hmac" "password-hash" "sha2" "simple" ];
};
"pbkdf2 0.9.0" = rec {
crateName = "pbkdf2";
version = "0.9.0";
edition = "2018";
sha256 = "0fa7j0gdgghk64qlhzdv32yg52p0cfaz5ifhk7i4pfm1wsy98n7h";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "crypto-mac";
packageId = "crypto-mac";
}
];
features = {
"default" = [ "simple" ];
"hmac" = [ "dep:hmac" ];
"parallel" = [ "rayon" "std" ];
"password-hash" = [ "dep:password-hash" ];
"rayon" = [ "dep:rayon" ];
"sha1" = [ "dep:sha1" ];
"sha2" = [ "dep:sha2" ];
"simple" = [ "hmac" "password-hash" "sha2" ];
"std" = [ "password-hash/std" ];
};
};
"percent-encoding" = rec {
crateName = "percent-encoding";
version = "2.3.2";
edition = "2018";
sha256 = "083jv1ai930azvawz2khv7w73xh8mnylk7i578cifndjn5y64kwv";
libName = "percent_encoding";
authors = [
"The rust-url developers"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"pijul" = rec {
crateName = "pijul";
version = "1.0.0-beta.10";
edition = "2024";
crateBin = [
{
name = "pijul";
path = "src/main.rs";
requiredFeatures = [ ];
}
];
src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul; };
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "canonical-path";
packageId = "canonical-path";
}
{
name = "clap";
packageId = "clap";
features = [ "derive" "cargo" ];
}
{
name = "clap_complete";
packageId = "clap_complete";
}
{
name = "ctrlc";
packageId = "ctrlc";
}
{
name = "data-encoding";
packageId = "data-encoding";
}
{
name = "edit";
packageId = "edit";
}
{
name = "env_logger";
packageId = "env_logger 0.11.8";
}
{
name = "git2";
packageId = "git2";
optional = true;
}
{
name = "hex";
packageId = "hex";
optional = true;
}
{
name = "human-panic";
packageId = "human-panic";
}
{
name = "hyper";
packageId = "hyper";
features = [ "server" ];
}
{
name = "ignore";
packageId = "ignore";
}
{
name = "jiff";
packageId = "jiff";
features = [ "serde" ];
}
{
name = "keyring";
packageId = "keyring";
usesDefaultFeatures = false;
features = [ "apple-native" "linux-native-sync-persistent" "windows-native" ];
}
{
name = "libpijul";
packageId = "libpijul";
features = [ "tarball" ];
}
{
name = "log";
packageId = "log";
}
{
name = "open";
packageId = "open";
}
{
name = "pager";
packageId = "pager";
target = { target, features }: (target."unix" or false);
}
{
name = "path-slash";
packageId = "path-slash";
}
{
name = "pijul-config";
packageId = "pijul-config";
}
{
name = "pijul-identity";
packageId = "pijul-identity";
}
{
name = "pijul-interaction";
packageId = "pijul-interaction";
}
{
name = "pijul-remote";
packageId = "pijul-remote";
}
{
name = "pijul-repository";
packageId = "pijul-repository";
}
{
name = "ptree";
packageId = "ptree";
usesDefaultFeatures = false;
features = [ "ansi" ];
}
{
name = "rand";
packageId = "rand";
}
{
name = "regex";
packageId = "regex";
}
{
name = "sanakirja";
packageId = "sanakirja";
usesDefaultFeatures = false;
features = [ "crc32" ];
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "tempfile";
packageId = "tempfile";
}
{
name = "termcolor";
packageId = "termcolor";
}
{
name = "thiserror";
packageId = "thiserror 2.0.17";
}
{
name = "tokio";
packageId = "tokio";
features = [ "rt-multi-thread" "macros" "sync" "fs" ];
}
{
name = "toml";
packageId = "toml 0.8.23";
features = [ "preserve_order" ];
}
{
name = "url";
packageId = "url";
}
{
name = "validator";
packageId = "validator";
}
{
name = "whoami";
packageId = "whoami";
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "expectrl";
packageId = "expectrl";
}
];
features = {
"default" = [ "keep-changes" "openssl" ];
"git" = [ "git2" "libpijul/git2" "hex" ];
"git2" = [ "dep:git2" ];
"hex" = [ "dep:hex" ];
"openssl" = [ "pijul-identity/openssl" "pijul-remote/openssl" ];
};
resolvedDefaultFeatures = [ "default" "git" "git2" "hex" "keep-changes" "openssl" ];
};
"pijul-config" = rec {
crateName = "pijul-config";
version = "1.0.0-beta.10";
edition = "2024";
src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul-config; };
libName = "pijul_config";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "dialoguer";
packageId = "dialoguer";
usesDefaultFeatures = false;
features = [ "editor" ];
}
{
name = "dirs-next";
packageId = "dirs-next";
}
{
name = "log";
packageId = "log";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "toml";
packageId = "toml 0.8.23";
features = [ "preserve_order" ];
}
{
name = "whoami";
packageId = "whoami";
usesDefaultFeatures = false;
}
];
};
"pijul-identity" = rec {
crateName = "pijul-identity";
version = "1.0.0-beta.10";
edition = "2024";
src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul-identity; };
libName = "pijul_identity";
authors = [
"Finchie"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "dirs-next";
packageId = "dirs-next";
}
{
name = "jiff";
packageId = "jiff";
features = [ "serde" ];
}
{
name = "keyring";
packageId = "keyring";
usesDefaultFeatures = false;
features = [ "apple-native" "linux-native-sync-persistent" "windows-native" ];
}
{
name = "libpijul";
packageId = "libpijul";
}
{
name = "log";
packageId = "log";
}
{
name = "pijul-config";
packageId = "pijul-config";
}
{
name = "pijul-interaction";
packageId = "pijul-interaction";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "thiserror";
packageId = "thiserror 2.0.17";
}
{
name = "thrussh-keys";
packageId = "thrussh-keys";
}
{
name = "toml";
packageId = "toml 0.8.23";
features = [ "preserve_order" ];
}
{
name = "validator";
packageId = "validator";
}
{
name = "whoami";
packageId = "whoami";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "openssl" ];
"openssl" = [ "thrussh-keys/openssl" ];
};
resolvedDefaultFeatures = [ "default" "openssl" ];
};
"pijul-interaction" = rec {
crateName = "pijul-interaction";
version = "1.0.0-beta.10";
edition = "2024";
src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul-interaction; };
libName = "pijul_interaction";
authors = [
"Finchie"
];
dependencies = [
{
name = "dialoguer";
packageId = "dialoguer";
usesDefaultFeatures = false;
features = [ "fuzzy-select" "password" ];
}
{
name = "duplicate";
packageId = "duplicate";
}
{
name = "indicatif";
packageId = "indicatif";
features = [ "improved_unicode" ];
}
{
name = "log";
packageId = "log";
}
{
name = "pijul-config";
packageId = "pijul-config";
}
{
name = "thiserror";
packageId = "thiserror 2.0.17";
}
];
};
"pijul-macros" = rec {
crateName = "pijul-macros";
version = "1.0.0-beta.10";
edition = "2024";
src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul-macros; };
procMacro = true;
libName = "pijul_macros";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
}
];
};
"pijul-remote" = rec {
crateName = "pijul-remote";
version = "1.0.0-beta.10";
edition = "2024";
src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul-remote; };
libName = "pijul_remote";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "dirs-next";
packageId = "dirs-next";
}
{
name = "futures";
packageId = "futures";
}
{
name = "futures-util";
packageId = "futures-util";
}
{
name = "keyring";
packageId = "keyring";
usesDefaultFeatures = false;
features = [ "apple-native" "linux-native-sync-persistent" "windows-native" ];
}
{
name = "libpijul";
packageId = "libpijul";
}
{
name = "log";
packageId = "log";
}
{
name = "pijul-config";
packageId = "pijul-config";
}
{
name = "pijul-identity";
packageId = "pijul-identity";
}
{
name = "pijul-interaction";
packageId = "pijul-interaction";
}
{
name = "pijul-repository";
packageId = "pijul-repository";
}
{
name = "regex";
packageId = "regex";
}
{
name = "reqwest";
packageId = "reqwest";
features = [ "stream" "json" ];
}
{
name = "sanakirja";
packageId = "sanakirja";
usesDefaultFeatures = false;
features = [ "crc32" ];
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "thrussh";
packageId = "thrussh";
}
{
name = "thrussh-config";
packageId = "thrussh-config";
}
{
name = "thrussh-keys";
packageId = "thrussh-keys";
}
{
name = "tokio";
packageId = "tokio";
features = [ "rt-multi-thread" "macros" "sync" "fs" ];
}
{
name = "url";
packageId = "url";
}
];
features = {
"default" = [ "openssl" ];
"openssl" = [ "thrussh-keys/openssl" "thrussh/openssl" ];
};
resolvedDefaultFeatures = [ "default" "openssl" ];
};
"pijul-repository" = rec {
crateName = "pijul-repository";
version = "1.0.0-beta.10";
edition = "2024";
src = lib.cleanSourceWith { filter = sourceFilter; src = ./pijul-repository; };
libName = "pijul_repository";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "libpijul";
packageId = "libpijul";
}
{
name = "log";
packageId = "log";
}
{
name = "pijul-config";
packageId = "pijul-config";
}
{
name = "rlimit";
packageId = "rlimit";
}
{
name = "toml";
packageId = "toml 0.8.23";
features = [ "preserve_order" ];
}
];
};
"pin-project-lite" = rec {
crateName = "pin-project-lite";
version = "0.2.16";
edition = "2018";
sha256 = "16wzc7z7dfkf9bmjin22f5282783f6mdksnr0nv0j5ym5f9gyg1v";
libName = "pin_project_lite";
};
"pin-utils" = rec {
crateName = "pin-utils";
version = "0.1.0";
edition = "2018";
sha256 = "117ir7vslsl2z1a7qzhws4pd01cg2d3338c47swjyvqv2n60v1wb";
libName = "pin_utils";
authors = [
"Josef Brandl <mail@josefbrandl.de>"
];
};
"pkcs8" = rec {
crateName = "pkcs8";
version = "0.10.2";
edition = "2021";
sha256 = "1dx7w21gvn07azszgqd3ryjhyphsrjrmq5mmz1fbxkj5g0vv4l7r";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "der";
packageId = "der";
features = [ "oid" ];
}
{
name = "spki";
packageId = "spki";
}
];
features = {
"3des" = [ "encryption" "pkcs5/3des" ];
"alloc" = [ "der/alloc" "der/zeroize" "spki/alloc" ];
"des-insecure" = [ "encryption" "pkcs5/des-insecure" ];
"encryption" = [ "alloc" "pkcs5/alloc" "pkcs5/pbes2" "rand_core" ];
"getrandom" = [ "rand_core/getrandom" ];
"pem" = [ "alloc" "der/pem" "spki/pem" ];
"pkcs5" = [ "dep:pkcs5" ];
"rand_core" = [ "dep:rand_core" ];
"sha1-insecure" = [ "encryption" "pkcs5/sha1-insecure" ];
"std" = [ "alloc" "der/std" "spki/std" ];
"subtle" = [ "dep:subtle" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"pkg-config" = rec {
crateName = "pkg-config";
version = "0.3.32";
edition = "2018";
sha256 = "0k4h3gnzs94sjb2ix6jyksacs52cf1fanpwsmlhjnwrdnp8dppby";
libName = "pkg_config";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
};
"portable-atomic" = rec {
crateName = "portable-atomic";
version = "1.12.0";
edition = "2018";
sha256 = "1p9rrnq6fdk8byqf1q7x5jbzqwx9yaj99zg8qabmgrgimv2717pm";
libName = "portable_atomic";
features = {
"critical-section" = [ "dep:critical-section" ];
"default" = [ "fallback" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "fallback" "require-cas" ];
};
"portable-atomic-util" = rec {
crateName = "portable-atomic-util";
version = "0.2.4";
edition = "2018";
sha256 = "01rmx1li07ixsx3sqg2bxqrkzk7b5n8pibwwf2589ms0s3cg18nq";
libName = "portable_atomic_util";
dependencies = [
{
name = "portable-atomic";
packageId = "portable-atomic";
usesDefaultFeatures = false;
features = [ "require-cas" ];
}
];
features = {
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"potential_utf" = rec {
crateName = "potential_utf";
version = "0.1.4";
edition = "2021";
sha256 = "0xxg0pkfpq299wvwln409z4fk80rbv55phh3f1jhjajy5x1ljfdp";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "zerovec";
packageId = "zerovec";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde_core?/alloc" "writeable/alloc" "zerovec?/alloc" ];
"databake" = [ "dep:databake" ];
"default" = [ "alloc" ];
"serde" = [ "dep:serde_core" ];
"writeable" = [ "dep:writeable" ];
"zerovec" = [ "dep:zerovec" ];
};
resolvedDefaultFeatures = [ "zerovec" ];
};
"ppv-lite86" = rec {
crateName = "ppv-lite86";
version = "0.2.21";
edition = "2021";
sha256 = "1abxx6qz5qnd43br1dd9b2savpihzjza8gb4fbzdql1gxp2f7sl5";
libName = "ppv_lite86";
authors = [
"The CryptoCorrosion Contributors"
];
dependencies = [
{
name = "zerocopy";
packageId = "zerocopy";
features = [ "simd" ];
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "simd" "std" ];
};
"proc-macro2" = rec {
crateName = "proc-macro2";
version = "1.0.103";
edition = "2021";
sha256 = "1s29bz20xl2qk5ffs2mbdqknaj43ri673dz86axdbf47xz25psay";
libName = "proc_macro2";
authors = [
"David Tolnay <dtolnay@gmail.com>"
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "unicode-ident";
packageId = "unicode-ident";
}
];
features = {
"default" = [ "proc-macro" ];
};
resolvedDefaultFeatures = [ "default" "proc-macro" ];
};
"proc-macro2-diagnostics" = rec {
crateName = "proc-macro2-diagnostics";
version = "0.10.1";
edition = "2018";
sha256 = "1j48ipc80pykvhx6yhndfa774s58ax1h6sm6mlhf09ls76f6l1mg";
libName = "proc_macro2_diagnostics";
authors = [
"Sergio Benitez <sb@sergio.bz>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check";
}
];
features = {
"colors" = [ "yansi" ];
"default" = [ "colors" ];
"yansi" = [ "dep:yansi" ];
};
};
"ptree" = rec {
crateName = "ptree";
version = "0.5.2";
edition = "2021";
sha256 = "05qzlans9q3xfig8rhykcsk3p5y9l7bhsdrfazr7y3pcxchgv718";
authors = [
"Miha Čančula <miha@noughmad.eu>"
];
dependencies = [
{
name = "anstyle";
packageId = "anstyle";
optional = true;
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "tint";
packageId = "tint";
optional = true;
}
];
features = {
"ansi" = [ "anstyle" "tint" ];
"anstyle" = [ "dep:anstyle" ];
"conf" = [ "config" "directories" ];
"config" = [ "dep:config" ];
"default" = [ "petgraph" "ansi" "conf" "value" ];
"directories" = [ "dep:directories" ];
"petgraph" = [ "dep:petgraph" ];
"serde-value" = [ "dep:serde-value" ];
"tint" = [ "dep:tint" ];
"value" = [ "serde-value" ];
};
resolvedDefaultFeatures = [ "ansi" "anstyle" "tint" ];
};
"ptyprocess" = rec {
crateName = "ptyprocess";
version = "0.4.1";
edition = "2018";
sha256 = "1kz8gzsr2pjpxcxy708338wcdqnxg3cpfbca8q8a44gvpvvsw1by";
authors = [
"Maxim Zhiburt <zhiburt@gmail.com>"
];
dependencies = [
{
name = "nix";
packageId = "nix 0.26.4";
}
];
};
"quickcheck" = rec {
crateName = "quickcheck";
version = "1.0.3";
edition = "2018";
sha256 = "1mjhkfqwrb8mdyxdqr4zzbj1rm5dfx25n9zcc25lb6fxwiw673sq";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "env_logger";
packageId = "env_logger 0.8.4";
optional = true;
usesDefaultFeatures = false;
}
{
name = "log";
packageId = "log";
optional = true;
}
{
name = "rand";
packageId = "rand";
usesDefaultFeatures = false;
features = [ "getrandom" "small_rng" ];
}
];
features = {
"default" = [ "regex" "use_logging" ];
"env_logger" = [ "dep:env_logger" ];
"log" = [ "dep:log" ];
"regex" = [ "env_logger/regex" ];
"use_logging" = [ "log" "env_logger" ];
};
resolvedDefaultFeatures = [ "default" "env_logger" "log" "regex" "use_logging" ];
};
"quote" = rec {
crateName = "quote";
version = "1.0.42";
edition = "2018";
sha256 = "0zq6yc7dhpap669m27rb4qfbiywxfah17z6fwvfccv3ys90wqf53";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "proc-macro" ];
"proc-macro" = [ "proc-macro2/proc-macro" ];
};
resolvedDefaultFeatures = [ "default" "proc-macro" ];
};
"r-efi" = rec {
crateName = "r-efi";
version = "5.3.0";
edition = "2018";
sha256 = "03sbfm3g7myvzyylff6qaxk4z6fy76yv860yy66jiswc2m6b7kb9";
libName = "r_efi";
features = {
"core" = [ "dep:core" ];
"examples" = [ "native" ];
"rustc-dep-of-std" = [ "core" ];
};
};
"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 0.6.4";
}
];
features = {
"alloc" = [ "rand_core/alloc" ];
"default" = [ "std" "std_rng" ];
"getrandom" = [ "rand_core/getrandom" ];
"libc" = [ "dep:libc" ];
"log" = [ "dep:log" ];
"packed_simd" = [ "dep:packed_simd" ];
"rand_chacha" = [ "dep:rand_chacha" ];
"serde" = [ "dep:serde" ];
"serde1" = [ "serde" "rand_core/serde1" ];
"simd_support" = [ "packed_simd" ];
"std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ];
"std_rng" = [ "rand_chacha" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "getrandom" "libc" "rand_chacha" "small_rng" "std" "std_rng" ];
};
"rand_chacha" = rec {
crateName = "rand_chacha";
version = "0.3.1";
edition = "2018";
sha256 = "123x2adin558xbhvqb8w4f6syjsdkmqff8cxwhmjacpsl1ihmhg6";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
"The CryptoCorrosion Contributors"
];
dependencies = [
{
name = "ppv-lite86";
packageId = "ppv-lite86";
usesDefaultFeatures = false;
features = [ "simd" ];
}
{
name = "rand_core";
packageId = "rand_core 0.6.4";
}
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"serde1" = [ "serde" ];
"std" = [ "ppv-lite86/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"rand_core 0.5.1" = rec {
crateName = "rand_core";
version = "0.5.1";
edition = "2018";
sha256 = "06bdvx08v3rkz451cm7z59xwwqn1rkfh6v9ay77b14f8dwlybgch";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom 0.1.16";
optional = true;
}
];
features = {
"getrandom" = [ "dep:getrandom" ];
"serde" = [ "dep:serde" ];
"serde1" = [ "serde" ];
"std" = [ "alloc" "getrandom" "getrandom/std" ];
};
resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ];
};
"rand_core 0.6.4" = rec {
crateName = "rand_core";
version = "0.6.4";
edition = "2018";
sha256 = "0b4j2v4cb5krak1pv6kakv4sz6xcwbrmy2zckc32hsigbrwy82zc";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom 0.2.16";
optional = true;
}
];
features = {
"getrandom" = [ "dep:getrandom" ];
"serde" = [ "dep:serde" ];
"serde1" = [ "serde" ];
"std" = [ "alloc" "getrandom" "getrandom/std" ];
};
resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ];
};
"redox_syscall 0.2.16" = rec {
crateName = "redox_syscall";
version = "0.2.16";
edition = "2018";
sha256 = "16jicm96kjyzm802cxdd1k9jmcph0db1a4lhslcnhjsvhp0mhnpv";
libName = "syscall";
authors = [
"Jeremy Soller <jackpot51@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 1.3.2";
}
];
};
"redox_syscall 0.5.18" = rec {
crateName = "redox_syscall";
version = "0.5.18";
edition = "2021";
sha256 = "0b9n38zsxylql36vybw18if68yc9jczxmbyzdwyhb9sifmag4azd";
libName = "syscall";
authors = [
"Jeremy Soller <jackpot51@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
}
];
features = {
"core" = [ "dep:core" ];
"default" = [ "userspace" ];
"rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ];
};
resolvedDefaultFeatures = [ "default" "userspace" ];
};
"redox_syscall 0.6.0" = rec {
crateName = "redox_syscall";
version = "0.6.0";
edition = "2021";
sha256 = "1da39gkh50ygwb0rfpqkyaz0y66fps4a7h713yw6x250mxnid5pc";
libName = "syscall";
authors = [
"Jeremy Soller <jackpot51@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
}
];
features = {
"core" = [ "dep:core" ];
"default" = [ "userspace" ];
"rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ];
};
resolvedDefaultFeatures = [ "default" "userspace" ];
};
"redox_users" = rec {
crateName = "redox_users";
version = "0.4.6";
edition = "2021";
sha256 = "0hya2cxx6hxmjfxzv9n8rjl5igpychav7zfi1f81pz6i4krry05s";
authors = [
"Jose Narvaez <goyox86@gmail.com>"
"Wesley Hershberger <mggmugginsmc@gmail.com>"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom 0.2.16";
features = [ "std" ];
}
{
name = "libredox";
packageId = "libredox";
usesDefaultFeatures = false;
features = [ "std" "call" ];
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
];
features = {
"auth" = [ "rust-argon2" "zeroize" ];
"default" = [ "auth" ];
"rust-argon2" = [ "dep:rust-argon2" ];
"zeroize" = [ "dep:zeroize" ];
};
};
"regex" = rec {
crateName = "regex";
version = "1.12.2";
edition = "2021";
sha256 = "1m14zkg6xmkb0q5ah3y39cmggclsjdr1wpxfa4kf5wvm3wcw0fw4";
authors = [
"The Rust Project Developers"
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "aho-corasick";
packageId = "aho-corasick";
optional = true;
usesDefaultFeatures = false;
}
{
name = "memchr";
packageId = "memchr";
optional = true;
usesDefaultFeatures = false;
}
{
name = "regex-automata";
packageId = "regex-automata";
usesDefaultFeatures = false;
features = [ "alloc" "syntax" "meta" "nfa-pikevm" ];
}
{
name = "regex-syntax";
packageId = "regex-syntax";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "perf" "unicode" "regex-syntax/default" ];
"logging" = [ "aho-corasick?/logging" "memchr?/logging" "regex-automata/logging" ];
"perf" = [ "perf-cache" "perf-dfa" "perf-onepass" "perf-backtrack" "perf-inline" "perf-literal" ];
"perf-backtrack" = [ "regex-automata/nfa-backtrack" ];
"perf-dfa" = [ "regex-automata/hybrid" ];
"perf-dfa-full" = [ "regex-automata/dfa-build" "regex-automata/dfa-search" ];
"perf-inline" = [ "regex-automata/perf-inline" ];
"perf-literal" = [ "dep:aho-corasick" "dep:memchr" "regex-automata/perf-literal" ];
"perf-onepass" = [ "regex-automata/dfa-onepass" ];
"std" = [ "aho-corasick?/std" "memchr?/std" "regex-automata/std" "regex-syntax/std" ];
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "regex-automata/unicode" "regex-syntax/unicode" ];
"unicode-age" = [ "regex-automata/unicode-age" "regex-syntax/unicode-age" ];
"unicode-bool" = [ "regex-automata/unicode-bool" "regex-syntax/unicode-bool" ];
"unicode-case" = [ "regex-automata/unicode-case" "regex-syntax/unicode-case" ];
"unicode-gencat" = [ "regex-automata/unicode-gencat" "regex-syntax/unicode-gencat" ];
"unicode-perl" = [ "regex-automata/unicode-perl" "regex-automata/unicode-word-boundary" "regex-syntax/unicode-perl" ];
"unicode-script" = [ "regex-automata/unicode-script" "regex-syntax/unicode-script" ];
"unicode-segment" = [ "regex-automata/unicode-segment" "regex-syntax/unicode-segment" ];
"unstable" = [ "pattern" ];
"use_std" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "perf" "perf-backtrack" "perf-cache" "perf-dfa" "perf-inline" "perf-literal" "perf-onepass" "std" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
};
"regex-automata" = rec {
crateName = "regex-automata";
version = "0.4.13";
edition = "2021";
sha256 = "070z0j23pjfidqz0z89id1fca4p572wxpcr20a0qsv68bbrclxjj";
libName = "regex_automata";
authors = [
"The Rust Project Developers"
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "aho-corasick";
packageId = "aho-corasick";
optional = true;
usesDefaultFeatures = false;
}
{
name = "memchr";
packageId = "memchr";
optional = true;
usesDefaultFeatures = false;
}
{
name = "regex-syntax";
packageId = "regex-syntax";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "syntax" "perf" "unicode" "meta" "nfa" "dfa" "hybrid" ];
"dfa" = [ "dfa-build" "dfa-search" "dfa-onepass" ];
"dfa-build" = [ "nfa-thompson" "dfa-search" ];
"dfa-onepass" = [ "nfa-thompson" ];
"hybrid" = [ "alloc" "nfa-thompson" ];
"internal-instrument" = [ "internal-instrument-pikevm" ];
"internal-instrument-pikevm" = [ "logging" "std" ];
"logging" = [ "dep:log" "aho-corasick?/logging" "memchr?/logging" ];
"meta" = [ "syntax" "nfa-pikevm" ];
"nfa" = [ "nfa-thompson" "nfa-pikevm" "nfa-backtrack" ];
"nfa-backtrack" = [ "nfa-thompson" ];
"nfa-pikevm" = [ "nfa-thompson" ];
"nfa-thompson" = [ "alloc" ];
"perf" = [ "perf-inline" "perf-literal" ];
"perf-literal" = [ "perf-literal-substring" "perf-literal-multisubstring" ];
"perf-literal-multisubstring" = [ "dep:aho-corasick" ];
"perf-literal-substring" = [ "aho-corasick?/perf-literal" "dep:memchr" ];
"std" = [ "regex-syntax?/std" "memchr?/std" "aho-corasick?/std" "alloc" ];
"syntax" = [ "dep:regex-syntax" "alloc" ];
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" "regex-syntax?/unicode" ];
"unicode-age" = [ "regex-syntax?/unicode-age" ];
"unicode-bool" = [ "regex-syntax?/unicode-bool" ];
"unicode-case" = [ "regex-syntax?/unicode-case" ];
"unicode-gencat" = [ "regex-syntax?/unicode-gencat" ];
"unicode-perl" = [ "regex-syntax?/unicode-perl" ];
"unicode-script" = [ "regex-syntax?/unicode-script" ];
"unicode-segment" = [ "regex-syntax?/unicode-segment" ];
};
resolvedDefaultFeatures = [ "alloc" "dfa-onepass" "hybrid" "meta" "nfa" "nfa-backtrack" "nfa-pikevm" "nfa-thompson" "perf" "perf-inline" "perf-literal" "perf-literal-multisubstring" "perf-literal-substring" "std" "syntax" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" ];
};
"regex-syntax" = rec {
crateName = "regex-syntax";
version = "0.8.8";
edition = "2021";
sha256 = "0n7ggnpk0r32rzgnycy5xrc1yp2kq19m6pz98ch3c6dkaxw9hbbs";
libName = "regex_syntax";
authors = [
"The Rust Project Developers"
"Andrew Gallant <jamslam@gmail.com>"
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"default" = [ "std" "unicode" ];
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
};
resolvedDefaultFeatures = [ "default" "std" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
};
"reqwest" = rec {
crateName = "reqwest";
version = "0.11.27";
edition = "2021";
sha256 = "0qjary4hpplpgdi62d2m0xvbn6lnzckwffm0rgkm2x51023m6ryx";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "base64";
packageId = "base64";
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "encoding_rs";
packageId = "encoding_rs";
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
}
{
name = "h2";
packageId = "h2";
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "http";
packageId = "http";
}
{
name = "http-body";
packageId = "http-body";
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "hyper";
packageId = "hyper";
usesDefaultFeatures = false;
target = { target, features }: (!("wasm32" == target."arch" or null));
features = [ "tcp" "http1" "http2" "client" "runtime" ];
}
{
name = "hyper-tls";
packageId = "hyper-tls";
optional = true;
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "ipnet";
packageId = "ipnet";
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "js-sys";
packageId = "js-sys";
target = { target, features }: ("wasm32" == target."arch" or null);
}
{
name = "log";
packageId = "log";
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "mime";
packageId = "mime";
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "native-tls";
packageId = "native-tls";
rename = "native-tls-crate";
optional = true;
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "once_cell";
packageId = "once_cell";
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "percent-encoding";
packageId = "percent-encoding";
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "rustls-pemfile";
packageId = "rustls-pemfile";
optional = true;
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_json";
packageId = "serde_json";
optional = true;
}
{
name = "serde_json";
packageId = "serde_json";
target = { target, features }: ("wasm32" == target."arch" or null);
}
{
name = "serde_urlencoded";
packageId = "serde_urlencoded";
}
{
name = "sync_wrapper";
packageId = "sync_wrapper";
}
{
name = "system-configuration";
packageId = "system-configuration";
target = { target, features }: ("macos" == target."os" or null);
}
{
name = "tokio";
packageId = "tokio";
usesDefaultFeatures = false;
target = { target, features }: (!("wasm32" == target."arch" or null));
features = [ "net" "time" ];
}
{
name = "tokio-native-tls";
packageId = "tokio-native-tls";
optional = true;
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "tokio-util";
packageId = "tokio-util";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (!("wasm32" == target."arch" or null));
features = [ "codec" "io" ];
}
{
name = "tower-service";
packageId = "tower-service";
}
{
name = "url";
packageId = "url";
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
target = { target, features }: ("wasm32" == target."arch" or null);
}
{
name = "wasm-bindgen-futures";
packageId = "wasm-bindgen-futures";
target = { target, features }: ("wasm32" == target."arch" or null);
}
{
name = "wasm-streams";
packageId = "wasm-streams";
optional = true;
target = { target, features }: ("wasm32" == target."arch" or null);
}
{
name = "web-sys";
packageId = "web-sys";
target = { target, features }: ("wasm32" == target."arch" or null);
features = [ "AbortController" "AbortSignal" "Headers" "Request" "RequestInit" "RequestMode" "Response" "Window" "FormData" "Blob" "BlobPropertyBag" "ServiceWorkerGlobalScope" "RequestCredentials" "File" "ReadableStream" ];
}
{
name = "winreg";
packageId = "winreg";
target = { target, features }: (target."windows" or false);
}
];
devDependencies = [
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
target = {target, features}: (!("wasm32" == target."arch" or null));
features = [ "std" "alloc" ];
}
{
name = "hyper";
packageId = "hyper";
usesDefaultFeatures = false;
target = {target, features}: (!("wasm32" == target."arch" or null));
features = [ "tcp" "stream" "http1" "http2" "client" "server" "runtime" ];
}
{
name = "serde";
packageId = "serde";
target = {target, features}: (!("wasm32" == target."arch" or null));
features = [ "derive" ];
}
{
name = "tokio";
packageId = "tokio";
usesDefaultFeatures = false;
target = {target, features}: (!("wasm32" == target."arch" or null));
features = [ "macros" "rt-multi-thread" ];
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
target = {target, features}: ("wasm32" == target."arch" or null);
features = [ "serde-serialize" ];
}
];
features = {
"__rustls" = [ "hyper-rustls" "tokio-rustls" "rustls" "__tls" ];
"__tls" = [ "dep:rustls-pemfile" ];
"async-compression" = [ "dep:async-compression" ];
"blocking" = [ "futures-util/io" "tokio/sync" ];
"brotli" = [ "async-compression" "async-compression/brotli" "tokio-util" ];
"cookie_crate" = [ "dep:cookie_crate" ];
"cookie_store" = [ "dep:cookie_store" ];
"cookies" = [ "cookie_crate" "cookie_store" ];
"default" = [ "default-tls" ];
"default-tls" = [ "hyper-tls" "native-tls-crate" "__tls" "tokio-native-tls" ];
"deflate" = [ "async-compression" "async-compression/zlib" "tokio-util" ];
"futures-channel" = [ "dep:futures-channel" ];
"gzip" = [ "async-compression" "async-compression/gzip" "tokio-util" ];
"h3" = [ "dep:h3" ];
"h3-quinn" = [ "dep:h3-quinn" ];
"hickory-dns" = [ "hickory-resolver" ];
"hickory-resolver" = [ "dep:hickory-resolver" ];
"http3" = [ "rustls-tls-manual-roots" "h3" "h3-quinn" "quinn" "futures-channel" ];
"hyper-rustls" = [ "dep:hyper-rustls" ];
"hyper-tls" = [ "dep:hyper-tls" ];
"json" = [ "serde_json" ];
"mime_guess" = [ "dep:mime_guess" ];
"multipart" = [ "mime_guess" ];
"native-tls" = [ "default-tls" ];
"native-tls-alpn" = [ "native-tls" "native-tls-crate/alpn" ];
"native-tls-crate" = [ "dep:native-tls-crate" ];
"native-tls-vendored" = [ "native-tls" "native-tls-crate/vendored" ];
"quinn" = [ "dep:quinn" ];
"rustls" = [ "dep:rustls" ];
"rustls-native-certs" = [ "dep:rustls-native-certs" ];
"rustls-tls" = [ "rustls-tls-webpki-roots" ];
"rustls-tls-manual-roots" = [ "__rustls" ];
"rustls-tls-native-roots" = [ "rustls-native-certs" "__rustls" ];
"rustls-tls-webpki-roots" = [ "webpki-roots" "__rustls" ];
"serde_json" = [ "dep:serde_json" ];
"socks" = [ "tokio-socks" ];
"stream" = [ "tokio/fs" "tokio-util" "wasm-streams" ];
"tokio-native-tls" = [ "dep:tokio-native-tls" ];
"tokio-rustls" = [ "dep:tokio-rustls" ];
"tokio-socks" = [ "dep:tokio-socks" ];
"tokio-util" = [ "dep:tokio-util" ];
"trust-dns" = [ "hickory-dns" ];
"wasm-streams" = [ "dep:wasm-streams" ];
"webpki-roots" = [ "dep:webpki-roots" ];
};
resolvedDefaultFeatures = [ "__tls" "default" "default-tls" "hyper-tls" "json" "native-tls-crate" "serde_json" "stream" "tokio-native-tls" "tokio-util" "wasm-streams" ];
};
"rlimit" = rec {
crateName = "rlimit";
version = "0.10.2";
edition = "2021";
sha256 = "0fkr1jyhg0ch50kryy1jxd83nfh2skk80ss7irial6nds0xvchvh";
authors = [
"Nugine <nugine@foxmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
};
"rustc-demangle" = rec {
crateName = "rustc-demangle";
version = "0.1.26";
edition = "2015";
sha256 = "1kja3nb0yhlm4j2p1hl8d7sjmn2g9fa1s4pj0qma5kj2lcndkxsn";
libName = "rustc_demangle";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"core" = [ "dep:core" ];
"rustc-dep-of-std" = [ "core" ];
};
};
"rustc_version" = rec {
crateName = "rustc_version";
version = "0.4.1";
edition = "2018";
sha256 = "14lvdsmr5si5qbqzrajgb6vfn69k0sfygrvfvr2mps26xwi3mjyg";
dependencies = [
{
name = "semver";
packageId = "semver";
}
];
};
"rustix 0.38.44" = rec {
crateName = "rustix";
version = "0.38.44";
edition = "2021";
sha256 = "0m61v0h15lf5rrnbjhcb9306bgqrhskrqv7i1n0939dsw8dbrdgx";
authors = [
"Dan Gohman <dev@sunfishcode.online>"
"Jakub Konka <kubkon@jakubkonka.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
usesDefaultFeatures = false;
}
{
name = "errno";
packageId = "errno 0.3.14";
rename = "libc_errno";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
}
{
name = "errno";
packageId = "errno 0.3.14";
rename = "libc_errno";
usesDefaultFeatures = false;
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
}
{
name = "errno";
packageId = "errno 0.3.14";
rename = "libc_errno";
usesDefaultFeatures = false;
target = { target, features }: (target."windows" or false);
}
{
name = "libc";
packageId = "libc";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
}
{
name = "linux-raw-sys";
packageId = "linux-raw-sys 0.4.15";
usesDefaultFeatures = false;
target = { target, features }: ((("android" == target."os" or null) || ("linux" == target."os" or null)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
features = [ "general" "ioctl" "no_std" ];
}
{
name = "linux-raw-sys";
packageId = "linux-raw-sys 0.4.15";
usesDefaultFeatures = false;
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
features = [ "general" "errno" "ioctl" "no_std" "elf" ];
}
{
name = "windows-sys";
packageId = "windows-sys 0.59.0";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_NetworkManagement_IpHelper" "Win32_System_Threading" ];
}
];
devDependencies = [
{
name = "errno";
packageId = "errno 0.3.14";
rename = "libc_errno";
usesDefaultFeatures = false;
}
{
name = "libc";
packageId = "libc";
}
];
features = {
"all-apis" = [ "event" "fs" "io_uring" "mm" "mount" "net" "param" "pipe" "process" "procfs" "pty" "rand" "runtime" "shm" "stdio" "system" "termios" "thread" "time" ];
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"default" = [ "std" "use-libc-auxv" ];
"io_uring" = [ "event" "fs" "net" "linux-raw-sys/io_uring" ];
"itoa" = [ "dep:itoa" ];
"libc" = [ "dep:libc" ];
"libc-extra-traits" = [ "libc?/extra_traits" ];
"libc_errno" = [ "dep:libc_errno" ];
"linux_latest" = [ "linux_4_11" ];
"net" = [ "linux-raw-sys/net" "linux-raw-sys/netlink" "linux-raw-sys/if_ether" "linux-raw-sys/xdp" ];
"once_cell" = [ "dep:once_cell" ];
"param" = [ "fs" ];
"process" = [ "linux-raw-sys/prctl" ];
"procfs" = [ "once_cell" "itoa" "fs" ];
"pty" = [ "itoa" "fs" ];
"runtime" = [ "linux-raw-sys/prctl" ];
"rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" "compiler_builtins" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" "compiler_builtins?/rustc-dep-of-std" ];
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
"shm" = [ "fs" ];
"std" = [ "bitflags/std" "alloc" "libc?/std" "libc_errno?/std" "libc-extra-traits" ];
"system" = [ "linux-raw-sys/system" ];
"thread" = [ "linux-raw-sys/prctl" ];
"use-libc" = [ "libc_errno" "libc" "libc-extra-traits" ];
};
resolvedDefaultFeatures = [ "alloc" "fs" "libc-extra-traits" "std" ];
};
"rustix 1.1.3" = rec {
crateName = "rustix";
version = "1.1.3";
edition = "2021";
sha256 = "0d0z2zcw4rwzni1hm8snw8xdxwwrij336m31c4ghq66cghj9wv0l";
authors = [
"Dan Gohman <dev@sunfishcode.online>"
"Jakub Konka <kubkon@jakubkonka.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
usesDefaultFeatures = false;
}
{
name = "errno";
packageId = "errno 0.3.14";
rename = "libc_errno";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
}
{
name = "errno";
packageId = "errno 0.3.14";
rename = "libc_errno";
usesDefaultFeatures = false;
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
}
{
name = "errno";
packageId = "errno 0.3.14";
rename = "libc_errno";
usesDefaultFeatures = false;
target = { target, features }: (target."windows" or false);
}
{
name = "libc";
packageId = "libc";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
}
{
name = "linux-raw-sys";
packageId = "linux-raw-sys 0.11.0";
usesDefaultFeatures = false;
target = { target, features }: ((("linux" == target."os" or null) || ("android" == target."os" or null)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
features = [ "general" "ioctl" "no_std" ];
}
{
name = "linux-raw-sys";
packageId = "linux-raw-sys 0.11.0";
usesDefaultFeatures = false;
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
features = [ "auxvec" "general" "errno" "ioctl" "no_std" "elf" ];
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Networking_WinSock" ];
}
];
devDependencies = [
{
name = "errno";
packageId = "errno 0.3.14";
rename = "libc_errno";
usesDefaultFeatures = false;
}
{
name = "libc";
packageId = "libc";
}
];
features = {
"all-apis" = [ "event" "fs" "io_uring" "mm" "mount" "net" "param" "pipe" "process" "pty" "rand" "runtime" "shm" "stdio" "system" "termios" "thread" "time" ];
"core" = [ "dep:core" ];
"default" = [ "std" ];
"io_uring" = [ "event" "fs" "net" "thread" "linux-raw-sys/io_uring" ];
"libc" = [ "dep:libc" ];
"libc_errno" = [ "dep:libc_errno" ];
"linux_5_1" = [ "linux_4_11" ];
"linux_5_11" = [ "linux_5_1" ];
"linux_latest" = [ "linux_5_11" ];
"net" = [ "linux-raw-sys/net" "linux-raw-sys/netlink" "linux-raw-sys/if_ether" "linux-raw-sys/xdp" ];
"process" = [ "linux-raw-sys/prctl" ];
"pty" = [ "fs" ];
"runtime" = [ "linux-raw-sys/prctl" ];
"rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" ];
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
"shm" = [ "fs" ];
"std" = [ "bitflags/std" "alloc" "libc?/std" "libc_errno?/std" ];
"system" = [ "linux-raw-sys/system" ];
"thread" = [ "linux-raw-sys/prctl" ];
"use-libc" = [ "libc_errno" "libc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "fs" "std" ];
};
"rustls-pemfile" = rec {
crateName = "rustls-pemfile";
version = "1.0.4";
edition = "2018";
sha256 = "1324n5bcns0rnw6vywr5agff3rwfvzphi7rmbyzwnv6glkhclx0w";
libName = "rustls_pemfile";
dependencies = [
{
name = "base64";
packageId = "base64";
}
];
};
"rustversion" = rec {
crateName = "rustversion";
version = "1.0.22";
edition = "2018";
sha256 = "0vfl70jhv72scd9rfqgr2n11m5i9l1acnk684m2w83w0zbqdx75k";
procMacro = true;
build = "build/build.rs";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
};
"ryu" = rec {
crateName = "ryu";
version = "1.0.21";
edition = "2021";
sha256 = "1sja0gi4s0h3yjrx7hky72vivhzx73p5dllsiwg844mzfwl9n132";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"no-panic" = [ "dep:no-panic" ];
};
};
"same-file" = rec {
crateName = "same-file";
version = "1.0.6";
edition = "2018";
sha256 = "00h5j1w87dmhnvbv9l8bic3y7xxsnjmssvifw2ayvgx9mb1ivz4k";
libName = "same_file";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "winapi-util";
packageId = "winapi-util";
target = { target, features }: (target."windows" or false);
}
];
};
"sanakirja" = rec {
crateName = "sanakirja";
version = "1.4.3";
edition = "2018";
sha256 = "04bdmhs3y35w3ip265mm4yiyf2493vcizl04kwh248af0q6zgal1";
authors = [
"Pierre-Étienne Meunier"
];
dependencies = [
{
name = "crc32fast";
packageId = "crc32fast";
optional = true;
usesDefaultFeatures = false;
}
{
name = "fs2";
packageId = "fs2";
optional = true;
}
{
name = "lazy_static";
packageId = "lazy_static 1.5.0";
optional = true;
}
{
name = "log";
packageId = "log";
}
{
name = "memmap2";
packageId = "memmap2";
optional = true;
}
{
name = "parking_lot";
packageId = "parking_lot 0.11.2";
}
{
name = "sanakirja-core";
packageId = "sanakirja-core";
}
{
name = "serde";
packageId = "serde";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
];
features = {
"crc32" = [ "crc32fast" "lazy_static" "sanakirja-core/crc32" ];
"crc32fast" = [ "dep:crc32fast" ];
"default" = [ "mmap" ];
"ed25519" = [ "sanakirja-core/ed25519" ];
"fs2" = [ "dep:fs2" ];
"lazy_static" = [ "dep:lazy_static" ];
"memmap2" = [ "dep:memmap2" ];
"mmap" = [ "memmap2" "fs2" ];
"std" = [ "sanakirja-core/std" ];
"uuid" = [ "sanakirja-core/uuid" ];
};
resolvedDefaultFeatures = [ "crc32" "crc32fast" "fs2" "lazy_static" "memmap2" "mmap" ];
};
"sanakirja-core" = rec {
crateName = "sanakirja-core";
version = "1.4.1";
edition = "2018";
crateBin = [];
sha256 = "1xcb4d9gaxp61na4dyz9iiq3n1shhiivqs0iv5xnxb1ymqsdnxl3";
libName = "sanakirja_core";
authors = [
"Pierre-Étienne Meunier"
"Florent Becker"
];
dependencies = [
{
name = "crc32fast";
packageId = "crc32fast";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"crc32" = [ "crc32fast" ];
"crc32fast" = [ "dep:crc32fast" ];
"ed25519" = [ "ed25519-zebra" "ed25519-zebra/serde" ];
"ed25519-zebra" = [ "dep:ed25519-zebra" ];
"sha2" = [ "dep:sha2" ];
"typeids" = [ "sha2" ];
"uuid" = [ "dep:uuid" ];
};
resolvedDefaultFeatures = [ "crc32" "crc32fast" ];
};
"schannel" = rec {
crateName = "schannel";
version = "0.1.28";
edition = "2018";
sha256 = "1qb6s5gyxfz2inz753a4z3mc1d266mwvz0c5w7ppd3h44swq27c9";
authors = [
"Steven Fackler <sfackler@gmail.com>"
"Steffen Butzer <steffen.butzer@outlook.com>"
];
dependencies = [
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
features = [ "Win32_Foundation" "Win32_Security_Cryptography" "Win32_Security_Authentication_Identity" "Win32_Security_Credentials" "Win32_System_LibraryLoader" "Win32_System_Memory" "Win32_System_SystemInformation" ];
}
];
devDependencies = [
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
features = [ "Win32_System_SystemInformation" "Win32_System_Time" ];
}
];
};
"scopeguard" = rec {
crateName = "scopeguard";
version = "1.2.0";
edition = "2015";
sha256 = "0jcz9sd47zlsgcnm1hdw0664krxwb5gczlif4qngj2aif8vky54l";
authors = [
"bluss"
];
features = {
"default" = [ "use_std" ];
};
};
"security-framework 2.11.1" = rec {
crateName = "security-framework";
version = "2.11.1";
edition = "2021";
sha256 = "00ldclwx78dm61v7wkach9lcx76awlrv0fdgjdwch4dmy12j4yw9";
libName = "security_framework";
authors = [
"Steven Fackler <sfackler@gmail.com>"
"Kornel <kornel@geekhood.net>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
}
{
name = "core-foundation";
packageId = "core-foundation 0.9.4";
}
{
name = "core-foundation-sys";
packageId = "core-foundation-sys";
}
{
name = "libc";
packageId = "libc";
}
{
name = "security-framework-sys";
packageId = "security-framework-sys";
usesDefaultFeatures = false;
}
];
features = {
"OSX_10_10" = [ "OSX_10_9" "security-framework-sys/OSX_10_10" ];
"OSX_10_11" = [ "OSX_10_10" "security-framework-sys/OSX_10_11" ];
"OSX_10_12" = [ "OSX_10_11" "security-framework-sys/OSX_10_12" ];
"OSX_10_13" = [ "OSX_10_12" "security-framework-sys/OSX_10_13" "alpn" "session-tickets" "serial-number-bigint" ];
"OSX_10_14" = [ "OSX_10_13" "security-framework-sys/OSX_10_14" ];
"OSX_10_15" = [ "OSX_10_14" "security-framework-sys/OSX_10_15" ];
"OSX_10_9" = [ "security-framework-sys/OSX_10_9" ];
"default" = [ "OSX_10_12" ];
"log" = [ "dep:log" ];
"serial-number-bigint" = [ "dep:num-bigint" ];
};
resolvedDefaultFeatures = [ "OSX_10_10" "OSX_10_11" "OSX_10_12" "OSX_10_9" "default" ];
};
"security-framework 3.5.1" = rec {
crateName = "security-framework";
version = "3.5.1";
edition = "2021";
sha256 = "1vz6pf5qjgx8s0hg805hq6qbcqnll6fs63irvrpgcc7qx91p6adk";
libName = "security_framework";
authors = [
"Steven Fackler <sfackler@gmail.com>"
"Kornel <kornel@geekhood.net>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.10.0";
}
{
name = "core-foundation";
packageId = "core-foundation 0.10.1";
}
{
name = "core-foundation-sys";
packageId = "core-foundation-sys";
}
{
name = "libc";
packageId = "libc";
}
{
name = "security-framework-sys";
packageId = "security-framework-sys";
usesDefaultFeatures = false;
}
];
features = {
"OSX_10_12" = [ "security-framework-sys/OSX_10_12" ];
"OSX_10_13" = [ "OSX_10_12" "security-framework-sys/OSX_10_13" "alpn" "session-tickets" ];
"OSX_10_14" = [ "OSX_10_13" "security-framework-sys/OSX_10_14" ];
"OSX_10_15" = [ "OSX_10_14" "security-framework-sys/OSX_10_15" ];
"default" = [ "OSX_10_12" ];
"log" = [ "dep:log" ];
"sync-keychain" = [ "OSX_10_13" ];
};
resolvedDefaultFeatures = [ "OSX_10_12" "default" ];
};
"security-framework-sys" = rec {
crateName = "security-framework-sys";
version = "2.15.0";
edition = "2021";
sha256 = "1h6mijxnfrwvl1y4dzwn3m877j6dqp9qn3g37i954j5czazhq7yc";
libName = "security_framework_sys";
authors = [
"Steven Fackler <sfackler@gmail.com>"
"Kornel <kornel@geekhood.net>"
];
dependencies = [
{
name = "core-foundation-sys";
packageId = "core-foundation-sys";
}
{
name = "libc";
packageId = "libc";
}
];
features = {
"OSX_10_10" = [ "OSX_10_9" ];
"OSX_10_11" = [ "OSX_10_10" ];
"OSX_10_12" = [ "OSX_10_11" ];
"OSX_10_13" = [ "OSX_10_12" ];
"OSX_10_14" = [ "OSX_10_13" ];
"OSX_10_15" = [ "OSX_10_14" ];
"default" = [ "OSX_10_12" ];
};
resolvedDefaultFeatures = [ "OSX_10_10" "OSX_10_11" "OSX_10_12" "OSX_10_9" "default" ];
};
"semver" = rec {
crateName = "semver";
version = "1.0.27";
edition = "2018";
sha256 = "1qmi3akfrnqc2hfkdgcxhld5bv961wbk8my3ascv5068mc5fnryp";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"serde" = rec {
crateName = "serde";
version = "1.0.228";
edition = "2021";
sha256 = "17mf4hhjxv5m90g42wmlbc61hdhlm6j9hwfkpcnd72rpgzm993ls";
authors = [
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "serde_core";
packageId = "serde_core";
usesDefaultFeatures = false;
features = [ "result" ];
}
{
name = "serde_derive";
packageId = "serde_derive";
optional = true;
}
];
features = {
"alloc" = [ "serde_core/alloc" ];
"default" = [ "std" ];
"derive" = [ "serde_derive" ];
"rc" = [ "serde_core/rc" ];
"serde_derive" = [ "dep:serde_derive" ];
"std" = [ "serde_core/std" ];
"unstable" = [ "serde_core/unstable" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "derive" "serde_derive" "std" ];
};
"serde_core" = rec {
crateName = "serde_core";
version = "1.0.228";
edition = "2021";
sha256 = "1bb7id2xwx8izq50098s5j2sqrrvk31jbbrjqygyan6ask3qbls1";
authors = [
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "serde_derive";
packageId = "serde_derive";
target = { target, features }: false;
}
];
devDependencies = [
{
name = "serde_derive";
packageId = "serde_derive";
}
];
features = {
"default" = [ "std" "result" ];
};
resolvedDefaultFeatures = [ "alloc" "result" "std" ];
};
"serde_derive" = rec {
crateName = "serde_derive";
version = "1.0.228";
edition = "2021";
sha256 = "0y8xm7fvmr2kjcd029g9fijpndh8csv5m20g4bd76w8qschg4h6m";
procMacro = true;
authors = [
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
features = [ "proc-macro" ];
}
{
name = "quote";
packageId = "quote";
usesDefaultFeatures = false;
features = [ "proc-macro" ];
}
{
name = "syn";
packageId = "syn";
usesDefaultFeatures = false;
features = [ "clone-impls" "derive" "parsing" "printing" "proc-macro" ];
}
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"serde_json" = rec {
crateName = "serde_json";
version = "1.0.147";
edition = "2021";
sha256 = "1r3s8hqwqrrmb8ikdf8yg6lnm8z8sxycp7iycwz3852ka0jlgwba";
authors = [
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "itoa";
packageId = "itoa";
}
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
target = { target, features }: false;
}
{
name = "serde_core";
packageId = "serde_core";
usesDefaultFeatures = false;
}
{
name = "zmij";
packageId = "zmij";
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
];
features = {
"alloc" = [ "serde_core/alloc" ];
"default" = [ "std" ];
"indexmap" = [ "dep:indexmap" ];
"preserve_order" = [ "indexmap" "std" ];
"std" = [ "memchr/std" "serde_core/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"serde_spanned 0.6.9" = rec {
crateName = "serde_spanned";
version = "0.6.9";
edition = "2021";
sha256 = "18vmxq6qfrm110caszxrzibjhy2s54n1g5w1bshxq9kjmz7y0hdz";
dependencies = [
{
name = "serde";
packageId = "serde";
optional = true;
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
}
];
features = {
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "serde" ];
};
"serde_spanned 1.0.4" = rec {
crateName = "serde_spanned";
version = "1.0.4";
edition = "2021";
sha256 = "0xkp0qdzams5sqwndbw3xrhf4c0bb5r46w2ywkp1aqsdb8ggkfzq";
dependencies = [
{
name = "serde_core";
packageId = "serde_core";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde_core?/alloc" ];
"default" = [ "std" "serde" ];
"serde" = [ "dep:serde_core" ];
"std" = [ "alloc" "serde_core?/std" ];
};
resolvedDefaultFeatures = [ "alloc" "serde" ];
};
"serde_urlencoded" = rec {
crateName = "serde_urlencoded";
version = "0.7.1";
edition = "2018";
sha256 = "1zgklbdaysj3230xivihs30qi5vkhigg323a9m62k8jwf4a1qjfk";
authors = [
"Anthony Ramine <n.oxyde@gmail.com>"
];
dependencies = [
{
name = "form_urlencoded";
packageId = "form_urlencoded";
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "ryu";
packageId = "ryu";
}
{
name = "serde";
packageId = "serde";
}
];
};
"sha2 0.10.9" = rec {
crateName = "sha2";
version = "0.10.9";
edition = "2018";
sha256 = "10xjj843v31ghsksd9sl9y12qfc48157j1xpb8v1ml39jy0psl57";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "cpufeatures";
packageId = "cpufeatures";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
}
{
name = "digest";
packageId = "digest 0.10.7";
}
];
devDependencies = [
{
name = "digest";
packageId = "digest 0.10.7";
features = [ "dev" ];
}
];
features = {
"asm" = [ "sha2-asm" ];
"asm-aarch64" = [ "asm" ];
"default" = [ "std" ];
"oid" = [ "digest/oid" ];
"sha2-asm" = [ "dep:sha2-asm" ];
"std" = [ "digest/std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"sha2 0.9.9" = rec {
crateName = "sha2";
version = "0.9.9";
edition = "2018";
sha256 = "006q2f0ar26xcjxqz8zsncfgz86zqa5dkwlwv03rhx1rpzhs2n2d";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "block-buffer";
packageId = "block-buffer 0.9.0";
}
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "cpufeatures";
packageId = "cpufeatures";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
}
{
name = "digest";
packageId = "digest 0.9.0";
}
{
name = "opaque-debug";
packageId = "opaque-debug";
}
];
devDependencies = [
{
name = "digest";
packageId = "digest 0.9.0";
features = [ "dev" ];
}
];
features = {
"asm" = [ "sha2-asm" ];
"asm-aarch64" = [ "asm" ];
"default" = [ "std" ];
"sha2-asm" = [ "dep:sha2-asm" ];
"std" = [ "digest/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"shell-words" = rec {
crateName = "shell-words";
version = "1.1.1";
edition = "2015";
sha256 = "0xzd5p53xl0ndnk63r0by52rhdrh6pd37szfxszkg73zb6ffcvyw";
libName = "shell_words";
authors = [
"Tomasz Miąsko <tomasz.miasko@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"shlex" = rec {
crateName = "shlex";
version = "1.3.0";
edition = "2015";
sha256 = "0r1y6bv26c1scpxvhg2cabimrmwgbp4p3wy6syj9n0c4s3q2znhg";
authors = [
"comex <comexk@gmail.com>"
"Fenhl <fenhl@fenhl.net>"
"Adrian Taylor <adetaylor@chromium.org>"
"Alex Touchet <alextouchet@outlook.com>"
"Daniel Parks <dp+git@oxidized.org>"
"Garrett Berg <googberg@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"signal-hook-registry" = rec {
crateName = "signal-hook-registry";
version = "1.4.8";
edition = "2015";
sha256 = "06vc7pmnki6lmxar3z31gkyg9cw7py5x9g7px70gy2hil75nkny4";
libName = "signal_hook_registry";
authors = [
"Michal 'vorner' Vaner <vorner@vorner.cz>"
"Masaki Hara <ackie.h.gmai@gmail.com>"
];
dependencies = [
{
name = "errno";
packageId = "errno 0.3.14";
}
{
name = "libc";
packageId = "libc";
}
];
};
"signature" = rec {
crateName = "signature";
version = "2.2.0";
edition = "2021";
sha256 = "1pi9hd5vqfr3q3k49k37z06p7gs5si0in32qia4mmr1dancr6m3p";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "rand_core";
packageId = "rand_core 0.6.4";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"derive" = [ "dep:derive" ];
"digest" = [ "dep:digest" ];
"rand_core" = [ "dep:rand_core" ];
"std" = [ "alloc" "rand_core?/std" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"simd-adler32" = rec {
crateName = "simd-adler32";
version = "0.3.8";
edition = "2018";
sha256 = "18lx2gdgislabbvlgw5q3j5ssrr77v8kmkrxaanp3liimp2sc873";
libName = "simd_adler32";
authors = [
"Marvin Countryman <me@maar.vin>"
];
features = {
"default" = [ "std" "const-generics" ];
};
};
"slab" = rec {
crateName = "slab";
version = "0.4.11";
edition = "2018";
sha256 = "12bm4s88rblq02jjbi1dw31984w61y2ldn13ifk5gsqgy97f8aks";
authors = [
"Carl Lerche <me@carllerche.com>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"smallvec" = rec {
crateName = "smallvec";
version = "1.15.1";
edition = "2018";
sha256 = "00xxdxxpgyq5vjnpljvkmy99xij5rxgh913ii1v16kzynnivgcb7";
authors = [
"The Servo Project Developers"
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"bincode" = [ "dep:bincode" ];
"const_new" = [ "const_generics" ];
"drain_keep_rest" = [ "drain_filter" ];
"impl_bincode" = [ "bincode" "unty" ];
"malloc_size_of" = [ "dep:malloc_size_of" ];
"serde" = [ "dep:serde" ];
"unty" = [ "dep:unty" ];
};
resolvedDefaultFeatures = [ "const_generics" ];
};
"socket2 0.5.10" = rec {
crateName = "socket2";
version = "0.5.10";
edition = "2021";
sha256 = "0y067ki5q946w91xlz2sb175pnfazizva6fi3kfp639mxnmpc8z2";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "windows-sys";
packageId = "windows-sys 0.52.0";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" ];
}
];
features = {
};
resolvedDefaultFeatures = [ "all" ];
};
"socket2 0.6.1" = rec {
crateName = "socket2";
version = "0.6.1";
edition = "2021";
sha256 = "109qn0kjhqi5zds84qyqi5wn72g8azjhmf4b04fkgkrkd48rw4hp";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "windows-sys";
packageId = "windows-sys 0.60.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" ];
}
];
features = {
};
resolvedDefaultFeatures = [ "all" ];
};
"spki" = rec {
crateName = "spki";
version = "0.7.3";
edition = "2021";
sha256 = "17fj8k5fmx4w9mp27l970clrh5qa7r5sjdvbsln987xhb34dc7nr";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "base64ct";
packageId = "base64ct";
optional = true;
usesDefaultFeatures = false;
}
{
name = "der";
packageId = "der";
features = [ "oid" ];
}
];
features = {
"alloc" = [ "base64ct?/alloc" "der/alloc" ];
"arbitrary" = [ "std" "dep:arbitrary" "der/arbitrary" ];
"base64" = [ "dep:base64ct" ];
"fingerprint" = [ "sha2" ];
"pem" = [ "alloc" "der/pem" ];
"sha2" = [ "dep:sha2" ];
"std" = [ "der/std" "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"stable_deref_trait" = rec {
crateName = "stable_deref_trait";
version = "1.2.1";
edition = "2015";
sha256 = "15h5h73ppqyhdhx6ywxfj88azmrpml9gl6zp3pwy2malqa6vxqkc";
authors = [
"Robert Grosse <n210241048576@gmail.com>"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
};
"static_assertions" = rec {
crateName = "static_assertions";
version = "1.1.0";
edition = "2015";
sha256 = "0gsl6xmw10gvn3zs1rv99laj5ig7ylffnh71f9l34js4nr4r7sx2";
authors = [
"Nikolai Vazquez"
];
features = {
};
};
"strsim" = rec {
crateName = "strsim";
version = "0.11.1";
edition = "2015";
sha256 = "0kzvqlw8hxqb7y598w1s0hxlnmi84sg5vsipp3yg5na5d1rvba3x";
authors = [
"Danny Guo <danny@dannyguo.com>"
"maxbachmann <oss@maxbachmann.de>"
];
};
"subtle" = rec {
crateName = "subtle";
version = "2.4.1";
edition = "2015";
sha256 = "00b6jzh9gzb0h9n25g06nqr90z3xzqppfhhb260s1hjhh4pg7pkb";
authors = [
"Isis Lovecruft <isis@patternsinthevoid.net>"
"Henry de Valence <hdevalence@hdevalence.ca>"
];
features = {
"default" = [ "std" "i128" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"syn" = rec {
crateName = "syn";
version = "2.0.111";
edition = "2021";
sha256 = "11rf9l6435w525vhqmnngcnwsly7x4xx369fmaqvswdbjjicj31r";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
}
{
name = "quote";
packageId = "quote";
optional = true;
usesDefaultFeatures = false;
}
{
name = "unicode-ident";
packageId = "unicode-ident";
}
];
features = {
"default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
"printing" = [ "dep:quote" ];
"proc-macro" = [ "proc-macro2/proc-macro" "quote?/proc-macro" ];
"test" = [ "syn-test-suite/all-features" ];
};
resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "fold" "full" "parsing" "printing" "proc-macro" "visit" "visit-mut" ];
};
"sync_wrapper" = rec {
crateName = "sync_wrapper";
version = "0.1.2";
edition = "2018";
sha256 = "0q01lyj0gr9a93n10nxsn8lwbzq97jqd6b768x17c8f7v7gccir0";
authors = [
"Actyx AG <developer@actyx.io>"
];
features = {
"futures" = [ "futures-core" ];
"futures-core" = [ "dep:futures-core" ];
};
};
"synstructure" = rec {
crateName = "synstructure";
version = "0.13.2";
edition = "2018";
sha256 = "1lh9lx3r3jb18f8sbj29am5hm9jymvbwh6jb1izsnnxgvgrp12kj";
authors = [
"Nika Layzell <nika@thelayzells.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
}
{
name = "quote";
packageId = "quote";
usesDefaultFeatures = false;
}
{
name = "syn";
packageId = "syn";
usesDefaultFeatures = false;
features = [ "derive" "parsing" "printing" "clone-impls" "visit" "extra-traits" ];
}
];
features = {
"default" = [ "proc-macro" ];
"proc-macro" = [ "proc-macro2/proc-macro" "syn/proc-macro" "quote/proc-macro" ];
};
resolvedDefaultFeatures = [ "default" "proc-macro" ];
};
"sysinfo" = rec {
crateName = "sysinfo";
version = "0.34.2";
edition = "2021";
sha256 = "1cp4qyr67p7ifglil70p178wx7839kyyxf04cl1smbnknds3kfd4";
authors = [
"Guillaume Gomez <guillaume1.gomez@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (!(("unknown" == target."os" or null) || ("wasm32" == target."arch" or null)));
}
{
name = "memchr";
packageId = "memchr";
optional = true;
}
{
name = "ntapi";
packageId = "ntapi";
optional = true;
target = { target, features }: (target."windows" or false);
}
{
name = "objc2-core-foundation";
packageId = "objc2-core-foundation";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (("macos" == target."os" or null) || ("ios" == target."os" or null));
features = [ "std" ];
}
{
name = "windows";
packageId = "windows 0.57.0";
optional = true;
target = { target, features }: (target."windows" or false);
}
];
features = {
"apple-app-store" = [ "apple-sandbox" ];
"c-interface" = [ "default" ];
"component" = [ "windows/Win32_Foundation" "windows/Win32_Security" "windows/Win32_System_Com" "windows/Win32_System_Rpc" "windows/Win32_System_Variant" "windows/Win32_System_Wmi" "objc2-core-foundation/CFArray" "objc2-core-foundation/CFBase" "objc2-core-foundation/CFDictionary" "objc2-core-foundation/CFNumber" "objc2-core-foundation/CFString" ];
"debug" = [ "libc/extra_traits" ];
"default" = [ "component" "disk" "network" "system" "user" ];
"disk" = [ "windows/Win32_Foundation" "windows/Win32_Storage_FileSystem" "windows/Win32_Security" "windows/Win32_System_IO" "windows/Win32_System_Ioctl" "windows/Win32_System_SystemServices" "windows/Win32_System_WindowsProgramming" "objc2-core-foundation/CFArray" "objc2-core-foundation/CFBase" "objc2-core-foundation/CFDictionary" "objc2-core-foundation/CFError" "objc2-core-foundation/CFNumber" "objc2-core-foundation/CFString" "objc2-core-foundation/CFURL" ];
"multithread" = [ "dep:rayon" ];
"network" = [ "windows/Win32_Foundation" "windows/Win32_NetworkManagement_IpHelper" "windows/Win32_NetworkManagement_Ndis" "windows/Win32_Networking_WinSock" ];
"objc2-core-foundation" = [ "dep:objc2-core-foundation" ];
"serde" = [ "dep:serde" ];
"system" = [ "windows/Win32_Foundation" "windows/Win32_System_Diagnostics_ToolHelp" "windows/Wdk_System_SystemInformation" "windows/Wdk_System_SystemServices" "windows/Wdk_System_Threading" "windows/Win32_Security_Authorization" "windows/Win32_System_Diagnostics_Debug" "windows/Win32_System_Kernel" "windows/Win32_System_Memory" "windows/Win32_System_Performance" "windows/Win32_System_Power" "windows/Win32_System_ProcessStatus" "windows/Win32_System_Registry" "windows/Win32_System_RemoteDesktop" "windows/Win32_System_SystemInformation" "windows/Win32_System_SystemServices" "windows/Win32_System_Threading" "windows/Win32_UI_Shell" "dep:ntapi" "dep:memchr" "objc2-core-foundation/CFBase" "objc2-core-foundation/CFData" "objc2-core-foundation/CFDictionary" "objc2-core-foundation/CFString" ];
"user" = [ "windows/Win32_Foundation" "windows/Win32_NetworkManagement_NetManagement" "windows/Win32_Security" "windows/Win32_Security_Authentication_Identity" "windows/Win32_Security_Authorization" ];
"windows" = [ "dep:windows" ];
};
resolvedDefaultFeatures = [ "objc2-core-foundation" "system" "windows" ];
};
"system-configuration" = rec {
crateName = "system-configuration";
version = "0.5.1";
edition = "2021";
sha256 = "1rz0r30xn7fiyqay2dvzfy56cvaa3km74hnbz2d72p97bkf3lfms";
libName = "system_configuration";
authors = [
"Mullvad VPN"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 1.3.2";
}
{
name = "core-foundation";
packageId = "core-foundation 0.9.4";
}
{
name = "system-configuration-sys";
packageId = "system-configuration-sys";
}
];
};
"system-configuration-sys" = rec {
crateName = "system-configuration-sys";
version = "0.5.0";
edition = "2021";
sha256 = "1jckxvdr37bay3i9v52izgy52dg690x5xfg3hd394sv2xf4b2px7";
libName = "system_configuration_sys";
authors = [
"Mullvad VPN"
];
dependencies = [
{
name = "core-foundation-sys";
packageId = "core-foundation-sys";
}
{
name = "libc";
packageId = "libc";
}
];
};
"tar" = rec {
crateName = "tar";
version = "0.4.44";
edition = "2021";
sha256 = "0yk69a8j9xv51mdcy0853jai5zh1pd9yn456q4cpmj0js9w3i1hx";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "filetime";
packageId = "filetime";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "xattr";
packageId = "xattr";
optional = true;
target = { target, features }: (target."unix" or false);
}
];
features = {
"default" = [ "xattr" ];
"xattr" = [ "dep:xattr" ];
};
resolvedDefaultFeatures = [ "default" "xattr" ];
};
"tempfile" = rec {
crateName = "tempfile";
version = "3.24.0";
edition = "2021";
sha256 = "171fz3h6rj676miq15fyv1hnv69p426mlp8489bwa1b3xg3sjpb5";
authors = [
"Steven Allen <steven@stebalien.com>"
"The Rust Project Developers"
"Ashley Mannix <ashleymannix@live.com.au>"
"Jason White <me@jasonwhite.io>"
];
dependencies = [
{
name = "fastrand";
packageId = "fastrand";
}
{
name = "getrandom";
packageId = "getrandom 0.3.4";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((target."unix" or false) || (target."windows" or false) || ("wasi" == target."os" or null));
}
{
name = "once_cell";
packageId = "once_cell";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "rustix";
packageId = "rustix 1.1.3";
target = { target, features }: ((target."unix" or false) || ("wasi" == target."os" or null));
features = [ "fs" ];
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Storage_FileSystem" "Win32_Foundation" ];
}
];
features = {
"default" = [ "getrandom" ];
"getrandom" = [ "dep:getrandom" ];
};
resolvedDefaultFeatures = [ "default" "getrandom" ];
};
"termcolor" = rec {
crateName = "termcolor";
version = "1.4.1";
edition = "2018";
sha256 = "0mappjh3fj3p2nmrg4y7qv94rchwi9mzmgmfflr8p2awdj7lyy86";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "winapi-util";
packageId = "winapi-util";
target = { target, features }: (target."windows" or false);
}
];
};
"thiserror 1.0.69" = rec {
crateName = "thiserror";
version = "1.0.69";
edition = "2021";
sha256 = "0lizjay08agcr5hs9yfzzj6axs53a2rgx070a1dsi3jpkcrzbamn";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "thiserror-impl";
packageId = "thiserror-impl 1.0.69";
}
];
};
"thiserror 2.0.17" = rec {
crateName = "thiserror";
version = "2.0.17";
edition = "2021";
sha256 = "1j2gixhm2c3s6g96vd0b01v0i0qz1101vfmw0032mdqj1z58fdgn";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "thiserror-impl";
packageId = "thiserror-impl 2.0.17";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"thiserror-impl 1.0.69" = rec {
crateName = "thiserror-impl";
version = "1.0.69";
edition = "2021";
sha256 = "1h84fmn2nai41cxbhk6pqf46bxqq1b344v8yz089w1chzi76rvjg";
procMacro = true;
libName = "thiserror_impl";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
}
];
};
"thiserror-impl 2.0.17" = rec {
crateName = "thiserror-impl";
version = "2.0.17";
edition = "2021";
sha256 = "04y92yjwg1a4piwk9nayzjfs07sps8c4vq9jnsfq9qvxrn75rw9z";
procMacro = true;
libName = "thiserror_impl";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
}
];
};
"thread_local" = rec {
crateName = "thread_local";
version = "1.1.9";
edition = "2021";
sha256 = "1191jvl8d63agnq06pcnarivf63qzgpws5xa33hgc92gjjj4c0pn";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
];
features = {
};
};
"threadpool" = rec {
crateName = "threadpool";
version = "1.8.1";
edition = "2015";
sha256 = "1amgfyzvynbm8pacniivzq9r0fh3chhs7kijic81j76l6c5ycl6h";
authors = [
"The Rust Project Developers"
"Corey Farwell <coreyf@rwell.org>"
"Stefan Schindler <dns2utf8@estada.ch>"
];
dependencies = [
{
name = "num_cpus";
packageId = "num_cpus";
}
];
};
"thrussh" = rec {
crateName = "thrussh";
version = "0.35.6";
edition = "2018";
sha256 = "0y5ja489vhw0k0pdiwq1p6qrfngqzrfvzjbbamy9cw6vaj3gq9r1";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 1.3.2";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "cryptovec";
packageId = "cryptovec";
}
{
name = "digest";
packageId = "digest 0.9.0";
}
{
name = "flate2";
packageId = "flate2";
optional = true;
}
{
name = "futures";
packageId = "futures";
}
{
name = "generic-array";
packageId = "generic-array";
}
{
name = "log";
packageId = "log";
}
{
name = "openssl";
packageId = "openssl";
optional = true;
}
{
name = "rand";
packageId = "rand";
}
{
name = "sha2";
packageId = "sha2 0.9.9";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
{
name = "thrussh-keys";
packageId = "thrussh-keys";
}
{
name = "thrussh-libsodium";
packageId = "thrussh-libsodium";
}
{
name = "tokio";
packageId = "tokio";
features = [ "io-util" "rt-multi-thread" "time" "net" "sync" "macros" "process" ];
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "io-util" "rt-multi-thread" "time" "net" "sync" "macros" ];
}
];
features = {
"default" = [ "flate2" ];
"flate2" = [ "dep:flate2" ];
"openssl" = [ "thrussh-keys/openssl" "dep:openssl" ];
"p256" = [ "thrussh-keys/p256" ];
};
resolvedDefaultFeatures = [ "default" "flate2" "openssl" ];
};
"thrussh-config" = rec {
crateName = "thrussh-config";
version = "0.6.0";
edition = "2018";
sha256 = "08k6r947q5xx73y29s24snwlzym5x7v2drdl5y794957i6mlm5zs";
libName = "thrussh_config";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "dirs-next";
packageId = "dirs-next";
}
{
name = "futures";
packageId = "futures";
}
{
name = "log";
packageId = "log";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
{
name = "tokio";
packageId = "tokio";
features = [ "io-util" "net" "macros" "process" ];
}
{
name = "whoami";
packageId = "whoami";
}
];
};
"thrussh-keys" = rec {
crateName = "thrussh-keys";
version = "0.22.1";
edition = "2018";
sha256 = "1fsr8ank8vciyfdr27b56gnwasjrvadxkklv6w7dn22c7sqmjgf4";
libName = "thrussh_keys";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "aes";
packageId = "aes";
features = [ "ctr" ];
}
{
name = "bcrypt-pbkdf";
packageId = "bcrypt-pbkdf";
}
{
name = "bit-vec";
packageId = "bit-vec";
}
{
name = "block-modes";
packageId = "block-modes";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "cryptovec";
packageId = "cryptovec";
}
{
name = "data-encoding";
packageId = "data-encoding";
}
{
name = "dirs";
packageId = "dirs";
}
{
name = "futures";
packageId = "futures";
}
{
name = "hmac";
packageId = "hmac";
}
{
name = "log";
packageId = "log";
}
{
name = "md5";
packageId = "md5";
}
{
name = "num-bigint";
packageId = "num-bigint";
}
{
name = "num-integer";
packageId = "num-integer";
}
{
name = "openssl";
packageId = "openssl";
optional = true;
}
{
name = "pbkdf2";
packageId = "pbkdf2 0.8.0";
}
{
name = "rand";
packageId = "rand";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "sha2";
packageId = "sha2 0.9.9";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
{
name = "thrussh-libsodium";
packageId = "thrussh-libsodium";
}
{
name = "tokio";
packageId = "tokio";
features = [ "io-util" "rt-multi-thread" "time" "net" ];
}
{
name = "tokio-stream";
packageId = "tokio-stream";
features = [ "net" ];
}
{
name = "yasna";
packageId = "yasna";
features = [ "bit-vec" "num-bigint" ];
}
];
features = {
"openssl" = [ "dep:openssl" ];
"p256" = [ "dep:p256" ];
};
resolvedDefaultFeatures = [ "openssl" ];
};
"thrussh-libsodium" = rec {
crateName = "thrussh-libsodium";
version = "0.2.3";
edition = "2018";
sha256 = "07lscwsfrh02hqnjw62wyknwmydiqwq4jz1gg1g25xygnh79qksz";
libName = "thrussh_libsodium";
authors = [
"pe@pijul.org <pe@pijul.org>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static 1.5.0";
}
{
name = "libc";
packageId = "libc";
}
{
name = "libsodium-sys";
packageId = "libsodium-sys";
target = { target, features }: (!("windows" == target."os" or null));
features = [ "use-pkg-config" ];
}
{
name = "libsodium-sys";
packageId = "libsodium-sys";
target = { target, features }: ("windows" == target."os" or null);
}
];
buildDependencies = [
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "vcpkg";
packageId = "vcpkg";
}
];
};
"tint" = rec {
crateName = "tint";
version = "1.0.1";
edition = "2015";
sha256 = "15k89pp3ddxczfnv2j995yvy02mfpmjrmxmv7mkp8c2acrq4bwks";
authors = [
"Brian Savage <savage13@gmail.com>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static 0.2.11";
}
];
};
"tinystr" = rec {
crateName = "tinystr";
version = "0.8.2";
edition = "2021";
sha256 = "0sa8z88axdsf088hgw5p4xcyi6g3w3sgbb6qdp81bph9bk2fkls2";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "zerovec";
packageId = "zerovec";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde_core?/alloc" "zerovec?/alloc" ];
"databake" = [ "dep:databake" ];
"default" = [ "alloc" ];
"serde" = [ "dep:serde_core" ];
"zerovec" = [ "dep:zerovec" ];
};
resolvedDefaultFeatures = [ "zerovec" ];
};
"tokio" = rec {
crateName = "tokio";
version = "1.48.0";
edition = "2021";
sha256 = "0244qva5pksy8gam6llf7bd6wbk2vkab9lx26yyf08dix810wdpz";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
optional = true;
}
{
name = "libc";
packageId = "libc";
optional = true;
target = { target, features }: ((target."tokio_unstable" or false) && ("linux" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
optional = true;
target = { target, features }: (target."unix" or false);
}
{
name = "mio";
packageId = "mio";
optional = true;
usesDefaultFeatures = false;
}
{
name = "mio";
packageId = "mio";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((target."tokio_unstable" or false) && ("linux" == target."os" or null));
features = [ "os-poll" "os-ext" ];
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "signal-hook-registry";
packageId = "signal-hook-registry";
optional = true;
target = { target, features }: (target."unix" or false);
}
{
name = "socket2";
packageId = "socket2 0.6.1";
optional = true;
target = { target, features }: (!(builtins.elem "wasm" target."family"));
features = [ "all" ];
}
{
name = "tokio-macros";
packageId = "tokio-macros";
optional = true;
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
optional = true;
target = { target, features }: (target."windows" or false);
}
];
devDependencies = [
{
name = "libc";
packageId = "libc";
target = {target, features}: (target."unix" or false);
}
{
name = "socket2";
packageId = "socket2 0.6.1";
target = {target, features}: (!(builtins.elem "wasm" target."family"));
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = {target, features}: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Security_Authorization" ];
}
];
features = {
"bytes" = [ "dep:bytes" ];
"full" = [ "fs" "io-util" "io-std" "macros" "net" "parking_lot" "process" "rt" "rt-multi-thread" "signal" "sync" "time" ];
"io-uring" = [ "dep:io-uring" "libc" "mio/os-poll" "mio/os-ext" "dep:slab" ];
"io-util" = [ "bytes" ];
"libc" = [ "dep:libc" ];
"macros" = [ "tokio-macros" ];
"mio" = [ "dep:mio" ];
"net" = [ "libc" "mio/os-poll" "mio/os-ext" "mio/net" "socket2" "windows-sys/Win32_Foundation" "windows-sys/Win32_Security" "windows-sys/Win32_Storage_FileSystem" "windows-sys/Win32_System_Pipes" "windows-sys/Win32_System_SystemServices" ];
"parking_lot" = [ "dep:parking_lot" ];
"process" = [ "bytes" "libc" "mio/os-poll" "mio/os-ext" "mio/net" "signal-hook-registry" "windows-sys/Win32_Foundation" "windows-sys/Win32_System_Threading" "windows-sys/Win32_System_WindowsProgramming" ];
"rt-multi-thread" = [ "rt" ];
"signal" = [ "libc" "mio/os-poll" "mio/net" "mio/os-ext" "signal-hook-registry" "windows-sys/Win32_Foundation" "windows-sys/Win32_System_Console" ];
"signal-hook-registry" = [ "dep:signal-hook-registry" ];
"socket2" = [ "dep:socket2" ];
"taskdump" = [ "dep:backtrace" ];
"test-util" = [ "rt" "sync" "time" ];
"tokio-macros" = [ "dep:tokio-macros" ];
"tracing" = [ "dep:tracing" ];
"windows-sys" = [ "dep:windows-sys" ];
};
resolvedDefaultFeatures = [ "bytes" "default" "fs" "io-util" "libc" "macros" "mio" "net" "process" "rt" "rt-multi-thread" "signal-hook-registry" "socket2" "sync" "time" "tokio-macros" "windows-sys" ];
};
"tokio-macros" = rec {
crateName = "tokio-macros";
version = "2.6.0";
edition = "2021";
sha256 = "19czvgliginbzyhhfbmj77wazqn2y8g27y2nirfajdlm41bphh5g";
procMacro = true;
libName = "tokio_macros";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
features = [ "full" ];
}
];
};
"tokio-native-tls" = rec {
crateName = "tokio-native-tls";
version = "0.3.1";
edition = "2018";
sha256 = "1wkfg6zn85zckmv4im7mv20ca6b1vmlib5xwz9p7g19wjfmpdbmv";
libName = "tokio_native_tls";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "native-tls";
packageId = "native-tls";
}
{
name = "tokio";
packageId = "tokio";
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "macros" "rt" "rt-multi-thread" "io-util" "net" ];
}
];
features = {
"vendored" = [ "native-tls/vendored" ];
};
};
"tokio-stream" = rec {
crateName = "tokio-stream";
version = "0.1.17";
edition = "2021";
sha256 = "0ix0770hfp4x5rh5bl7vsnr3d4iz4ms43i522xw70xaap9xqv9gc";
libName = "tokio_stream";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "futures-core";
packageId = "futures-core";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "tokio";
packageId = "tokio";
features = [ "sync" ];
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "full" "test-util" ];
}
];
features = {
"default" = [ "time" ];
"fs" = [ "tokio/fs" ];
"full" = [ "time" "net" "io-util" "fs" "sync" "signal" ];
"io-util" = [ "tokio/io-util" ];
"net" = [ "tokio/net" ];
"signal" = [ "tokio/signal" ];
"sync" = [ "tokio/sync" "tokio-util" ];
"time" = [ "tokio/time" ];
"tokio-util" = [ "dep:tokio-util" ];
};
resolvedDefaultFeatures = [ "default" "net" "time" ];
};
"tokio-util" = rec {
crateName = "tokio-util";
version = "0.7.17";
edition = "2021";
sha256 = "152m2rp40bjphca5j581csczarvvr974zvwpzpldcwv0wygi9yif";
libName = "tokio_util";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "futures-core";
packageId = "futures-core";
}
{
name = "futures-sink";
packageId = "futures-sink";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "tokio";
packageId = "tokio";
features = [ "sync" ];
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "full" ];
}
];
features = {
"__docs_rs" = [ "futures-util" ];
"compat" = [ "futures-io" ];
"full" = [ "codec" "compat" "io-util" "time" "net" "rt" "join-map" ];
"futures-io" = [ "dep:futures-io" ];
"futures-util" = [ "dep:futures-util" ];
"hashbrown" = [ "dep:hashbrown" ];
"io-util" = [ "io" "tokio/rt" "tokio/io-util" ];
"join-map" = [ "rt" "hashbrown" ];
"net" = [ "tokio/net" ];
"rt" = [ "tokio/rt" "tokio/sync" "futures-util" ];
"slab" = [ "dep:slab" ];
"time" = [ "tokio/time" "slab" ];
"tracing" = [ "dep:tracing" ];
};
resolvedDefaultFeatures = [ "codec" "default" "io" ];
};
"toml 0.8.23" = rec {
crateName = "toml";
version = "0.8.23";
edition = "2021";
sha256 = "0qnkrq4lm2sdhp3l6cb6f26i8zbnhqb7mhbmksd550wxdfcyn6yw";
dependencies = [
{
name = "indexmap";
packageId = "indexmap";
optional = true;
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_spanned";
packageId = "serde_spanned 0.6.9";
features = [ "serde" ];
}
{
name = "toml_datetime";
packageId = "toml_datetime 0.6.11";
features = [ "serde" ];
}
{
name = "toml_edit";
packageId = "toml_edit";
optional = true;
usesDefaultFeatures = false;
features = [ "serde" ];
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
];
features = {
"default" = [ "parse" "display" ];
"display" = [ "dep:toml_edit" "toml_edit?/display" ];
"indexmap" = [ "dep:indexmap" ];
"parse" = [ "dep:toml_edit" "toml_edit?/parse" ];
"preserve_order" = [ "indexmap" ];
"unbounded" = [ "toml_edit?/unbounded" ];
};
resolvedDefaultFeatures = [ "default" "display" "indexmap" "parse" "preserve_order" ];
};
"toml 0.9.10+spec-1.1.0" = rec {
crateName = "toml";
version = "0.9.10+spec-1.1.0";
edition = "2021";
sha256 = "0j1g01s2wby792jmy8ibzmddmwh1r35qc33c9n5ilji8b4hha988";
dependencies = [
{
name = "serde_core";
packageId = "serde_core";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "serde_spanned";
packageId = "serde_spanned 1.0.4";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "toml_datetime";
packageId = "toml_datetime 0.7.5+spec-1.1.0";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "toml_writer";
packageId = "toml_writer";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
];
features = {
"debug" = [ "std" "toml_parser?/debug" "dep:anstream" "dep:anstyle" ];
"default" = [ "std" "serde" "parse" "display" ];
"display" = [ "dep:toml_writer" ];
"fast_hash" = [ "preserve_order" "dep:foldhash" ];
"parse" = [ "dep:toml_parser" "dep:winnow" ];
"preserve_order" = [ "dep:indexmap" "std" ];
"serde" = [ "dep:serde_core" "toml_datetime/serde" "serde_spanned/serde" ];
"std" = [ "indexmap?/std" "serde_core?/std" "toml_parser?/std" "toml_writer?/std" "toml_datetime/std" "serde_spanned/std" ];
};
resolvedDefaultFeatures = [ "display" "serde" ];
};
"toml_datetime 0.6.11" = rec {
crateName = "toml_datetime";
version = "0.6.11";
edition = "2021";
sha256 = "077ix2hb1dcya49hmi1avalwbixmrs75zgzb3b2i7g2gizwdmk92";
dependencies = [
{
name = "serde";
packageId = "serde";
optional = true;
}
];
features = {
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "serde" ];
};
"toml_datetime 0.7.5+spec-1.1.0" = rec {
crateName = "toml_datetime";
version = "0.7.5+spec-1.1.0";
edition = "2021";
sha256 = "0iqkgvgsxmszpai53dbip7sf2igic39s4dby29dbqf1h9bnwzqcj";
dependencies = [
{
name = "serde_core";
packageId = "serde_core";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde_core?/alloc" ];
"default" = [ "std" ];
"serde" = [ "dep:serde_core" ];
"std" = [ "alloc" "serde_core?/std" ];
};
resolvedDefaultFeatures = [ "alloc" "serde" ];
};
"toml_edit" = rec {
crateName = "toml_edit";
version = "0.22.27";
edition = "2021";
sha256 = "16l15xm40404asih8vyjvnka9g0xs9i4hfb6ry3ph9g419k8rzj1";
dependencies = [
{
name = "indexmap";
packageId = "indexmap";
features = [ "std" ];
}
{
name = "serde";
packageId = "serde";
optional = true;
}
{
name = "serde_spanned";
packageId = "serde_spanned 0.6.9";
optional = true;
features = [ "serde" ];
}
{
name = "toml_datetime";
packageId = "toml_datetime 0.6.11";
}
{
name = "toml_write";
packageId = "toml_write";
optional = true;
}
{
name = "winnow";
packageId = "winnow";
optional = true;
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
];
features = {
"default" = [ "parse" "display" ];
"display" = [ "dep:toml_write" ];
"parse" = [ "dep:winnow" ];
"perf" = [ "dep:kstring" ];
"serde" = [ "dep:serde" "toml_datetime/serde" "dep:serde_spanned" ];
"unstable-debug" = [ "winnow?/debug" ];
};
resolvedDefaultFeatures = [ "display" "parse" "serde" ];
};
"toml_write" = rec {
crateName = "toml_write";
version = "0.1.2";
edition = "2021";
sha256 = "008qlhqlqvljp1gpp9rn5cqs74gwvdgbvs92wnpq8y3jlz4zi6ax";
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"toml_writer" = rec {
crateName = "toml_writer";
version = "1.0.6+spec-1.1.0";
edition = "2021";
sha256 = "01r6x42d1p8p5kzfsi1fm4dakm3w53vi69f2ivyqpvi1xm5g25mb";
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"tower-service" = rec {
crateName = "tower-service";
version = "0.3.3";
edition = "2018";
sha256 = "1hzfkvkci33ra94xjx64vv3pp0sq346w06fpkcdwjcid7zhvdycd";
libName = "tower_service";
authors = [
"Tower Maintainers <team@tower-rs.com>"
];
};
"tracing" = rec {
crateName = "tracing";
version = "0.1.44";
edition = "2018";
sha256 = "006ilqkg1lmfdh3xhg3z762izfwmxcvz0w7m4qx2qajbz9i1drv3";
authors = [
"Eliza Weisman <eliza@buoyant.io>"
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "tracing-core";
packageId = "tracing-core";
usesDefaultFeatures = false;
}
];
features = {
"attributes" = [ "tracing-attributes" ];
"default" = [ "std" "attributes" ];
"log" = [ "dep:log" ];
"log-always" = [ "log" ];
"std" = [ "tracing-core/std" ];
"tracing-attributes" = [ "dep:tracing-attributes" ];
"valuable" = [ "tracing-core/valuable" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"tracing-core" = rec {
crateName = "tracing-core";
version = "0.1.36";
edition = "2018";
sha256 = "16mpbz6p8vd6j7sf925k9k8wzvm9vdfsjbynbmaxxyq6v7wwm5yv";
libName = "tracing_core";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "once_cell";
packageId = "once_cell";
optional = true;
}
];
features = {
"default" = [ "std" "valuable?/std" ];
"once_cell" = [ "dep:once_cell" ];
"std" = [ "once_cell" ];
"valuable" = [ "dep:valuable" ];
};
resolvedDefaultFeatures = [ "once_cell" "std" ];
};
"try-lock" = rec {
crateName = "try-lock";
version = "0.2.5";
edition = "2015";
sha256 = "0jqijrrvm1pyq34zn1jmy2vihd4jcrjlvsh4alkjahhssjnsn8g4";
libName = "try_lock";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
};
"twox-hash" = rec {
crateName = "twox-hash";
version = "1.6.3";
edition = "2018";
crateBin = [];
sha256 = "0xgn72j36a270l5ls1jk88n7bmq2dhlfkbhdh5554hbagjsydzlp";
libName = "twox_hash";
authors = [
"Jake Goulding <jake.goulding@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand";
optional = true;
}
{
name = "static_assertions";
packageId = "static_assertions";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"digest" = [ "dep:digest" ];
"digest_0_10" = [ "dep:digest_0_10" ];
"digest_0_9" = [ "dep:digest_0_9" ];
"rand" = [ "dep:rand" ];
"serde" = [ "dep:serde" ];
"serialize" = [ "serde" ];
"std" = [ "rand" ];
};
resolvedDefaultFeatures = [ "default" "rand" "std" ];
};
"typenum" = rec {
crateName = "typenum";
version = "1.19.0";
edition = "2018";
sha256 = "1fw2mpbn2vmqan56j1b3fbpcdg80mz26fm53fs16bq5xcq84hban";
authors = [
"Paho Lurie-Gregg <paho@paholg.com>"
"Andre Bogus <bogusandre@gmail.com>"
];
features = {
"scale-info" = [ "dep:scale-info" ];
"scale_info" = [ "scale-info/derive" ];
};
};
"unicode-ident" = rec {
crateName = "unicode-ident";
version = "1.0.22";
edition = "2018";
sha256 = "1x8xrz17vqi6qmkkcqr8cyf0an76ig7390j9cnqnk47zyv2gf4lk";
libName = "unicode_ident";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
};
"unicode-segmentation" = rec {
crateName = "unicode-segmentation";
version = "1.12.0";
edition = "2018";
sha256 = "14qla2jfx74yyb9ds3d2mpwpa4l4lzb9z57c6d2ba511458z5k7n";
libName = "unicode_segmentation";
authors = [
"kwantam <kwantam@gmail.com>"
"Manish Goregaokar <manishsmail@gmail.com>"
];
features = {
};
};
"unicode-width" = rec {
crateName = "unicode-width";
version = "0.2.2";
edition = "2021";
sha256 = "0m7jjzlcccw716dy9423xxh0clys8pfpllc5smvfxrzdf66h9b5l";
libName = "unicode_width";
authors = [
"kwantam <kwantam@gmail.com>"
"Manish Goregaokar <manishsmail@gmail.com>"
];
features = {
"core" = [ "dep:core" ];
"default" = [ "cjk" ];
"rustc-dep-of-std" = [ "std" "core" ];
"std" = [ "dep:std" ];
};
resolvedDefaultFeatures = [ "cjk" "default" ];
};
"url" = rec {
crateName = "url";
version = "2.5.7";
edition = "2018";
sha256 = "0nzghdv0kcksyvri0npxbjzyx2ihprks5k590y77bld355m17g08";
authors = [
"The rust-url developers"
];
dependencies = [
{
name = "form_urlencoded";
packageId = "form_urlencoded";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "idna";
packageId = "idna";
usesDefaultFeatures = false;
features = [ "alloc" "compiled_data" ];
}
{
name = "percent-encoding";
packageId = "percent-encoding";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
features = [ "derive" ];
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"std" = [ "idna/std" "percent-encoding/std" "form_urlencoded/std" "serde/std" ];
};
resolvedDefaultFeatures = [ "default" "serde" "std" ];
};
"utf8_iter" = rec {
crateName = "utf8_iter";
version = "1.0.4";
edition = "2021";
sha256 = "1gmna9flnj8dbyd8ba17zigrp9c4c3zclngf5lnb5yvz1ri41hdn";
authors = [
"Henri Sivonen <hsivonen@hsivonen.fi>"
];
};
"utf8parse" = rec {
crateName = "utf8parse";
version = "0.2.2";
edition = "2018";
sha256 = "088807qwjq46azicqwbhlmzwrbkz7l4hpw43sdkdyyk524vdxaq6";
authors = [
"Joe Wilm <joe@jwilm.com>"
"Christian Duerr <contact@christianduerr.com>"
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"uuid" = rec {
crateName = "uuid";
version = "1.19.0";
edition = "2021";
sha256 = "0jjbclx3f36fjl6jjh8f022q0m76v3cfh61y6z6jgl2b3f359q72";
authors = [
"Ashley Mannix<ashleymannix@live.com.au>"
"Dylan DPC<dylan.dpc@gmail.com>"
"Hunar Roop Kahlon<hunar.roop@gmail.com>"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom 0.3.4";
optional = true;
target = { target, features }: (!(("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null))));
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"atomic" = [ "dep:atomic" ];
"borsh" = [ "dep:borsh" "dep:borsh-derive" ];
"bytemuck" = [ "dep:bytemuck" ];
"default" = [ "std" ];
"fast-rng" = [ "rng" "dep:rand" ];
"js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
"macro-diagnostics" = [ "dep:uuid-macro-internal" ];
"md5" = [ "dep:md-5" ];
"rng" = [ "dep:getrandom" ];
"rng-getrandom" = [ "rng" "dep:getrandom" "uuid-rng-internal-lib" "uuid-rng-internal-lib/getrandom" ];
"rng-rand" = [ "rng" "dep:rand" "uuid-rng-internal-lib" "uuid-rng-internal-lib/rand" ];
"serde" = [ "dep:serde_core" ];
"sha1" = [ "dep:sha1_smol" ];
"slog" = [ "dep:slog" ];
"std" = [ "wasm-bindgen?/std" "js-sys?/std" ];
"uuid-rng-internal-lib" = [ "dep:uuid-rng-internal-lib" ];
"v1" = [ "atomic" ];
"v3" = [ "md5" ];
"v4" = [ "rng" ];
"v5" = [ "sha1" ];
"v6" = [ "atomic" ];
"v7" = [ "rng" ];
"zerocopy" = [ "dep:zerocopy" ];
};
resolvedDefaultFeatures = [ "rng" "v4" ];
};
"validator" = rec {
crateName = "validator";
version = "0.20.0";
edition = "2021";
sha256 = "1ykwgqwlb2p4ss2rpd0vca90x4bs8kjfk8q8rrqf7v08l3hj5ys3";
authors = [
"Vincent Prouillet <hello@vincentprouillet.com"
];
dependencies = [
{
name = "idna";
packageId = "idna";
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "regex";
packageId = "regex";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "url";
packageId = "url";
}
];
features = {
"card" = [ "card-validate" ];
"card-validate" = [ "dep:card-validate" ];
"derive" = [ "validator_derive" ];
"derive_nightly_features" = [ "derive" "validator_derive/nightly_features" ];
"indexmap" = [ "dep:indexmap" ];
"unic" = [ "unic-ucd-common" ];
"unic-ucd-common" = [ "dep:unic-ucd-common" ];
"validator_derive" = [ "dep:validator_derive" ];
};
};
"vcpkg" = rec {
crateName = "vcpkg";
version = "0.2.15";
edition = "2015";
sha256 = "09i4nf5y8lig6xgj3f7fyrvzd3nlaw4znrihw8psidvv5yk4xkdc";
authors = [
"Jim McGrath <jimmc2@gmail.com>"
];
};
"version_check" = rec {
crateName = "version_check";
version = "0.9.5";
edition = "2015";
sha256 = "0nhhi4i5x89gm911azqbn7avs9mdacw2i3vcz3cnmz3mv4rqz4hb";
authors = [
"Sergio Benitez <sb@sergio.bz>"
];
};
"walkdir" = rec {
crateName = "walkdir";
version = "2.5.0";
edition = "2018";
sha256 = "0jsy7a710qv8gld5957ybrnc07gavppp963gs32xk4ag8130jy99";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "same-file";
packageId = "same-file";
}
{
name = "winapi-util";
packageId = "winapi-util";
target = { target, features }: (target."windows" or false);
}
];
};
"want" = rec {
crateName = "want";
version = "0.3.1";
edition = "2018";
sha256 = "03hbfrnvqqdchb5kgxyavb9jabwza0dmh2vw5kg0dq8rxl57d9xz";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "try-lock";
packageId = "try-lock";
}
];
};
"wasi 0.11.1+wasi-snapshot-preview1" = rec {
crateName = "wasi";
version = "0.11.1+wasi-snapshot-preview1";
edition = "2018";
sha256 = "0jx49r7nbkbhyfrfyhz0bm4817yrnxgd3jiwwwfv0zl439jyrwyc";
authors = [
"The Cranelift Project Developers"
];
features = {
"core" = [ "dep:core" ];
"default" = [ "std" ];
"rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" ];
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"wasi 0.9.0+wasi-snapshot-preview1" = rec {
crateName = "wasi";
version = "0.9.0+wasi-snapshot-preview1";
edition = "2018";
sha256 = "06g5v3vrdapfzvfq662cij7v8a1flwr2my45nnncdv2galrdzkfc";
authors = [
"The Cranelift Project Developers"
];
features = {
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"default" = [ "std" ];
"rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ];
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"wasip2" = rec {
crateName = "wasip2";
version = "1.0.1+wasi-0.2.4";
edition = "2021";
sha256 = "1rsqmpspwy0zja82xx7kbkbg9fv34a4a2if3sbd76dy64a244qh5";
dependencies = [
{
name = "wit-bindgen";
packageId = "wit-bindgen";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "dep:alloc" ];
"bitflags" = [ "wit-bindgen/bitflags" ];
"core" = [ "dep:core" ];
"default" = [ "std" "bitflags" ];
"rustc-dep-of-std" = [ "core" "alloc" "wit-bindgen/rustc-dep-of-std" ];
};
};
"wasite" = rec {
crateName = "wasite";
version = "0.1.0";
edition = "2018";
sha256 = "0nw5h9nmcl4fyf4j5d4mfdjfgvwi1cakpi349wc4zrr59wxxinmq";
};
"wasm-bindgen" = rec {
crateName = "wasm-bindgen";
version = "0.2.106";
edition = "2021";
sha256 = "1zc0pcyv0w1dhp8r7ybmmfjsf4g18q784h0k7mv2sjm67x1ryx8d";
libName = "wasm_bindgen";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "once_cell";
packageId = "once_cell";
usesDefaultFeatures = false;
}
{
name = "wasm-bindgen-macro";
packageId = "wasm-bindgen-macro";
}
{
name = "wasm-bindgen-shared";
packageId = "wasm-bindgen-shared";
}
];
buildDependencies = [
{
name = "rustversion";
packageId = "rustversion";
rename = "rustversion-compat";
}
];
devDependencies = [
{
name = "once_cell";
packageId = "once_cell";
}
];
features = {
"default" = [ "std" ];
"enable-interning" = [ "std" ];
"serde" = [ "dep:serde" ];
"serde-serialize" = [ "serde" "serde_json" "std" ];
"serde_json" = [ "dep:serde_json" ];
"strict-macro" = [ "wasm-bindgen-macro/strict-macro" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"wasm-bindgen-futures" = rec {
crateName = "wasm-bindgen-futures";
version = "0.4.56";
edition = "2021";
sha256 = "0z6f0zkylpgbfb7dkh7a85dxdwm57q7c2np2bngfxzh4sqi9cvc3";
libName = "wasm_bindgen_futures";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "js-sys";
packageId = "js-sys";
usesDefaultFeatures = false;
}
{
name = "once_cell";
packageId = "once_cell";
usesDefaultFeatures = false;
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
usesDefaultFeatures = false;
}
{
name = "web-sys";
packageId = "web-sys";
usesDefaultFeatures = false;
target = { target, features }: (builtins.elem "atomics" targetFeatures);
features = [ "MessageEvent" "Worker" ];
}
];
features = {
"default" = [ "std" ];
"futures-core" = [ "dep:futures-core" ];
"futures-core-03-stream" = [ "futures-core" ];
"std" = [ "wasm-bindgen/std" "js-sys/std" "web-sys/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"wasm-bindgen-macro" = rec {
crateName = "wasm-bindgen-macro";
version = "0.2.106";
edition = "2021";
sha256 = "1czfwzhqrkzyyhd3g58mdwb2jjk4q2pl9m1fajyfvfpq70k0vjs8";
procMacro = true;
libName = "wasm_bindgen_macro";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "quote";
packageId = "quote";
}
{
name = "wasm-bindgen-macro-support";
packageId = "wasm-bindgen-macro-support";
}
];
features = {
"strict-macro" = [ "wasm-bindgen-macro-support/strict-macro" ];
};
};
"wasm-bindgen-macro-support" = rec {
crateName = "wasm-bindgen-macro-support";
version = "0.2.106";
edition = "2021";
sha256 = "0h6ddq6cc6jf9phsdh2a3x8lpjhmkya86ihfz3fdk4jzrpamkyyf";
libName = "wasm_bindgen_macro_support";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "bumpalo";
packageId = "bumpalo";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
features = [ "visit" "visit-mut" "full" ];
}
{
name = "wasm-bindgen-shared";
packageId = "wasm-bindgen-shared";
}
];
features = {
"extra-traits" = [ "syn/extra-traits" ];
};
};
"wasm-bindgen-shared" = rec {
crateName = "wasm-bindgen-shared";
version = "0.2.106";
edition = "2021";
links = "wasm_bindgen";
sha256 = "1d0dh3jn77qz67n5zh0s3rvzlbjv926p0blq5bvng2v4gq2kiifb";
libName = "wasm_bindgen_shared";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "unicode-ident";
packageId = "unicode-ident";
}
];
};
"wasm-streams" = rec {
crateName = "wasm-streams";
version = "0.4.2";
edition = "2021";
sha256 = "0rddn007hp6k2cm91mm9y33n79b0jxv0c3znzszcvv67hn6ks18m";
libName = "wasm_streams";type = [ "cdylib" "rlib" ];
authors = [
"Mattias Buelens <mattias@buelens.com>"
];
dependencies = [
{
name = "futures-util";
packageId = "futures-util";
features = [ "io" "sink" ];
}
{
name = "js-sys";
packageId = "js-sys";
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
}
{
name = "wasm-bindgen-futures";
packageId = "wasm-bindgen-futures";
}
{
name = "web-sys";
packageId = "web-sys";
features = [ "AbortSignal" "QueuingStrategy" "ReadableStream" "ReadableStreamType" "ReadableWritablePair" "ReadableStreamByobReader" "ReadableStreamReaderMode" "ReadableStreamReadResult" "ReadableStreamByobRequest" "ReadableStreamDefaultReader" "ReadableByteStreamController" "ReadableStreamGetReaderOptions" "ReadableStreamDefaultController" "StreamPipeOptions" "TransformStream" "TransformStreamDefaultController" "Transformer" "UnderlyingSink" "UnderlyingSource" "WritableStream" "WritableStreamDefaultController" "WritableStreamDefaultWriter" ];
}
];
devDependencies = [
{
name = "web-sys";
packageId = "web-sys";
features = [ "console" "AbortSignal" "ErrorEvent" "PromiseRejectionEvent" "Response" "ReadableStream" "Window" ];
}
];
};
"web-sys" = rec {
crateName = "web-sys";
version = "0.3.83";
edition = "2021";
sha256 = "1b1pw450ig62xr0cy1wfjlbahvmi725jl64d150j0hacfy6q4clv";
libName = "web_sys";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "js-sys";
packageId = "js-sys";
usesDefaultFeatures = false;
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
usesDefaultFeatures = false;
}
];
features = {
"AbortSignal" = [ "EventTarget" ];
"AnalyserNode" = [ "AudioNode" "EventTarget" ];
"Animation" = [ "EventTarget" ];
"AnimationEvent" = [ "Event" ];
"AnimationPlaybackEvent" = [ "Event" ];
"Attr" = [ "EventTarget" "Node" ];
"AudioBufferSourceNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
"AudioContext" = [ "BaseAudioContext" "EventTarget" ];
"AudioDestinationNode" = [ "AudioNode" "EventTarget" ];
"AudioNode" = [ "EventTarget" ];
"AudioProcessingEvent" = [ "Event" ];
"AudioScheduledSourceNode" = [ "AudioNode" "EventTarget" ];
"AudioStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
"AudioTrackList" = [ "EventTarget" ];
"AudioWorklet" = [ "Worklet" ];
"AudioWorkletGlobalScope" = [ "WorkletGlobalScope" ];
"AudioWorkletNode" = [ "AudioNode" "EventTarget" ];
"AuthenticatorAssertionResponse" = [ "AuthenticatorResponse" ];
"AuthenticatorAttestationResponse" = [ "AuthenticatorResponse" ];
"BaseAudioContext" = [ "EventTarget" ];
"BatteryManager" = [ "EventTarget" ];
"BeforeUnloadEvent" = [ "Event" ];
"BiquadFilterNode" = [ "AudioNode" "EventTarget" ];
"BlobEvent" = [ "Event" ];
"Bluetooth" = [ "EventTarget" ];
"BluetoothAdvertisingEvent" = [ "Event" ];
"BluetoothDevice" = [ "EventTarget" ];
"BluetoothPermissionResult" = [ "EventTarget" "PermissionStatus" ];
"BluetoothRemoteGattCharacteristic" = [ "EventTarget" ];
"BluetoothRemoteGattService" = [ "EventTarget" ];
"BroadcastChannel" = [ "EventTarget" ];
"CanvasCaptureMediaStream" = [ "EventTarget" "MediaStream" ];
"CanvasCaptureMediaStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
"CdataSection" = [ "CharacterData" "EventTarget" "Node" "Text" ];
"ChannelMergerNode" = [ "AudioNode" "EventTarget" ];
"ChannelSplitterNode" = [ "AudioNode" "EventTarget" ];
"CharacterData" = [ "EventTarget" "Node" ];
"ChromeWorker" = [ "EventTarget" "Worker" ];
"Clipboard" = [ "EventTarget" ];
"ClipboardEvent" = [ "Event" ];
"CloseEvent" = [ "Event" ];
"Comment" = [ "CharacterData" "EventTarget" "Node" ];
"CompositionEvent" = [ "Event" "UiEvent" ];
"ConstantSourceNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
"ConvolverNode" = [ "AudioNode" "EventTarget" ];
"CookieChangeEvent" = [ "Event" ];
"CookieStore" = [ "EventTarget" ];
"CssAnimation" = [ "Animation" "EventTarget" ];
"CssConditionRule" = [ "CssGroupingRule" "CssRule" ];
"CssCounterStyleRule" = [ "CssRule" ];
"CssFontFaceRule" = [ "CssRule" ];
"CssFontFeatureValuesRule" = [ "CssRule" ];
"CssGroupingRule" = [ "CssRule" ];
"CssImportRule" = [ "CssRule" ];
"CssKeyframeRule" = [ "CssRule" ];
"CssKeyframesRule" = [ "CssRule" ];
"CssMediaRule" = [ "CssConditionRule" "CssGroupingRule" "CssRule" ];
"CssNamespaceRule" = [ "CssRule" ];
"CssPageRule" = [ "CssRule" ];
"CssStyleRule" = [ "CssRule" ];
"CssStyleSheet" = [ "StyleSheet" ];
"CssSupportsRule" = [ "CssConditionRule" "CssGroupingRule" "CssRule" ];
"CssTransition" = [ "Animation" "EventTarget" ];
"CustomEvent" = [ "Event" ];
"DedicatedWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
"DelayNode" = [ "AudioNode" "EventTarget" ];
"DeviceLightEvent" = [ "Event" ];
"DeviceMotionEvent" = [ "Event" ];
"DeviceOrientationEvent" = [ "Event" ];
"DeviceProximityEvent" = [ "Event" ];
"Document" = [ "EventTarget" "Node" ];
"DocumentFragment" = [ "EventTarget" "Node" ];
"DocumentTimeline" = [ "AnimationTimeline" ];
"DocumentType" = [ "EventTarget" "Node" ];
"DomMatrix" = [ "DomMatrixReadOnly" ];
"DomPoint" = [ "DomPointReadOnly" ];
"DomRect" = [ "DomRectReadOnly" ];
"DomRequest" = [ "EventTarget" ];
"DragEvent" = [ "Event" "MouseEvent" "UiEvent" ];
"DynamicsCompressorNode" = [ "AudioNode" "EventTarget" ];
"Element" = [ "EventTarget" "Node" ];
"ErrorEvent" = [ "Event" ];
"EventSource" = [ "EventTarget" ];
"ExtendableCookieChangeEvent" = [ "Event" "ExtendableEvent" ];
"ExtendableEvent" = [ "Event" ];
"ExtendableMessageEvent" = [ "Event" "ExtendableEvent" ];
"FetchEvent" = [ "Event" "ExtendableEvent" ];
"FetchObserver" = [ "EventTarget" ];
"File" = [ "Blob" ];
"FileReader" = [ "EventTarget" ];
"FileSystemDirectoryEntry" = [ "FileSystemEntry" ];
"FileSystemDirectoryHandle" = [ "FileSystemHandle" ];
"FileSystemFileEntry" = [ "FileSystemEntry" ];
"FileSystemFileHandle" = [ "FileSystemHandle" ];
"FileSystemWritableFileStream" = [ "WritableStream" ];
"FocusEvent" = [ "Event" "UiEvent" ];
"FontFaceSet" = [ "EventTarget" ];
"FontFaceSetLoadEvent" = [ "Event" ];
"GainNode" = [ "AudioNode" "EventTarget" ];
"GamepadEvent" = [ "Event" ];
"GestureEvent" = [ "Event" "UiEvent" ];
"GpuDevice" = [ "EventTarget" ];
"GpuInternalError" = [ "GpuError" ];
"GpuOutOfMemoryError" = [ "GpuError" ];
"GpuPipelineError" = [ "DomException" ];
"GpuUncapturedErrorEvent" = [ "Event" ];
"GpuValidationError" = [ "GpuError" ];
"HashChangeEvent" = [ "Event" ];
"Hid" = [ "EventTarget" ];
"HidConnectionEvent" = [ "Event" ];
"HidDevice" = [ "EventTarget" ];
"HidInputReportEvent" = [ "Event" ];
"HtmlAnchorElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlAreaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlAudioElement" = [ "Element" "EventTarget" "HtmlElement" "HtmlMediaElement" "Node" ];
"HtmlBaseElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlBodyElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlBrElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlButtonElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlCanvasElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlDListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlDataElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlDataListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlDetailsElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlDialogElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlDirectoryElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlDivElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlDocument" = [ "Document" "EventTarget" "Node" ];
"HtmlElement" = [ "Element" "EventTarget" "Node" ];
"HtmlEmbedElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlFieldSetElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlFontElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlFormControlsCollection" = [ "HtmlCollection" ];
"HtmlFormElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlFrameElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlFrameSetElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlHeadElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlHeadingElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlHrElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlHtmlElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlIFrameElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlImageElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlInputElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlLabelElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlLegendElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlLiElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlLinkElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlMapElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlMediaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlMenuElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlMenuItemElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlMetaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlMeterElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlModElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlOListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlObjectElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlOptGroupElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlOptionElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlOptionsCollection" = [ "HtmlCollection" ];
"HtmlOutputElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlParagraphElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlParamElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlPictureElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlPreElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlProgressElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlQuoteElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlScriptElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlSelectElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlSlotElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlSourceElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlSpanElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlStyleElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlTableCaptionElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlTableCellElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlTableColElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlTableElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlTableRowElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlTableSectionElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlTemplateElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlTextAreaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlTimeElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlTitleElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlTrackElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlUListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlUnknownElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
"HtmlVideoElement" = [ "Element" "EventTarget" "HtmlElement" "HtmlMediaElement" "Node" ];
"IdbCursorWithValue" = [ "IdbCursor" ];
"IdbDatabase" = [ "EventTarget" ];
"IdbFileHandle" = [ "EventTarget" ];
"IdbFileRequest" = [ "DomRequest" "EventTarget" ];
"IdbLocaleAwareKeyRange" = [ "IdbKeyRange" ];
"IdbMutableFile" = [ "EventTarget" ];
"IdbOpenDbRequest" = [ "EventTarget" "IdbRequest" ];
"IdbRequest" = [ "EventTarget" ];
"IdbTransaction" = [ "EventTarget" ];
"IdbVersionChangeEvent" = [ "Event" ];
"IirFilterNode" = [ "AudioNode" "EventTarget" ];
"ImageCaptureErrorEvent" = [ "Event" ];
"ImageTrack" = [ "EventTarget" ];
"InputDeviceInfo" = [ "MediaDeviceInfo" ];
"InputEvent" = [ "Event" "UiEvent" ];
"KeyFrameRequestEvent" = [ "Event" ];
"KeyboardEvent" = [ "Event" "UiEvent" ];
"KeyframeEffect" = [ "AnimationEffect" ];
"LocalMediaStream" = [ "EventTarget" "MediaStream" ];
"MathMlElement" = [ "Element" "EventTarget" "Node" ];
"MediaDevices" = [ "EventTarget" ];
"MediaElementAudioSourceNode" = [ "AudioNode" "EventTarget" ];
"MediaEncryptedEvent" = [ "Event" ];
"MediaKeyError" = [ "Event" ];
"MediaKeyMessageEvent" = [ "Event" ];
"MediaKeySession" = [ "EventTarget" ];
"MediaQueryList" = [ "EventTarget" ];
"MediaQueryListEvent" = [ "Event" ];
"MediaRecorder" = [ "EventTarget" ];
"MediaRecorderErrorEvent" = [ "Event" ];
"MediaSource" = [ "EventTarget" ];
"MediaStream" = [ "EventTarget" ];
"MediaStreamAudioDestinationNode" = [ "AudioNode" "EventTarget" ];
"MediaStreamAudioSourceNode" = [ "AudioNode" "EventTarget" ];
"MediaStreamEvent" = [ "Event" ];
"MediaStreamTrack" = [ "EventTarget" ];
"MediaStreamTrackEvent" = [ "Event" ];
"MediaStreamTrackGenerator" = [ "EventTarget" "MediaStreamTrack" ];
"MessageEvent" = [ "Event" ];
"MessagePort" = [ "EventTarget" ];
"MidiAccess" = [ "EventTarget" ];
"MidiConnectionEvent" = [ "Event" ];
"MidiInput" = [ "EventTarget" "MidiPort" ];
"MidiMessageEvent" = [ "Event" ];
"MidiOutput" = [ "EventTarget" "MidiPort" ];
"MidiPort" = [ "EventTarget" ];
"MouseEvent" = [ "Event" "UiEvent" ];
"MouseScrollEvent" = [ "Event" "MouseEvent" "UiEvent" ];
"MutationEvent" = [ "Event" ];
"NetworkInformation" = [ "EventTarget" ];
"Node" = [ "EventTarget" ];
"Notification" = [ "EventTarget" ];
"NotificationEvent" = [ "Event" "ExtendableEvent" ];
"OfflineAudioCompletionEvent" = [ "Event" ];
"OfflineAudioContext" = [ "BaseAudioContext" "EventTarget" ];
"OfflineResourceList" = [ "EventTarget" ];
"OffscreenCanvas" = [ "EventTarget" ];
"OscillatorNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
"PageTransitionEvent" = [ "Event" ];
"PaintWorkletGlobalScope" = [ "WorkletGlobalScope" ];
"PannerNode" = [ "AudioNode" "EventTarget" ];
"PaymentMethodChangeEvent" = [ "Event" "PaymentRequestUpdateEvent" ];
"PaymentRequestUpdateEvent" = [ "Event" ];
"Performance" = [ "EventTarget" ];
"PerformanceMark" = [ "PerformanceEntry" ];
"PerformanceMeasure" = [ "PerformanceEntry" ];
"PerformanceNavigationTiming" = [ "PerformanceEntry" "PerformanceResourceTiming" ];
"PerformanceResourceTiming" = [ "PerformanceEntry" ];
"PermissionStatus" = [ "EventTarget" ];
"PictureInPictureEvent" = [ "Event" ];
"PictureInPictureWindow" = [ "EventTarget" ];
"PointerEvent" = [ "Event" "MouseEvent" "UiEvent" ];
"PopStateEvent" = [ "Event" ];
"PopupBlockedEvent" = [ "Event" ];
"PresentationAvailability" = [ "EventTarget" ];
"PresentationConnection" = [ "EventTarget" ];
"PresentationConnectionAvailableEvent" = [ "Event" ];
"PresentationConnectionCloseEvent" = [ "Event" ];
"PresentationConnectionList" = [ "EventTarget" ];
"PresentationRequest" = [ "EventTarget" ];
"ProcessingInstruction" = [ "CharacterData" "EventTarget" "Node" ];
"ProgressEvent" = [ "Event" ];
"PromiseRejectionEvent" = [ "Event" ];
"PublicKeyCredential" = [ "Credential" ];
"PushEvent" = [ "Event" "ExtendableEvent" ];
"RadioNodeList" = [ "NodeList" ];
"RtcDataChannel" = [ "EventTarget" ];
"RtcDataChannelEvent" = [ "Event" ];
"RtcPeerConnection" = [ "EventTarget" ];
"RtcPeerConnectionIceErrorEvent" = [ "Event" ];
"RtcPeerConnectionIceEvent" = [ "Event" ];
"RtcRtpScriptTransformer" = [ "EventTarget" ];
"RtcTrackEvent" = [ "Event" ];
"RtcTransformEvent" = [ "Event" ];
"RtcdtmfSender" = [ "EventTarget" ];
"RtcdtmfToneChangeEvent" = [ "Event" ];
"SFrameTransform" = [ "EventTarget" ];
"SFrameTransformErrorEvent" = [ "Event" ];
"Screen" = [ "EventTarget" ];
"ScreenOrientation" = [ "EventTarget" ];
"ScriptProcessorNode" = [ "AudioNode" "EventTarget" ];
"ScrollAreaEvent" = [ "Event" "UiEvent" ];
"SecurityPolicyViolationEvent" = [ "Event" ];
"Serial" = [ "EventTarget" ];
"SerialPort" = [ "EventTarget" ];
"ServiceWorker" = [ "EventTarget" ];
"ServiceWorkerContainer" = [ "EventTarget" ];
"ServiceWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
"ServiceWorkerRegistration" = [ "EventTarget" ];
"ShadowRoot" = [ "DocumentFragment" "EventTarget" "Node" ];
"SharedWorker" = [ "EventTarget" ];
"SharedWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
"SourceBuffer" = [ "EventTarget" ];
"SourceBufferList" = [ "EventTarget" ];
"SpeechRecognition" = [ "EventTarget" ];
"SpeechRecognitionError" = [ "Event" ];
"SpeechRecognitionEvent" = [ "Event" ];
"SpeechSynthesis" = [ "EventTarget" ];
"SpeechSynthesisErrorEvent" = [ "Event" "SpeechSynthesisEvent" ];
"SpeechSynthesisEvent" = [ "Event" ];
"SpeechSynthesisUtterance" = [ "EventTarget" ];
"StereoPannerNode" = [ "AudioNode" "EventTarget" ];
"StorageEvent" = [ "Event" ];
"SubmitEvent" = [ "Event" ];
"SvgAnimateElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
"SvgAnimateMotionElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
"SvgAnimateTransformElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
"SvgAnimationElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgCircleElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgClipPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgComponentTransferFunctionElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgDefsElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgDescElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgElement" = [ "Element" "EventTarget" "Node" ];
"SvgEllipseElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgFilterElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgForeignObjectElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgGeometryElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgGraphicsElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgImageElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgLineElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgLinearGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGradientElement" ];
"SvgMarkerElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgMaskElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgMetadataElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgPathSegArcAbs" = [ "SvgPathSeg" ];
"SvgPathSegArcRel" = [ "SvgPathSeg" ];
"SvgPathSegClosePath" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoCubicAbs" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoCubicRel" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoCubicSmoothAbs" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoCubicSmoothRel" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoQuadraticAbs" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoQuadraticRel" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoQuadraticSmoothAbs" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoQuadraticSmoothRel" = [ "SvgPathSeg" ];
"SvgPathSegLinetoAbs" = [ "SvgPathSeg" ];
"SvgPathSegLinetoHorizontalAbs" = [ "SvgPathSeg" ];
"SvgPathSegLinetoHorizontalRel" = [ "SvgPathSeg" ];
"SvgPathSegLinetoRel" = [ "SvgPathSeg" ];
"SvgPathSegLinetoVerticalAbs" = [ "SvgPathSeg" ];
"SvgPathSegLinetoVerticalRel" = [ "SvgPathSeg" ];
"SvgPathSegMovetoAbs" = [ "SvgPathSeg" ];
"SvgPathSegMovetoRel" = [ "SvgPathSeg" ];
"SvgPatternElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgPolygonElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgPolylineElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgRadialGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGradientElement" ];
"SvgRectElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgScriptElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgSetElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
"SvgStopElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgStyleElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgSwitchElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgSymbolElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgTextContentElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgTextElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" "SvgTextPositioningElement" ];
"SvgTextPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" ];
"SvgTextPositioningElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" ];
"SvgTitleElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgUseElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgViewElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgaElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgfeBlendElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeColorMatrixElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeComponentTransferElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeCompositeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeConvolveMatrixElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeDiffuseLightingElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeDisplacementMapElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeDistantLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeDropShadowElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeFloodElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeFuncAElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
"SvgfeFuncBElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
"SvgfeFuncGElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
"SvgfeFuncRElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
"SvgfeGaussianBlurElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeImageElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeMergeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeMergeNodeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeMorphologyElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeOffsetElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfePointLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeSpecularLightingElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeSpotLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeTileElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeTurbulenceElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvggElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgmPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgsvgElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgtSpanElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" "SvgTextPositioningElement" ];
"TaskController" = [ "AbortController" ];
"TaskPriorityChangeEvent" = [ "Event" ];
"TaskSignal" = [ "AbortSignal" "EventTarget" ];
"TcpServerSocket" = [ "EventTarget" ];
"TcpServerSocketEvent" = [ "Event" ];
"TcpSocket" = [ "EventTarget" ];
"TcpSocketErrorEvent" = [ "Event" ];
"TcpSocketEvent" = [ "Event" ];
"Text" = [ "CharacterData" "EventTarget" "Node" ];
"TextTrack" = [ "EventTarget" ];
"TextTrackCue" = [ "EventTarget" ];
"TextTrackList" = [ "EventTarget" ];
"TimeEvent" = [ "Event" ];
"ToggleEvent" = [ "Event" ];
"TouchEvent" = [ "Event" "UiEvent" ];
"TrackEvent" = [ "Event" ];
"TransitionEvent" = [ "Event" ];
"UiEvent" = [ "Event" ];
"Usb" = [ "EventTarget" ];
"UsbConnectionEvent" = [ "Event" ];
"UsbPermissionResult" = [ "EventTarget" "PermissionStatus" ];
"UserProximityEvent" = [ "Event" ];
"ValueEvent" = [ "Event" ];
"VideoStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
"VideoTrackList" = [ "EventTarget" ];
"VisualViewport" = [ "EventTarget" ];
"VrDisplay" = [ "EventTarget" ];
"VttCue" = [ "EventTarget" "TextTrackCue" ];
"WakeLockSentinel" = [ "EventTarget" ];
"WaveShaperNode" = [ "AudioNode" "EventTarget" ];
"WebGlContextEvent" = [ "Event" ];
"WebKitCssMatrix" = [ "DomMatrix" "DomMatrixReadOnly" ];
"WebSocket" = [ "EventTarget" ];
"WebTransportError" = [ "DomException" ];
"WebTransportReceiveStream" = [ "ReadableStream" ];
"WebTransportSendStream" = [ "WritableStream" ];
"WheelEvent" = [ "Event" "MouseEvent" "UiEvent" ];
"Window" = [ "EventTarget" ];
"WindowClient" = [ "Client" ];
"Worker" = [ "EventTarget" ];
"WorkerDebuggerGlobalScope" = [ "EventTarget" ];
"WorkerGlobalScope" = [ "EventTarget" ];
"XmlDocument" = [ "Document" "EventTarget" "Node" ];
"XmlHttpRequest" = [ "EventTarget" "XmlHttpRequestEventTarget" ];
"XmlHttpRequestEventTarget" = [ "EventTarget" ];
"XmlHttpRequestUpload" = [ "EventTarget" "XmlHttpRequestEventTarget" ];
"XrBoundedReferenceSpace" = [ "EventTarget" "XrReferenceSpace" "XrSpace" ];
"XrInputSourceEvent" = [ "Event" ];
"XrInputSourcesChangeEvent" = [ "Event" ];
"XrJointPose" = [ "XrPose" ];
"XrJointSpace" = [ "EventTarget" "XrSpace" ];
"XrLayer" = [ "EventTarget" ];
"XrPermissionStatus" = [ "EventTarget" "PermissionStatus" ];
"XrReferenceSpace" = [ "EventTarget" "XrSpace" ];
"XrReferenceSpaceEvent" = [ "Event" ];
"XrSession" = [ "EventTarget" ];
"XrSessionEvent" = [ "Event" ];
"XrSpace" = [ "EventTarget" ];
"XrSystem" = [ "EventTarget" ];
"XrViewerPose" = [ "XrPose" ];
"XrWebGlLayer" = [ "EventTarget" "XrLayer" ];
"default" = [ "std" ];
"std" = [ "wasm-bindgen/std" "js-sys/std" ];
};
resolvedDefaultFeatures = [ "AbortController" "AbortSignal" "Blob" "BlobPropertyBag" "Document" "Event" "EventTarget" "File" "FormData" "Headers" "Location" "MessageEvent" "Navigator" "Node" "QueuingStrategy" "ReadableByteStreamController" "ReadableStream" "ReadableStreamByobReader" "ReadableStreamByobRequest" "ReadableStreamDefaultController" "ReadableStreamDefaultReader" "ReadableStreamGetReaderOptions" "ReadableStreamReadResult" "ReadableStreamReaderMode" "ReadableStreamType" "ReadableWritablePair" "Request" "RequestCredentials" "RequestInit" "RequestMode" "Response" "ServiceWorkerGlobalScope" "StreamPipeOptions" "TransformStream" "TransformStreamDefaultController" "Transformer" "UnderlyingSink" "UnderlyingSource" "Window" "Worker" "WorkerGlobalScope" "WritableStream" "WritableStreamDefaultController" "WritableStreamDefaultWriter" "default" "std" ];
};
"web-time" = rec {
crateName = "web-time";
version = "1.1.0";
edition = "2021";
sha256 = "1fx05yqx83dhx628wb70fyy10yjfq1jpl20qfqhdkymi13rq0ras";
libName = "web_time";
dependencies = [
{
name = "js-sys";
packageId = "js-sys";
target = { target, features }: ((builtins.elem "wasm" target."family") && ("unknown" == target."os" or null));
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
usesDefaultFeatures = false;
target = { target, features }: ((builtins.elem "wasm" target."family") && ("unknown" == target."os" or null));
}
];
features = {
"serde" = [ "dep:serde" ];
};
};
"which" = rec {
crateName = "which";
version = "4.4.2";
edition = "2021";
sha256 = "1ixzmx3svsv5hbdvd8vdhd3qwvf6ns8jdpif1wmwsy10k90j9fl7";
authors = [
"Harry Fei <tiziyuanfang@gmail.com>"
];
dependencies = [
{
name = "either";
packageId = "either";
}
{
name = "home";
packageId = "home";
target = { target, features }: ((target."windows" or false) || (target."unix" or false) || ("redox" == target."os" or null));
}
{
name = "once_cell";
packageId = "once_cell";
target = { target, features }: (target."windows" or false);
}
{
name = "rustix";
packageId = "rustix 0.38.44";
usesDefaultFeatures = false;
features = [ "fs" "std" ];
}
];
features = {
"regex" = [ "dep:regex" ];
};
};
"whoami" = rec {
crateName = "whoami";
version = "1.6.1";
edition = "2018";
sha256 = "0zg9sz669vhqyxysn4lymnianj29jxs2vl6k2lqcl0kp0yslsjjx";
dependencies = [
{
name = "libredox";
packageId = "libredox";
target = { target, features }: (("redox" == target."os" or null) && (!("wasm32" == target."arch" or null)));
}
{
name = "wasite";
packageId = "wasite";
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null));
}
{
name = "web-sys";
packageId = "web-sys";
optional = true;
target = { target, features }: (("wasm32" == target."arch" or null) && (!("wasi" == target."os" or null)) && (!(target."daku" or false)));
features = [ "Navigator" "Document" "Window" "Location" ];
}
];
features = {
"default" = [ "web" ];
"web" = [ "web-sys" ];
"web-sys" = [ "dep:web-sys" ];
};
resolvedDefaultFeatures = [ "default" "web" "web-sys" ];
};
"winapi" = rec {
crateName = "winapi";
version = "0.3.9";
edition = "2015";
sha256 = "06gl025x418lchw1wxj64ycr7gha83m44cjr5sarhynd9xkrm0sw";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
dependencies = [
{
name = "winapi-i686-pc-windows-gnu";
packageId = "winapi-i686-pc-windows-gnu";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnu");
}
{
name = "winapi-x86_64-pc-windows-gnu";
packageId = "winapi-x86_64-pc-windows-gnu";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnu");
}
];
features = {
"debug" = [ "impl-debug" ];
};
resolvedDefaultFeatures = [ "basetsd" "cfg" "errhandlingapi" "evntrace" "fileapi" "handleapi" "in6addr" "inaddr" "knownfolders" "memoryapi" "minwinbase" "minwindef" "ntdef" "ntsecapi" "ntstatus" "objbase" "processthreadsapi" "shlobj" "std" "winbase" "windef" "winerror" "winioctl" "winnt" ];
};
"winapi-i686-pc-windows-gnu" = rec {
crateName = "winapi-i686-pc-windows-gnu";
version = "0.4.0";
edition = "2015";
sha256 = "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc";
libName = "winapi_i686_pc_windows_gnu";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
};
"winapi-util" = rec {
crateName = "winapi-util";
version = "0.1.11";
edition = "2021";
sha256 = "08hdl7mkll7pz8whg869h58c1r9y7in0w0pk8fm24qc77k0b39y2";
libName = "winapi_util";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Storage_FileSystem" "Win32_System_Console" "Win32_System_SystemInformation" ];
}
];
};
"winapi-x86_64-pc-windows-gnu" = rec {
crateName = "winapi-x86_64-pc-windows-gnu";
version = "0.4.0";
edition = "2015";
sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki";
libName = "winapi_x86_64_pc_windows_gnu";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
};
"windows 0.44.0" = rec {
crateName = "windows";
version = "0.44.0";
edition = "2018";
sha256 = "0ax1ip82dhszxz4hhsrdj3b0681xw6axahnfldxcgi506nmmsx4y";
authors = [
"Microsoft"
];
dependencies = [
{
name = "windows-targets";
packageId = "windows-targets 0.42.2";
target = { target, features }: (!(target."windows_raw_dylib" or false));
}
];
features = {
"AI_MachineLearning" = [ "AI" ];
"ApplicationModel_Activation" = [ "ApplicationModel" ];
"ApplicationModel_AppExtensions" = [ "ApplicationModel" ];
"ApplicationModel_AppService" = [ "ApplicationModel" ];
"ApplicationModel_Appointments" = [ "ApplicationModel" ];
"ApplicationModel_Appointments_AppointmentsProvider" = [ "ApplicationModel_Appointments" ];
"ApplicationModel_Appointments_DataProvider" = [ "ApplicationModel_Appointments" ];
"ApplicationModel_Background" = [ "ApplicationModel" ];
"ApplicationModel_Calls" = [ "ApplicationModel" ];
"ApplicationModel_Calls_Background" = [ "ApplicationModel_Calls" ];
"ApplicationModel_Calls_Provider" = [ "ApplicationModel_Calls" ];
"ApplicationModel_Chat" = [ "ApplicationModel" ];
"ApplicationModel_CommunicationBlocking" = [ "ApplicationModel" ];
"ApplicationModel_Contacts" = [ "ApplicationModel" ];
"ApplicationModel_Contacts_DataProvider" = [ "ApplicationModel_Contacts" ];
"ApplicationModel_Contacts_Provider" = [ "ApplicationModel_Contacts" ];
"ApplicationModel_ConversationalAgent" = [ "ApplicationModel" ];
"ApplicationModel_Core" = [ "ApplicationModel" ];
"ApplicationModel_DataTransfer" = [ "ApplicationModel" ];
"ApplicationModel_DataTransfer_DragDrop" = [ "ApplicationModel_DataTransfer" ];
"ApplicationModel_DataTransfer_DragDrop_Core" = [ "ApplicationModel_DataTransfer_DragDrop" ];
"ApplicationModel_DataTransfer_ShareTarget" = [ "ApplicationModel_DataTransfer" ];
"ApplicationModel_Email" = [ "ApplicationModel" ];
"ApplicationModel_Email_DataProvider" = [ "ApplicationModel_Email" ];
"ApplicationModel_ExtendedExecution" = [ "ApplicationModel" ];
"ApplicationModel_ExtendedExecution_Foreground" = [ "ApplicationModel_ExtendedExecution" ];
"ApplicationModel_Holographic" = [ "ApplicationModel" ];
"ApplicationModel_LockScreen" = [ "ApplicationModel" ];
"ApplicationModel_Payments" = [ "ApplicationModel" ];
"ApplicationModel_Payments_Provider" = [ "ApplicationModel_Payments" ];
"ApplicationModel_Preview" = [ "ApplicationModel" ];
"ApplicationModel_Preview_Holographic" = [ "ApplicationModel_Preview" ];
"ApplicationModel_Preview_InkWorkspace" = [ "ApplicationModel_Preview" ];
"ApplicationModel_Preview_Notes" = [ "ApplicationModel_Preview" ];
"ApplicationModel_Resources" = [ "ApplicationModel" ];
"ApplicationModel_Resources_Core" = [ "ApplicationModel_Resources" ];
"ApplicationModel_Resources_Management" = [ "ApplicationModel_Resources" ];
"ApplicationModel_Search" = [ "ApplicationModel" ];
"ApplicationModel_Search_Core" = [ "ApplicationModel_Search" ];
"ApplicationModel_Store" = [ "ApplicationModel" ];
"ApplicationModel_Store_LicenseManagement" = [ "ApplicationModel_Store" ];
"ApplicationModel_Store_Preview" = [ "ApplicationModel_Store" ];
"ApplicationModel_Store_Preview_InstallControl" = [ "ApplicationModel_Store_Preview" ];
"ApplicationModel_UserActivities" = [ "ApplicationModel" ];
"ApplicationModel_UserActivities_Core" = [ "ApplicationModel_UserActivities" ];
"ApplicationModel_UserDataAccounts" = [ "ApplicationModel" ];
"ApplicationModel_UserDataAccounts_Provider" = [ "ApplicationModel_UserDataAccounts" ];
"ApplicationModel_UserDataAccounts_SystemAccess" = [ "ApplicationModel_UserDataAccounts" ];
"ApplicationModel_UserDataTasks" = [ "ApplicationModel" ];
"ApplicationModel_UserDataTasks_DataProvider" = [ "ApplicationModel_UserDataTasks" ];
"ApplicationModel_VoiceCommands" = [ "ApplicationModel" ];
"ApplicationModel_Wallet" = [ "ApplicationModel" ];
"ApplicationModel_Wallet_System" = [ "ApplicationModel_Wallet" ];
"Data_Html" = [ "Data" ];
"Data_Json" = [ "Data" ];
"Data_Pdf" = [ "Data" ];
"Data_Text" = [ "Data" ];
"Data_Xml" = [ "Data" ];
"Data_Xml_Dom" = [ "Data_Xml" ];
"Data_Xml_Xsl" = [ "Data_Xml" ];
"Devices_Adc" = [ "Devices" ];
"Devices_Adc_Provider" = [ "Devices_Adc" ];
"Devices_Background" = [ "Devices" ];
"Devices_Bluetooth" = [ "Devices" ];
"Devices_Bluetooth_Advertisement" = [ "Devices_Bluetooth" ];
"Devices_Bluetooth_Background" = [ "Devices_Bluetooth" ];
"Devices_Bluetooth_GenericAttributeProfile" = [ "Devices_Bluetooth" ];
"Devices_Bluetooth_Rfcomm" = [ "Devices_Bluetooth" ];
"Devices_Custom" = [ "Devices" ];
"Devices_Display" = [ "Devices" ];
"Devices_Display_Core" = [ "Devices_Display" ];
"Devices_Enumeration" = [ "Devices" ];
"Devices_Enumeration_Pnp" = [ "Devices_Enumeration" ];
"Devices_Geolocation" = [ "Devices" ];
"Devices_Geolocation_Geofencing" = [ "Devices_Geolocation" ];
"Devices_Geolocation_Provider" = [ "Devices_Geolocation" ];
"Devices_Gpio" = [ "Devices" ];
"Devices_Gpio_Provider" = [ "Devices_Gpio" ];
"Devices_Haptics" = [ "Devices" ];
"Devices_HumanInterfaceDevice" = [ "Devices" ];
"Devices_I2c" = [ "Devices" ];
"Devices_I2c_Provider" = [ "Devices_I2c" ];
"Devices_Input" = [ "Devices" ];
"Devices_Input_Preview" = [ "Devices_Input" ];
"Devices_Lights" = [ "Devices" ];
"Devices_Lights_Effects" = [ "Devices_Lights" ];
"Devices_Midi" = [ "Devices" ];
"Devices_PointOfService" = [ "Devices" ];
"Devices_PointOfService_Provider" = [ "Devices_PointOfService" ];
"Devices_Portable" = [ "Devices" ];
"Devices_Power" = [ "Devices" ];
"Devices_Printers" = [ "Devices" ];
"Devices_Printers_Extensions" = [ "Devices_Printers" ];
"Devices_Pwm" = [ "Devices" ];
"Devices_Pwm_Provider" = [ "Devices_Pwm" ];
"Devices_Radios" = [ "Devices" ];
"Devices_Scanners" = [ "Devices" ];
"Devices_Sensors" = [ "Devices" ];
"Devices_Sensors_Custom" = [ "Devices_Sensors" ];
"Devices_SerialCommunication" = [ "Devices" ];
"Devices_SmartCards" = [ "Devices" ];
"Devices_Sms" = [ "Devices" ];
"Devices_Spi" = [ "Devices" ];
"Devices_Spi_Provider" = [ "Devices_Spi" ];
"Devices_Usb" = [ "Devices" ];
"Devices_WiFi" = [ "Devices" ];
"Devices_WiFiDirect" = [ "Devices" ];
"Devices_WiFiDirect_Services" = [ "Devices_WiFiDirect" ];
"Embedded_DeviceLockdown" = [ "Embedded" ];
"Foundation_Collections" = [ "Foundation" ];
"Foundation_Diagnostics" = [ "Foundation" ];
"Foundation_Metadata" = [ "Foundation" ];
"Foundation_Numerics" = [ "Foundation" ];
"Gaming_Input" = [ "Gaming" ];
"Gaming_Input_Custom" = [ "Gaming_Input" ];
"Gaming_Input_ForceFeedback" = [ "Gaming_Input" ];
"Gaming_Input_Preview" = [ "Gaming_Input" ];
"Gaming_Preview" = [ "Gaming" ];
"Gaming_Preview_GamesEnumeration" = [ "Gaming_Preview" ];
"Gaming_UI" = [ "Gaming" ];
"Gaming_XboxLive" = [ "Gaming" ];
"Gaming_XboxLive_Storage" = [ "Gaming_XboxLive" ];
"Globalization_Collation" = [ "Globalization" ];
"Globalization_DateTimeFormatting" = [ "Globalization" ];
"Globalization_Fonts" = [ "Globalization" ];
"Globalization_NumberFormatting" = [ "Globalization" ];
"Globalization_PhoneNumberFormatting" = [ "Globalization" ];
"Graphics_Capture" = [ "Graphics" ];
"Graphics_DirectX" = [ "Graphics" ];
"Graphics_DirectX_Direct3D11" = [ "Graphics_DirectX" ];
"Graphics_Display" = [ "Graphics" ];
"Graphics_Display_Core" = [ "Graphics_Display" ];
"Graphics_Effects" = [ "Graphics" ];
"Graphics_Holographic" = [ "Graphics" ];
"Graphics_Imaging" = [ "Graphics" ];
"Graphics_Printing" = [ "Graphics" ];
"Graphics_Printing3D" = [ "Graphics" ];
"Graphics_Printing_OptionDetails" = [ "Graphics_Printing" ];
"Graphics_Printing_PrintSupport" = [ "Graphics_Printing" ];
"Graphics_Printing_PrintTicket" = [ "Graphics_Printing" ];
"Graphics_Printing_Workflow" = [ "Graphics_Printing" ];
"Management_Core" = [ "Management" ];
"Management_Deployment" = [ "Management" ];
"Management_Deployment_Preview" = [ "Management_Deployment" ];
"Management_Policies" = [ "Management" ];
"Management_Update" = [ "Management" ];
"Management_Workplace" = [ "Management" ];
"Media_AppBroadcasting" = [ "Media" ];
"Media_AppRecording" = [ "Media" ];
"Media_Audio" = [ "Media" ];
"Media_Capture" = [ "Media" ];
"Media_Capture_Core" = [ "Media_Capture" ];
"Media_Capture_Frames" = [ "Media_Capture" ];
"Media_Casting" = [ "Media" ];
"Media_ClosedCaptioning" = [ "Media" ];
"Media_ContentRestrictions" = [ "Media" ];
"Media_Control" = [ "Media" ];
"Media_Core" = [ "Media" ];
"Media_Core_Preview" = [ "Media_Core" ];
"Media_Devices" = [ "Media" ];
"Media_Devices_Core" = [ "Media_Devices" ];
"Media_DialProtocol" = [ "Media" ];
"Media_Editing" = [ "Media" ];
"Media_Effects" = [ "Media" ];
"Media_FaceAnalysis" = [ "Media" ];
"Media_Import" = [ "Media" ];
"Media_MediaProperties" = [ "Media" ];
"Media_Miracast" = [ "Media" ];
"Media_Ocr" = [ "Media" ];
"Media_PlayTo" = [ "Media" ];
"Media_Playback" = [ "Media" ];
"Media_Playlists" = [ "Media" ];
"Media_Protection" = [ "Media" ];
"Media_Protection_PlayReady" = [ "Media_Protection" ];
"Media_Render" = [ "Media" ];
"Media_SpeechRecognition" = [ "Media" ];
"Media_SpeechSynthesis" = [ "Media" ];
"Media_Streaming" = [ "Media" ];
"Media_Streaming_Adaptive" = [ "Media_Streaming" ];
"Media_Transcoding" = [ "Media" ];
"Networking_BackgroundTransfer" = [ "Networking" ];
"Networking_Connectivity" = [ "Networking" ];
"Networking_NetworkOperators" = [ "Networking" ];
"Networking_Proximity" = [ "Networking" ];
"Networking_PushNotifications" = [ "Networking" ];
"Networking_ServiceDiscovery" = [ "Networking" ];
"Networking_ServiceDiscovery_Dnssd" = [ "Networking_ServiceDiscovery" ];
"Networking_Sockets" = [ "Networking" ];
"Networking_Vpn" = [ "Networking" ];
"Networking_XboxLive" = [ "Networking" ];
"Perception_Automation" = [ "Perception" ];
"Perception_Automation_Core" = [ "Perception_Automation" ];
"Perception_People" = [ "Perception" ];
"Perception_Spatial" = [ "Perception" ];
"Perception_Spatial_Preview" = [ "Perception_Spatial" ];
"Perception_Spatial_Surfaces" = [ "Perception_Spatial" ];
"Phone_ApplicationModel" = [ "Phone" ];
"Phone_Devices" = [ "Phone" ];
"Phone_Devices_Notification" = [ "Phone_Devices" ];
"Phone_Devices_Power" = [ "Phone_Devices" ];
"Phone_Management" = [ "Phone" ];
"Phone_Management_Deployment" = [ "Phone_Management" ];
"Phone_Media" = [ "Phone" ];
"Phone_Media_Devices" = [ "Phone_Media" ];
"Phone_Notification" = [ "Phone" ];
"Phone_Notification_Management" = [ "Phone_Notification" ];
"Phone_PersonalInformation" = [ "Phone" ];
"Phone_PersonalInformation_Provisioning" = [ "Phone_PersonalInformation" ];
"Phone_Speech" = [ "Phone" ];
"Phone_Speech_Recognition" = [ "Phone_Speech" ];
"Phone_StartScreen" = [ "Phone" ];
"Phone_System" = [ "Phone" ];
"Phone_System_Power" = [ "Phone_System" ];
"Phone_System_Profile" = [ "Phone_System" ];
"Phone_System_UserProfile" = [ "Phone_System" ];
"Phone_System_UserProfile_GameServices" = [ "Phone_System_UserProfile" ];
"Phone_System_UserProfile_GameServices_Core" = [ "Phone_System_UserProfile_GameServices" ];
"Phone_UI" = [ "Phone" ];
"Phone_UI_Input" = [ "Phone_UI" ];
"Security_Authentication" = [ "Security" ];
"Security_Authentication_Identity" = [ "Security_Authentication" ];
"Security_Authentication_Identity_Core" = [ "Security_Authentication_Identity" ];
"Security_Authentication_OnlineId" = [ "Security_Authentication" ];
"Security_Authentication_Web" = [ "Security_Authentication" ];
"Security_Authentication_Web_Core" = [ "Security_Authentication_Web" ];
"Security_Authentication_Web_Provider" = [ "Security_Authentication_Web" ];
"Security_Authorization" = [ "Security" ];
"Security_Authorization_AppCapabilityAccess" = [ "Security_Authorization" ];
"Security_Credentials" = [ "Security" ];
"Security_Credentials_UI" = [ "Security_Credentials" ];
"Security_Cryptography" = [ "Security" ];
"Security_Cryptography_Certificates" = [ "Security_Cryptography" ];
"Security_Cryptography_Core" = [ "Security_Cryptography" ];
"Security_Cryptography_DataProtection" = [ "Security_Cryptography" ];
"Security_DataProtection" = [ "Security" ];
"Security_EnterpriseData" = [ "Security" ];
"Security_ExchangeActiveSyncProvisioning" = [ "Security" ];
"Security_Isolation" = [ "Security" ];
"Services_Maps" = [ "Services" ];
"Services_Maps_Guidance" = [ "Services_Maps" ];
"Services_Maps_LocalSearch" = [ "Services_Maps" ];
"Services_Maps_OfflineMaps" = [ "Services_Maps" ];
"Services_Store" = [ "Services" ];
"Services_TargetedContent" = [ "Services" ];
"Storage_AccessCache" = [ "Storage" ];
"Storage_BulkAccess" = [ "Storage" ];
"Storage_Compression" = [ "Storage" ];
"Storage_FileProperties" = [ "Storage" ];
"Storage_Pickers" = [ "Storage" ];
"Storage_Pickers_Provider" = [ "Storage_Pickers" ];
"Storage_Provider" = [ "Storage" ];
"Storage_Search" = [ "Storage" ];
"Storage_Streams" = [ "Storage" ];
"System_Diagnostics" = [ "System" ];
"System_Diagnostics_DevicePortal" = [ "System_Diagnostics" ];
"System_Diagnostics_Telemetry" = [ "System_Diagnostics" ];
"System_Diagnostics_TraceReporting" = [ "System_Diagnostics" ];
"System_Display" = [ "System" ];
"System_Implementation" = [ "System" ];
"System_Implementation_FileExplorer" = [ "System_Implementation" ];
"System_Inventory" = [ "System" ];
"System_Power" = [ "System" ];
"System_Profile" = [ "System" ];
"System_Profile_SystemManufacturers" = [ "System_Profile" ];
"System_RemoteDesktop" = [ "System" ];
"System_RemoteDesktop_Input" = [ "System_RemoteDesktop" ];
"System_RemoteSystems" = [ "System" ];
"System_Threading" = [ "System" ];
"System_Threading_Core" = [ "System_Threading" ];
"System_Update" = [ "System" ];
"System_UserProfile" = [ "System" ];
"UI_Accessibility" = [ "UI" ];
"UI_ApplicationSettings" = [ "UI" ];
"UI_Composition" = [ "UI" ];
"UI_Composition_Core" = [ "UI_Composition" ];
"UI_Composition_Desktop" = [ "UI_Composition" ];
"UI_Composition_Diagnostics" = [ "UI_Composition" ];
"UI_Composition_Effects" = [ "UI_Composition" ];
"UI_Composition_Interactions" = [ "UI_Composition" ];
"UI_Composition_Scenes" = [ "UI_Composition" ];
"UI_Core" = [ "UI" ];
"UI_Core_AnimationMetrics" = [ "UI_Core" ];
"UI_Core_Preview" = [ "UI_Core" ];
"UI_Input" = [ "UI" ];
"UI_Input_Core" = [ "UI_Input" ];
"UI_Input_Inking" = [ "UI_Input" ];
"UI_Input_Inking_Analysis" = [ "UI_Input_Inking" ];
"UI_Input_Inking_Core" = [ "UI_Input_Inking" ];
"UI_Input_Inking_Preview" = [ "UI_Input_Inking" ];
"UI_Input_Preview" = [ "UI_Input" ];
"UI_Input_Preview_Injection" = [ "UI_Input_Preview" ];
"UI_Input_Spatial" = [ "UI_Input" ];
"UI_Notifications" = [ "UI" ];
"UI_Notifications_Management" = [ "UI_Notifications" ];
"UI_Popups" = [ "UI" ];
"UI_Shell" = [ "UI" ];
"UI_StartScreen" = [ "UI" ];
"UI_Text" = [ "UI" ];
"UI_Text_Core" = [ "UI_Text" ];
"UI_UIAutomation" = [ "UI" ];
"UI_UIAutomation_Core" = [ "UI_UIAutomation" ];
"UI_ViewManagement" = [ "UI" ];
"UI_ViewManagement_Core" = [ "UI_ViewManagement" ];
"UI_WebUI" = [ "UI" ];
"UI_WebUI_Core" = [ "UI_WebUI" ];
"UI_WindowManagement" = [ "UI" ];
"UI_WindowManagement_Preview" = [ "UI_WindowManagement" ];
"Web_AtomPub" = [ "Web" ];
"Web_Http" = [ "Web" ];
"Web_Http_Diagnostics" = [ "Web_Http" ];
"Web_Http_Filters" = [ "Web_Http" ];
"Web_Http_Headers" = [ "Web_Http" ];
"Web_Syndication" = [ "Web" ];
"Web_UI" = [ "Web" ];
"Web_UI_Interop" = [ "Web_UI" ];
"Win32_AI" = [ "Win32" ];
"Win32_AI_MachineLearning" = [ "Win32_AI" ];
"Win32_AI_MachineLearning_DirectML" = [ "Win32_AI_MachineLearning" ];
"Win32_AI_MachineLearning_WinML" = [ "Win32_AI_MachineLearning" ];
"Win32_Data" = [ "Win32" ];
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
"Win32_Data_Xml" = [ "Win32_Data" ];
"Win32_Data_Xml_MsXml" = [ "Win32_Data_Xml" ];
"Win32_Data_Xml_XmlLite" = [ "Win32_Data_Xml" ];
"Win32_Devices" = [ "Win32" ];
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
"Win32_Devices_Communication" = [ "Win32_Devices" ];
"Win32_Devices_DeviceAccess" = [ "Win32_Devices" ];
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
"Win32_Devices_Display" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
"Win32_Devices_Fax" = [ "Win32_Devices" ];
"Win32_Devices_FunctionDiscovery" = [ "Win32_Devices" ];
"Win32_Devices_Geolocation" = [ "Win32_Devices" ];
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
"Win32_Devices_ImageAcquisition" = [ "Win32_Devices" ];
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
"Win32_Devices_Properties" = [ "Win32_Devices" ];
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
"Win32_Devices_Usb" = [ "Win32_Devices" ];
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
"Win32_Foundation" = [ "Win32" ];
"Win32_Gaming" = [ "Win32" ];
"Win32_Globalization" = [ "Win32" ];
"Win32_Graphics" = [ "Win32" ];
"Win32_Graphics_CompositionSwapchain" = [ "Win32_Graphics" ];
"Win32_Graphics_DXCore" = [ "Win32_Graphics" ];
"Win32_Graphics_Direct2D" = [ "Win32_Graphics" ];
"Win32_Graphics_Direct2D_Common" = [ "Win32_Graphics_Direct2D" ];
"Win32_Graphics_Direct3D" = [ "Win32_Graphics" ];
"Win32_Graphics_Direct3D10" = [ "Win32_Graphics" ];
"Win32_Graphics_Direct3D11" = [ "Win32_Graphics" ];
"Win32_Graphics_Direct3D11on12" = [ "Win32_Graphics" ];
"Win32_Graphics_Direct3D12" = [ "Win32_Graphics" ];
"Win32_Graphics_Direct3D9" = [ "Win32_Graphics" ];
"Win32_Graphics_Direct3D9on12" = [ "Win32_Graphics" ];
"Win32_Graphics_Direct3D_Dxc" = [ "Win32_Graphics_Direct3D" ];
"Win32_Graphics_Direct3D_Fxc" = [ "Win32_Graphics_Direct3D" ];
"Win32_Graphics_DirectComposition" = [ "Win32_Graphics" ];
"Win32_Graphics_DirectDraw" = [ "Win32_Graphics" ];
"Win32_Graphics_DirectManipulation" = [ "Win32_Graphics" ];
"Win32_Graphics_DirectWrite" = [ "Win32_Graphics" ];
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
"Win32_Graphics_Dxgi" = [ "Win32_Graphics" ];
"Win32_Graphics_Dxgi_Common" = [ "Win32_Graphics_Dxgi" ];
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
"Win32_Graphics_Imaging" = [ "Win32_Graphics" ];
"Win32_Graphics_Imaging_D2D" = [ "Win32_Graphics_Imaging" ];
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
"Win32_Management" = [ "Win32" ];
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
"Win32_Media" = [ "Win32" ];
"Win32_Media_Audio" = [ "Win32_Media" ];
"Win32_Media_Audio_Apo" = [ "Win32_Media_Audio" ];
"Win32_Media_Audio_DirectMusic" = [ "Win32_Media_Audio" ];
"Win32_Media_Audio_DirectSound" = [ "Win32_Media_Audio" ];
"Win32_Media_Audio_Endpoints" = [ "Win32_Media_Audio" ];
"Win32_Media_Audio_XAudio2" = [ "Win32_Media_Audio" ];
"Win32_Media_DeviceManager" = [ "Win32_Media" ];
"Win32_Media_DirectShow" = [ "Win32_Media" ];
"Win32_Media_DirectShow_Xml" = [ "Win32_Media_DirectShow" ];
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
"Win32_Media_LibrarySharingServices" = [ "Win32_Media" ];
"Win32_Media_MediaFoundation" = [ "Win32_Media" ];
"Win32_Media_MediaPlayer" = [ "Win32_Media" ];
"Win32_Media_Multimedia" = [ "Win32_Media" ];
"Win32_Media_PictureAcquisition" = [ "Win32_Media" ];
"Win32_Media_Speech" = [ "Win32_Media" ];
"Win32_Media_Streaming" = [ "Win32_Media" ];
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
"Win32_NetworkManagement" = [ "Win32" ];
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_MobileBroadband" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetworkPolicyServer" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsConnectNow" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
"Win32_Networking" = [ "Win32" ];
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
"Win32_Networking_BackgroundIntelligentTransferService" = [ "Win32_Networking" ];
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
"Win32_Networking_NetworkListManager" = [ "Win32_Networking" ];
"Win32_Networking_RemoteDifferentialCompression" = [ "Win32_Networking" ];
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
"Win32_Security" = [ "Win32" ];
"Win32_Security_AppLocker" = [ "Win32_Security" ];
"Win32_Security_Authentication" = [ "Win32_Security" ];
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
"Win32_Security_Authentication_Identity_Provider" = [ "Win32_Security_Authentication_Identity" ];
"Win32_Security_Authorization" = [ "Win32_Security" ];
"Win32_Security_Authorization_UI" = [ "Win32_Security_Authorization" ];
"Win32_Security_ConfigurationSnapin" = [ "Win32_Security" ];
"Win32_Security_Credentials" = [ "Win32_Security" ];
"Win32_Security_Cryptography" = [ "Win32_Security" ];
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
"Win32_Security_Isolation" = [ "Win32_Security" ];
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
"Win32_Security_Tpm" = [ "Win32_Security" ];
"Win32_Security_WinTrust" = [ "Win32_Security" ];
"Win32_Security_WinWlx" = [ "Win32_Security" ];
"Win32_Storage" = [ "Win32" ];
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
"Win32_Storage_Compression" = [ "Win32_Storage" ];
"Win32_Storage_DataDeduplication" = [ "Win32_Storage" ];
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_EnhancedStorage" = [ "Win32_Storage" ];
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
"Win32_Storage_FileServerResourceManager" = [ "Win32_Storage" ];
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
"Win32_Storage_Jet" = [ "Win32_Storage" ];
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
"Win32_Storage_Packaging_Opc" = [ "Win32_Storage_Packaging" ];
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
"Win32_Storage_VirtualDiskService" = [ "Win32_Storage" ];
"Win32_Storage_Vss" = [ "Win32_Storage" ];
"Win32_Storage_Xps" = [ "Win32_Storage" ];
"Win32_Storage_Xps_Printing" = [ "Win32_Storage_Xps" ];
"Win32_System" = [ "Win32" ];
"Win32_System_AddressBook" = [ "Win32_System" ];
"Win32_System_Antimalware" = [ "Win32_System" ];
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
"Win32_System_AssessmentTool" = [ "Win32_System" ];
"Win32_System_Com" = [ "Win32_System" ];
"Win32_System_Com_CallObj" = [ "Win32_System_Com" ];
"Win32_System_Com_ChannelCredentials" = [ "Win32_System_Com" ];
"Win32_System_Com_Events" = [ "Win32_System_Com" ];
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
"Win32_System_Com_UI" = [ "Win32_System_Com" ];
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
"Win32_System_ComponentServices" = [ "Win32_System" ];
"Win32_System_Console" = [ "Win32_System" ];
"Win32_System_Contacts" = [ "Win32_System" ];
"Win32_System_CorrelationVector" = [ "Win32_System" ];
"Win32_System_DataExchange" = [ "Win32_System" ];
"Win32_System_DeploymentServices" = [ "Win32_System" ];
"Win32_System_DesktopSharing" = [ "Win32_System" ];
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
"Win32_System_Diagnostics" = [ "Win32_System" ];
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
"Win32_System_Environment" = [ "Win32_System" ];
"Win32_System_ErrorReporting" = [ "Win32_System" ];
"Win32_System_EventCollector" = [ "Win32_System" ];
"Win32_System_EventLog" = [ "Win32_System" ];
"Win32_System_EventNotificationService" = [ "Win32_System" ];
"Win32_System_GroupPolicy" = [ "Win32_System" ];
"Win32_System_HostCompute" = [ "Win32_System" ];
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
"Win32_System_Hypervisor" = [ "Win32_System" ];
"Win32_System_IO" = [ "Win32_System" ];
"Win32_System_Iis" = [ "Win32_System" ];
"Win32_System_Ioctl" = [ "Win32_System" ];
"Win32_System_JobObjects" = [ "Win32_System" ];
"Win32_System_Js" = [ "Win32_System" ];
"Win32_System_Kernel" = [ "Win32_System" ];
"Win32_System_LibraryLoader" = [ "Win32_System" ];
"Win32_System_Mailslots" = [ "Win32_System" ];
"Win32_System_Mapi" = [ "Win32_System" ];
"Win32_System_Memory" = [ "Win32_System" ];
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
"Win32_System_MessageQueuing" = [ "Win32_System" ];
"Win32_System_MixedReality" = [ "Win32_System" ];
"Win32_System_Mmc" = [ "Win32_System" ];
"Win32_System_Ole" = [ "Win32_System" ];
"Win32_System_ParentalControls" = [ "Win32_System" ];
"Win32_System_PasswordManagement" = [ "Win32_System" ];
"Win32_System_Performance" = [ "Win32_System" ];
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
"Win32_System_Pipes" = [ "Win32_System" ];
"Win32_System_Power" = [ "Win32_System" ];
"Win32_System_ProcessStatus" = [ "Win32_System" ];
"Win32_System_RealTimeCommunications" = [ "Win32_System" ];
"Win32_System_Recovery" = [ "Win32_System" ];
"Win32_System_Registry" = [ "Win32_System" ];
"Win32_System_RemoteAssistance" = [ "Win32_System" ];
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
"Win32_System_RemoteManagement" = [ "Win32_System" ];
"Win32_System_RestartManager" = [ "Win32_System" ];
"Win32_System_Restore" = [ "Win32_System" ];
"Win32_System_Rpc" = [ "Win32_System" ];
"Win32_System_Search" = [ "Win32_System" ];
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
"Win32_System_SecurityCenter" = [ "Win32_System" ];
"Win32_System_ServerBackup" = [ "Win32_System" ];
"Win32_System_Services" = [ "Win32_System" ];
"Win32_System_SettingsManagementInfrastructure" = [ "Win32_System" ];
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
"Win32_System_Shutdown" = [ "Win32_System" ];
"Win32_System_SideShow" = [ "Win32_System" ];
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
"Win32_System_SystemInformation" = [ "Win32_System" ];
"Win32_System_SystemServices" = [ "Win32_System" ];
"Win32_System_TaskScheduler" = [ "Win32_System" ];
"Win32_System_Threading" = [ "Win32_System" ];
"Win32_System_Time" = [ "Win32_System" ];
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
"Win32_System_TransactionServer" = [ "Win32_System" ];
"Win32_System_UpdateAgent" = [ "Win32_System" ];
"Win32_System_UpdateAssessment" = [ "Win32_System" ];
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
"Win32_System_WinRT" = [ "Win32_System" ];
"Win32_System_WinRT_AllJoyn" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_Composition" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_CoreInputView" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_Direct3D11" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_Display" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_Graphics" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_Graphics_Capture" = [ "Win32_System_WinRT_Graphics" ];
"Win32_System_WinRT_Graphics_Direct2D" = [ "Win32_System_WinRT_Graphics" ];
"Win32_System_WinRT_Graphics_Imaging" = [ "Win32_System_WinRT_Graphics" ];
"Win32_System_WinRT_Holographic" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_Isolation" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_ML" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_Media" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_Pdf" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_Printing" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_Shell" = [ "Win32_System_WinRT" ];
"Win32_System_WinRT_Storage" = [ "Win32_System_WinRT" ];
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
"Win32_System_WindowsSync" = [ "Win32_System" ];
"Win32_System_Wmi" = [ "Win32_System" ];
"Win32_UI" = [ "Win32" ];
"Win32_UI_Accessibility" = [ "Win32_UI" ];
"Win32_UI_Animation" = [ "Win32_UI" ];
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
"Win32_UI_Controls" = [ "Win32_UI" ];
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
"Win32_UI_Controls_RichEdit" = [ "Win32_UI_Controls" ];
"Win32_UI_HiDpi" = [ "Win32_UI" ];
"Win32_UI_Input" = [ "Win32_UI" ];
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Ink" = [ "Win32_UI_Input" ];
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Radial" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
"Win32_UI_LegacyWindowsEnvironmentFeatures" = [ "Win32_UI" ];
"Win32_UI_Magnification" = [ "Win32_UI" ];
"Win32_UI_Notifications" = [ "Win32_UI" ];
"Win32_UI_Ribbon" = [ "Win32_UI" ];
"Win32_UI_Shell" = [ "Win32_UI" ];
"Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
"Win32_UI_TabletPC" = [ "Win32_UI" ];
"Win32_UI_TextServices" = [ "Win32_UI" ];
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
"Win32_UI_Wpf" = [ "Win32_UI" ];
"implement" = [ "windows-implement" "windows-interface" ];
"windows-implement" = [ "dep:windows-implement" ];
"windows-interface" = [ "dep:windows-interface" ];
};
resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_Security" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Console" "Win32_System_IO" "Win32_System_Pipes" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
};
"windows 0.57.0" = rec {
crateName = "windows";
version = "0.57.0";
edition = "2021";
sha256 = "0hqid10bqvxa3pbpgvrh2cilf950lxsd9zqfv3rldc73v2s2qd0j";
authors = [
"Microsoft"
];
dependencies = [
{
name = "windows-core";
packageId = "windows-core";
}
{
name = "windows-targets";
packageId = "windows-targets 0.52.6";
}
];
features = {
"AI" = [ "Foundation" ];
"AI_MachineLearning" = [ "AI" ];
"ApplicationModel" = [ "Foundation" ];
"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_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" = [ "Foundation" ];
"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" = [ "Foundation" ];
"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" = [ "Foundation" ];
"Embedded_DeviceLockdown" = [ "Embedded" ];
"Foundation_Collections" = [ "Foundation" ];
"Foundation_Diagnostics" = [ "Foundation" ];
"Foundation_Metadata" = [ "Foundation" ];
"Foundation_Numerics" = [ "Foundation" ];
"Gaming" = [ "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" = [ "Foundation" ];
"Globalization_Collation" = [ "Globalization" ];
"Globalization_DateTimeFormatting" = [ "Globalization" ];
"Globalization_Fonts" = [ "Globalization" ];
"Globalization_NumberFormatting" = [ "Globalization" ];
"Globalization_PhoneNumberFormatting" = [ "Globalization" ];
"Graphics" = [ "Foundation" ];
"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" = [ "Foundation" ];
"Management_Core" = [ "Management" ];
"Management_Deployment" = [ "Management" ];
"Management_Deployment_Preview" = [ "Management_Deployment" ];
"Management_Policies" = [ "Management" ];
"Management_Update" = [ "Management" ];
"Management_Workplace" = [ "Management" ];
"Media" = [ "Foundation" ];
"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" = [ "Foundation" ];
"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" = [ "Foundation" ];
"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" = [ "Foundation" ];
"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" = [ "Foundation" ];
"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" = [ "Foundation" ];
"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" = [ "Foundation" ];
"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" = [ "Foundation" ];
"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_RemoteDesktop_Provider" = [ "System_RemoteDesktop" ];
"System_RemoteSystems" = [ "System" ];
"System_Threading" = [ "System" ];
"System_Threading_Core" = [ "System_Threading" ];
"System_Update" = [ "System" ];
"System_UserProfile" = [ "System" ];
"UI" = [ "Foundation" ];
"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_Notifications_Preview" = [ "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" = [ "Win32_Foundation" ];
"Wdk_Devices" = [ "Wdk" ];
"Wdk_Devices_HumanInterfaceDevice" = [ "Wdk_Devices" ];
"Wdk_Foundation" = [ "Wdk" ];
"Wdk_Graphics" = [ "Wdk" ];
"Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
"Wdk_NetworkManagement" = [ "Wdk" ];
"Wdk_NetworkManagement_Ndis" = [ "Wdk_NetworkManagement" ];
"Wdk_NetworkManagement_WindowsFilteringPlatform" = [ "Wdk_NetworkManagement" ];
"Wdk_Storage" = [ "Wdk" ];
"Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
"Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
"Wdk_System" = [ "Wdk" ];
"Wdk_System_IO" = [ "Wdk_System" ];
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
"Wdk_System_Registry" = [ "Wdk_System" ];
"Wdk_System_SystemInformation" = [ "Wdk_System" ];
"Wdk_System_SystemServices" = [ "Wdk_System" ];
"Wdk_System_Threading" = [ "Wdk_System" ];
"Web" = [ "Foundation" ];
"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" = [ "Win32_Foundation" ];
"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_GdiPlus" = [ "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_Nvme" = [ "Win32_Storage" ];
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
"Win32_Storage_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_Diagnostics_TraceLogging" = [ "Win32_System_Diagnostics" ];
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
"Win32_System_Environment" = [ "Win32_System" ];
"Win32_System_ErrorReporting" = [ "Win32_System" ];
"Win32_System_EventCollector" = [ "Win32_System" ];
"Win32_System_EventLog" = [ "Win32_System" ];
"Win32_System_EventNotificationService" = [ "Win32_System" ];
"Win32_System_GroupPolicy" = [ "Win32_System" ];
"Win32_System_HostCompute" = [ "Win32_System" ];
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
"Win32_System_Hypervisor" = [ "Win32_System" ];
"Win32_System_IO" = [ "Win32_System" ];
"Win32_System_Iis" = [ "Win32_System" ];
"Win32_System_Ioctl" = [ "Win32_System" ];
"Win32_System_JobObjects" = [ "Win32_System" ];
"Win32_System_Js" = [ "Win32_System" ];
"Win32_System_Kernel" = [ "Win32_System" ];
"Win32_System_LibraryLoader" = [ "Win32_System" ];
"Win32_System_Mailslots" = [ "Win32_System" ];
"Win32_System_Mapi" = [ "Win32_System" ];
"Win32_System_Memory" = [ "Win32_System" ];
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
"Win32_System_MessageQueuing" = [ "Win32_System" ];
"Win32_System_MixedReality" = [ "Win32_System" ];
"Win32_System_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_Variant" = [ "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" ];
"default" = [ "std" ];
"std" = [ "windows-core/std" ];
};
resolvedDefaultFeatures = [ "Wdk" "Wdk_System" "Wdk_System_SystemInformation" "Wdk_System_SystemServices" "Wdk_System_Threading" "Win32" "Win32_Foundation" "Win32_Security" "Win32_Security_Authorization" "Win32_System" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "Win32_System_Diagnostics_ToolHelp" "Win32_System_Kernel" "Win32_System_Memory" "Win32_System_Performance" "Win32_System_Power" "Win32_System_ProcessStatus" "Win32_System_Registry" "Win32_System_RemoteDesktop" "Win32_System_SystemInformation" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_UI" "Win32_UI_Shell" "default" "std" ];
};
"windows-core" = rec {
crateName = "windows-core";
version = "0.57.0";
edition = "2021";
sha256 = "0bc3jxw2jw76xkk3ddvnp5b2m76qmbzv1qncgvb6qrlhl8wj9vfj";
libName = "windows_core";
authors = [
"Microsoft"
];
dependencies = [
{
name = "windows-implement";
packageId = "windows-implement";
}
{
name = "windows-interface";
packageId = "windows-interface";
}
{
name = "windows-result";
packageId = "windows-result";
}
{
name = "windows-targets";
packageId = "windows-targets 0.52.6";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"windows-implement" = rec {
crateName = "windows-implement";
version = "0.57.0";
edition = "2021";
sha256 = "1mqs7qypclnmx5r8yq5jy3g2d8i27vzag9yzzzxzpdnmb70ds1wi";
procMacro = true;
libName = "windows_implement";
authors = [
"Microsoft"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
usesDefaultFeatures = false;
features = [ "parsing" "proc-macro" "printing" "full" "derive" ];
}
];
};
"windows-interface" = rec {
crateName = "windows-interface";
version = "0.57.0";
edition = "2021";
sha256 = "19zwlzr0q1z9s692681yb5w2lhvwcyx4v95s25hfdkd3isry9gi9";
procMacro = true;
libName = "windows_interface";
authors = [
"Microsoft"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
usesDefaultFeatures = false;
features = [ "parsing" "proc-macro" "printing" "full" "derive" "clone-impls" ];
}
];
};
"windows-link" = rec {
crateName = "windows-link";
version = "0.2.1";
edition = "2021";
sha256 = "1rag186yfr3xx7piv5rg8b6im2dwcf8zldiflvb22xbzwli5507h";
libName = "windows_link";
};
"windows-result" = rec {
crateName = "windows-result";
version = "0.1.2";
edition = "2021";
sha256 = "1y274q1v0vy21lhkgslpxpq1m08hvr1mcs2l88h1b1gcx0136f2y";
libName = "windows_result";
authors = [
"Microsoft"
];
dependencies = [
{
name = "windows-targets";
packageId = "windows-targets 0.52.6";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"windows-sys 0.48.0" = rec {
crateName = "windows-sys";
version = "0.48.0";
edition = "2018";
sha256 = "1aan23v5gs7gya1lc46hqn9mdh8yph3fhxmhxlw36pn6pqc28zb7";
libName = "windows_sys";
authors = [
"Microsoft"
];
dependencies = [
{
name = "windows-targets";
packageId = "windows-targets 0.48.5";
}
];
features = {
"Wdk_System" = [ "Wdk" ];
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
"Win32_Data" = [ "Win32" ];
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
"Win32_Data_Xml" = [ "Win32_Data" ];
"Win32_Data_Xml_MsXml" = [ "Win32_Data_Xml" ];
"Win32_Data_Xml_XmlLite" = [ "Win32_Data_Xml" ];
"Win32_Devices" = [ "Win32" ];
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
"Win32_Devices_Communication" = [ "Win32_Devices" ];
"Win32_Devices_DeviceAccess" = [ "Win32_Devices" ];
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
"Win32_Devices_Display" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
"Win32_Devices_Fax" = [ "Win32_Devices" ];
"Win32_Devices_FunctionDiscovery" = [ "Win32_Devices" ];
"Win32_Devices_Geolocation" = [ "Win32_Devices" ];
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
"Win32_Devices_ImageAcquisition" = [ "Win32_Devices" ];
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
"Win32_Devices_Properties" = [ "Win32_Devices" ];
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
"Win32_Devices_Usb" = [ "Win32_Devices" ];
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
"Win32_Foundation" = [ "Win32" ];
"Win32_Gaming" = [ "Win32" ];
"Win32_Globalization" = [ "Win32" ];
"Win32_Graphics" = [ "Win32" ];
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
"Win32_Management" = [ "Win32" ];
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
"Win32_Media" = [ "Win32" ];
"Win32_Media_Audio" = [ "Win32_Media" ];
"Win32_Media_Audio_Apo" = [ "Win32_Media_Audio" ];
"Win32_Media_Audio_DirectMusic" = [ "Win32_Media_Audio" ];
"Win32_Media_Audio_Endpoints" = [ "Win32_Media_Audio" ];
"Win32_Media_Audio_XAudio2" = [ "Win32_Media_Audio" ];
"Win32_Media_DeviceManager" = [ "Win32_Media" ];
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
"Win32_Media_LibrarySharingServices" = [ "Win32_Media" ];
"Win32_Media_MediaPlayer" = [ "Win32_Media" ];
"Win32_Media_Multimedia" = [ "Win32_Media" ];
"Win32_Media_Speech" = [ "Win32_Media" ];
"Win32_Media_Streaming" = [ "Win32_Media" ];
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
"Win32_NetworkManagement" = [ "Win32" ];
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_MobileBroadband" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetworkPolicyServer" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsConnectNow" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
"Win32_Networking" = [ "Win32" ];
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
"Win32_Networking_BackgroundIntelligentTransferService" = [ "Win32_Networking" ];
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
"Win32_Networking_NetworkListManager" = [ "Win32_Networking" ];
"Win32_Networking_RemoteDifferentialCompression" = [ "Win32_Networking" ];
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
"Win32_Security" = [ "Win32" ];
"Win32_Security_AppLocker" = [ "Win32_Security" ];
"Win32_Security_Authentication" = [ "Win32_Security" ];
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
"Win32_Security_Authentication_Identity_Provider" = [ "Win32_Security_Authentication_Identity" ];
"Win32_Security_Authorization" = [ "Win32_Security" ];
"Win32_Security_Authorization_UI" = [ "Win32_Security_Authorization" ];
"Win32_Security_ConfigurationSnapin" = [ "Win32_Security" ];
"Win32_Security_Credentials" = [ "Win32_Security" ];
"Win32_Security_Cryptography" = [ "Win32_Security" ];
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
"Win32_Security_Isolation" = [ "Win32_Security" ];
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
"Win32_Security_Tpm" = [ "Win32_Security" ];
"Win32_Security_WinTrust" = [ "Win32_Security" ];
"Win32_Security_WinWlx" = [ "Win32_Security" ];
"Win32_Storage" = [ "Win32" ];
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
"Win32_Storage_Compression" = [ "Win32_Storage" ];
"Win32_Storage_DataDeduplication" = [ "Win32_Storage" ];
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_EnhancedStorage" = [ "Win32_Storage" ];
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
"Win32_Storage_FileServerResourceManager" = [ "Win32_Storage" ];
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
"Win32_Storage_Jet" = [ "Win32_Storage" ];
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
"Win32_Storage_Packaging_Opc" = [ "Win32_Storage_Packaging" ];
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
"Win32_Storage_VirtualDiskService" = [ "Win32_Storage" ];
"Win32_Storage_Vss" = [ "Win32_Storage" ];
"Win32_Storage_Xps" = [ "Win32_Storage" ];
"Win32_Storage_Xps_Printing" = [ "Win32_Storage_Xps" ];
"Win32_System" = [ "Win32" ];
"Win32_System_AddressBook" = [ "Win32_System" ];
"Win32_System_Antimalware" = [ "Win32_System" ];
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
"Win32_System_AssessmentTool" = [ "Win32_System" ];
"Win32_System_ClrHosting" = [ "Win32_System" ];
"Win32_System_Com" = [ "Win32_System" ];
"Win32_System_Com_CallObj" = [ "Win32_System_Com" ];
"Win32_System_Com_ChannelCredentials" = [ "Win32_System_Com" ];
"Win32_System_Com_Events" = [ "Win32_System_Com" ];
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
"Win32_System_Com_UI" = [ "Win32_System_Com" ];
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
"Win32_System_ComponentServices" = [ "Win32_System" ];
"Win32_System_Console" = [ "Win32_System" ];
"Win32_System_Contacts" = [ "Win32_System" ];
"Win32_System_CorrelationVector" = [ "Win32_System" ];
"Win32_System_DataExchange" = [ "Win32_System" ];
"Win32_System_DeploymentServices" = [ "Win32_System" ];
"Win32_System_DesktopSharing" = [ "Win32_System" ];
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
"Win32_System_Diagnostics" = [ "Win32_System" ];
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ClrProfiling" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug_ActiveScript" = [ "Win32_System_Diagnostics_Debug" ];
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
"Win32_System_Environment" = [ "Win32_System" ];
"Win32_System_ErrorReporting" = [ "Win32_System" ];
"Win32_System_EventCollector" = [ "Win32_System" ];
"Win32_System_EventLog" = [ "Win32_System" ];
"Win32_System_EventNotificationService" = [ "Win32_System" ];
"Win32_System_GroupPolicy" = [ "Win32_System" ];
"Win32_System_HostCompute" = [ "Win32_System" ];
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
"Win32_System_Hypervisor" = [ "Win32_System" ];
"Win32_System_IO" = [ "Win32_System" ];
"Win32_System_Iis" = [ "Win32_System" ];
"Win32_System_Ioctl" = [ "Win32_System" ];
"Win32_System_JobObjects" = [ "Win32_System" ];
"Win32_System_Js" = [ "Win32_System" ];
"Win32_System_Kernel" = [ "Win32_System" ];
"Win32_System_LibraryLoader" = [ "Win32_System" ];
"Win32_System_Mailslots" = [ "Win32_System" ];
"Win32_System_Mapi" = [ "Win32_System" ];
"Win32_System_Memory" = [ "Win32_System" ];
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
"Win32_System_MessageQueuing" = [ "Win32_System" ];
"Win32_System_MixedReality" = [ "Win32_System" ];
"Win32_System_Mmc" = [ "Win32_System" ];
"Win32_System_Ole" = [ "Win32_System" ];
"Win32_System_ParentalControls" = [ "Win32_System" ];
"Win32_System_PasswordManagement" = [ "Win32_System" ];
"Win32_System_Performance" = [ "Win32_System" ];
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
"Win32_System_Pipes" = [ "Win32_System" ];
"Win32_System_Power" = [ "Win32_System" ];
"Win32_System_ProcessStatus" = [ "Win32_System" ];
"Win32_System_RealTimeCommunications" = [ "Win32_System" ];
"Win32_System_Recovery" = [ "Win32_System" ];
"Win32_System_Registry" = [ "Win32_System" ];
"Win32_System_RemoteAssistance" = [ "Win32_System" ];
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
"Win32_System_RemoteManagement" = [ "Win32_System" ];
"Win32_System_RestartManager" = [ "Win32_System" ];
"Win32_System_Restore" = [ "Win32_System" ];
"Win32_System_Rpc" = [ "Win32_System" ];
"Win32_System_Search" = [ "Win32_System" ];
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
"Win32_System_SecurityCenter" = [ "Win32_System" ];
"Win32_System_ServerBackup" = [ "Win32_System" ];
"Win32_System_Services" = [ "Win32_System" ];
"Win32_System_SettingsManagementInfrastructure" = [ "Win32_System" ];
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
"Win32_System_Shutdown" = [ "Win32_System" ];
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
"Win32_System_SystemInformation" = [ "Win32_System" ];
"Win32_System_SystemServices" = [ "Win32_System" ];
"Win32_System_TaskScheduler" = [ "Win32_System" ];
"Win32_System_Threading" = [ "Win32_System" ];
"Win32_System_Time" = [ "Win32_System" ];
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
"Win32_System_UpdateAgent" = [ "Win32_System" ];
"Win32_System_UpdateAssessment" = [ "Win32_System" ];
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
"Win32_System_WindowsSync" = [ "Win32_System" ];
"Win32_System_Wmi" = [ "Win32_System" ];
"Win32_UI" = [ "Win32" ];
"Win32_UI_Accessibility" = [ "Win32_UI" ];
"Win32_UI_Animation" = [ "Win32_UI" ];
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
"Win32_UI_Controls" = [ "Win32_UI" ];
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
"Win32_UI_Controls_RichEdit" = [ "Win32_UI_Controls" ];
"Win32_UI_HiDpi" = [ "Win32_UI" ];
"Win32_UI_Input" = [ "Win32_UI" ];
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Ink" = [ "Win32_UI_Input" ];
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Radial" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
"Win32_UI_LegacyWindowsEnvironmentFeatures" = [ "Win32_UI" ];
"Win32_UI_Magnification" = [ "Win32_UI" ];
"Win32_UI_Notifications" = [ "Win32_UI" ];
"Win32_UI_Ribbon" = [ "Win32_UI" ];
"Win32_UI_Shell" = [ "Win32_UI" ];
"Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
"Win32_UI_TabletPC" = [ "Win32_UI" ];
"Win32_UI_TextServices" = [ "Win32_UI" ];
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
"Win32_UI_Wpf" = [ "Win32_UI" ];
"Win32_Web" = [ "Win32" ];
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
};
resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_Security" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "Win32_System_Registry" "Win32_System_Time" "default" ];
};
"windows-sys 0.52.0" = rec {
crateName = "windows-sys";
version = "0.52.0";
edition = "2021";
sha256 = "0gd3v4ji88490zgb6b5mq5zgbvwv7zx1ibn8v3x83rwcdbryaar8";
libName = "windows_sys";
authors = [
"Microsoft"
];
dependencies = [
{
name = "windows-targets";
packageId = "windows-targets 0.52.6";
}
];
features = {
"Wdk_Foundation" = [ "Wdk" ];
"Wdk_Graphics" = [ "Wdk" ];
"Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
"Wdk_Storage" = [ "Wdk" ];
"Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
"Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
"Wdk_System" = [ "Wdk" ];
"Wdk_System_IO" = [ "Wdk_System" ];
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
"Wdk_System_Registry" = [ "Wdk_System" ];
"Wdk_System_SystemInformation" = [ "Wdk_System" ];
"Wdk_System_SystemServices" = [ "Wdk_System" ];
"Wdk_System_Threading" = [ "Wdk_System" ];
"Win32_Data" = [ "Win32" ];
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
"Win32_Devices" = [ "Win32" ];
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
"Win32_Devices_Communication" = [ "Win32_Devices" ];
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
"Win32_Devices_Display" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
"Win32_Devices_Fax" = [ "Win32_Devices" ];
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
"Win32_Devices_Properties" = [ "Win32_Devices" ];
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
"Win32_Devices_Usb" = [ "Win32_Devices" ];
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
"Win32_Foundation" = [ "Win32" ];
"Win32_Gaming" = [ "Win32" ];
"Win32_Globalization" = [ "Win32" ];
"Win32_Graphics" = [ "Win32" ];
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
"Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
"Win32_Management" = [ "Win32" ];
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
"Win32_Media" = [ "Win32" ];
"Win32_Media_Audio" = [ "Win32_Media" ];
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
"Win32_Media_Multimedia" = [ "Win32_Media" ];
"Win32_Media_Streaming" = [ "Win32_Media" ];
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
"Win32_NetworkManagement" = [ "Win32" ];
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
"Win32_Networking" = [ "Win32" ];
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
"Win32_Security" = [ "Win32" ];
"Win32_Security_AppLocker" = [ "Win32_Security" ];
"Win32_Security_Authentication" = [ "Win32_Security" ];
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
"Win32_Security_Authorization" = [ "Win32_Security" ];
"Win32_Security_Credentials" = [ "Win32_Security" ];
"Win32_Security_Cryptography" = [ "Win32_Security" ];
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
"Win32_Security_Isolation" = [ "Win32_Security" ];
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
"Win32_Security_WinTrust" = [ "Win32_Security" ];
"Win32_Security_WinWlx" = [ "Win32_Security" ];
"Win32_Storage" = [ "Win32" ];
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
"Win32_Storage_Compression" = [ "Win32_Storage" ];
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
"Win32_Storage_Jet" = [ "Win32_Storage" ];
"Win32_Storage_Nvme" = [ "Win32_Storage" ];
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
"Win32_Storage_Xps" = [ "Win32_Storage" ];
"Win32_System" = [ "Win32" ];
"Win32_System_AddressBook" = [ "Win32_System" ];
"Win32_System_Antimalware" = [ "Win32_System" ];
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
"Win32_System_ClrHosting" = [ "Win32_System" ];
"Win32_System_Com" = [ "Win32_System" ];
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
"Win32_System_ComponentServices" = [ "Win32_System" ];
"Win32_System_Console" = [ "Win32_System" ];
"Win32_System_CorrelationVector" = [ "Win32_System" ];
"Win32_System_DataExchange" = [ "Win32_System" ];
"Win32_System_DeploymentServices" = [ "Win32_System" ];
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
"Win32_System_Diagnostics" = [ "Win32_System" ];
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
"Win32_System_Environment" = [ "Win32_System" ];
"Win32_System_ErrorReporting" = [ "Win32_System" ];
"Win32_System_EventCollector" = [ "Win32_System" ];
"Win32_System_EventLog" = [ "Win32_System" ];
"Win32_System_EventNotificationService" = [ "Win32_System" ];
"Win32_System_GroupPolicy" = [ "Win32_System" ];
"Win32_System_HostCompute" = [ "Win32_System" ];
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
"Win32_System_Hypervisor" = [ "Win32_System" ];
"Win32_System_IO" = [ "Win32_System" ];
"Win32_System_Iis" = [ "Win32_System" ];
"Win32_System_Ioctl" = [ "Win32_System" ];
"Win32_System_JobObjects" = [ "Win32_System" ];
"Win32_System_Js" = [ "Win32_System" ];
"Win32_System_Kernel" = [ "Win32_System" ];
"Win32_System_LibraryLoader" = [ "Win32_System" ];
"Win32_System_Mailslots" = [ "Win32_System" ];
"Win32_System_Mapi" = [ "Win32_System" ];
"Win32_System_Memory" = [ "Win32_System" ];
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
"Win32_System_MessageQueuing" = [ "Win32_System" ];
"Win32_System_MixedReality" = [ "Win32_System" ];
"Win32_System_Ole" = [ "Win32_System" ];
"Win32_System_PasswordManagement" = [ "Win32_System" ];
"Win32_System_Performance" = [ "Win32_System" ];
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
"Win32_System_Pipes" = [ "Win32_System" ];
"Win32_System_Power" = [ "Win32_System" ];
"Win32_System_ProcessStatus" = [ "Win32_System" ];
"Win32_System_Recovery" = [ "Win32_System" ];
"Win32_System_Registry" = [ "Win32_System" ];
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
"Win32_System_RemoteManagement" = [ "Win32_System" ];
"Win32_System_RestartManager" = [ "Win32_System" ];
"Win32_System_Restore" = [ "Win32_System" ];
"Win32_System_Rpc" = [ "Win32_System" ];
"Win32_System_Search" = [ "Win32_System" ];
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
"Win32_System_SecurityCenter" = [ "Win32_System" ];
"Win32_System_Services" = [ "Win32_System" ];
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
"Win32_System_Shutdown" = [ "Win32_System" ];
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
"Win32_System_SystemInformation" = [ "Win32_System" ];
"Win32_System_SystemServices" = [ "Win32_System" ];
"Win32_System_Threading" = [ "Win32_System" ];
"Win32_System_Time" = [ "Win32_System" ];
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
"Win32_System_Variant" = [ "Win32_System" ];
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
"Win32_System_Wmi" = [ "Win32_System" ];
"Win32_UI" = [ "Win32" ];
"Win32_UI_Accessibility" = [ "Win32_UI" ];
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
"Win32_UI_Controls" = [ "Win32_UI" ];
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
"Win32_UI_HiDpi" = [ "Win32_UI" ];
"Win32_UI_Input" = [ "Win32_UI" ];
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
"Win32_UI_Magnification" = [ "Win32_UI" ];
"Win32_UI_Shell" = [ "Win32_UI" ];
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
"Win32_UI_TabletPC" = [ "Win32_UI" ];
"Win32_UI_TextServices" = [ "Win32_UI" ];
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
"Win32_Web" = [ "Win32" ];
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
};
resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_Networking" "Win32_Networking_WinSock" "Win32_System" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
};
"windows-sys 0.59.0" = rec {
crateName = "windows-sys";
version = "0.59.0";
edition = "2021";
sha256 = "0fw5672ziw8b3zpmnbp9pdv1famk74f1l9fcbc3zsrzdg56vqf0y";
libName = "windows_sys";
authors = [
"Microsoft"
];
dependencies = [
{
name = "windows-targets";
packageId = "windows-targets 0.52.6";
}
];
features = {
"Wdk" = [ "Win32_Foundation" ];
"Wdk_Devices" = [ "Wdk" ];
"Wdk_Devices_Bluetooth" = [ "Wdk_Devices" ];
"Wdk_Devices_HumanInterfaceDevice" = [ "Wdk_Devices" ];
"Wdk_Foundation" = [ "Wdk" ];
"Wdk_Graphics" = [ "Wdk" ];
"Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
"Wdk_NetworkManagement" = [ "Wdk" ];
"Wdk_NetworkManagement_Ndis" = [ "Wdk_NetworkManagement" ];
"Wdk_NetworkManagement_WindowsFilteringPlatform" = [ "Wdk_NetworkManagement" ];
"Wdk_Storage" = [ "Wdk" ];
"Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
"Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
"Wdk_System" = [ "Wdk" ];
"Wdk_System_IO" = [ "Wdk_System" ];
"Wdk_System_Memory" = [ "Wdk_System" ];
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
"Wdk_System_Registry" = [ "Wdk_System" ];
"Wdk_System_SystemInformation" = [ "Wdk_System" ];
"Wdk_System_SystemServices" = [ "Wdk_System" ];
"Wdk_System_Threading" = [ "Wdk_System" ];
"Win32" = [ "Win32_Foundation" ];
"Win32_Data" = [ "Win32" ];
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
"Win32_Devices" = [ "Win32" ];
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
"Win32_Devices_Communication" = [ "Win32_Devices" ];
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
"Win32_Devices_Display" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
"Win32_Devices_Fax" = [ "Win32_Devices" ];
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
"Win32_Devices_Properties" = [ "Win32_Devices" ];
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
"Win32_Devices_Usb" = [ "Win32_Devices" ];
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
"Win32_Foundation" = [ "Win32" ];
"Win32_Gaming" = [ "Win32" ];
"Win32_Globalization" = [ "Win32" ];
"Win32_Graphics" = [ "Win32" ];
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
"Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
"Win32_Management" = [ "Win32" ];
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
"Win32_Media" = [ "Win32" ];
"Win32_Media_Audio" = [ "Win32_Media" ];
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
"Win32_Media_Multimedia" = [ "Win32_Media" ];
"Win32_Media_Streaming" = [ "Win32_Media" ];
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
"Win32_NetworkManagement" = [ "Win32" ];
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
"Win32_Networking" = [ "Win32" ];
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
"Win32_Security" = [ "Win32" ];
"Win32_Security_AppLocker" = [ "Win32_Security" ];
"Win32_Security_Authentication" = [ "Win32_Security" ];
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
"Win32_Security_Authorization" = [ "Win32_Security" ];
"Win32_Security_Credentials" = [ "Win32_Security" ];
"Win32_Security_Cryptography" = [ "Win32_Security" ];
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
"Win32_Security_Isolation" = [ "Win32_Security" ];
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
"Win32_Security_WinTrust" = [ "Win32_Security" ];
"Win32_Security_WinWlx" = [ "Win32_Security" ];
"Win32_Storage" = [ "Win32" ];
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
"Win32_Storage_Compression" = [ "Win32_Storage" ];
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
"Win32_Storage_Jet" = [ "Win32_Storage" ];
"Win32_Storage_Nvme" = [ "Win32_Storage" ];
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
"Win32_Storage_Xps" = [ "Win32_Storage" ];
"Win32_System" = [ "Win32" ];
"Win32_System_AddressBook" = [ "Win32_System" ];
"Win32_System_Antimalware" = [ "Win32_System" ];
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
"Win32_System_ClrHosting" = [ "Win32_System" ];
"Win32_System_Com" = [ "Win32_System" ];
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
"Win32_System_ComponentServices" = [ "Win32_System" ];
"Win32_System_Console" = [ "Win32_System" ];
"Win32_System_CorrelationVector" = [ "Win32_System" ];
"Win32_System_DataExchange" = [ "Win32_System" ];
"Win32_System_DeploymentServices" = [ "Win32_System" ];
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
"Win32_System_Diagnostics" = [ "Win32_System" ];
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_TraceLogging" = [ "Win32_System_Diagnostics" ];
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
"Win32_System_Environment" = [ "Win32_System" ];
"Win32_System_ErrorReporting" = [ "Win32_System" ];
"Win32_System_EventCollector" = [ "Win32_System" ];
"Win32_System_EventLog" = [ "Win32_System" ];
"Win32_System_EventNotificationService" = [ "Win32_System" ];
"Win32_System_GroupPolicy" = [ "Win32_System" ];
"Win32_System_HostCompute" = [ "Win32_System" ];
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
"Win32_System_Hypervisor" = [ "Win32_System" ];
"Win32_System_IO" = [ "Win32_System" ];
"Win32_System_Iis" = [ "Win32_System" ];
"Win32_System_Ioctl" = [ "Win32_System" ];
"Win32_System_JobObjects" = [ "Win32_System" ];
"Win32_System_Js" = [ "Win32_System" ];
"Win32_System_Kernel" = [ "Win32_System" ];
"Win32_System_LibraryLoader" = [ "Win32_System" ];
"Win32_System_Mailslots" = [ "Win32_System" ];
"Win32_System_Mapi" = [ "Win32_System" ];
"Win32_System_Memory" = [ "Win32_System" ];
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
"Win32_System_MessageQueuing" = [ "Win32_System" ];
"Win32_System_MixedReality" = [ "Win32_System" ];
"Win32_System_Ole" = [ "Win32_System" ];
"Win32_System_PasswordManagement" = [ "Win32_System" ];
"Win32_System_Performance" = [ "Win32_System" ];
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
"Win32_System_Pipes" = [ "Win32_System" ];
"Win32_System_Power" = [ "Win32_System" ];
"Win32_System_ProcessStatus" = [ "Win32_System" ];
"Win32_System_Recovery" = [ "Win32_System" ];
"Win32_System_Registry" = [ "Win32_System" ];
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
"Win32_System_RemoteManagement" = [ "Win32_System" ];
"Win32_System_RestartManager" = [ "Win32_System" ];
"Win32_System_Restore" = [ "Win32_System" ];
"Win32_System_Rpc" = [ "Win32_System" ];
"Win32_System_Search" = [ "Win32_System" ];
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
"Win32_System_SecurityCenter" = [ "Win32_System" ];
"Win32_System_Services" = [ "Win32_System" ];
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
"Win32_System_Shutdown" = [ "Win32_System" ];
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
"Win32_System_SystemInformation" = [ "Win32_System" ];
"Win32_System_SystemServices" = [ "Win32_System" ];
"Win32_System_Threading" = [ "Win32_System" ];
"Win32_System_Time" = [ "Win32_System" ];
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
"Win32_System_Variant" = [ "Win32_System" ];
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
"Win32_System_Wmi" = [ "Win32_System" ];
"Win32_UI" = [ "Win32" ];
"Win32_UI_Accessibility" = [ "Win32_UI" ];
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
"Win32_UI_Controls" = [ "Win32_UI" ];
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
"Win32_UI_HiDpi" = [ "Win32_UI" ];
"Win32_UI_Input" = [ "Win32_UI" ];
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
"Win32_UI_Magnification" = [ "Win32_UI" ];
"Win32_UI_Shell" = [ "Win32_UI" ];
"Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
"Win32_UI_TabletPC" = [ "Win32_UI" ];
"Win32_UI_TextServices" = [ "Win32_UI" ];
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
"Win32_Web" = [ "Win32" ];
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
};
resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_NetworkManagement" "Win32_NetworkManagement_IpHelper" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Console" "Win32_System_Threading" "Win32_UI" "Win32_UI_Input" "Win32_UI_Input_KeyboardAndMouse" "default" ];
};
"windows-sys 0.60.2" = rec {
crateName = "windows-sys";
version = "0.60.2";
edition = "2021";
sha256 = "1jrbc615ihqnhjhxplr2kw7rasrskv9wj3lr80hgfd42sbj01xgj";
libName = "windows_sys";
authors = [
"Microsoft"
];
dependencies = [
{
name = "windows-targets";
packageId = "windows-targets 0.53.5";
usesDefaultFeatures = false;
}
];
features = {
"Wdk" = [ "Win32_Foundation" ];
"Wdk_Devices" = [ "Wdk" ];
"Wdk_Devices_Bluetooth" = [ "Wdk_Devices" ];
"Wdk_Devices_HumanInterfaceDevice" = [ "Wdk_Devices" ];
"Wdk_Foundation" = [ "Wdk" ];
"Wdk_Graphics" = [ "Wdk" ];
"Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
"Wdk_NetworkManagement" = [ "Wdk" ];
"Wdk_NetworkManagement_Ndis" = [ "Wdk_NetworkManagement" ];
"Wdk_NetworkManagement_WindowsFilteringPlatform" = [ "Wdk_NetworkManagement" ];
"Wdk_Storage" = [ "Wdk" ];
"Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
"Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
"Wdk_System" = [ "Wdk" ];
"Wdk_System_IO" = [ "Wdk_System" ];
"Wdk_System_Memory" = [ "Wdk_System" ];
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
"Wdk_System_Registry" = [ "Wdk_System" ];
"Wdk_System_SystemInformation" = [ "Wdk_System" ];
"Wdk_System_SystemServices" = [ "Wdk_System" ];
"Wdk_System_Threading" = [ "Wdk_System" ];
"Win32" = [ "Win32_Foundation" ];
"Win32_Data" = [ "Win32" ];
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
"Win32_Devices" = [ "Win32" ];
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
"Win32_Devices_Beep" = [ "Win32_Devices" ];
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
"Win32_Devices_Cdrom" = [ "Win32_Devices" ];
"Win32_Devices_Communication" = [ "Win32_Devices" ];
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
"Win32_Devices_Display" = [ "Win32_Devices" ];
"Win32_Devices_Dvd" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
"Win32_Devices_Fax" = [ "Win32_Devices" ];
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
"Win32_Devices_Nfc" = [ "Win32_Devices" ];
"Win32_Devices_Nfp" = [ "Win32_Devices" ];
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
"Win32_Devices_Properties" = [ "Win32_Devices" ];
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
"Win32_Devices_Usb" = [ "Win32_Devices" ];
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
"Win32_Foundation" = [ "Win32" ];
"Win32_Gaming" = [ "Win32" ];
"Win32_Globalization" = [ "Win32" ];
"Win32_Graphics" = [ "Win32" ];
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
"Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
"Win32_Management" = [ "Win32" ];
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
"Win32_Media" = [ "Win32" ];
"Win32_Media_Audio" = [ "Win32_Media" ];
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
"Win32_Media_Multimedia" = [ "Win32_Media" ];
"Win32_Media_Streaming" = [ "Win32_Media" ];
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
"Win32_NetworkManagement" = [ "Win32" ];
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
"Win32_Networking" = [ "Win32" ];
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
"Win32_Security" = [ "Win32" ];
"Win32_Security_AppLocker" = [ "Win32_Security" ];
"Win32_Security_Authentication" = [ "Win32_Security" ];
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
"Win32_Security_Authorization" = [ "Win32_Security" ];
"Win32_Security_Credentials" = [ "Win32_Security" ];
"Win32_Security_Cryptography" = [ "Win32_Security" ];
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
"Win32_Security_Isolation" = [ "Win32_Security" ];
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
"Win32_Security_WinTrust" = [ "Win32_Security" ];
"Win32_Security_WinWlx" = [ "Win32_Security" ];
"Win32_Storage" = [ "Win32" ];
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
"Win32_Storage_Compression" = [ "Win32_Storage" ];
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
"Win32_Storage_Jet" = [ "Win32_Storage" ];
"Win32_Storage_Nvme" = [ "Win32_Storage" ];
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
"Win32_Storage_Xps" = [ "Win32_Storage" ];
"Win32_System" = [ "Win32" ];
"Win32_System_AddressBook" = [ "Win32_System" ];
"Win32_System_Antimalware" = [ "Win32_System" ];
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
"Win32_System_ClrHosting" = [ "Win32_System" ];
"Win32_System_Com" = [ "Win32_System" ];
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
"Win32_System_ComponentServices" = [ "Win32_System" ];
"Win32_System_Console" = [ "Win32_System" ];
"Win32_System_CorrelationVector" = [ "Win32_System" ];
"Win32_System_DataExchange" = [ "Win32_System" ];
"Win32_System_DeploymentServices" = [ "Win32_System" ];
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
"Win32_System_Diagnostics" = [ "Win32_System" ];
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_TraceLogging" = [ "Win32_System_Diagnostics" ];
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
"Win32_System_Environment" = [ "Win32_System" ];
"Win32_System_ErrorReporting" = [ "Win32_System" ];
"Win32_System_EventCollector" = [ "Win32_System" ];
"Win32_System_EventLog" = [ "Win32_System" ];
"Win32_System_EventNotificationService" = [ "Win32_System" ];
"Win32_System_GroupPolicy" = [ "Win32_System" ];
"Win32_System_HostCompute" = [ "Win32_System" ];
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
"Win32_System_Hypervisor" = [ "Win32_System" ];
"Win32_System_IO" = [ "Win32_System" ];
"Win32_System_Iis" = [ "Win32_System" ];
"Win32_System_Ioctl" = [ "Win32_System" ];
"Win32_System_JobObjects" = [ "Win32_System" ];
"Win32_System_Js" = [ "Win32_System" ];
"Win32_System_Kernel" = [ "Win32_System" ];
"Win32_System_LibraryLoader" = [ "Win32_System" ];
"Win32_System_Mailslots" = [ "Win32_System" ];
"Win32_System_Mapi" = [ "Win32_System" ];
"Win32_System_Memory" = [ "Win32_System" ];
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
"Win32_System_MessageQueuing" = [ "Win32_System" ];
"Win32_System_MixedReality" = [ "Win32_System" ];
"Win32_System_Ole" = [ "Win32_System" ];
"Win32_System_PasswordManagement" = [ "Win32_System" ];
"Win32_System_Performance" = [ "Win32_System" ];
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
"Win32_System_Pipes" = [ "Win32_System" ];
"Win32_System_Power" = [ "Win32_System" ];
"Win32_System_ProcessStatus" = [ "Win32_System" ];
"Win32_System_Recovery" = [ "Win32_System" ];
"Win32_System_Registry" = [ "Win32_System" ];
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
"Win32_System_RemoteManagement" = [ "Win32_System" ];
"Win32_System_RestartManager" = [ "Win32_System" ];
"Win32_System_Restore" = [ "Win32_System" ];
"Win32_System_Rpc" = [ "Win32_System" ];
"Win32_System_Search" = [ "Win32_System" ];
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
"Win32_System_SecurityCenter" = [ "Win32_System" ];
"Win32_System_Services" = [ "Win32_System" ];
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
"Win32_System_Shutdown" = [ "Win32_System" ];
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
"Win32_System_SystemInformation" = [ "Win32_System" ];
"Win32_System_SystemServices" = [ "Win32_System" ];
"Win32_System_Threading" = [ "Win32_System" ];
"Win32_System_Time" = [ "Win32_System" ];
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
"Win32_System_Variant" = [ "Win32_System" ];
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
"Win32_System_Wmi" = [ "Win32_System" ];
"Win32_UI" = [ "Win32" ];
"Win32_UI_Accessibility" = [ "Win32_UI" ];
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
"Win32_UI_Controls" = [ "Win32_UI" ];
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
"Win32_UI_HiDpi" = [ "Win32_UI" ];
"Win32_UI_Input" = [ "Win32_UI" ];
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
"Win32_UI_Magnification" = [ "Win32_UI" ];
"Win32_UI_Shell" = [ "Win32_UI" ];
"Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
"Win32_UI_TabletPC" = [ "Win32_UI" ];
"Win32_UI_TextServices" = [ "Win32_UI" ];
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
"Win32_Web" = [ "Win32" ];
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
};
resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Security_Credentials" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
};
"windows-sys 0.61.2" = rec {
crateName = "windows-sys";
version = "0.61.2";
edition = "2021";
sha256 = "1z7k3y9b6b5h52kid57lvmvm05362zv1v8w0gc7xyv5xphlp44xf";
libName = "windows_sys";
dependencies = [
{
name = "windows-link";
packageId = "windows-link";
usesDefaultFeatures = false;
}
];
features = {
"Wdk" = [ "Win32_Foundation" ];
"Wdk_Devices" = [ "Wdk" ];
"Wdk_Devices_Bluetooth" = [ "Wdk_Devices" ];
"Wdk_Devices_HumanInterfaceDevice" = [ "Wdk_Devices" ];
"Wdk_Foundation" = [ "Wdk" ];
"Wdk_Graphics" = [ "Wdk" ];
"Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
"Wdk_NetworkManagement" = [ "Wdk" ];
"Wdk_NetworkManagement_Ndis" = [ "Wdk_NetworkManagement" ];
"Wdk_NetworkManagement_WindowsFilteringPlatform" = [ "Wdk_NetworkManagement" ];
"Wdk_Storage" = [ "Wdk" ];
"Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
"Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
"Wdk_System" = [ "Wdk" ];
"Wdk_System_IO" = [ "Wdk_System" ];
"Wdk_System_Memory" = [ "Wdk_System" ];
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
"Wdk_System_Registry" = [ "Wdk_System" ];
"Wdk_System_SystemInformation" = [ "Wdk_System" ];
"Wdk_System_SystemServices" = [ "Wdk_System" ];
"Wdk_System_Threading" = [ "Wdk_System" ];
"Win32" = [ "Win32_Foundation" ];
"Win32_Data" = [ "Win32" ];
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
"Win32_Devices" = [ "Win32" ];
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
"Win32_Devices_Beep" = [ "Win32_Devices" ];
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
"Win32_Devices_Cdrom" = [ "Win32_Devices" ];
"Win32_Devices_Communication" = [ "Win32_Devices" ];
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
"Win32_Devices_Display" = [ "Win32_Devices" ];
"Win32_Devices_Dvd" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
"Win32_Devices_Fax" = [ "Win32_Devices" ];
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
"Win32_Devices_Nfc" = [ "Win32_Devices" ];
"Win32_Devices_Nfp" = [ "Win32_Devices" ];
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
"Win32_Devices_Properties" = [ "Win32_Devices" ];
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
"Win32_Devices_Usb" = [ "Win32_Devices" ];
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
"Win32_Foundation" = [ "Win32" ];
"Win32_Gaming" = [ "Win32" ];
"Win32_Globalization" = [ "Win32" ];
"Win32_Graphics" = [ "Win32" ];
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
"Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
"Win32_Management" = [ "Win32" ];
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
"Win32_Media" = [ "Win32" ];
"Win32_Media_Audio" = [ "Win32_Media" ];
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
"Win32_Media_Multimedia" = [ "Win32_Media" ];
"Win32_Media_Streaming" = [ "Win32_Media" ];
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
"Win32_NetworkManagement" = [ "Win32" ];
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
"Win32_Networking" = [ "Win32" ];
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
"Win32_Security" = [ "Win32" ];
"Win32_Security_AppLocker" = [ "Win32_Security" ];
"Win32_Security_Authentication" = [ "Win32_Security" ];
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
"Win32_Security_Authorization" = [ "Win32_Security" ];
"Win32_Security_Credentials" = [ "Win32_Security" ];
"Win32_Security_Cryptography" = [ "Win32_Security" ];
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
"Win32_Security_Isolation" = [ "Win32_Security" ];
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
"Win32_Security_WinTrust" = [ "Win32_Security" ];
"Win32_Security_WinWlx" = [ "Win32_Security" ];
"Win32_Storage" = [ "Win32" ];
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
"Win32_Storage_Compression" = [ "Win32_Storage" ];
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
"Win32_Storage_Jet" = [ "Win32_Storage" ];
"Win32_Storage_Nvme" = [ "Win32_Storage" ];
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
"Win32_Storage_Xps" = [ "Win32_Storage" ];
"Win32_System" = [ "Win32" ];
"Win32_System_AddressBook" = [ "Win32_System" ];
"Win32_System_Antimalware" = [ "Win32_System" ];
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
"Win32_System_ClrHosting" = [ "Win32_System" ];
"Win32_System_Com" = [ "Win32_System" ];
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
"Win32_System_ComponentServices" = [ "Win32_System" ];
"Win32_System_Console" = [ "Win32_System" ];
"Win32_System_CorrelationVector" = [ "Win32_System" ];
"Win32_System_DataExchange" = [ "Win32_System" ];
"Win32_System_DeploymentServices" = [ "Win32_System" ];
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
"Win32_System_Diagnostics" = [ "Win32_System" ];
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_TraceLogging" = [ "Win32_System_Diagnostics" ];
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
"Win32_System_Environment" = [ "Win32_System" ];
"Win32_System_ErrorReporting" = [ "Win32_System" ];
"Win32_System_EventCollector" = [ "Win32_System" ];
"Win32_System_EventLog" = [ "Win32_System" ];
"Win32_System_EventNotificationService" = [ "Win32_System" ];
"Win32_System_GroupPolicy" = [ "Win32_System" ];
"Win32_System_HostCompute" = [ "Win32_System" ];
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
"Win32_System_Hypervisor" = [ "Win32_System" ];
"Win32_System_IO" = [ "Win32_System" ];
"Win32_System_Iis" = [ "Win32_System" ];
"Win32_System_Ioctl" = [ "Win32_System" ];
"Win32_System_JobObjects" = [ "Win32_System" ];
"Win32_System_Js" = [ "Win32_System" ];
"Win32_System_Kernel" = [ "Win32_System" ];
"Win32_System_LibraryLoader" = [ "Win32_System" ];
"Win32_System_Mailslots" = [ "Win32_System" ];
"Win32_System_Mapi" = [ "Win32_System" ];
"Win32_System_Memory" = [ "Win32_System" ];
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
"Win32_System_MessageQueuing" = [ "Win32_System" ];
"Win32_System_MixedReality" = [ "Win32_System" ];
"Win32_System_Ole" = [ "Win32_System" ];
"Win32_System_PasswordManagement" = [ "Win32_System" ];
"Win32_System_Performance" = [ "Win32_System" ];
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
"Win32_System_Pipes" = [ "Win32_System" ];
"Win32_System_Power" = [ "Win32_System" ];
"Win32_System_ProcessStatus" = [ "Win32_System" ];
"Win32_System_Recovery" = [ "Win32_System" ];
"Win32_System_Registry" = [ "Win32_System" ];
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
"Win32_System_RemoteManagement" = [ "Win32_System" ];
"Win32_System_RestartManager" = [ "Win32_System" ];
"Win32_System_Restore" = [ "Win32_System" ];
"Win32_System_Rpc" = [ "Win32_System" ];
"Win32_System_Search" = [ "Win32_System" ];
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
"Win32_System_SecurityCenter" = [ "Win32_System" ];
"Win32_System_Services" = [ "Win32_System" ];
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
"Win32_System_Shutdown" = [ "Win32_System" ];
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
"Win32_System_SystemInformation" = [ "Win32_System" ];
"Win32_System_SystemServices" = [ "Win32_System" ];
"Win32_System_Threading" = [ "Win32_System" ];
"Win32_System_Time" = [ "Win32_System" ];
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
"Win32_System_Variant" = [ "Win32_System" ];
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
"Win32_System_Wmi" = [ "Win32_System" ];
"Win32_UI" = [ "Win32" ];
"Win32_UI_Accessibility" = [ "Win32_UI" ];
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
"Win32_UI_Controls" = [ "Win32_UI" ];
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
"Win32_UI_HiDpi" = [ "Win32_UI" ];
"Win32_UI_Input" = [ "Win32_UI" ];
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
"Win32_UI_Magnification" = [ "Win32_UI" ];
"Win32_UI_Shell" = [ "Win32_UI" ];
"Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
"Win32_UI_TabletPC" = [ "Win32_UI" ];
"Win32_UI_TextServices" = [ "Win32_UI" ];
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
"Win32_Web" = [ "Win32" ];
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
};
resolvedDefaultFeatures = [ "Wdk" "Wdk_Foundation" "Wdk_Storage" "Wdk_Storage_FileSystem" "Wdk_System" "Wdk_System_IO" "Win32" "Win32_Foundation" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Security_Authentication" "Win32_Security_Authentication_Identity" "Win32_Security_Credentials" "Win32_Security_Cryptography" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Com" "Win32_System_Console" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "Win32_System_IO" "Win32_System_LibraryLoader" "Win32_System_Memory" "Win32_System_Pipes" "Win32_System_SystemInformation" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_System_Time" "Win32_System_WindowsProgramming" "Win32_UI" "Win32_UI_Shell" "default" ];
};
"windows-targets 0.42.2" = rec {
crateName = "windows-targets";
version = "0.42.2";
edition = "2018";
sha256 = "0wfhnib2fisxlx8c507dbmh97kgij4r6kcxdi0f9nk6l1k080lcf";
libName = "windows_targets";
authors = [
"Microsoft"
];
dependencies = [
{
name = "windows_aarch64_gnullvm";
packageId = "windows_aarch64_gnullvm 0.42.2";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-gnullvm");
}
{
name = "windows_aarch64_msvc";
packageId = "windows_aarch64_msvc 0.42.2";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-msvc");
}
{
name = "windows_aarch64_msvc";
packageId = "windows_aarch64_msvc 0.42.2";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-uwp-windows-msvc");
}
{
name = "windows_i686_gnu";
packageId = "windows_i686_gnu 0.42.2";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnu");
}
{
name = "windows_i686_gnu";
packageId = "windows_i686_gnu 0.42.2";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-uwp-windows-gnu");
}
{
name = "windows_i686_msvc";
packageId = "windows_i686_msvc 0.42.2";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-msvc");
}
{
name = "windows_i686_msvc";
packageId = "windows_i686_msvc 0.42.2";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-uwp-windows-msvc");
}
{
name = "windows_x86_64_gnu";
packageId = "windows_x86_64_gnu 0.42.2";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnu");
}
{
name = "windows_x86_64_gnu";
packageId = "windows_x86_64_gnu 0.42.2";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-uwp-windows-gnu");
}
{
name = "windows_x86_64_gnullvm";
packageId = "windows_x86_64_gnullvm 0.42.2";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnullvm");
}
{
name = "windows_x86_64_msvc";
packageId = "windows_x86_64_msvc 0.42.2";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-msvc");
}
{
name = "windows_x86_64_msvc";
packageId = "windows_x86_64_msvc 0.42.2";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-uwp-windows-msvc");
}
];
};
"windows-targets 0.48.5" = rec {
crateName = "windows-targets";
version = "0.48.5";
edition = "2018";
sha256 = "034ljxqshifs1lan89xwpcy1hp0lhdh4b5n0d2z4fwjx2piacbws";
libName = "windows_targets";
authors = [
"Microsoft"
];
dependencies = [
{
name = "windows_aarch64_gnullvm";
packageId = "windows_aarch64_gnullvm 0.48.5";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-gnullvm");
}
{
name = "windows_aarch64_msvc";
packageId = "windows_aarch64_msvc 0.48.5";
target = { target, features }: (("aarch64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
}
{
name = "windows_i686_gnu";
packageId = "windows_i686_gnu 0.48.5";
target = { target, features }: (("x86" == target."arch" or null) && ("gnu" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
}
{
name = "windows_i686_msvc";
packageId = "windows_i686_msvc 0.48.5";
target = { target, features }: (("x86" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
}
{
name = "windows_x86_64_gnu";
packageId = "windows_x86_64_gnu 0.48.5";
target = { target, features }: (("x86_64" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
}
{
name = "windows_x86_64_gnullvm";
packageId = "windows_x86_64_gnullvm 0.48.5";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnullvm");
}
{
name = "windows_x86_64_msvc";
packageId = "windows_x86_64_msvc 0.48.5";
target = { target, features }: (("x86_64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
}
];
};
"windows-targets 0.52.6" = rec {
crateName = "windows-targets";
version = "0.52.6";
edition = "2021";
sha256 = "0wwrx625nwlfp7k93r2rra568gad1mwd888h1jwnl0vfg5r4ywlv";
libName = "windows_targets";
authors = [
"Microsoft"
];
dependencies = [
{
name = "windows_aarch64_gnullvm";
packageId = "windows_aarch64_gnullvm 0.52.6";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-gnullvm");
}
{
name = "windows_aarch64_msvc";
packageId = "windows_aarch64_msvc 0.52.6";
target = { target, features }: (("aarch64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
}
{
name = "windows_i686_gnu";
packageId = "windows_i686_gnu 0.52.6";
target = { target, features }: (("x86" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
}
{
name = "windows_i686_gnullvm";
packageId = "windows_i686_gnullvm 0.52.6";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnullvm");
}
{
name = "windows_i686_msvc";
packageId = "windows_i686_msvc 0.52.6";
target = { target, features }: (("x86" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
}
{
name = "windows_x86_64_gnu";
packageId = "windows_x86_64_gnu 0.52.6";
target = { target, features }: (("x86_64" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
}
{
name = "windows_x86_64_gnullvm";
packageId = "windows_x86_64_gnullvm 0.52.6";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnullvm");
}
{
name = "windows_x86_64_msvc";
packageId = "windows_x86_64_msvc 0.52.6";
target = { target, features }: ((("x86_64" == target."arch" or null) || ("arm64ec" == target."arch" or null)) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
}
];
};
"windows-targets 0.53.5" = rec {
crateName = "windows-targets";
version = "0.53.5";
edition = "2021";
sha256 = "1wv9j2gv3l6wj3gkw5j1kr6ymb5q6dfc42yvydjhv3mqa7szjia9";
libName = "windows_targets";
dependencies = [
{
name = "windows-link";
packageId = "windows-link";
usesDefaultFeatures = false;
target = { target, features }: (target."windows_raw_dylib" or false);
}
{
name = "windows_aarch64_gnullvm";
packageId = "windows_aarch64_gnullvm 0.53.1";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-gnullvm");
}
{
name = "windows_aarch64_msvc";
packageId = "windows_aarch64_msvc 0.53.1";
target = { target, features }: (("aarch64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
}
{
name = "windows_i686_gnu";
packageId = "windows_i686_gnu 0.53.1";
target = { target, features }: (("x86" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
}
{
name = "windows_i686_gnullvm";
packageId = "windows_i686_gnullvm 0.53.1";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnullvm");
}
{
name = "windows_i686_msvc";
packageId = "windows_i686_msvc 0.53.1";
target = { target, features }: (("x86" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
}
{
name = "windows_x86_64_gnu";
packageId = "windows_x86_64_gnu 0.53.1";
target = { target, features }: (("x86_64" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
}
{
name = "windows_x86_64_gnullvm";
packageId = "windows_x86_64_gnullvm 0.53.1";
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnullvm");
}
{
name = "windows_x86_64_msvc";
packageId = "windows_x86_64_msvc 0.53.1";
target = { target, features }: ((("x86_64" == target."arch" or null) || ("arm64ec" == target."arch" or null)) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
}
];
};
"windows_aarch64_gnullvm 0.42.2" = rec {
crateName = "windows_aarch64_gnullvm";
version = "0.42.2";
edition = "2018";
sha256 = "1y4q0qmvl0lvp7syxvfykafvmwal5hrjb4fmv04bqs0bawc52yjr";
authors = [
"Microsoft"
];
};
"windows_aarch64_gnullvm 0.48.5" = rec {
crateName = "windows_aarch64_gnullvm";
version = "0.48.5";
edition = "2018";
sha256 = "1n05v7qblg1ci3i567inc7xrkmywczxrs1z3lj3rkkxw18py6f1b";
authors = [
"Microsoft"
];
};
"windows_aarch64_gnullvm 0.52.6" = rec {
crateName = "windows_aarch64_gnullvm";
version = "0.52.6";
edition = "2021";
sha256 = "1lrcq38cr2arvmz19v32qaggvj8bh1640mdm9c2fr877h0hn591j";
authors = [
"Microsoft"
];
};
"windows_aarch64_gnullvm 0.53.1" = rec {
crateName = "windows_aarch64_gnullvm";
version = "0.53.1";
edition = "2021";
sha256 = "0lqvdm510mka9w26vmga7hbkmrw9glzc90l4gya5qbxlm1pl3n59";
};
"windows_aarch64_msvc 0.42.2" = rec {
crateName = "windows_aarch64_msvc";
version = "0.42.2";
edition = "2018";
sha256 = "0hsdikjl5sa1fva5qskpwlxzpc5q9l909fpl1w6yy1hglrj8i3p0";
authors = [
"Microsoft"
];
};
"windows_aarch64_msvc 0.48.5" = rec {
crateName = "windows_aarch64_msvc";
version = "0.48.5";
edition = "2018";
sha256 = "1g5l4ry968p73g6bg6jgyvy9lb8fyhcs54067yzxpcpkf44k2dfw";
authors = [
"Microsoft"
];
};
"windows_aarch64_msvc 0.52.6" = rec {
crateName = "windows_aarch64_msvc";
version = "0.52.6";
edition = "2021";
sha256 = "0sfl0nysnz32yyfh773hpi49b1q700ah6y7sacmjbqjjn5xjmv09";
authors = [
"Microsoft"
];
};
"windows_aarch64_msvc 0.53.1" = rec {
crateName = "windows_aarch64_msvc";
version = "0.53.1";
edition = "2021";
sha256 = "01jh2adlwx043rji888b22whx4bm8alrk3khjpik5xn20kl85mxr";
};
"windows_i686_gnu 0.42.2" = rec {
crateName = "windows_i686_gnu";
version = "0.42.2";
edition = "2018";
sha256 = "0kx866dfrby88lqs9v1vgmrkk1z6af9lhaghh5maj7d4imyr47f6";
authors = [
"Microsoft"
];
};
"windows_i686_gnu 0.48.5" = rec {
crateName = "windows_i686_gnu";
version = "0.48.5";
edition = "2018";
sha256 = "0gklnglwd9ilqx7ac3cn8hbhkraqisd0n83jxzf9837nvvkiand7";
authors = [
"Microsoft"
];
};
"windows_i686_gnu 0.52.6" = rec {
crateName = "windows_i686_gnu";
version = "0.52.6";
edition = "2021";
sha256 = "02zspglbykh1jh9pi7gn8g1f97jh1rrccni9ivmrfbl0mgamm6wf";
authors = [
"Microsoft"
];
};
"windows_i686_gnu 0.53.1" = rec {
crateName = "windows_i686_gnu";
version = "0.53.1";
edition = "2021";
sha256 = "18wkcm82ldyg4figcsidzwbg1pqd49jpm98crfz0j7nqd6h6s3ln";
};
"windows_i686_gnullvm 0.52.6" = rec {
crateName = "windows_i686_gnullvm";
version = "0.52.6";
edition = "2021";
sha256 = "0rpdx1537mw6slcpqa0rm3qixmsb79nbhqy5fsm3q2q9ik9m5vhf";
authors = [
"Microsoft"
];
};
"windows_i686_gnullvm 0.53.1" = rec {
crateName = "windows_i686_gnullvm";
version = "0.53.1";
edition = "2021";
sha256 = "030qaxqc4salz6l4immfb6sykc6gmhyir9wzn2w8mxj8038mjwzs";
};
"windows_i686_msvc 0.42.2" = rec {
crateName = "windows_i686_msvc";
version = "0.42.2";
edition = "2018";
sha256 = "0q0h9m2aq1pygc199pa5jgc952qhcnf0zn688454i7v4xjv41n24";
authors = [
"Microsoft"
];
};
"windows_i686_msvc 0.48.5" = rec {
crateName = "windows_i686_msvc";
version = "0.48.5";
edition = "2018";
sha256 = "01m4rik437dl9rdf0ndnm2syh10hizvq0dajdkv2fjqcywrw4mcg";
authors = [
"Microsoft"
];
};
"windows_i686_msvc 0.52.6" = rec {
crateName = "windows_i686_msvc";
version = "0.52.6";
edition = "2021";
sha256 = "0rkcqmp4zzmfvrrrx01260q3xkpzi6fzi2x2pgdcdry50ny4h294";
authors = [
"Microsoft"
];
};
"windows_i686_msvc 0.53.1" = rec {
crateName = "windows_i686_msvc";
version = "0.53.1";
edition = "2021";
sha256 = "1hi6scw3mn2pbdl30ji5i4y8vvspb9b66l98kkz350pig58wfyhy";
};
"windows_x86_64_gnu 0.42.2" = rec {
crateName = "windows_x86_64_gnu";
version = "0.42.2";
edition = "2018";
sha256 = "0dnbf2xnp3xrvy8v9mgs3var4zq9v9yh9kv79035rdgyp2w15scd";
authors = [
"Microsoft"
];
};
"windows_x86_64_gnu 0.48.5" = rec {
crateName = "windows_x86_64_gnu";
version = "0.48.5";
edition = "2018";
sha256 = "13kiqqcvz2vnyxzydjh73hwgigsdr2z1xpzx313kxll34nyhmm2k";
authors = [
"Microsoft"
];
};
"windows_x86_64_gnu 0.52.6" = rec {
crateName = "windows_x86_64_gnu";
version = "0.52.6";
edition = "2021";
sha256 = "0y0sifqcb56a56mvn7xjgs8g43p33mfqkd8wj1yhrgxzma05qyhl";
authors = [
"Microsoft"
];
};
"windows_x86_64_gnu 0.53.1" = rec {
crateName = "windows_x86_64_gnu";
version = "0.53.1";
edition = "2021";
sha256 = "16d4yiysmfdlsrghndr97y57gh3kljkwhfdbcs05m1jasz6l4f4w";
};
"windows_x86_64_gnullvm 0.42.2" = rec {
crateName = "windows_x86_64_gnullvm";
version = "0.42.2";
edition = "2018";
sha256 = "18wl9r8qbsl475j39zvawlidp1bsbinliwfymr43fibdld31pm16";
authors = [
"Microsoft"
];
};
"windows_x86_64_gnullvm 0.48.5" = rec {
crateName = "windows_x86_64_gnullvm";
version = "0.48.5";
edition = "2018";
sha256 = "1k24810wfbgz8k48c2yknqjmiigmql6kk3knmddkv8k8g1v54yqb";
authors = [
"Microsoft"
];
};
"windows_x86_64_gnullvm 0.52.6" = rec {
crateName = "windows_x86_64_gnullvm";
version = "0.52.6";
edition = "2021";
sha256 = "03gda7zjx1qh8k9nnlgb7m3w3s1xkysg55hkd1wjch8pqhyv5m94";
authors = [
"Microsoft"
];
};
"windows_x86_64_gnullvm 0.53.1" = rec {
crateName = "windows_x86_64_gnullvm";
version = "0.53.1";
edition = "2021";
sha256 = "1qbspgv4g3q0vygkg8rnql5c6z3caqv38japiynyivh75ng1gyhg";
};
"windows_x86_64_msvc 0.42.2" = rec {
crateName = "windows_x86_64_msvc";
version = "0.42.2";
edition = "2018";
sha256 = "1w5r0q0yzx827d10dpjza2ww0j8iajqhmb54s735hhaj66imvv4s";
authors = [
"Microsoft"
];
};
"windows_x86_64_msvc 0.48.5" = rec {
crateName = "windows_x86_64_msvc";
version = "0.48.5";
edition = "2018";
sha256 = "0f4mdp895kkjh9zv8dxvn4pc10xr7839lf5pa9l0193i2pkgr57d";
authors = [
"Microsoft"
];
};
"windows_x86_64_msvc 0.52.6" = rec {
crateName = "windows_x86_64_msvc";
version = "0.52.6";
edition = "2021";
sha256 = "1v7rb5cibyzx8vak29pdrk8nx9hycsjs4w0jgms08qk49jl6v7sq";
authors = [
"Microsoft"
];
};
"windows_x86_64_msvc 0.53.1" = rec {
crateName = "windows_x86_64_msvc";
version = "0.53.1";
edition = "2021";
sha256 = "0l6npq76vlq4ksn4bwsncpr8508mk0gmznm6wnhjg95d19gzzfyn";
};
"winnow" = rec {
crateName = "winnow";
version = "0.7.14";
edition = "2021";
sha256 = "0a88ahjqhyn2ln1yplq2xsigm09kxqkdkkk2c2mfxkbzszln8lss";
dependencies = [
{
name = "memchr";
packageId = "memchr";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"debug" = [ "std" "dep:anstream" "dep:anstyle" "dep:is_terminal_polyfill" "dep:terminal_size" ];
"default" = [ "std" ];
"simd" = [ "dep:memchr" ];
"std" = [ "alloc" "memchr?/std" ];
"unstable-doc" = [ "alloc" "std" "simd" "unstable-recover" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"winreg" = rec {
crateName = "winreg";
version = "0.50.0";
edition = "2018";
sha256 = "1cddmp929k882mdh6i9f2as848f13qqna6czwsqzkh1pqnr5fkjj";
authors = [
"Igor Shaula <gentoo90@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "windows-sys";
packageId = "windows-sys 0.48.0";
features = [ "Win32_Foundation" "Win32_System_Time" "Win32_System_Registry" "Win32_Security" "Win32_Storage_FileSystem" "Win32_System_Diagnostics_Debug" ];
}
];
features = {
"chrono" = [ "dep:chrono" ];
"serde" = [ "dep:serde" ];
"serialization-serde" = [ "transactions" "serde" ];
};
};
"wit-bindgen" = rec {
crateName = "wit-bindgen";
version = "0.46.0";
edition = "2021";
sha256 = "0ngysw50gp2wrrfxbwgp6dhw1g6sckknsn3wm7l00vaf7n48aypi";
libName = "wit_bindgen";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"async" = [ "macros" "std" "dep:futures" "dep:once_cell" "wit-bindgen-rust-macro/async" ];
"bitflags" = [ "dep:bitflags" ];
"default" = [ "macros" "realloc" "async" "std" "bitflags" ];
"macros" = [ "dep:wit-bindgen-rust-macro" ];
"rustc-dep-of-std" = [ "dep:core" "dep:alloc" ];
};
};
"writeable" = rec {
crateName = "writeable";
version = "0.6.2";
edition = "2021";
sha256 = "1fg08y97n6vk7l0rnjggw3xyrii6dcqg54wqaxldrlk98zdy1pcy";
authors = [
"The ICU4X Project Developers"
];
features = {
"default" = [ "alloc" ];
"either" = [ "dep:either" ];
};
};
"xattr" = rec {
crateName = "xattr";
version = "1.6.1";
edition = "2021";
sha256 = "0ml1mb43gqasawillql6b344m0zgq8mz0isi11wj8vbg43a5mr1j";
authors = [
"Steven Allen <steven@stebalien.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (("freebsd" == target."os" or null) || ("netbsd" == target."os" or null));
}
{
name = "rustix";
packageId = "rustix 1.1.3";
usesDefaultFeatures = false;
target = { target, features }: (("android" == target."os" or null) || ("linux" == target."os" or null) || ("macos" == target."os" or null) || ("hurd" == target."os" or null));
features = [ "fs" "std" ];
}
];
features = {
"default" = [ "unsupported" ];
};
resolvedDefaultFeatures = [ "default" "unsupported" ];
};
"yasna" = rec {
crateName = "yasna";
version = "0.4.0";
edition = "2018";
sha256 = "0xgsvxqnycdakh6j3hg4dk3mylrpnba50w0d36vg5k311sfs4qp2";
authors = [
"Masaki Hara <ackie.h.gmai@gmail.com>"
];
dependencies = [
{
name = "bit-vec";
packageId = "bit-vec";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "num-bigint";
packageId = "num-bigint";
optional = true;
}
];
features = {
"bit-vec" = [ "dep:bit-vec" ];
"chrono" = [ "dep:chrono" ];
"num-bigint" = [ "dep:num-bigint" ];
};
resolvedDefaultFeatures = [ "bit-vec" "default" "num-bigint" ];
};
"yoke" = rec {
crateName = "yoke";
version = "0.8.1";
edition = "2021";
sha256 = "0m29dm0bf5iakxgma0bj6dbmc3b8qi9b1vaw9sa76kdqmz3fbmkj";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "stable_deref_trait";
packageId = "stable_deref_trait";
usesDefaultFeatures = false;
}
{
name = "yoke-derive";
packageId = "yoke-derive";
optional = true;
usesDefaultFeatures = false;
}
{
name = "zerofrom";
packageId = "zerofrom";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "stable_deref_trait/alloc" "zerofrom/alloc" ];
"default" = [ "alloc" "zerofrom" ];
"derive" = [ "dep:yoke-derive" "zerofrom/derive" ];
"zerofrom" = [ "dep:zerofrom" ];
};
resolvedDefaultFeatures = [ "derive" "zerofrom" ];
};
"yoke-derive" = rec {
crateName = "yoke-derive";
version = "0.8.1";
edition = "2021";
sha256 = "0pbyja133jnng4mrhimzdq4a0y26421g734ybgz8wsgbfhl0andn";
procMacro = true;
libName = "yoke_derive";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
features = [ "fold" ];
}
{
name = "synstructure";
packageId = "synstructure";
}
];
};
"zerocopy" = rec {
crateName = "zerocopy";
version = "0.8.31";
edition = "2021";
sha256 = "1hwqn8f0zd8h1a7qz2hxym4iaqyzk8kdxgalllydn2i5p6cfqx7x";
authors = [
"Joshua Liebow-Feeser <joshlf@google.com>"
"Jack Wrenn <jswrenn@amazon.com>"
];
dependencies = [
{
name = "zerocopy-derive";
packageId = "zerocopy-derive";
optional = true;
}
{
name = "zerocopy-derive";
packageId = "zerocopy-derive";
target = { target, features }: false;
}
];
devDependencies = [
{
name = "zerocopy-derive";
packageId = "zerocopy-derive";
}
];
features = {
"__internal_use_only_features_that_work_on_stable" = [ "alloc" "derive" "simd" "std" ];
"derive" = [ "zerocopy-derive" ];
"simd-nightly" = [ "simd" ];
"std" = [ "alloc" ];
"zerocopy-derive" = [ "dep:zerocopy-derive" ];
};
resolvedDefaultFeatures = [ "simd" ];
};
"zerocopy-derive" = rec {
crateName = "zerocopy-derive";
version = "0.8.31";
edition = "2021";
sha256 = "0sjw20qqxbax8z8k9ifcmwjjlljjddpm0nmvih9zap7lzl4x5a6q";
procMacro = true;
libName = "zerocopy_derive";
authors = [
"Joshua Liebow-Feeser <joshlf@google.com>"
"Jack Wrenn <jswrenn@amazon.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
features = [ "full" ];
}
];
};
"zerofrom" = rec {
crateName = "zerofrom";
version = "0.1.6";
edition = "2021";
sha256 = "19dyky67zkjichsb7ykhv0aqws3q0jfvzww76l66c19y6gh45k2h";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "zerofrom-derive";
packageId = "zerofrom-derive";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "alloc" ];
"derive" = [ "dep:zerofrom-derive" ];
};
resolvedDefaultFeatures = [ "derive" ];
};
"zerofrom-derive" = rec {
crateName = "zerofrom-derive";
version = "0.1.6";
edition = "2021";
sha256 = "00l5niw7c1b0lf1vhvajpjmcnbdp2vn96jg4nmkhq2db0rp5s7np";
procMacro = true;
libName = "zerofrom_derive";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
features = [ "fold" ];
}
{
name = "synstructure";
packageId = "synstructure";
}
];
};
"zeroize" = rec {
crateName = "zeroize";
version = "1.8.2";
edition = "2021";
sha256 = "1l48zxgcv34d7kjskr610zqsm6j2b4fcr2vfh9jm9j1jgvk58wdr";
authors = [
"The RustCrypto Project Developers"
];
dependencies = [
{
name = "zeroize_derive";
packageId = "zeroize_derive";
optional = true;
}
];
features = {
"default" = [ "alloc" ];
"derive" = [ "zeroize_derive" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" ];
"zeroize_derive" = [ "dep:zeroize_derive" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "derive" "zeroize_derive" ];
};
"zeroize_derive" = rec {
crateName = "zeroize_derive";
version = "1.4.2";
edition = "2021";
sha256 = "0sczjlqjdmrp3wn62g7mw6p438c9j4jgp2f9zamd56991mdycdnf";
procMacro = true;
authors = [
"The RustCrypto Project Developers"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
features = [ "full" "extra-traits" "visit" ];
}
];
};
"zerotrie" = rec {
crateName = "zerotrie";
version = "0.2.3";
edition = "2021";
sha256 = "0lbqznlqazmrwwzslw0ci7p3pqxykrbfhq29npj0gmb2amxc2n9a";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "yoke";
packageId = "yoke";
optional = true;
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerofrom";
packageId = "zerofrom";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"databake" = [ "dep:databake" "zerovec?/databake" ];
"litemap" = [ "dep:litemap" "alloc" ];
"serde" = [ "dep:serde_core" "dep:litemap" "alloc" "litemap/serde" "zerovec?/serde" ];
"yoke" = [ "dep:yoke" ];
"zerofrom" = [ "dep:zerofrom" ];
"zerovec" = [ "dep:zerovec" ];
};
resolvedDefaultFeatures = [ "yoke" "zerofrom" ];
};
"zerovec" = rec {
crateName = "zerovec";
version = "0.11.5";
edition = "2021";
sha256 = "00m0p47k2g9mkv505hky5xh3r6ps7v8qc0dy4pspg542jj972a3c";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "yoke";
packageId = "yoke";
optional = true;
usesDefaultFeatures = false;
}
{
name = "zerofrom";
packageId = "zerofrom";
usesDefaultFeatures = false;
}
{
name = "zerovec-derive";
packageId = "zerovec-derive";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde?/alloc" ];
"databake" = [ "dep:databake" ];
"derive" = [ "dep:zerovec-derive" ];
"hashmap" = [ "dep:twox-hash" "alloc" ];
"serde" = [ "dep:serde" ];
"yoke" = [ "dep:yoke" ];
};
resolvedDefaultFeatures = [ "derive" "yoke" ];
};
"zerovec-derive" = rec {
crateName = "zerovec-derive";
version = "0.11.2";
edition = "2021";
sha256 = "1wsig4h5j7a1scd5hrlnragnazjny9qjc44hancb6p6a76ay7p7a";
procMacro = true;
libName = "zerovec_derive";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn";
features = [ "extra-traits" ];
}
];
};
"zmij" = rec {
crateName = "zmij";
version = "0.1.9";
edition = "2021";
sha256 = "0nk1521fadpb9q9pv8yp2r9rmyw2xxipnafr4wwslii98v6mw2fh";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"no-panic" = [ "dep:no-panic" ];
};
};
"zstd-seekable" = rec {
crateName = "zstd-seekable";
version = "0.1.23";
edition = "2018";
sha256 = "1hn3lry2p1fzjlx6shwq1k5bcpx4lqckmvl16gqx326vbiy12jjp";
libName = "zstd_seekable";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
{
name = "threadpool";
packageId = "threadpool";
}
];
buildDependencies = [
{
name = "bincode";
packageId = "bincode";
}
{
name = "cc";
packageId = "cc";
}
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
];
};
};
#
# crate2nix/default.nix (excerpt start)
#
/* Target (platform) data for conditional dependencies.
This corresponds roughly to what buildRustCrate is setting.
*/
makeDefaultTarget = platform: {
unix = platform.isUnix;
windows = platform.isWindows;
fuchsia = true;
test = false;
inherit (platform.rust.platform)
arch
os
vendor;
family = platform.rust.platform.target-family;
env = "gnu";
endian =
if platform.parsed.cpu.significantByte.name == "littleEndian"
then "little" else "big";
pointer_width = toString platform.parsed.cpu.bits;
debug_assertions = false;
};
/* Filters common temp files and build files. */
# TODO(pkolloch): Substitute with gitignore filter
sourceFilter = name: type:
let
baseName = builtins.baseNameOf (builtins.toString name);
in
! (
# Filter out git
baseName == ".gitignore"
|| (type == "directory" && baseName == ".git")
# Filter out build results
|| (
type == "directory" && (
baseName == "target"
|| baseName == "_site"
|| baseName == ".sass-cache"
|| baseName == ".jekyll-metadata"
|| baseName == "build-artifacts"
)
)
# Filter out nix-build result symlinks
|| (
type == "symlink" && lib.hasPrefix "result" baseName
)
# Filter out IDE config
|| (
type == "directory" && (
baseName == ".idea" || baseName == ".vscode"
)
) || lib.hasSuffix ".iml" baseName
# Filter out nix build files
|| baseName == "Cargo.nix"
# Filter out editor backup / swap files.
|| lib.hasSuffix "~" baseName
|| builtins.match "^\\.sw[a-z]$$" baseName != null
|| builtins.match "^\\..*\\.sw[a-z]$$" baseName != null
|| lib.hasSuffix ".tmp" baseName
|| lib.hasSuffix ".bak" baseName
|| baseName == "tests.nix"
);
/* Returns a crate which depends on successful test execution
of crate given as the second argument.
testCrateFlags: list of flags to pass to the test exectuable
testInputs: list of packages that should be available during test execution
*/
crateWithTest = { crate, testCrate, testCrateFlags, testInputs, testPreRun, testPostRun }:
assert builtins.typeOf testCrateFlags == "list";
assert builtins.typeOf testInputs == "list";
assert builtins.typeOf testPreRun == "string";
assert builtins.typeOf testPostRun == "string";
let
# override the `crate` so that it will build and execute tests instead of
# building the actual lib and bin targets We just have to pass `--test`
# to rustc and it will do the right thing. We execute the tests and copy
# their log and the test executables to $out for later inspection.
test =
let
drv = testCrate.override
(
_: {
buildTests = true;
}
);
# If the user hasn't set any pre/post commands, we don't want to
# insert empty lines. This means that any existing users of crate2nix
# don't get a spurious rebuild unless they set these explicitly.
testCommand = pkgs.lib.concatStringsSep "\n"
(pkgs.lib.filter (s: s != "") [
testPreRun
"$f $testCrateFlags 2>&1 | tee -a $out"
testPostRun
]);
in
pkgs.runCommand "run-tests-${testCrate.name}"
{
inherit testCrateFlags;
buildInputs = testInputs;
} ''
set -e
export RUST_BACKTRACE=1
# recreate a file hierarchy as when running tests with cargo
# the source for test data
# It's necessary to locate the source in $NIX_BUILD_TOP/source/
# instead of $NIX_BUILD_TOP/
# because we compiled those test binaries in the former and not the latter.
# So all paths will expect source tree to be there and not in the build top directly.
# For example: $NIX_BUILD_TOP := /build in general, if you ask yourself.
# NOTE: There could be edge cases if `crate.sourceRoot` does exist but
# it's very hard to reason about them.
# Open a bug if you run into this!
mkdir -p source/
cd source/
${pkgs.buildPackages.xorg.lndir}/bin/lndir ${crate.src}
# build outputs
testRoot=target/debug
mkdir -p $testRoot
# executables of the crate
# we copy to prevent std::env::current_exe() to resolve to a store location
for i in ${crate}/bin/*; do
cp "$i" "$testRoot"
done
chmod +w -R .
# test harness executables are suffixed with a hash, like cargo does
# this allows to prevent name collision with the main
# executables of the crate
hash=$(basename $out)
for file in ${drv}/tests/*; do
f=$testRoot/$(basename $file)-$hash
cp $file $f
${testCommand}
done
'';
in
pkgs.runCommand "${crate.name}-linked"
{
inherit (crate) outputs crateName;
passthru = (crate.passthru or { }) // {
inherit test;
};
}
(lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
echo tested by ${test}
'' + ''
${lib.concatMapStringsSep "\n" (output: "ln -s ${crate.${output}} ${"$"}${output}") crate.outputs}
'');
/* A restricted overridable version of builtRustCratesWithFeatures. */
buildRustCrateWithFeatures =
{ packageId
, features ? rootFeatures
, crateOverrides ? defaultCrateOverrides
, buildRustCrateForPkgsFunc ? null
, runTests ? false
, testCrateFlags ? [ ]
, testInputs ? [ ]
# Any command to run immediatelly before a test is executed.
, testPreRun ? ""
# Any command run immediatelly after a test is executed.
, testPostRun ? ""
}:
lib.makeOverridable
(
{ features
, crateOverrides
, runTests
, testCrateFlags
, testInputs
, testPreRun
, testPostRun
}:
let
buildRustCrateForPkgsFuncOverriden =
if buildRustCrateForPkgsFunc != null
then buildRustCrateForPkgsFunc
else
(
if crateOverrides == pkgs.defaultCrateOverrides
then buildRustCrateForPkgs
else
pkgs: (buildRustCrateForPkgs pkgs).override {
defaultCrateOverrides = crateOverrides;
}
);
builtRustCrates = builtRustCratesWithFeatures {
inherit packageId features;
buildRustCrateForPkgsFunc = buildRustCrateForPkgsFuncOverriden;
runTests = false;
};
builtTestRustCrates = builtRustCratesWithFeatures {
inherit packageId features;
buildRustCrateForPkgsFunc = buildRustCrateForPkgsFuncOverriden;
runTests = true;
};
drv = builtRustCrates.crates.${packageId};
testDrv = builtTestRustCrates.crates.${packageId};
derivation =
if runTests then
crateWithTest
{
crate = drv;
testCrate = testDrv;
inherit testCrateFlags testInputs testPreRun testPostRun;
}
else drv;
in
derivation
)
{ inherit features crateOverrides runTests testCrateFlags testInputs testPreRun testPostRun; };
/* Returns an attr set with packageId mapped to the result of buildRustCrateForPkgsFunc
for the corresponding crate.
*/
builtRustCratesWithFeatures =
{ packageId
, features
, crateConfigs ? crates
, buildRustCrateForPkgsFunc
, runTests
, makeTarget ? makeDefaultTarget
} @ args:
assert (builtins.isAttrs crateConfigs);
assert (builtins.isString packageId);
assert (builtins.isList features);
assert (builtins.isAttrs (makeTarget stdenv.hostPlatform));
assert (builtins.isBool runTests);
let
rootPackageId = packageId;
mergedFeatures = mergePackageFeatures
(
args // {
inherit rootPackageId;
target = makeTarget stdenv.hostPlatform // { test = runTests; };
}
);
# Memoize built packages so that reappearing packages are only built once.
builtByPackageIdByPkgs = mkBuiltByPackageIdByPkgs pkgs;
mkBuiltByPackageIdByPkgs = pkgs:
let
self = {
crates = lib.mapAttrs (packageId: value: buildByPackageIdForPkgsImpl self pkgs packageId) crateConfigs;
target = makeTarget stdenv.hostPlatform;
build = mkBuiltByPackageIdByPkgs pkgs.buildPackages;
};
in
self;
buildByPackageIdForPkgsImpl = self: pkgs: packageId:
let
features = mergedFeatures."${packageId}" or [ ];
crateConfig' = crateConfigs."${packageId}";
crateConfig =
builtins.removeAttrs crateConfig' [ "resolvedDefaultFeatures" "devDependencies" ];
devDependencies =
lib.optionals
(runTests && packageId == rootPackageId)
(crateConfig'.devDependencies or [ ]);
dependencies =
dependencyDerivations {
inherit features;
inherit (self) target;
buildByPackageId = depPackageId:
# proc_macro crates must be compiled for the build architecture
if crateConfigs.${depPackageId}.procMacro or false
then self.build.crates.${depPackageId}
else self.crates.${depPackageId};
dependencies =
(crateConfig.dependencies or [ ])
++ devDependencies;
};
buildDependencies =
dependencyDerivations {
inherit features;
inherit (self.build) target;
buildByPackageId = depPackageId:
self.build.crates.${depPackageId};
dependencies = crateConfig.buildDependencies or [ ];
};
dependenciesWithRenames =
let
buildDeps = filterEnabledDependencies {
inherit features;
inherit (self) target;
dependencies = crateConfig.dependencies or [ ] ++ devDependencies;
};
hostDeps = filterEnabledDependencies {
inherit features;
inherit (self.build) target;
dependencies = crateConfig.buildDependencies or [ ];
};
in
lib.filter (d: d ? "rename") (hostDeps ++ buildDeps);
# Crate renames have the form:
#
# {
# crate_name = [
# { version = "1.2.3"; rename = "crate_name01"; }
# ];
# # ...
# }
crateRenames =
let
grouped =
lib.groupBy
(dependency: dependency.name)
dependenciesWithRenames;
versionAndRename = dep:
let
package = crateConfigs."${dep.packageId}";
in
{ inherit (dep) rename; inherit (package) version; };
in
lib.mapAttrs (name: builtins.map versionAndRename) grouped;
in
buildRustCrateForPkgsFunc pkgs
(
crateConfig // {
src = crateConfig.src or (
pkgs.fetchurl rec {
name = "${crateConfig.crateName}-${crateConfig.version}.tar.gz";
# https://www.pietroalbini.org/blog/downloading-crates-io/
# Not rate-limited, CDN URL.
url = "https://static.crates.io/crates/${crateConfig.crateName}/${crateConfig.crateName}-${crateConfig.version}.crate";
sha256 =
assert (lib.assertMsg (crateConfig ? sha256) "Missing sha256 for ${name}");
crateConfig.sha256;
}
);
extraRustcOpts = lib.lists.optional (targetFeatures != [ ]) "-C target-feature=${lib.concatMapStringsSep "," (x: "+${x}") targetFeatures}";
inherit features dependencies buildDependencies crateRenames release;
}
);
in
builtByPackageIdByPkgs;
/* Returns the actual derivations for the given dependencies. */
dependencyDerivations =
{ buildByPackageId
, features
, dependencies
, target
}:
assert (builtins.isList features);
assert (builtins.isList dependencies);
assert (builtins.isAttrs target);
let
enabledDependencies = filterEnabledDependencies {
inherit dependencies features target;
};
depDerivation = dependency: buildByPackageId dependency.packageId;
in
map depDerivation enabledDependencies;
/* Returns a sanitized version of val with all values substituted that cannot
be serialized as JSON.
*/
sanitizeForJson = val:
if builtins.isAttrs val
then lib.mapAttrs (n: sanitizeForJson) val
else if builtins.isList val
then builtins.map sanitizeForJson val
else if builtins.isFunction val
then "function"
else val;
/* Returns various tools to debug a crate. */
debugCrate = { packageId, target ? makeDefaultTarget stdenv.hostPlatform }:
assert (builtins.isString packageId);
let
debug = rec {
# The built tree as passed to buildRustCrate.
buildTree = buildRustCrateWithFeatures {
buildRustCrateForPkgsFunc = _: lib.id;
inherit packageId;
};
sanitizedBuildTree = sanitizeForJson buildTree;
dependencyTree = sanitizeForJson
(
buildRustCrateWithFeatures {
buildRustCrateForPkgsFunc = _: crate: {
"01_crateName" = crate.crateName or false;
"02_features" = crate.features or [ ];
"03_dependencies" = crate.dependencies or [ ];
};
inherit packageId;
}
);
mergedPackageFeatures = mergePackageFeatures {
features = rootFeatures;
inherit packageId target;
};
diffedDefaultPackageFeatures = diffDefaultPackageFeatures {
inherit packageId target;
};
};
in
{ internal = debug; };
/* Returns differences between cargo default features and crate2nix default
features.
This is useful for verifying the feature resolution in crate2nix.
*/
diffDefaultPackageFeatures =
{ crateConfigs ? crates
, packageId
, target
}:
assert (builtins.isAttrs crateConfigs);
let
prefixValues = prefix: lib.mapAttrs (n: v: { "${prefix}" = v; });
mergedFeatures =
prefixValues
"crate2nix"
(mergePackageFeatures { inherit crateConfigs packageId target; features = [ "default" ]; });
configs = prefixValues "cargo" crateConfigs;
combined = lib.foldAttrs (a: b: a // b) { } [ mergedFeatures configs ];
onlyInCargo =
builtins.attrNames
(lib.filterAttrs (n: v: !(v ? "crate2nix") && (v ? "cargo")) combined);
onlyInCrate2Nix =
builtins.attrNames
(lib.filterAttrs (n: v: (v ? "crate2nix") && !(v ? "cargo")) combined);
differentFeatures = lib.filterAttrs
(
n: v:
(v ? "crate2nix")
&& (v ? "cargo")
&& (v.crate2nix.features or [ ]) != (v."cargo".resolved_default_features or [ ])
)
combined;
in
builtins.toJSON {
inherit onlyInCargo onlyInCrate2Nix differentFeatures;
};
/* Returns an attrset mapping packageId to the list of enabled features.
If multiple paths to a dependency enable different features, the
corresponding feature sets are merged. Features in rust are additive.
*/
mergePackageFeatures =
{ crateConfigs ? crates
, packageId
, rootPackageId ? packageId
, features ? rootFeatures
, dependencyPath ? [ crates.${packageId}.crateName ]
, featuresByPackageId ? { }
, target
# Adds devDependencies to the crate with rootPackageId.
, runTests ? false
, ...
} @ args:
assert (builtins.isAttrs crateConfigs);
assert (builtins.isString packageId);
assert (builtins.isString rootPackageId);
assert (builtins.isList features);
assert (builtins.isList dependencyPath);
assert (builtins.isAttrs featuresByPackageId);
assert (builtins.isAttrs target);
assert (builtins.isBool runTests);
let
crateConfig = crateConfigs."${packageId}" or (builtins.throw "Package not found: ${packageId}");
expandedFeatures = expandFeatures (crateConfig.features or { }) features;
enabledFeatures = enableFeatures (crateConfig.dependencies or [ ]) expandedFeatures;
depWithResolvedFeatures = dependency:
let
inherit (dependency) packageId;
features = dependencyFeatures enabledFeatures dependency;
in
{ inherit packageId features; };
resolveDependencies = cache: path: dependencies:
assert (builtins.isAttrs cache);
assert (builtins.isList dependencies);
let
enabledDependencies = filterEnabledDependencies {
inherit dependencies target;
features = enabledFeatures;
};
directDependencies = map depWithResolvedFeatures enabledDependencies;
foldOverCache = op: lib.foldl op cache directDependencies;
in
foldOverCache
(
cache: { packageId, features }:
let
cacheFeatures = cache.${packageId} or [ ];
combinedFeatures = sortedUnique (cacheFeatures ++ features);
in
if cache ? ${packageId} && cache.${packageId} == combinedFeatures
then cache
else
mergePackageFeatures {
features = combinedFeatures;
featuresByPackageId = cache;
inherit crateConfigs packageId target runTests rootPackageId;
}
);
cacheWithSelf =
let
cacheFeatures = featuresByPackageId.${packageId} or [ ];
combinedFeatures = sortedUnique (cacheFeatures ++ enabledFeatures);
in
featuresByPackageId // {
"${packageId}" = combinedFeatures;
};
cacheWithDependencies =
resolveDependencies cacheWithSelf "dep"
(
crateConfig.dependencies or [ ]
++ lib.optionals
(runTests && packageId == rootPackageId)
(crateConfig.devDependencies or [ ])
);
cacheWithAll =
resolveDependencies
cacheWithDependencies "build"
(crateConfig.buildDependencies or [ ]);
in
cacheWithAll;
/* Returns the enabled dependencies given the enabled features. */
filterEnabledDependencies = { dependencies, features, target }:
assert (builtins.isList dependencies);
assert (builtins.isList features);
assert (builtins.isAttrs target);
lib.filter
(
dep:
let
targetFunc = dep.target or (features: true);
in
targetFunc { inherit features target; }
&& (
!(dep.optional or false)
|| builtins.any (doesFeatureEnableDependency dep) features
)
)
dependencies;
/* Returns whether the given feature should enable the given dependency. */
doesFeatureEnableDependency = dependency: feature:
let
name = dependency.rename or dependency.name;
prefix = "${name}/";
len = builtins.stringLength prefix;
startsWithPrefix = builtins.substring 0 len feature == prefix;
in
feature == name || feature == "dep:" + name || startsWithPrefix;
/* Returns the expanded features for the given inputFeatures by applying the
rules in featureMap.
featureMap is an attribute set which maps feature names to lists of further
feature names to enable in case this feature is selected.
*/
expandFeatures = featureMap: inputFeatures:
assert (builtins.isAttrs featureMap);
assert (builtins.isList inputFeatures);
let
expandFeaturesNoCycle = oldSeen: inputFeatures:
if inputFeatures != [ ]
then
let
# The feature we're currently expanding.
feature = builtins.head inputFeatures;
# All the features we've seen/expanded so far, including the one
# we're currently processing.
seen = oldSeen // { ${feature} = 1; };
# Expand the feature but be careful to not re-introduce a feature
# that we've already seen: this can easily cause a cycle, see issue
# #209.
enables = builtins.filter (f: !(seen ? "${f}")) (featureMap."${feature}" or [ ]);
in
[ feature ] ++ (expandFeaturesNoCycle seen (builtins.tail inputFeatures ++ enables))
# No more features left, nothing to expand to.
else [ ];
outFeatures = expandFeaturesNoCycle { } inputFeatures;
in
sortedUnique outFeatures;
/* This function adds optional dependencies as features if they are enabled
indirectly by dependency features. This function mimics Cargo's behavior
described in a note at:
https://doc.rust-lang.org/nightly/cargo/reference/features.html#dependency-features
*/
enableFeatures = dependencies: features:
assert (builtins.isList features);
assert (builtins.isList dependencies);
let
additionalFeatures = lib.concatMap
(
dependency:
assert (builtins.isAttrs dependency);
let
enabled = builtins.any (doesFeatureEnableDependency dependency) features;
in
if (dependency.optional or false) && enabled
then [ (dependency.rename or dependency.name) ]
else [ ]
)
dependencies;
in
sortedUnique (features ++ additionalFeatures);
/*
Returns the actual features for the given dependency.
features: The features of the crate that refers this dependency.
*/
dependencyFeatures = features: dependency:
assert (builtins.isList features);
assert (builtins.isAttrs dependency);
let
defaultOrNil =
if dependency.usesDefaultFeatures or true
then [ "default" ]
else [ ];
explicitFeatures = dependency.features or [ ];
additionalDependencyFeatures =
let
name = dependency.rename or dependency.name;
stripPrefixMatch = prefix: s:
if lib.hasPrefix prefix s
then lib.removePrefix prefix s
else null;
extractFeature = feature: lib.findFirst
(f: f != null)
null
(map (prefix: stripPrefixMatch prefix feature) [
(name + "/")
(name + "?/")
]);
dependencyFeatures = lib.filter (f: f != null) (map extractFeature features);
in
dependencyFeatures;
in
defaultOrNil ++ explicitFeatures ++ additionalDependencyFeatures;
/* Sorts and removes duplicates from a list of strings. */
sortedUnique = features:
assert (builtins.isList features);
assert (builtins.all builtins.isString features);
let
outFeaturesSet = lib.foldl (set: feature: set // { "${feature}" = 1; }) { } features;
outFeaturesUnique = builtins.attrNames outFeaturesSet;
in
builtins.sort (a: b: a < b) outFeaturesUnique;
deprecationWarning = message: value:
if strictDeprecation
then builtins.throw "strictDeprecation enabled, aborting: ${message}"
else builtins.trace message value;
#
# crate2nix/default.nix (excerpt end)
#
};
}