# This file was @generated by crate2nix 0.15.0 with the command:
# "generate"
# See https://github.com/kolloch/crate2nix for more info.
{ nixpkgs ? <nixpkgs>
, pkgs ? import nixpkgs { config = {}; }
, fetchurl ? pkgs.fetchurl
, 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 ? []
# Additional target attributes for conditional dependencies.
# Use this for custom cfg flags that are passed via rustcflags but need to
# be known at Nix evaluation time for dependency resolution.
# Example: { tracing_unstable = true; } for crates using cfg(tracing_unstable).
, extraTargetFlags ? {}
# Whether to perform release builds: longer compile times, faster binaries.
, release ? true
# Additional crate2nix configuration if it exists.
, crateConfig
? if builtins.pathExists ./crate-config.nix
then pkgs.callPackage ./crate-config.nix {}
else {}
}:
rec {
#
# "public" attributes that we attempt to keep stable with new versions of crate2nix.
#
# Refer your crate build derivation by name here.
# You can override the features with
# workspaceMembers."${crateName}".build.override { features = [ "default" "feature1" ... ]; }.
workspaceMembers = {
"ci" = rec {
packageId = "ci";
build = internal.buildRustCrateWithFeatures {
packageId = "ci";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"nest" = rec {
packageId = "nest";
build = internal.buildRustCrateWithFeatures {
packageId = "nest";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"pijul-hooks" = rec {
packageId = "pijul-hooks";
build = internal.buildRustCrateWithFeatures {
packageId = "pijul-hooks";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"replication" = rec {
packageId = "replication";
build = internal.buildRustCrateWithFeatures {
packageId = "replication";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
};
# A derivation that joins the outputs of all workspace members together.
allWorkspaceMembers = pkgs.symlinkJoin {
name = "all-workspace-members";
paths =
let members = builtins.attrValues workspaceMembers;
in builtins.map (m: m.build) members;
};
#
# "internal" ("private") attributes that may change in every new version of crate2nix.
#
internal = rec {
# Build and dependency information for crates.
# Many of the fields are passed one-to-one to buildRustCrate.
#
# Noteworthy:
# * `dependencies`/`buildDependencies`: similar to the corresponding fields for buildRustCrate.
# but with additional information which is used during dependency/feature resolution.
# * `resolvedDependencies`: the selected default features reported by cargo - only included for debugging.
# * `devDependencies` as of now not used by `buildRustCrate` but used to
# inject test dependencies into the build
crates = {
"adler2" = rec {
crateName = "adler2";
version = "2.0.1";
edition = "2021";
sha256 = "1ymy18s9hs7ya1pjc9864l30wk8p2qfqdi7mhhcc5nfakxbij09j";
authors = [
"Jonas Schievink <jonasschievink@gmail.com>"
"oyvindln <oyvindln@users.noreply.github.com>"
];
features = {
"core" = [ "dep:core" ];
"default" = [ "std" ];
"rustc-dep-of-std" = [ "core" ];
};
};
"adler32" = rec {
crateName = "adler32";
version = "1.2.0";
edition = "2018";
sha256 = "0d7jq7jsjyhsgbhnfq5fvrlh9j0i9g1fqrl2735ibv5f75yjgqda";
authors = [
"Remi Rampin <remirampin@gmail.com>"
];
features = {
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"default" = [ "std" ];
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"aead" = rec {
crateName = "aead";
version = "0.5.2";
edition = "2021";
sha256 = "1c32aviraqag7926xcb9sybdm36v5vh9gnxpn4pxdwjc50zl28ni";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "crypto-common";
packageId = "crypto-common 0.1.6";
}
{
name = "generic-array";
packageId = "generic-array";
usesDefaultFeatures = false;
}
];
features = {
"arrayvec" = [ "dep:arrayvec" ];
"blobby" = [ "dep:blobby" ];
"bytes" = [ "dep:bytes" ];
"default" = [ "rand_core" ];
"dev" = [ "blobby" ];
"getrandom" = [ "crypto-common/getrandom" "rand_core" ];
"heapless" = [ "dep:heapless" ];
"rand_core" = [ "crypto-common/rand_core" ];
"std" = [ "alloc" "crypto-common/std" ];
};
resolvedDefaultFeatures = [ "alloc" "getrandom" "rand_core" ];
};
"aes 0.7.5" = rec {
crateName = "aes";
version = "0.7.5";
edition = "2018";
sha256 = "1f0sdx2fsa8w3l7xzsyi9ry3shvnnsgc0znh50if9fm95vslg2wy";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "cipher";
packageId = "cipher 0.3.0";
}
{
name = "cpufeatures";
packageId = "cpufeatures 0.2.17";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
}
{
name = "ctr";
packageId = "ctr 0.8.0";
optional = true;
}
{
name = "opaque-debug";
packageId = "opaque-debug";
}
];
devDependencies = [
{
name = "cipher";
packageId = "cipher 0.3.0";
features = [ "dev" ];
}
];
features = {
"ctr" = [ "dep:ctr" ];
};
resolvedDefaultFeatures = [ "ctr" ];
};
"aes 0.8.4" = rec {
crateName = "aes";
version = "0.8.4";
edition = "2021";
sha256 = "1853796anlwp4kqim0s6wm1srl4ib621nm0cl2h3c8klsjkgfsdi";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "cipher";
packageId = "cipher 0.4.4";
}
{
name = "cpufeatures";
packageId = "cpufeatures 0.2.17";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
}
];
devDependencies = [
{
name = "cipher";
packageId = "cipher 0.4.4";
features = [ "dev" ];
}
];
features = {
"zeroize" = [ "dep:zeroize" ];
};
};
"aes 0.9.1" = rec {
crateName = "aes";
version = "0.9.1";
edition = "2024";
sha256 = "0f71l2rwx3jdghbrgvjppz2x1jcfvpzx8rn40r2idjf4xbm7dz7i";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cipher";
packageId = "cipher 0.5.2";
}
{
name = "cpubits";
packageId = "cpubits";
}
{
name = "cpufeatures";
packageId = "cpufeatures 0.3.0";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
}
];
devDependencies = [
{
name = "cipher";
packageId = "cipher 0.5.2";
features = [ "dev" ];
}
];
features = {
"zeroize" = [ "dep:zeroize" ];
};
};
"aes-gcm" = rec {
crateName = "aes-gcm";
version = "0.10.3";
edition = "2021";
sha256 = "1lgaqgg1gh9crg435509lqdhajg1m2vgma6f7fdj1qa2yyh10443";
libName = "aes_gcm";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "aead";
packageId = "aead";
usesDefaultFeatures = false;
}
{
name = "aes";
packageId = "aes 0.8.4";
optional = true;
}
{
name = "cipher";
packageId = "cipher 0.4.4";
}
{
name = "ctr";
packageId = "ctr 0.9.2";
}
{
name = "ghash";
packageId = "ghash";
usesDefaultFeatures = false;
}
{
name = "subtle";
packageId = "subtle";
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "aead";
packageId = "aead";
usesDefaultFeatures = false;
features = [ "dev" ];
}
];
features = {
"aes" = [ "dep:aes" ];
"alloc" = [ "aead/alloc" ];
"arrayvec" = [ "aead/arrayvec" ];
"default" = [ "aes" "alloc" "getrandom" ];
"getrandom" = [ "aead/getrandom" "rand_core" ];
"heapless" = [ "aead/heapless" ];
"rand_core" = [ "aead/rand_core" ];
"std" = [ "aead/std" "alloc" ];
"stream" = [ "aead/stream" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "aes" "alloc" "default" "getrandom" "rand_core" ];
};
"ahash 0.7.8" = rec {
crateName = "ahash";
version = "0.7.8";
edition = "2018";
sha256 = "1y9014qsy6gs9xld4ch7a6xi9bpki8vaciawxq4p75d8qvh7f549";
authors = [
"Tom Kaitchuck <Tom.Kaitchuck@gmail.com>"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom 0.2.17";
target = { target, features }: (("linux" == target."os" or null) || ("android" == target."os" or null) || ("windows" == target."os" or null) || ("macos" == target."os" or null) || ("ios" == target."os" or null) || ("freebsd" == target."os" or null) || ("openbsd" == target."os" or null) || ("netbsd" == target."os" or null) || ("dragonfly" == target."os" or null) || ("solaris" == target."os" or null) || ("illumos" == target."os" or null) || ("fuchsia" == target."os" or null) || ("redox" == target."os" or null) || ("cloudabi" == target."os" or null) || ("haiku" == target."os" or null) || ("vxworks" == target."os" or null) || ("emscripten" == target."os" or null) || ("wasi" == target."os" or null));
}
{
name = "once_cell";
packageId = "once_cell";
usesDefaultFeatures = false;
target = { target, features }: (!(("arm" == target."arch" or null) && ("none" == target."os" or null)));
features = [ "alloc" ];
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check";
}
];
features = {
"atomic-polyfill" = [ "dep:atomic-polyfill" "once_cell/atomic-polyfill" ];
"compile-time-rng" = [ "const-random" ];
"const-random" = [ "dep:const-random" ];
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
};
};
"ahash 0.8.12" = rec {
crateName = "ahash";
version = "0.8.12";
edition = "2018";
sha256 = "0xbsp9rlm5ki017c0w6ay8kjwinwm8knjncci95mii30rmwz25as";
authors = [
"Tom Kaitchuck <Tom.Kaitchuck@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "getrandom";
packageId = "getrandom 0.3.4";
optional = true;
}
{
name = "once_cell";
packageId = "once_cell";
usesDefaultFeatures = false;
target = { target, features }: (!(("arm" == target."arch" or null) && ("none" == target."os" or null)));
features = [ "alloc" ];
}
{
name = "zerocopy";
packageId = "zerocopy";
usesDefaultFeatures = false;
features = [ "simd" ];
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check";
}
];
features = {
"atomic-polyfill" = [ "dep:portable-atomic" "once_cell/critical-section" ];
"compile-time-rng" = [ "const-random" ];
"const-random" = [ "dep:const-random" ];
"default" = [ "std" "runtime-rng" ];
"getrandom" = [ "dep:getrandom" ];
"runtime-rng" = [ "getrandom" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "getrandom" "runtime-rng" "std" ];
};
"aho-corasick" = rec {
crateName = "aho-corasick";
version = "1.1.4";
edition = "2021";
sha256 = "00a32wb2h07im3skkikc495jvncf62jl6s96vwc7bhi70h9imlyx";
libName = "aho_corasick";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "perf-literal" ];
"logging" = [ "dep:log" ];
"perf-literal" = [ "dep:memchr" ];
"std" = [ "memchr?/std" ];
};
resolvedDefaultFeatures = [ "default" "perf-literal" "std" ];
};
"alloc-no-stdlib" = rec {
crateName = "alloc-no-stdlib";
version = "2.0.4";
edition = "2015";
crateBin = [];
sha256 = "1cy6r2sfv5y5cigv86vms7n5nlwhx1rbyxwcraqnmm1rxiib2yyc";
libName = "alloc_no_stdlib";
authors = [
"Daniel Reiter Horn <danielrh@dropbox.com>"
];
features = {
};
};
"alloc-stdlib" = rec {
crateName = "alloc-stdlib";
version = "0.2.2";
edition = "2015";
crateBin = [];
sha256 = "1kkfbld20ab4165p29v172h8g0wvq8i06z8vnng14whw0isq5ywl";
libName = "alloc_stdlib";
authors = [
"Daniel Reiter Horn <danielrh@dropbox.com>"
];
dependencies = [
{
name = "alloc-no-stdlib";
packageId = "alloc-no-stdlib";
}
];
features = {
};
};
"allocator-api2" = rec {
crateName = "allocator-api2";
version = "0.2.21";
edition = "2018";
sha256 = "08zrzs022xwndihvzdn78yqarv2b9696y67i6h78nla3ww87jgb8";
libName = "allocator_api2";
authors = [
"Zakarum <zaq.dev@icloud.com>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"ammonia" = rec {
crateName = "ammonia";
version = "4.1.2";
edition = "2021";
sha256 = "1rnx4v8qiw4nvqzvnnbagb0lp5cc9q9q1ja6cys2888sgq4i7s8p";
authors = [
"Michael Howell <michael@notriddle.com>"
];
dependencies = [
{
name = "cssparser";
packageId = "cssparser 0.35.0";
}
{
name = "html5ever";
packageId = "html5ever 0.35.0";
}
{
name = "maplit";
packageId = "maplit";
}
{
name = "tendril";
packageId = "tendril";
}
{
name = "url";
packageId = "url";
}
];
};
"android_system_properties" = rec {
crateName = "android_system_properties";
version = "0.1.5";
edition = "2018";
sha256 = "04b3wrz12837j7mdczqd95b732gw5q7q66cv4yn4646lvccp57l1";
authors = [
"Nicolas Silva <nical@fastmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
};
"anstream" = rec {
crateName = "anstream";
version = "1.0.0";
edition = "2021";
sha256 = "13d2bj0xfg012s4rmq44zc8zgy1q8k9yp7yhvfnarscnmwpj2jl2";
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.14";
edition = "2021";
sha256 = "0030szmgj51fxkic1hpakxxgappxzwm6m154a3gfml83lq63l2wl";
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"anstyle-parse" = rec {
crateName = "anstyle-parse";
version = "1.0.0";
edition = "2021";
sha256 = "03hkv2690s0crssbnmfkr76kw1k7ah2i6s5amdy9yca2n8w7zkjj";
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.102";
edition = "2021";
sha256 = "0b447dra1v12z474c6z4jmicdmc5yxz5bakympdnij44ckw2s83z";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"arc-swap" = rec {
crateName = "arc-swap";
version = "1.9.1";
edition = "2018";
sha256 = "01xjlahcya8igdalxmda375lnlhjqwjz0cdqhy0bc1jkyzb1yfka";
libName = "arc_swap";
authors = [
"Michal 'vorner' Vaner <vorner@vorner.cz>"
];
dependencies = [
{
name = "rustversion";
packageId = "rustversion";
}
];
features = {
"serde" = [ "dep:serde" ];
};
};
"arrayref" = rec {
crateName = "arrayref";
version = "0.3.9";
edition = "2015";
sha256 = "1jzyp0nvp10dmahaq9a2rnxqdd5wxgbvp8xaibps3zai8c9fi8kn";
authors = [
"David Roundy <roundyd@physics.oregonstate.edu>"
];
};
"arrayvec" = rec {
crateName = "arrayvec";
version = "0.7.6";
edition = "2018";
sha256 = "0l1fz4ccgv6pm609rif37sl5nv5k6lbzi7kkppgzqzh1vwix20kw";
authors = [
"bluss"
];
features = {
"borsh" = [ "dep:borsh" ];
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"zeroize" = [ "dep:zeroize" ];
};
};
"asn1-rs" = rec {
crateName = "asn1-rs";
version = "0.6.2";
edition = "2018";
sha256 = "0j5h437ycgih5hnrma6kmaxi4zb8csynnd66h9rzvxxcvfzc74sl";
libName = "asn1_rs";
authors = [
"Pierre Chifflier <chifflier@wzdftpd.net>"
];
dependencies = [
{
name = "asn1-rs-derive";
packageId = "asn1-rs-derive";
}
{
name = "asn1-rs-impl";
packageId = "asn1-rs-impl";
}
{
name = "displaydoc";
packageId = "displaydoc";
}
{
name = "nom";
packageId = "nom 7.1.3";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "num-traits";
packageId = "num-traits";
}
{
name = "rusticata-macros";
packageId = "rusticata-macros";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
{
name = "time";
packageId = "time";
optional = true;
features = [ "macros" "parsing" "formatting" ];
}
];
features = {
"bigint" = [ "num-bigint" ];
"bits" = [ "bitvec" ];
"bitvec" = [ "dep:bitvec" ];
"colored" = [ "dep:colored" ];
"cookie-factory" = [ "dep:cookie-factory" ];
"datetime" = [ "time" ];
"debug" = [ "colored" ];
"default" = [ "std" ];
"num-bigint" = [ "dep:num-bigint" ];
"serialize" = [ "cookie-factory" ];
"time" = [ "dep:time" ];
"trace" = [ "debug" ];
};
resolvedDefaultFeatures = [ "datetime" "default" "std" "time" ];
};
"asn1-rs-derive" = rec {
crateName = "asn1-rs-derive";
version = "0.5.1";
edition = "2018";
sha256 = "140ldl0vp1d0090bpm0w9j8g80dwc03wp928w5kv5diwwlrjsp4n";
procMacro = true;
libName = "asn1_rs_derive";
authors = [
"Pierre Chifflier <chifflier@wzdftpd.net>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" ];
}
{
name = "synstructure";
packageId = "synstructure";
}
];
};
"asn1-rs-impl" = rec {
crateName = "asn1-rs-impl";
version = "0.2.0";
edition = "2018";
sha256 = "1xv56m0wrwix4av3w86sih1nsa5g1dgfz135lz1qdznn5h60a63v";
procMacro = true;
libName = "asn1_rs_impl";
authors = [
"Pierre Chifflier <chifflier@wzdftpd.net>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
};
"async-compression" = rec {
crateName = "async-compression";
version = "0.4.42";
edition = "2018";
sha256 = "1b59jb3y26pmxdshyjb7slxrp184ydlzq80ryfc2ik6cg653z6z7";
libName = "async_compression";
authors = [
"Wim Looman <wim@nemo157.com>"
"Allen Bui <fairingrey@gmail.com>"
];
dependencies = [
{
name = "compression-codecs";
packageId = "compression-codecs";
}
{
name = "compression-core";
packageId = "compression-core";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "tokio";
packageId = "tokio";
optional = true;
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
usesDefaultFeatures = false;
features = [ "io-util" "macros" "rt-multi-thread" "io-std" ];
}
];
features = {
"all" = [ "all-implementations" "all-algorithms" ];
"all-algorithms" = [ "brotli" "bzip2" "deflate" "deflate64" "gzip" "lz4" "lzma" "xz" "xz-parallel" "zlib" "zstd" ];
"all-implementations" = [ "futures-io" "tokio" ];
"brotli" = [ "compression-codecs/brotli" ];
"bzip2" = [ "compression-codecs/bzip2" ];
"deflate" = [ "compression-codecs/deflate" ];
"deflate64" = [ "compression-codecs/deflate64" ];
"futures-io" = [ "dep:futures-io" ];
"gzip" = [ "compression-codecs/gzip" ];
"lz4" = [ "compression-codecs/lz4" ];
"lzma" = [ "compression-codecs/lzma" ];
"tokio" = [ "dep:tokio" ];
"xz" = [ "compression-codecs/xz" "lzma" ];
"xz-parallel" = [ "compression-codecs/xz-parallel" "xz" ];
"xz2" = [ "compression-codecs/xz2" "xz" ];
"zlib" = [ "compression-codecs/zlib" ];
"zstd" = [ "compression-codecs/zstd" ];
"zstdmt" = [ "compression-codecs/zstdmt" "zstd" ];
};
resolvedDefaultFeatures = [ "brotli" "gzip" "tokio" "zlib" "zstd" ];
};
"async-trait" = rec {
crateName = "async-trait";
version = "0.1.89";
edition = "2021";
sha256 = "1fsxxmz3rzx1prn1h3rs7kyjhkap60i7xvi0ldapkvbb14nssdch";
procMacro = true;
libName = "async_trait";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
usesDefaultFeatures = false;
features = [ "clone-impls" "full" "parsing" "printing" "proc-macro" "visit-mut" ];
}
];
};
"atomic" = rec {
crateName = "atomic";
version = "0.6.1";
edition = "2018";
sha256 = "0h43ljcgbl6vk62hs6yk7zg7qn3myzvpw8k7isb9nzhkbdvvz758";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "bytemuck";
packageId = "bytemuck";
}
];
devDependencies = [
{
name = "bytemuck";
packageId = "bytemuck";
features = [ "derive" ];
}
];
features = {
"default" = [ "fallback" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "fallback" ];
};
"atomic-waker" = rec {
crateName = "atomic-waker";
version = "1.1.2";
edition = "2018";
sha256 = "1h5av1lw56m0jf0fd3bchxq8a30xv0b4wv8s4zkp4s0i7mfvs18m";
libName = "atomic_waker";
authors = [
"Stjepan Glavina <stjepang@gmail.com>"
"Contributors to futures-rs"
];
features = {
"portable-atomic" = [ "dep:portable-atomic" ];
};
};
"autocfg" = rec {
crateName = "autocfg";
version = "1.5.1";
edition = "2015";
sha256 = "0lqasy5i30flcgih1b50kvsk6z32g09r1q4ql7q81pj6228jy0zj";
authors = [
"Josh Stone <cuviper@gmail.com>"
];
};
"aws-lc-rs" = rec {
crateName = "aws-lc-rs";
version = "1.17.0";
edition = "2021";
links = "aws_lc_rs_1_17_0_sys";
sha256 = "003d69lq9qf12bj4j6csy3nrvilwa30yd9x9blx7h1f27vyg3hjy";
libName = "aws_lc_rs";
authors = [
"AWS-LibCrypto"
];
dependencies = [
{
name = "aws-lc-sys";
packageId = "aws-lc-sys";
optional = true;
usesDefaultFeatures = false;
}
{
name = "zeroize";
packageId = "zeroize";
}
];
features = {
"asan" = [ "aws-lc-sys?/asan" "aws-lc-fips-sys?/asan" ];
"aws-lc-sys" = [ "dep:aws-lc-sys" ];
"bindgen" = [ "aws-lc-sys?/bindgen" "aws-lc-fips-sys?/bindgen" ];
"default" = [ "aws-lc-sys" "alloc" "ring-io" "ring-sig-verify" ];
"fips" = [ "dep:aws-lc-fips-sys" ];
"legacy-des" = [ "aws-lc-sys?/all-bindings" ];
"non-fips" = [ "aws-lc-sys" ];
"prebuilt-nasm" = [ "aws-lc-sys?/prebuilt-nasm" ];
"ring-io" = [ "dep:untrusted" ];
"ring-sig-verify" = [ "dep:untrusted" ];
};
resolvedDefaultFeatures = [ "aws-lc-sys" "prebuilt-nasm" ];
};
"aws-lc-sys" = rec {
crateName = "aws-lc-sys";
version = "0.41.0";
edition = "2021";
links = "aws_lc_0_41_0";
sha256 = "1x735y1qny5v2gzpl928z1ppddb906nl1n8d2yv3mfc5rrwrfbqs";
build = "builder/main.rs";
libName = "aws_lc_sys";
authors = [
"AWS-LC"
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
features = [ "parallel" ];
}
{
name = "cmake";
packageId = "cmake";
}
{
name = "dunce";
packageId = "dunce";
}
{
name = "fs_extra";
packageId = "fs_extra";
}
];
features = {
"bindgen" = [ "dep:bindgen" ];
"default" = [ "all-bindings" ];
"fips" = [ "dep:bindgen" ];
"ssl" = [ "bindgen" "all-bindings" ];
};
resolvedDefaultFeatures = [ "prebuilt-nasm" ];
};
"axum" = rec {
crateName = "axum";
version = "0.8.9";
edition = "2021";
sha256 = "146df5x8dhczm1sp939gr3839220wl6rxc1k65bzc450z72ridii";
dependencies = [
{
name = "axum-core";
packageId = "axum-core";
}
{
name = "axum-macros";
packageId = "axum-macros";
optional = true;
}
{
name = "base64";
packageId = "base64 0.22.1";
optional = true;
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "form_urlencoded";
packageId = "form_urlencoded";
optional = true;
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "http-body";
packageId = "http-body 1.0.1";
}
{
name = "http-body-util";
packageId = "http-body-util";
}
{
name = "hyper";
packageId = "hyper 1.10.1";
optional = true;
}
{
name = "hyper-util";
packageId = "hyper-util";
optional = true;
features = [ "tokio" "server" "service" ];
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "matchit";
packageId = "matchit";
}
{
name = "memchr";
packageId = "memchr";
}
{
name = "mime";
packageId = "mime";
}
{
name = "percent-encoding";
packageId = "percent-encoding";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "serde_core";
packageId = "serde_core";
}
{
name = "serde_json";
packageId = "serde_json";
optional = true;
features = [ "raw_value" ];
}
{
name = "serde_path_to_error";
packageId = "serde_path_to_error";
optional = true;
}
{
name = "serde_urlencoded";
packageId = "serde_urlencoded";
optional = true;
}
{
name = "sha1";
packageId = "sha1";
optional = true;
}
{
name = "sync_wrapper";
packageId = "sync_wrapper 1.0.2";
}
{
name = "tokio";
packageId = "tokio";
rename = "tokio";
optional = true;
features = [ "time" ];
}
{
name = "tokio-tungstenite";
packageId = "tokio-tungstenite";
optional = true;
}
{
name = "tower";
packageId = "tower";
usesDefaultFeatures = false;
features = [ "util" ];
}
{
name = "tower-layer";
packageId = "tower-layer";
}
{
name = "tower-service";
packageId = "tower-service";
}
{
name = "tracing";
packageId = "tracing";
optional = true;
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "hyper";
packageId = "hyper 1.10.1";
features = [ "client" ];
}
{
name = "serde_json";
packageId = "serde_json";
features = [ "raw_value" ];
}
{
name = "tokio";
packageId = "tokio";
rename = "tokio";
features = [ "macros" "rt" "rt-multi-thread" "net" "test-util" ];
}
{
name = "tokio-tungstenite";
packageId = "tokio-tungstenite";
}
{
name = "tower";
packageId = "tower";
rename = "tower";
features = [ "util" "timeout" "limit" "load-shed" "steer" "filter" ];
}
{
name = "tracing";
packageId = "tracing";
}
];
features = {
"__private" = [ "tokio" "http1" "dep:reqwest" ];
"__private_docs" = [ "axum-core/__private_docs" "tower/full" "dep:serde" "dep:tower-http" ];
"default" = [ "form" "http1" "json" "matched-path" "original-uri" "query" "tokio" "tower-log" "tracing" ];
"form" = [ "dep:form_urlencoded" "dep:serde_urlencoded" "dep:serde_path_to_error" ];
"http1" = [ "dep:hyper" "hyper?/http1" "hyper-util?/http1" ];
"http2" = [ "dep:hyper" "hyper?/http2" "hyper-util?/http2" ];
"json" = [ "dep:serde_json" "dep:serde_path_to_error" ];
"macros" = [ "dep:axum-macros" ];
"multipart" = [ "dep:multer" ];
"query" = [ "dep:form_urlencoded" "dep:serde_urlencoded" "dep:serde_path_to_error" ];
"tokio" = [ "dep:hyper-util" "dep:tokio" "tokio/net" "tokio/rt" "tower/make" "tokio/macros" ];
"tower-log" = [ "tower/log" ];
"tracing" = [ "dep:tracing" "axum-core/tracing" ];
"ws" = [ "dep:hyper" "tokio" "dep:tokio-tungstenite" "dep:sha1" "dep:base64" ];
};
resolvedDefaultFeatures = [ "default" "form" "http1" "json" "macros" "matched-path" "original-uri" "query" "tokio" "tower-log" "tracing" "ws" ];
};
"axum-core" = rec {
crateName = "axum-core";
version = "0.5.6";
edition = "2021";
sha256 = "1lcjhxysnbc64rh21ag9m9fpiryd1iwcdh9mwxz1yadiswqqziq8";
libName = "axum_core";
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "futures-core";
packageId = "futures-core";
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "http-body";
packageId = "http-body 1.0.1";
}
{
name = "http-body-util";
packageId = "http-body-util";
}
{
name = "mime";
packageId = "mime";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "sync_wrapper";
packageId = "sync_wrapper 1.0.2";
}
{
name = "tower-layer";
packageId = "tower-layer";
}
{
name = "tower-service";
packageId = "tower-service";
}
{
name = "tracing";
packageId = "tracing";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"__private_docs" = [ "dep:tower-http" ];
"tracing" = [ "dep:tracing" ];
};
resolvedDefaultFeatures = [ "tracing" ];
};
"axum-extra 0.10.3" = rec {
crateName = "axum-extra";
version = "0.10.3";
edition = "2021";
sha256 = "15mb28f49y4g434ry9c7gnamh3ac0130mvsncz3h4q8cyhczyqwr";
libName = "axum_extra";
dependencies = [
{
name = "axum";
packageId = "axum";
usesDefaultFeatures = false;
features = [ "original-uri" ];
}
{
name = "axum-core";
packageId = "axum-core";
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "headers";
packageId = "headers";
optional = true;
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "http-body";
packageId = "http-body 1.0.1";
}
{
name = "http-body-util";
packageId = "http-body-util";
}
{
name = "mime";
packageId = "mime";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "rustversion";
packageId = "rustversion";
}
{
name = "serde_core";
packageId = "serde_core";
}
{
name = "tower-layer";
packageId = "tower-layer";
}
{
name = "tower-service";
packageId = "tower-service";
}
{
name = "tracing";
packageId = "tracing";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"__private_docs" = [ "axum/json" "dep:serde" "dep:tower" ];
"async-read-body" = [ "dep:tokio-util" "tokio-util?/io" "dep:tokio" ];
"attachment" = [ "dep:tracing" ];
"cookie" = [ "dep:cookie" ];
"cookie-key-expansion" = [ "cookie" "cookie?/key-expansion" ];
"cookie-private" = [ "cookie" "cookie?/private" ];
"cookie-signed" = [ "cookie" "cookie?/signed" ];
"default" = [ "tracing" ];
"erased-json" = [ "dep:serde_json" "dep:typed-json" ];
"error-response" = [ "dep:tracing" "tracing/std" ];
"file-stream" = [ "dep:tokio-util" "tokio-util?/io" "dep:tokio" "tokio?/fs" "tokio?/io-util" ];
"form" = [ "dep:form_urlencoded" "dep:serde_html_form" "dep:serde_path_to_error" ];
"json-deserializer" = [ "dep:serde_json" "dep:serde_path_to_error" ];
"json-lines" = [ "dep:serde_json" "dep:tokio-util" "dep:tokio-stream" "tokio-util?/io" "tokio-stream?/io-util" "dep:tokio" ];
"multipart" = [ "dep:multer" "dep:fastrand" ];
"protobuf" = [ "dep:prost" ];
"query" = [ "dep:form_urlencoded" "dep:serde_html_form" "dep:serde_path_to_error" ];
"tracing" = [ "axum-core/tracing" "axum/tracing" "dep:tracing" ];
"typed-header" = [ "dep:headers" ];
"typed-routing" = [ "dep:axum-macros" "dep:percent-encoding" "dep:serde_html_form" "dep:form_urlencoded" ];
};
resolvedDefaultFeatures = [ "default" "tracing" "typed-header" ];
};
"axum-extra 0.12.6" = rec {
crateName = "axum-extra";
version = "0.12.6";
edition = "2021";
sha256 = "0w3r7w87726ycs1l5r15gblmpif3r4ah08x54cnspffc84xnhi5y";
libName = "axum_extra";
dependencies = [
{
name = "axum";
packageId = "axum";
optional = true;
usesDefaultFeatures = false;
}
{
name = "axum-core";
packageId = "axum-core";
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "cookie";
packageId = "cookie";
rename = "cookie";
optional = true;
features = [ "percent-encode" ];
}
{
name = "futures-core";
packageId = "futures-core";
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "headers";
packageId = "headers";
optional = true;
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "http-body";
packageId = "http-body 1.0.1";
}
{
name = "http-body-util";
packageId = "http-body-util";
}
{
name = "mime";
packageId = "mime";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "tower-layer";
packageId = "tower-layer";
}
{
name = "tower-service";
packageId = "tower-service";
}
{
name = "tracing";
packageId = "tracing";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"__private_docs" = [ "axum/json" "dep:serde" "dep:tower" ];
"async-read-body" = [ "dep:tokio-util" "tokio-util?/io" "dep:tokio" ];
"attachment" = [ "dep:tracing" ];
"cached" = [ "dep:axum" ];
"cookie" = [ "dep:cookie" ];
"cookie-key-expansion" = [ "cookie" "cookie?/key-expansion" ];
"cookie-private" = [ "cookie" "cookie?/private" ];
"cookie-signed" = [ "cookie" "cookie?/signed" ];
"default" = [ "tracing" ];
"erased-json" = [ "dep:serde_core" "dep:serde_json" "dep:typed-json" ];
"error-response" = [ "dep:tracing" "tracing/std" ];
"file-stream" = [ "dep:tokio-util" "tokio-util?/io" "dep:tokio" "tokio?/fs" "tokio?/io-util" ];
"form" = [ "dep:axum" "dep:form_urlencoded" "dep:serde_core" "dep:serde_html_form" "dep:serde_path_to_error" ];
"handler" = [ "dep:axum" ];
"json-deserializer" = [ "dep:serde_core" "dep:serde_json" "dep:serde_path_to_error" ];
"json-lines" = [ "dep:serde_core" "dep:serde_json" "dep:tokio-util" "dep:tokio-stream" "tokio-util?/io" "tokio-stream?/io-util" "dep:tokio" ];
"middleware" = [ "dep:axum" ];
"multipart" = [ "dep:multer" "dep:fastrand" ];
"optional-path" = [ "dep:axum" "dep:serde_core" ];
"protobuf" = [ "dep:prost" ];
"query" = [ "dep:form_urlencoded" "dep:serde_core" "dep:serde_html_form" "dep:serde_path_to_error" ];
"routing" = [ "axum/original-uri" "dep:rustversion" ];
"tracing" = [ "axum-core/tracing" "axum/tracing" "dep:tracing" ];
"typed-header" = [ "dep:headers" ];
"typed-routing" = [ "routing" "dep:axum-macros" "dep:percent-encoding" "dep:serde_core" "dep:serde_html_form" "dep:form_urlencoded" ];
"with-rejection" = [ "dep:axum" ];
};
resolvedDefaultFeatures = [ "cookie" "cookie-signed" "default" "tracing" "typed-header" ];
};
"axum-helmet" = rec {
crateName = "axum-helmet";
version = "0.2.0";
edition = "2021";
sha256 = "0xl39wlpimw5rwc7cv317iwhkalqn65y3j0cfmnnyy64z9d13lcm";
libName = "axum_helmet";
authors = [
"Daniel Kovacs <kovacsemod@gmail.com>"
];
dependencies = [
{
name = "axum";
packageId = "axum";
}
{
name = "helmet-core";
packageId = "helmet-core";
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "tokio";
packageId = "tokio";
}
{
name = "tower";
packageId = "tower";
}
{
name = "tower-service";
packageId = "tower-service";
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "rt-multi-thread" ];
}
];
};
"axum-macros" = rec {
crateName = "axum-macros";
version = "0.5.1";
edition = "2021";
sha256 = "1jhawa9d6pgkcqflbqz7vylv4ksh9wm31kdrcd1jrggv7g16i8ks";
procMacro = true;
libName = "axum_macros";
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" "parsing" "extra-traits" ];
}
];
devDependencies = [
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" "extra-traits" ];
}
];
features = {
"__private" = [ "syn/visit-mut" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"axum-range" = rec {
crateName = "axum-range";
version = "1.0.0";
edition = "2021";
sha256 = "0nwzzr4jhm94l14xnhfsv13vq8r81xk4gf5ifhd555ndlixp2c3a";
libName = "axum_range";
dependencies = [
{
name = "axum";
packageId = "axum";
usesDefaultFeatures = false;
}
{
name = "axum-extra";
packageId = "axum-extra 0.10.3";
features = [ "typed-header" ];
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "futures";
packageId = "futures";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "http-body";
packageId = "http-body 1.0.1";
}
{
name = "pin-project";
packageId = "pin-project";
}
{
name = "tokio";
packageId = "tokio";
features = [ "fs" "io-util" ];
}
];
devDependencies = [
{
name = "axum";
packageId = "axum";
features = [ "macros" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "rt" "rt-multi-thread" "macros" ];
}
];
features = {
};
};
"axum-response-cache" = rec {
crateName = "axum-response-cache";
version = "0.4.0";
edition = "2021";
sha256 = "14xqisqkcv889f9hgwsk7wr6zbfpb1npkga6r58s1j08shhbrfsx";
libName = "axum_response_cache";
authors = [
"Omniscopy Dev Team <dev@omniscopy.com>"
"Benedykt Jaworski <benedykt.jaworski@omniscopy.com>"
];
dependencies = [
{
name = "axum";
packageId = "axum";
rename = "axum_08";
optional = true;
usesDefaultFeatures = false;
}
{
name = "cached";
packageId = "cached";
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "tower";
packageId = "tower";
}
{
name = "tracing";
packageId = "tracing";
}
{
name = "tracing-futures";
packageId = "tracing-futures";
}
];
devDependencies = [
{
name = "axum";
packageId = "axum";
rename = "axum_08";
features = [ "tokio" ];
}
{
name = "tower";
packageId = "tower";
features = [ "util" ];
}
];
features = {
"axum07" = [ "dep:axum_07" ];
"axum08" = [ "dep:axum_08" ];
"default" = [ "axum08" ];
};
resolvedDefaultFeatures = [ "axum08" "default" ];
};
"axum-server" = rec {
crateName = "axum-server";
version = "0.7.3";
edition = "2021";
sha256 = "1yd584xm9lwwpp63kijyzg85nsdg4jl076nrf9y6b2par4z4may1";
libName = "axum_server";
authors = [
"Programatik <programatik29@gmail.com>"
"Adi Salimgereev <adisalimgereev@gmail.com>"
];
dependencies = [
{
name = "arc-swap";
packageId = "arc-swap";
optional = true;
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "fs-err";
packageId = "fs-err";
features = [ "tokio" ];
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "http-body";
packageId = "http-body 1.0.1";
}
{
name = "hyper";
packageId = "hyper 1.10.1";
features = [ "http1" "http2" "server" ];
}
{
name = "hyper-util";
packageId = "hyper-util";
features = [ "server-auto" "service" "tokio" ];
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
optional = true;
}
{
name = "rustls";
packageId = "rustls";
optional = true;
usesDefaultFeatures = false;
}
{
name = "rustls-pemfile";
packageId = "rustls-pemfile 2.2.0";
optional = true;
}
{
name = "rustls-pki-types";
packageId = "rustls-pki-types";
optional = true;
}
{
name = "tokio";
packageId = "tokio";
features = [ "macros" "net" "sync" ];
}
{
name = "tokio-rustls";
packageId = "tokio-rustls";
optional = true;
usesDefaultFeatures = false;
}
{
name = "tower-service";
packageId = "tower-service";
}
];
devDependencies = [
{
name = "hyper";
packageId = "hyper 1.10.1";
features = [ "full" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "full" ];
}
];
features = {
"arc-swap" = [ "dep:arc-swap" ];
"openssl" = [ "dep:openssl" ];
"openssl-sys" = [ "dep:openssl-sys" ];
"rustls" = [ "dep:rustls" ];
"rustls-pemfile" = [ "dep:rustls-pemfile" ];
"rustls-pki-types" = [ "dep:rustls-pki-types" ];
"tls-openssl" = [ "arc-swap" "openssl" "openssl-sys" "tokio-openssl" "dep:pin-project-lite" ];
"tls-rustls" = [ "tls-rustls-no-provider" "rustls/aws-lc-rs" ];
"tls-rustls-no-provider" = [ "arc-swap" "rustls" "rustls-pemfile" "tokio/fs" "tokio/time" "tokio-rustls" "rustls-pki-types" "dep:pin-project-lite" ];
"tokio-openssl" = [ "dep:tokio-openssl" ];
"tokio-rustls" = [ "dep:tokio-rustls" ];
};
resolvedDefaultFeatures = [ "arc-swap" "default" "rustls" "rustls-pemfile" "rustls-pki-types" "tls-rustls" "tls-rustls-no-provider" "tokio-rustls" ];
};
"axum_csrf" = rec {
crateName = "axum_csrf";
version = "0.11.0";
edition = "2021";
sha256 = "0m2gjk5b2fjd0na74zzjvd0vgs3pg6xcc7bfip663hfnqsw3768m";
authors = [
"Andrew Wheeler <genusistimelord@gmail.com>"
];
dependencies = [
{
name = "async-trait";
packageId = "async-trait";
}
{
name = "axum-core";
packageId = "axum-core";
}
{
name = "base64ct";
packageId = "base64ct";
features = [ "alloc" ];
}
{
name = "cookie";
packageId = "cookie";
features = [ "percent-encode" "signed" "private" ];
}
{
name = "hmac";
packageId = "hmac 0.12.1";
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "rand";
packageId = "rand 0.8.6";
}
{
name = "sha2";
packageId = "sha2 0.10.9";
}
{
name = "thiserror";
packageId = "thiserror 2.0.18";
}
{
name = "time";
packageId = "time";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
features = {
"layer" = [ "dep:tower-layer" "dep:tower-service" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"base64 0.21.7" = rec {
crateName = "base64";
version = "0.21.7";
edition = "2018";
sha256 = "0rw52yvsk75kar9wgqfwgb414kvil1gn7mqkrhn9zf1537mpsacx";
authors = [
"Alice Maz <alice@alicemaz.com>"
"Marshall Pierce <marshall@mpierce.org>"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"base64 0.22.1" = rec {
crateName = "base64";
version = "0.22.1";
edition = "2018";
sha256 = "1imqzgh7bxcikp5vx3shqvw9j09g9ly0xr0jma0q66i52r7jbcvj";
authors = [
"Marshall Pierce <marshall@mpierce.org>"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"base64-simd 0.7.0" = rec {
crateName = "base64-simd";
version = "0.7.0";
edition = "2021";
sha256 = "1mg5ayj5z7imfyv06fhzi5rw289gv5yrfakxzsad22zz786d47bq";
libName = "base64_simd";
dependencies = [
{
name = "simd-abstraction";
packageId = "simd-abstraction";
}
];
features = {
"alloc" = [ "simd-abstraction/alloc" ];
"default" = [ "std" "detect" ];
"detect" = [ "simd-abstraction/detect" ];
"std" = [ "alloc" "simd-abstraction/std" ];
"unstable" = [ "simd-abstraction/unstable" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "detect" "std" ];
};
"base64-simd 0.8.0" = rec {
crateName = "base64-simd";
version = "0.8.0";
edition = "2021";
sha256 = "15cihnjqpxy0h7llpk816czyp5z613yrvsivw9i8f5vkivkvp6ik";
libName = "base64_simd";
dependencies = [
{
name = "outref";
packageId = "outref 0.5.2";
}
{
name = "vsimd";
packageId = "vsimd";
}
];
features = {
"alloc" = [ "vsimd/alloc" ];
"default" = [ "std" "detect" ];
"detect" = [ "vsimd/detect" ];
"std" = [ "alloc" "vsimd/std" ];
"unstable" = [ "vsimd/unstable" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "detect" "std" ];
};
"base64ct" = rec {
crateName = "base64ct";
version = "1.8.3";
edition = "2024";
sha256 = "01nyyyx84bhwrcc168hn47d8gvz2pzpv3y3lmck7mq4hw5vh3x9a";
authors = [
"RustCrypto Developers"
];
features = {
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"base64urlsafedata" = rec {
crateName = "base64urlsafedata";
version = "0.5.5";
edition = "2021";
sha256 = "077jk4c1m8mg70arc374zd8kg2in0z1lmrxivpfcmn47bj0k73mh";
authors = [
"William Brown <william@blackhats.net.au>"
"Michael Farrell <micolous+git@gmail.com>"
"James Hodgkinson <james@terminaloutcomes.com>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.21.7";
}
{
name = "pastey";
packageId = "pastey";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
];
};
"bcrypt-pbkdf" = rec {
crateName = "bcrypt-pbkdf";
version = "0.10.0";
edition = "2021";
sha256 = "18pjhsy3m2v0silsp4mjzz8i92zrpqxk9b059zrnk1w8zvhw5ska";
libName = "bcrypt_pbkdf";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "blowfish";
packageId = "blowfish";
features = [ "bcrypt" ];
}
{
name = "pbkdf2";
packageId = "pbkdf2 0.12.2";
usesDefaultFeatures = false;
}
{
name = "sha2";
packageId = "sha2 0.10.9";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "alloc" "std" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"bigdecimal" = rec {
crateName = "bigdecimal";
version = "0.4.10";
edition = "2015";
sha256 = "159nc0bs6bbzxrpfxbnn83ccyzq8bc2ia40zd22ssfjvavqnfs2d";
authors = [
"Andrew Kubera"
];
dependencies = [
{
name = "libm";
packageId = "libm";
}
{
name = "num-bigint";
packageId = "num-bigint";
usesDefaultFeatures = false;
}
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
}
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg";
}
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"serde-json" = [ "serde/derive" "serde_json" ];
"serde_json" = [ "dep:serde_json" ];
"std" = [ "num-bigint/std" "num-integer/std" "num-traits/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"bincode" = 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.12.1" = rec {
crateName = "bitflags";
version = "2.12.1";
edition = "2021";
sha256 = "02phhjm7w380zdh8928zf13cfi1bw2qz2ay36ml2jmwmmv8cxmw4";
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" ];
};
"bitvec" = rec {
crateName = "bitvec";
version = "1.0.1";
edition = "2021";
sha256 = "173ydyj2q5vwj88k6xgjnfsshs4x9wbvjjv7sm0h36r34hn87hhv";
dependencies = [
{
name = "funty";
packageId = "funty";
usesDefaultFeatures = false;
}
{
name = "radium";
packageId = "radium";
}
{
name = "tap";
packageId = "tap";
}
{
name = "wyz";
packageId = "wyz";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "atomic" "std" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"blake3" = rec {
crateName = "blake3";
version = "1.8.5";
edition = "2024";
sha256 = "1khz6wq61fnr0gl1kmy4bxadc7gbcv4gbq05z4jdjhr8wqs3ra0a";
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;
}
{
name = "cpufeatures";
packageId = "cpufeatures 0.3.0";
target = { target, features }: (("x86" == target."arch" or null) || ("x86_64" == target."arch" or null));
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
];
features = {
"default" = [ "std" ];
"digest" = [ "dep:digest" ];
"mmap" = [ "std" "dep:memmap2" ];
"rayon" = [ "dep:rayon-core" ];
"serde" = [ "dep:serde" ];
"std" = [ "constant_time_eq/std" ];
"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.12.0" = rec {
crateName = "block-buffer";
version = "0.12.0";
edition = "2024";
sha256 = "1glh8w49a7cj0wlkalyn9j605jzf2ss0lg8dqq5xh8cr2q451lyd";
libName = "block_buffer";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "hybrid-array";
packageId = "hybrid-array";
}
];
features = {
"zeroize" = [ "dep:zeroize" ];
};
};
"block-buffer 0.9.0" = rec {
crateName = "block-buffer";
version = "0.9.0";
edition = "2018";
sha256 = "1r4pf90s7d7lj1wdjhlnqa26vvbm6pnc33z138lxpnp9srpi2lj1";
libName = "block_buffer";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
}
];
features = {
"block-padding" = [ "dep:block-padding" ];
};
};
"block-modes" = rec {
crateName = "block-modes";
version = "0.8.1";
edition = "2018";
sha256 = "13id7rw1lhi83i701za8w5is3a8qkf4vfigqw3f8jp8mxldkvc1c";
libName = "block_modes";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "block-padding";
packageId = "block-padding";
}
{
name = "cipher";
packageId = "cipher 0.3.0";
}
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"block-padding" = rec {
crateName = "block-padding";
version = "0.2.1";
edition = "2018";
sha256 = "1bickjlmfw9iv63dp781n589rfybw879mik1va59833m1hvnqscd";
libName = "block_padding";
authors = [
"RustCrypto Developers"
];
};
"blowfish" = rec {
crateName = "blowfish";
version = "0.9.1";
edition = "2021";
sha256 = "1mw7bvj3bg5w8vh9xw9xawqh7ixk2xwsxkj34ph96b9b1z6y44p4";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
usesDefaultFeatures = false;
}
{
name = "cipher";
packageId = "cipher 0.4.4";
}
];
devDependencies = [
{
name = "cipher";
packageId = "cipher 0.4.4";
features = [ "dev" ];
}
];
features = {
"zeroize" = [ "cipher/zeroize" ];
};
resolvedDefaultFeatures = [ "bcrypt" ];
};
"brotli" = rec {
crateName = "brotli";
version = "8.0.3";
edition = "2015";
crateBin = [];
sha256 = "0446ihwc6yk4dsjr4fp9jm9inbzibcwrsjj7pj5p1x9nci8y86c1";
authors = [
"Daniel Reiter Horn <danielrh@dropbox.com>"
"The Brotli Authors"
];
dependencies = [
{
name = "alloc-no-stdlib";
packageId = "alloc-no-stdlib";
}
{
name = "alloc-stdlib";
packageId = "alloc-stdlib";
optional = true;
}
{
name = "brotli-decompressor";
packageId = "brotli-decompressor";
usesDefaultFeatures = false;
}
];
features = {
"alloc-stdlib" = [ "dep:alloc-stdlib" ];
"benchmark" = [ "brotli-decompressor/benchmark" ];
"default" = [ "std" ];
"disable-timer" = [ "brotli-decompressor/disable-timer" ];
"ffi-api" = [ "brotli-decompressor/ffi-api" ];
"seccomp" = [ "brotli-decompressor/seccomp" ];
"sha2" = [ "dep:sha2" ];
"std" = [ "alloc-stdlib" "brotli-decompressor/std" ];
"validation" = [ "sha2" ];
};
resolvedDefaultFeatures = [ "alloc-stdlib" "default" "std" ];
};
"brotli-decompressor" = rec {
crateName = "brotli-decompressor";
version = "5.0.1";
edition = "2015";
crateBin = [];
sha256 = "0929p5smsq5v0jy509gn746y3v1yjjwnk49xg5g1pklj3cz54qjr";
libName = "brotli_decompressor";
authors = [
"Daniel Reiter Horn <danielrh@dropbox.com>"
"The Brotli Authors"
];
dependencies = [
{
name = "alloc-no-stdlib";
packageId = "alloc-no-stdlib";
}
{
name = "alloc-stdlib";
packageId = "alloc-stdlib";
optional = true;
}
];
features = {
"alloc-stdlib" = [ "dep:alloc-stdlib" ];
"default" = [ "std" ];
"std" = [ "alloc-stdlib" ];
"unsafe" = [ "alloc-no-stdlib/unsafe" "alloc-stdlib/unsafe" ];
};
resolvedDefaultFeatures = [ "alloc-stdlib" "std" ];
};
"bs58 0.4.0" = rec {
crateName = "bs58";
version = "0.4.0";
edition = "2018";
sha256 = "1lr3vwzhhyica4y7rbkf26vr1h7vpjb1m6rml8zcqgw81c2y07vp";
authors = [
"Wim Looman <wim@nemo157.com>"
];
features = {
"check" = [ "sha2" ];
"default" = [ "std" ];
"sha2" = [ "dep:sha2" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"bs58 0.5.1" = rec {
crateName = "bs58";
version = "0.5.1";
edition = "2021";
sha256 = "1x3v51n5n2s3l0rgrsn142akdf331n2qsa75pscw71fi848vm25z";
dependencies = [
{
name = "tinyvec";
packageId = "tinyvec";
optional = true;
usesDefaultFeatures = false;
features = [ "grab_spare_slice" ];
}
];
devDependencies = [
{
name = "tinyvec";
packageId = "tinyvec";
features = [ "rustc_1_55" ];
}
];
features = {
"alloc" = [ "tinyvec?/alloc" ];
"cb58" = [ "sha2" ];
"check" = [ "sha2" ];
"default" = [ "std" ];
"sha2" = [ "dep:sha2" ];
"smallvec" = [ "dep:smallvec" ];
"std" = [ "alloc" "tinyvec?/std" ];
"tinyvec" = [ "dep:tinyvec" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"bstr" = rec {
crateName = "bstr";
version = "1.12.1";
edition = "2021";
sha256 = "1arc1v7h5l86vd6z76z3xykjzldqd5icldn7j9d3p7z6x0d4w133";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "memchr/alloc" "serde?/alloc" ];
"default" = [ "std" "unicode" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" "memchr/std" "serde?/std" ];
"unicode" = [ "dep:regex-automata" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"bumpalo" = rec {
crateName = "bumpalo";
version = "3.19.0";
edition = "2021";
sha256 = "0hsdndvcpqbjb85ghrhska2qxvp9i75q2vb70hma9fxqawdy9ia6";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
];
dependencies = [
{
name = "allocator-api2";
packageId = "allocator-api2";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"allocator-api2" = [ "dep:allocator-api2" ];
"bench_allocator_api" = [ "allocator_api" "blink-alloc/nightly" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "allocator-api2" "collections" "default" ];
};
"bytecheck" = rec {
crateName = "bytecheck";
version = "0.6.12";
edition = "2021";
sha256 = "1hmipv4yyxgbamcbw5r65wagv9khs033v9483s9kri9sw9ycbk93";
authors = [
"David Koloski <djkoloski@gmail.com>"
];
dependencies = [
{
name = "bytecheck_derive";
packageId = "bytecheck_derive";
usesDefaultFeatures = false;
}
{
name = "ptr_meta";
packageId = "ptr_meta";
usesDefaultFeatures = false;
}
{
name = "simdutf8";
packageId = "simdutf8";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "simdutf8" "std" ];
"simdutf8" = [ "dep:simdutf8" ];
"std" = [ "ptr_meta/std" "bytecheck_derive/std" "simdutf8/std" ];
"uuid" = [ "dep:uuid" ];
};
resolvedDefaultFeatures = [ "simdutf8" "std" ];
};
"bytecheck_derive" = rec {
crateName = "bytecheck_derive";
version = "0.6.12";
edition = "2021";
sha256 = "0ng6230brd0hvqpbgcx83inn74mdv3abwn95x515bndwkz90dd1x";
procMacro = true;
authors = [
"David Koloski <djkoloski@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 1.0.109";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"bytemuck" = rec {
crateName = "bytemuck";
version = "1.25.0";
edition = "2018";
sha256 = "1v1z32igg9zq49phb3fra0ax5r2inf3aw473vldnm886sx5vdvy8";
authors = [
"Lokathor <zefria@gmail.com>"
];
features = {
"bytemuck_derive" = [ "dep:bytemuck_derive" ];
"derive" = [ "bytemuck_derive" ];
"extern_crate_std" = [ "extern_crate_alloc" ];
"latest_stable_rust" = [ "aarch64_simd" "avx512_simd" "align_offset" "alloc_uninit" "const_zeroed" "derive" "impl_core_error" "min_const_generics" "must_cast" "must_cast_extra" "pod_saturating" "track_caller" "transparentwrapper_extra" "wasm_simd" "zeroable_atomics" "zeroable_maybe_uninit" "zeroable_unwind_fn" ];
"must_cast_extra" = [ "must_cast" ];
"nightly_portable_simd" = [ "rustversion" ];
"rustversion" = [ "dep:rustversion" ];
};
};
"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.1";
edition = "2021";
sha256 = "0czwlhbq8z29wq0ia87yass2mzy1y0jcasjb8ghriiybnwrqfx0y";
authors = [
"Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
features = {
"default" = [ "std" ];
"extra-platforms" = [ "dep:extra-platforms" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"cached" = rec {
crateName = "cached";
version = "0.56.0";
edition = "2018";
sha256 = "0g15g8rb1r24xrzrj9v5da6pvk80yw0ry7chp2d805wf2vp2f6c0";
authors = [
"James Kominick <james@kominick.com>"
];
dependencies = [
{
name = "ahash";
packageId = "ahash 0.8.12";
optional = true;
usesDefaultFeatures = false;
}
{
name = "cached_proc_macro";
packageId = "cached_proc_macro";
optional = true;
}
{
name = "cached_proc_macro_types";
packageId = "cached_proc_macro_types";
optional = true;
}
{
name = "hashbrown";
packageId = "hashbrown 0.15.5";
usesDefaultFeatures = false;
features = [ "inline-more" ];
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "thiserror";
packageId = "thiserror 2.0.18";
}
{
name = "web-time";
packageId = "web-time";
}
];
features = {
"ahash" = [ "dep:ahash" "hashbrown/default" ];
"async" = [ "futures" "tokio" "async-trait" ];
"async-trait" = [ "dep:async-trait" ];
"async_tokio_rt_multi_thread" = [ "async" "tokio/rt-multi-thread" ];
"cached_proc_macro" = [ "dep:cached_proc_macro" ];
"cached_proc_macro_types" = [ "dep:cached_proc_macro_types" ];
"default" = [ "proc_macro" "ahash" ];
"directories" = [ "dep:directories" ];
"disk_store" = [ "sled" "serde" "rmp-serde" "directories" ];
"futures" = [ "dep:futures" ];
"proc_macro" = [ "cached_proc_macro" "cached_proc_macro_types" ];
"r2d2" = [ "dep:r2d2" ];
"redis" = [ "dep:redis" ];
"redis_ahash" = [ "redis_store" "redis/ahash" ];
"redis_async_std" = [ "redis_store" "async" "redis/aio" "redis/async-std-comp" "redis/tls" "redis/async-std-tls-comp" ];
"redis_connection_manager" = [ "redis_store" "redis/connection-manager" ];
"redis_store" = [ "redis" "r2d2" "serde" "serde_json" ];
"redis_tokio" = [ "redis_store" "async" "redis/aio" "redis/tokio-comp" "redis/tls" "redis/tokio-native-tls-comp" ];
"rmp-serde" = [ "dep:rmp-serde" ];
"serde" = [ "dep:serde" ];
"serde_json" = [ "dep:serde_json" ];
"sled" = [ "dep:sled" ];
"tokio" = [ "dep:tokio" ];
};
resolvedDefaultFeatures = [ "ahash" "cached_proc_macro" "cached_proc_macro_types" "default" "proc_macro" ];
};
"cached_proc_macro" = rec {
crateName = "cached_proc_macro";
version = "0.25.0";
edition = "2018";
sha256 = "00gjf5jvyvbj37hbbq6m51l79grgxc47jq0npw44r6ja9v7vs9cj";
procMacro = true;
authors = [
"csos95 <csoscss@gmail.com>"
"James Kominick <james@kominick.com>"
];
dependencies = [
{
name = "darling";
packageId = "darling 0.20.11";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
};
"cached_proc_macro_types" = rec {
crateName = "cached_proc_macro_types";
version = "0.1.1";
edition = "2018";
sha256 = "1h3gw61v1inay4g3b8pirxlz18m81k63dw2q18zj9fnmidmkds5d";
authors = [
"James Kominick <james@kominick.com>"
];
};
"canonical-path" = rec {
crateName = "canonical-path";
version = "2.0.2";
edition = "2018";
sha256 = "0vvsjda6ka5nz8zvx6r08zqi0j59sjccgcbjxj96xj764w9y1sg6";
libName = "canonical_path";
authors = [
"Tony Arcieri <tony@iqlusion.io>"
];
};
"castaway" = rec {
crateName = "castaway";
version = "0.2.4";
edition = "2018";
sha256 = "0nn5his5f8q20nkyg1nwb40xc19a08yaj4y76a8q2y3mdsmm3ify";
authors = [
"Stephen M. Coakley <me@stephencoakley.com>"
];
dependencies = [
{
name = "rustversion";
packageId = "rustversion";
}
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"cc" = rec {
crateName = "cc";
version = "1.2.63";
edition = "2018";
sha256 = "0zy2bqc4nvj6bv2cipx4h4bn65wf1zqf1fw1hsh64mmvg1hh2vjm";
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>"
];
};
"chacha20" = rec {
crateName = "chacha20";
version = "0.10.0";
edition = "2024";
sha256 = "00bn2rn8l68qvlq93mhq7b4ns4zy9qbjsyjbb9kljgl4hqr9i3bg";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "cpufeatures";
packageId = "cpufeatures 0.3.0";
target = { target, features }: (("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
}
{
name = "rand_core";
packageId = "rand_core 0.10.1";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"cipher" = [ "dep:cipher" ];
"default" = [ "cipher" ];
"legacy" = [ "cipher" ];
"rng" = [ "dep:rand_core" ];
"xchacha" = [ "cipher" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "rng" ];
};
"chardetng" = rec {
crateName = "chardetng";
version = "0.1.17";
edition = "2018";
sha256 = "1spikjcnblwa5n1nnk46fxkwn86yfiqxgs47h4yaw23vbfvg1f0l";
authors = [
"Henri Sivonen <hsivonen@hsivonen.fi>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "encoding_rs";
packageId = "encoding_rs";
usesDefaultFeatures = false;
}
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
];
features = {
"arrayvec" = [ "dep:arrayvec" ];
"multithreading" = [ "rayon" "arrayvec" ];
"rayon" = [ "dep:rayon" ];
};
};
"chrono" = rec {
crateName = "chrono";
version = "0.4.44";
edition = "2021";
sha256 = "1c64mk9a235271j5g3v4zrzqqmd43vp9vki7vqfllpqf5rd0fwy6";
dependencies = [
{
name = "iana-time-zone";
packageId = "iana-time-zone";
optional = true;
target = { target, features }: (target."unix" or false);
features = [ "fallback" ];
}
{
name = "js-sys";
packageId = "js-sys";
optional = true;
target = { target, features }: (("wasm32" == target."arch" or null) && (!(("emscripten" == target."os" or null) || ("wasi" == target."os" or null))));
}
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
optional = true;
target = { target, features }: (("wasm32" == target."arch" or null) && (!(("emscripten" == target."os" or null) || ("wasi" == target."os" or null))));
}
{
name = "windows-link";
packageId = "windows-link";
optional = true;
target = { target, features }: (target."windows" or false);
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"clock" = [ "winapi" "iana-time-zone" "now" ];
"default" = [ "clock" "std" "oldtime" "wasmbind" ];
"defmt" = [ "dep:defmt" "pure-rust-locales?/defmt" ];
"iana-time-zone" = [ "dep:iana-time-zone" ];
"js-sys" = [ "dep:js-sys" ];
"now" = [ "std" ];
"pure-rust-locales" = [ "dep:pure-rust-locales" ];
"rkyv" = [ "dep:rkyv" "rkyv/size_32" ];
"rkyv-16" = [ "dep:rkyv" "rkyv?/size_16" ];
"rkyv-32" = [ "dep:rkyv" "rkyv?/size_32" ];
"rkyv-64" = [ "dep:rkyv" "rkyv?/size_64" ];
"rkyv-validation" = [ "rkyv?/validation" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" ];
"unstable-locales" = [ "pure-rust-locales" ];
"wasm-bindgen" = [ "dep:wasm-bindgen" ];
"wasmbind" = [ "wasm-bindgen" "js-sys" ];
"winapi" = [ "windows-link" ];
"windows-link" = [ "dep:windows-link" ];
};
resolvedDefaultFeatures = [ "alloc" "clock" "default" "iana-time-zone" "js-sys" "now" "oldtime" "serde" "std" "wasm-bindgen" "wasmbind" "winapi" "windows-link" ];
};
"ci" = rec {
crateName = "ci";
version = "0.1.0";
edition = "2021";
crateBin = [
{
name = "ci";
path = "src/main.rs";
requiredFeatures = [ ];
}
];
src = lib.cleanSourceWith { filter = sourceFilter; src = ./ci; };
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "axum";
packageId = "axum";
features = [ "macros" "ws" ];
}
{
name = "axum-extra";
packageId = "axum-extra 0.12.6";
features = [ "typed-header" ];
}
{
name = "axum-range";
packageId = "axum-range";
}
{
name = "bincode";
packageId = "bincode";
}
{
name = "chrono";
packageId = "chrono";
features = [ "serde" ];
}
{
name = "clap";
packageId = "clap";
features = [ "derive" ];
}
{
name = "diesel";
packageId = "diesel";
features = [ "postgres_backend" "extras" "network-address" ];
}
{
name = "diesel-async";
packageId = "diesel-async";
features = [ "postgres" "deadpool" ];
}
{
name = "env_logger";
packageId = "env_logger";
}
{
name = "futures";
packageId = "futures";
}
{
name = "log";
packageId = "log";
}
{
name = "pijul-config";
packageId = "pijul-config";
}
{
name = "pijul-core";
packageId = "pijul-core";
features = [ "tarball" ];
}
{
name = "pijul-interaction";
packageId = "pijul-interaction";
}
{
name = "pijul-remote";
packageId = "pijul-remote";
}
{
name = "pijul-repository";
packageId = "pijul-repository";
}
{
name = "reqwest";
packageId = "reqwest";
features = [ "stream" "json" ];
}
{
name = "sanakirja";
packageId = "sanakirja";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "tempfile";
packageId = "tempfile";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
{
name = "thrussh";
packageId = "thrussh";
}
{
name = "thrussh-keys";
packageId = "thrussh-keys";
}
{
name = "tokio";
packageId = "tokio";
features = [ "process" "fs" ];
}
{
name = "toml";
packageId = "toml 0.9.12+spec-1.1.0";
}
{
name = "tower-http";
packageId = "tower-http";
features = [ "trace" "cors" "compression-br" "compression-gzip" "compression-zstd" "compression-deflate" "fs" ];
}
{
name = "tracing";
packageId = "tracing";
}
{
name = "tracing-subscriber";
packageId = "tracing-subscriber";
features = [ "env-filter" ];
}
{
name = "uuid";
packageId = "uuid";
features = [ "serde" ];
}
];
};
"cipher 0.3.0" = rec {
crateName = "cipher";
version = "0.3.0";
edition = "2018";
sha256 = "1dyzsv0c84rgz98d5glnhsz4320wl24x3bq511vnyf0mxir21rby";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
}
];
features = {
"blobby" = [ "dep:blobby" ];
"dev" = [ "blobby" ];
};
};
"cipher 0.4.4" = rec {
crateName = "cipher";
version = "0.4.4";
edition = "2021";
sha256 = "1b9x9agg67xq5nq879z66ni4l08m6m3hqcshk37d4is4ysd3ngvp";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "crypto-common";
packageId = "crypto-common 0.1.6";
}
{
name = "inout";
packageId = "inout 0.1.4";
}
];
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" ];
};
};
"cipher 0.5.2" = rec {
crateName = "cipher";
version = "0.5.2";
edition = "2024";
sha256 = "0v7sic43nmz4rgql62wmxq0z63s80gnmd0w5q1vlhw6djcn2mkz8";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "block-buffer";
packageId = "block-buffer 0.12.0";
optional = true;
}
{
name = "crypto-common";
packageId = "crypto-common 0.2.2";
rename = "common";
}
{
name = "inout";
packageId = "inout 0.2.2";
}
];
features = {
"blobby" = [ "dep:blobby" ];
"block-buffer" = [ "dep:block-buffer" ];
"block-padding" = [ "inout/block-padding" ];
"dev" = [ "blobby" ];
"getrandom" = [ "common/getrandom" ];
"rand_core" = [ "common/rand_core" ];
"stream-wrapper" = [ "block-buffer" ];
"zeroize" = [ "dep:zeroize" "common/zeroize" "block-buffer?/zeroize" ];
};
resolvedDefaultFeatures = [ "block-buffer" "stream-wrapper" ];
};
"clap" = rec {
crateName = "clap";
version = "4.6.1";
edition = "2024";
crateBin = [];
sha256 = "0lcf88l7vlg796rrqr7wipbbmfa5sgsgx4211b7xmxxv8dz13nqx";
dependencies = [
{
name = "clap_builder";
packageId = "clap_builder";
usesDefaultFeatures = false;
}
{
name = "clap_derive";
packageId = "clap_derive";
optional = true;
}
];
features = {
"cargo" = [ "clap_builder/cargo" ];
"color" = [ "clap_builder/color" ];
"debug" = [ "clap_builder/debug" "clap_derive?/debug" ];
"default" = [ "std" "color" "help" "usage" "error-context" "suggestions" ];
"deprecated" = [ "clap_builder/deprecated" "clap_derive?/deprecated" ];
"derive" = [ "dep:clap_derive" ];
"env" = [ "clap_builder/env" ];
"error-context" = [ "clap_builder/error-context" ];
"help" = [ "clap_builder/help" ];
"std" = [ "clap_builder/std" ];
"string" = [ "clap_builder/string" ];
"suggestions" = [ "clap_builder/suggestions" ];
"unicode" = [ "clap_builder/unicode" ];
"unstable-doc" = [ "clap_builder/unstable-doc" "derive" ];
"unstable-ext" = [ "clap_builder/unstable-ext" ];
"unstable-markdown" = [ "clap_derive/unstable-markdown" ];
"unstable-styles" = [ "clap_builder/unstable-styles" ];
"unstable-v5" = [ "clap_builder/unstable-v5" "clap_derive?/unstable-v5" "deprecated" ];
"usage" = [ "clap_builder/usage" ];
"wrap_help" = [ "clap_builder/wrap_help" ];
};
resolvedDefaultFeatures = [ "color" "default" "derive" "error-context" "help" "std" "suggestions" "usage" ];
};
"clap_builder" = rec {
crateName = "clap_builder";
version = "4.6.0";
edition = "2024";
sha256 = "17q6np22yxhh5y5v53y4l31ps3hlaz45mvz2n2nicr7n3c056jki";
dependencies = [
{
name = "anstream";
packageId = "anstream";
optional = true;
}
{
name = "anstyle";
packageId = "anstyle";
}
{
name = "clap_lex";
packageId = "clap_lex";
}
{
name = "strsim";
packageId = "strsim";
optional = true;
}
];
features = {
"color" = [ "dep:anstream" ];
"debug" = [ "dep:backtrace" ];
"default" = [ "std" "color" "help" "usage" "error-context" "suggestions" ];
"std" = [ "anstyle/std" ];
"suggestions" = [ "dep:strsim" "error-context" ];
"unicode" = [ "dep:unicode-width" "dep:unicase" ];
"unstable-doc" = [ "cargo" "wrap_help" "env" "unicode" "string" "unstable-ext" ];
"unstable-styles" = [ "color" ];
"unstable-v5" = [ "deprecated" ];
"wrap_help" = [ "help" "dep:terminal_size" ];
};
resolvedDefaultFeatures = [ "color" "error-context" "help" "std" "suggestions" "usage" ];
};
"clap_derive" = rec {
crateName = "clap_derive";
version = "4.6.1";
edition = "2024";
sha256 = "1acpz49hi00iv9jkapixjzcv7s51x8qkfaqscjm36rqgf428dkpj";
procMacro = true;
dependencies = [
{
name = "heck";
packageId = "heck 0.5.0";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
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 = "1.1.0";
edition = "2024";
sha256 = "1ycqkpygnlqnndghhcxjb44lzl0nmgsia64x9581030yifxs7m68";
};
"cmake" = rec {
crateName = "cmake";
version = "0.1.58";
edition = "2021";
sha256 = "0y06zxw5sv1p5vvpp5rz1qwbrq7ccawrl09nqy5ahx1a5418mxy0";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "cc";
packageId = "cc";
}
];
};
"cmov" = rec {
crateName = "cmov";
version = "0.5.4";
edition = "2024";
sha256 = "0yh22sqdvcdrfbhvnja4kaq5dyklpb4s70w5r6rplfdw4jna17hc";
authors = [
"RustCrypto Developers"
];
};
"cobs" = rec {
crateName = "cobs";
version = "0.3.0";
edition = "2021";
sha256 = "18f0kxxa1fqb8pz2dxwssnhsrvhrs5j4p8xllgin5d7h36sn3a8g";
authors = [
"Allen Welkie <>"
"James Munns <james@onevariable.com>"
];
dependencies = [
{
name = "thiserror";
packageId = "thiserror 2.0.18";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"defmt" = [ "dep:defmt" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" "thiserror/std" ];
"use_std" = [ "std" ];
};
};
"colorchoice" = rec {
crateName = "colorchoice";
version = "1.0.5";
edition = "2021";
sha256 = "0w75k89hw39p0mnnhlrwr23q50rza1yjki44qvh2mgrnj065a1qx";
};
"compact_str" = rec {
crateName = "compact_str";
version = "0.9.1";
edition = "2021";
sha256 = "1aq0vx3xnaxf9k8p1pwch5v5av0xj2ddq2av25aa76jd4z1d3zcx";
authors = [
"Parker Timmerman <parker@parkertimmerman.com>"
];
dependencies = [
{
name = "castaway";
packageId = "castaway";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "rustversion";
packageId = "rustversion";
}
{
name = "ryu";
packageId = "ryu";
}
{
name = "static_assertions";
packageId = "static_assertions";
}
];
devDependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"borsh" = [ "dep:borsh" ];
"bytes" = [ "dep:bytes" ];
"default" = [ "std" ];
"diesel" = [ "dep:diesel" ];
"markup" = [ "dep:markup" ];
"proptest" = [ "dep:proptest" ];
"quickcheck" = [ "dep:quickcheck" ];
"rkyv" = [ "dep:rkyv" ];
"serde" = [ "dep:serde" ];
"smallvec" = [ "dep:smallvec" ];
"sqlx" = [ "dep:sqlx" "std" ];
"sqlx-mysql" = [ "sqlx" "sqlx/mysql" ];
"sqlx-postgres" = [ "sqlx" "sqlx/postgres" ];
"sqlx-sqlite" = [ "sqlx" "sqlx/sqlite" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"compression-codecs" = rec {
crateName = "compression-codecs";
version = "0.4.38";
edition = "2018";
sha256 = "1kqq2b8hpv7y3jnakkp66cdlrzl6my02dapn3g12j6cw3qwlh9ff";
libName = "compression_codecs";
authors = [
"Wim Looman <wim@nemo157.com>"
"Allen Bui <fairingrey@gmail.com>"
];
dependencies = [
{
name = "brotli";
packageId = "brotli";
optional = true;
}
{
name = "compression-core";
packageId = "compression-core";
}
{
name = "flate2";
packageId = "flate2";
optional = true;
}
{
name = "memchr";
packageId = "memchr";
optional = true;
}
{
name = "zstd";
packageId = "zstd";
rename = "libzstd";
optional = true;
usesDefaultFeatures = false;
}
{
name = "zstd-safe";
packageId = "zstd-safe";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"all-algorithms" = [ "brotli" "bzip2" "deflate" "gzip" "lz4" "lzma" "xz-parallel" "xz" "zlib" "zstd" "deflate64" ];
"brotli" = [ "dep:brotli" ];
"bzip2" = [ "dep:bzip2" ];
"deflate" = [ "flate2" ];
"deflate64" = [ "dep:deflate64" ];
"flate2" = [ "dep:flate2" ];
"gzip" = [ "flate2" "memchr" ];
"libzstd" = [ "dep:libzstd" ];
"lz4" = [ "dep:lz4" ];
"lzma" = [ "dep:liblzma" ];
"memchr" = [ "dep:memchr" ];
"xz" = [ "lzma" ];
"xz-parallel" = [ "xz" "liblzma/parallel" ];
"xz2" = [ "xz" ];
"zlib" = [ "flate2" ];
"zstd" = [ "libzstd" "zstd-safe" ];
"zstd-safe" = [ "dep:zstd-safe" ];
"zstdmt" = [ "zstd" "zstd-safe/zstdmt" ];
};
resolvedDefaultFeatures = [ "brotli" "flate2" "gzip" "libzstd" "memchr" "zlib" "zstd" "zstd-safe" ];
};
"compression-core" = rec {
crateName = "compression-core";
version = "0.4.32";
edition = "2018";
sha256 = "12bp209x76flr67jm5fql4hq8d14nkjzkk24g9gi0yh2rxjza56c";
libName = "compression_core";
authors = [
"Wim Looman <wim@nemo157.com>"
"Allen Bui <fairingrey@gmail.com>"
];
};
"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.10.2";
edition = "2024";
sha256 = "0p7m286mp8aai4sa72g7ji6qm0d4ns8wg4i4b2hj9p9615zm3vx6";
libName = "const_oid";
authors = [
"RustCrypto Developers"
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
};
};
"const-str" = rec {
crateName = "const-str";
version = "0.3.2";
edition = "2018";
sha256 = "1wxay9fr0ydvand3vidzcrhaapvjq4mg8fhw8axh441afrr7f1r1";
libName = "const_str";
authors = [
"Nugine <nugine@foxmail.com>"
];
dependencies = [
{
name = "const-str-proc-macro";
packageId = "const-str-proc-macro";
}
];
features = {
"all" = [ "verify-regex" "verify-http" "case" "std" ];
"case" = [ "const-str-proc-macro/heck" ];
"verify-http" = [ "const-str-proc-macro/http" ];
"verify-regex" = [ "const-str-proc-macro/regex" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"const-str-proc-macro" = rec {
crateName = "const-str-proc-macro";
version = "0.3.2";
edition = "2018";
sha256 = "0np2206r7w3c7lg5rg06wg8bby7fmrc13cp163jl2c2x5vfhy7jy";
procMacro = true;
libName = "const_str_proc_macro";
authors = [
"Nugine <nugine@foxmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 1.0.109";
}
];
features = {
"heck" = [ "dep:heck" ];
"http" = [ "dep:http" ];
"regex" = [ "dep:regex" ];
};
};
"constant_time_eq" = rec {
crateName = "constant_time_eq";
version = "0.4.2";
edition = "2024";
sha256 = "16zamq60dq80k3rqlzh9j9cpjhishmh924lnwbplgrnmkkvfylix";
authors = [
"Cesar Eduardo Barros <cesarb@cesarb.eti.br>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"convert_case" = rec {
crateName = "convert_case";
version = "0.6.0";
edition = "2018";
sha256 = "1jn1pq6fp3rri88zyw6jlhwwgf6qiyc08d6gjv0qypgkl862n67c";
authors = [
"Rutrum <dave@rutrum.net>"
];
dependencies = [
{
name = "unicode-segmentation";
packageId = "unicode-segmentation";
}
];
features = {
"rand" = [ "dep:rand" ];
"random" = [ "rand" ];
};
};
"cookie" = rec {
crateName = "cookie";
version = "0.18.1";
edition = "2018";
sha256 = "0iy749flficrlvgr3hjmf3igr738lk81n5akzf4ym4cs6cxg7pjd";
authors = [
"Sergio Benitez <sb@sergio.bz>"
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "aes-gcm";
packageId = "aes-gcm";
optional = true;
}
{
name = "base64";
packageId = "base64 0.22.1";
optional = true;
}
{
name = "hmac";
packageId = "hmac 0.12.1";
optional = true;
}
{
name = "percent-encoding";
packageId = "percent-encoding";
optional = true;
}
{
name = "rand";
packageId = "rand 0.8.6";
optional = true;
}
{
name = "sha2";
packageId = "sha2 0.10.9";
optional = true;
}
{
name = "subtle";
packageId = "subtle";
optional = true;
}
{
name = "time";
packageId = "time";
usesDefaultFeatures = false;
features = [ "std" "parsing" "formatting" "macros" ];
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check";
}
];
features = {
"aes-gcm" = [ "dep:aes-gcm" ];
"base64" = [ "dep:base64" ];
"hkdf" = [ "dep:hkdf" ];
"hmac" = [ "dep:hmac" ];
"key-expansion" = [ "sha2" "hkdf" ];
"percent-encode" = [ "percent-encoding" ];
"percent-encoding" = [ "dep:percent-encoding" ];
"private" = [ "aes-gcm" "base64" "rand" "subtle" ];
"rand" = [ "dep:rand" ];
"secure" = [ "private" "signed" "key-expansion" ];
"sha2" = [ "dep:sha2" ];
"signed" = [ "hmac" "sha2" "base64" "rand" "subtle" ];
"subtle" = [ "dep:subtle" ];
};
resolvedDefaultFeatures = [ "aes-gcm" "base64" "hmac" "percent-encode" "percent-encoding" "private" "rand" "sha2" "signed" "subtle" ];
};
"core-foundation 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" ];
};
"cow-utils" = rec {
crateName = "cow-utils";
version = "0.1.3";
edition = "2018";
sha256 = "0y9cxf0hm2hy4bn050wl2785md5q4i5gy9asjq006ip1mwjfyys1";
libName = "cow_utils";
authors = [
"Ingvar Stepanyan <me@rreverser.com>"
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"cpubits" = rec {
crateName = "cpubits";
version = "0.1.1";
edition = "2024";
sha256 = "1bh6rvanxm00myf1rmnh44hq2jdxn69971c92s4klz0k76f5zf0m";
authors = [
"RustCrypto Developers"
];
};
"cpufeatures 0.2.17" = rec {
crateName = "cpufeatures";
version = "0.2.17";
edition = "2018";
sha256 = "10023dnnaghhdl70xcds12fsx2b966sxbxjq5sxs49mvxqw5ivar";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (target.name == "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));
}
];
};
"cpufeatures 0.3.0" = rec {
crateName = "cpufeatures";
version = "0.3.0";
edition = "2024";
sha256 = "00fjhygsqmh4kbxxlb99mcsbspxcai6hjydv4c46pwb67wwl2alb";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("aarch64" == target."arch" or null) && ("android" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("aarch64" == target."arch" or null) && ("linux" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("aarch64" == target."arch" or null) && ("apple" == target."vendor" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("loongarch64" == target."arch" or null) && ("linux" == target."os" or null));
}
];
};
"crc32fast" = rec {
crateName = "crc32fast";
version = "1.5.0";
edition = "2021";
sha256 = "04d51liy8rbssra92p0qnwjw8i9rm9c4m3bwy19wjamz1k4w30cl";
authors = [
"Sam Rijs <srijs@airpost.net>"
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"crossbeam-deque" = rec {
crateName = "crossbeam-deque";
version = "0.8.6";
edition = "2021";
sha256 = "0l9f1saqp1gn5qy0rxvkmz4m6n7fc0b3dbm6q1r5pmgpnyvi3lcx";
libName = "crossbeam_deque";
dependencies = [
{
name = "crossbeam-epoch";
packageId = "crossbeam-epoch";
usesDefaultFeatures = false;
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "crossbeam-epoch/std" "crossbeam-utils/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"crossbeam-epoch" = rec {
crateName = "crossbeam-epoch";
version = "0.9.18";
edition = "2021";
sha256 = "03j2np8llwf376m3fxqx859mgp9f83hj1w34153c7a9c7i5ar0jv";
libName = "crossbeam_epoch";
dependencies = [
{
name = "crossbeam-utils";
packageId = "crossbeam-utils";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"loom" = [ "loom-crate" "crossbeam-utils/loom" ];
"loom-crate" = [ "dep:loom-crate" ];
"nightly" = [ "crossbeam-utils/nightly" ];
"std" = [ "alloc" "crossbeam-utils/std" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"crossbeam-utils" = rec {
crateName = "crossbeam-utils";
version = "0.8.21";
edition = "2021";
sha256 = "0a3aa2bmc8q35fb67432w16wvi54sfmb69rk9h5bhd18vw0c99fh";
libName = "crossbeam_utils";
features = {
"default" = [ "std" ];
"loom" = [ "dep:loom" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"crunchy" = rec {
crateName = "crunchy";
version = "0.2.4";
edition = "2021";
sha256 = "1mbp5navim2qr3x48lyvadqblcxc1dm0lqr0swrkkwy2qblvw3s6";
authors = [
"Eira Fransham <jackefransham@gmail.com>"
];
features = {
"default" = [ "limit_128" ];
};
resolvedDefaultFeatures = [ "default" "limit_128" ];
};
"crypto-common 0.1.6" = rec {
crateName = "crypto-common";
version = "0.1.6";
edition = "2018";
sha256 = "1cvby95a6xg7kxdz5ln3rl9xh66nz66w46mm3g56ri1z5x815yqv";
libName = "crypto_common";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
features = [ "more_lengths" ];
}
{
name = "rand_core";
packageId = "rand_core 0.6.4";
optional = true;
}
{
name = "typenum";
packageId = "typenum";
}
];
features = {
"getrandom" = [ "rand_core/getrandom" ];
"rand_core" = [ "dep:rand_core" ];
};
resolvedDefaultFeatures = [ "getrandom" "rand_core" "std" ];
};
"crypto-common 0.2.2" = rec {
crateName = "crypto-common";
version = "0.2.2";
edition = "2024";
sha256 = "0lql5wjlrjkd3r0w32rwbgqfmgg84ms3h65ldnlckmkc3nb4qvnf";
libName = "crypto_common";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "hybrid-array";
packageId = "hybrid-array";
}
];
features = {
"getrandom" = [ "rand_core" "dep:getrandom" ];
"rand_core" = [ "dep:rand_core" ];
"zeroize" = [ "hybrid-array/zeroize" ];
};
};
"crypto-mac" = rec {
crateName = "crypto-mac";
version = "0.11.0";
edition = "2018";
sha256 = "0ghh3qmjf7hv580zqdk4yrbg99v57jx773zb7lzi7j4hj24bdyi5";
libName = "crypto_mac";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
}
{
name = "subtle";
packageId = "subtle";
usesDefaultFeatures = false;
}
];
features = {
"blobby" = [ "dep:blobby" ];
"cipher" = [ "dep:cipher" ];
"dev" = [ "blobby" ];
};
};
"cryptovec" = rec {
crateName = "cryptovec";
version = "0.7.1";
edition = "2024";
sha256 = "1mx7wf174ycxmi6prfch7czyijpv36vr2bdaslszx8z5zxalhaxf";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "winapi";
packageId = "winapi";
features = [ "basetsd" "minwindef" "memoryapi" ];
}
];
};
"cssparser 0.33.0" = rec {
crateName = "cssparser";
version = "0.33.0";
edition = "2018";
sha256 = "07i8k47fmym7kzs95qfhg6zrh4yyf2vl4460rmdyvyx06vck9scv";
authors = [
"Simon Sapin <simon.sapin@exyr.org>"
];
dependencies = [
{
name = "cssparser-macros";
packageId = "cssparser-macros";
}
{
name = "dtoa-short";
packageId = "dtoa-short";
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "phf";
packageId = "phf 0.11.3";
features = [ "macros" ];
}
{
name = "smallvec";
packageId = "smallvec";
}
];
features = {
"serde" = [ "dep:serde" ];
};
};
"cssparser 0.35.0" = rec {
crateName = "cssparser";
version = "0.35.0";
edition = "2018";
sha256 = "1am2mj4rddlbmi08drk7gv9m8vw47zgicld48kwp451sfgfix42f";
authors = [
"Simon Sapin <simon.sapin@exyr.org>"
];
dependencies = [
{
name = "cssparser-macros";
packageId = "cssparser-macros";
}
{
name = "dtoa-short";
packageId = "dtoa-short";
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "phf";
packageId = "phf 0.11.3";
features = [ "macros" ];
}
{
name = "smallvec";
packageId = "smallvec";
}
];
features = {
"malloc_size_of" = [ "dep:malloc_size_of" ];
"serde" = [ "dep:serde" ];
};
};
"cssparser-color" = rec {
crateName = "cssparser-color";
version = "0.1.0";
edition = "2021";
sha256 = "17qcjsrph1ywcdsx1ipqgmzaas4dbbir5djjmzbqjnfqc6d0jv2m";
libName = "cssparser_color";
libPath = "lib.rs";
authors = [
"Emilio Cobos Álvarez <emilio@crisal.io>"
];
dependencies = [
{
name = "cssparser";
packageId = "cssparser 0.33.0";
}
];
};
"cssparser-macros" = rec {
crateName = "cssparser-macros";
version = "0.6.1";
edition = "2018";
sha256 = "0cfkzj60avrnskdmaf7f8zw6pp3di4ylplk455zrzaf19ax8id8k";
procMacro = true;
libName = "cssparser_macros";
libPath = "lib.rs";
authors = [
"Simon Sapin <simon.sapin@exyr.org>"
];
dependencies = [
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" "extra-traits" ];
}
];
};
"ctr 0.10.1" = rec {
crateName = "ctr";
version = "0.10.1";
edition = "2024";
sha256 = "088z8sa9aw7ij1sy4hlpxz20jhffnsfiwmsdysb2a29pnb2a3b5s";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cipher";
packageId = "cipher 0.5.2";
features = [ "stream-wrapper" ];
}
];
devDependencies = [
{
name = "cipher";
packageId = "cipher 0.5.2";
features = [ "dev" ];
}
];
features = {
"alloc" = [ "cipher/alloc" ];
"block-padding" = [ "cipher/block-padding" ];
"zeroize" = [ "cipher/zeroize" ];
};
};
"ctr 0.8.0" = rec {
crateName = "ctr";
version = "0.8.0";
edition = "2018";
sha256 = "1sk1aykwhkny92cnvl6s75dx3fyvfzw5xkd6xz3y7w5anhgvk6q4";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cipher";
packageId = "cipher 0.3.0";
}
];
devDependencies = [
{
name = "cipher";
packageId = "cipher 0.3.0";
features = [ "dev" ];
}
];
};
"ctr 0.9.2" = rec {
crateName = "ctr";
version = "0.9.2";
edition = "2021";
sha256 = "0d88b73waamgpfjdml78icxz45d95q7vi2aqa604b0visqdfws83";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cipher";
packageId = "cipher 0.4.4";
}
];
devDependencies = [
{
name = "cipher";
packageId = "cipher 0.4.4";
features = [ "dev" ];
}
];
features = {
"alloc" = [ "cipher/alloc" ];
"block-padding" = [ "cipher/block-padding" ];
"std" = [ "cipher/std" "alloc" ];
"zeroize" = [ "cipher/zeroize" ];
};
};
"ctutils" = rec {
crateName = "ctutils";
version = "0.4.2";
edition = "2024";
sha256 = "17m2s9jv7i780k26cq2fcyslg0pakv9plwdrmygdwha1hfiiambx";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cmov";
packageId = "cmov";
}
];
features = {
"subtle" = [ "dep:subtle" ];
};
};
"cuach" = rec {
crateName = "cuach";
version = "0.9.0";
edition = "2018";
sha256 = "093mfs5mjwi1af643krq22xcjwj53iywrzvh97aianpb71lrsnvd";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "cuach-derive";
packageId = "cuach-derive";
}
{
name = "uuid";
packageId = "uuid";
}
{
name = "v_htmlescape";
packageId = "v_htmlescape";
}
];
};
"cuach-derive" = rec {
crateName = "cuach-derive";
version = "0.6.0";
edition = "2018";
sha256 = "148g55lq1y5i5w7hbg0kp2rb5iiqxvdkk2idc2xibi95zmxl9s7x";
procMacro = true;
libName = "cuach_derive";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "html5ever";
packageId = "html5ever 0.26.0";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "regex";
packageId = "regex";
}
{
name = "syn";
packageId = "syn 1.0.109";
}
];
};
"curve25519-dalek 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 = "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" "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 0.2.17";
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 = "fiat-crypto";
packageId = "fiat-crypto";
usesDefaultFeatures = false;
target = { target, features }: ("fiat" == target."curve25519_dalek_backend" or null);
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
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" "default" "precomputed-tables" "serde" "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 2.0.117";
features = [ "full" ];
}
];
};
"darling 0.20.11" = rec {
crateName = "darling";
version = "0.20.11";
edition = "2021";
sha256 = "1vmlphlrlw4f50z16p4bc9p5qwdni1ba95qmxfrrmzs6dh8lczzw";
authors = [
"Ted Driggs <ted.driggs@outlook.com>"
];
dependencies = [
{
name = "darling_core";
packageId = "darling_core 0.20.11";
}
{
name = "darling_macro";
packageId = "darling_macro 0.20.11";
}
];
features = {
"default" = [ "suggestions" ];
"diagnostics" = [ "darling_core/diagnostics" ];
"suggestions" = [ "darling_core/suggestions" ];
};
resolvedDefaultFeatures = [ "default" "suggestions" ];
};
"darling 0.21.3" = rec {
crateName = "darling";
version = "0.21.3";
edition = "2021";
sha256 = "1h281ah78pz05450r71h3gwm2n24hy8yngbz58g426l4j1q37pww";
authors = [
"Ted Driggs <ted.driggs@outlook.com>"
];
dependencies = [
{
name = "darling_core";
packageId = "darling_core 0.21.3";
}
{
name = "darling_macro";
packageId = "darling_macro 0.21.3";
}
];
features = {
"default" = [ "suggestions" ];
"diagnostics" = [ "darling_core/diagnostics" ];
"serde" = [ "darling_core/serde" ];
"suggestions" = [ "darling_core/suggestions" ];
};
resolvedDefaultFeatures = [ "default" "suggestions" ];
};
"darling_core 0.20.11" = rec {
crateName = "darling_core";
version = "0.20.11";
edition = "2021";
sha256 = "0bj1af6xl4ablnqbgn827m43b8fiicgv180749f5cphqdmcvj00d";
authors = [
"Ted Driggs <ted.driggs@outlook.com>"
];
dependencies = [
{
name = "fnv";
packageId = "fnv";
}
{
name = "ident_case";
packageId = "ident_case";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "strsim";
packageId = "strsim";
optional = true;
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" "extra-traits" ];
}
];
features = {
"strsim" = [ "dep:strsim" ];
"suggestions" = [ "strsim" ];
};
resolvedDefaultFeatures = [ "strsim" "suggestions" ];
};
"darling_core 0.21.3" = rec {
crateName = "darling_core";
version = "0.21.3";
edition = "2021";
sha256 = "193ya45qgac0a4siwghk0bl8im8h89p3cald7kw8ag3yrmg1jiqj";
authors = [
"Ted Driggs <ted.driggs@outlook.com>"
];
dependencies = [
{
name = "fnv";
packageId = "fnv";
}
{
name = "ident_case";
packageId = "ident_case";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "strsim";
packageId = "strsim";
optional = true;
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" "extra-traits" ];
}
];
features = {
"serde" = [ "dep:serde" ];
"strsim" = [ "dep:strsim" ];
"suggestions" = [ "strsim" ];
};
resolvedDefaultFeatures = [ "strsim" "suggestions" ];
};
"darling_macro 0.20.11" = rec {
crateName = "darling_macro";
version = "0.20.11";
edition = "2021";
sha256 = "1bbfbc2px6sj1pqqq97bgqn6c8xdnb2fmz66f7f40nrqrcybjd7w";
procMacro = true;
authors = [
"Ted Driggs <ted.driggs@outlook.com>"
];
dependencies = [
{
name = "darling_core";
packageId = "darling_core 0.20.11";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
};
"darling_macro 0.21.3" = rec {
crateName = "darling_macro";
version = "0.21.3";
edition = "2021";
sha256 = "10ac85n4lnx3rmf5rw8lijl2c0sbl6ghcpgfmzh0s26ihbghi0yk";
procMacro = true;
authors = [
"Ted Driggs <ted.driggs@outlook.com>"
];
dependencies = [
{
name = "darling_core";
packageId = "darling_core 0.21.3";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
};
"dashmap" = rec {
crateName = "dashmap";
version = "5.5.3";
edition = "2018";
sha256 = "0miqnlxi501vfbv6mw5jbmzgnj0wjrch3p4abvpd59s9v30lg1wp";
authors = [
"Acrimon <joel.wejdenstal@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "hashbrown";
packageId = "hashbrown 0.14.5";
usesDefaultFeatures = false;
}
{
name = "lock_api";
packageId = "lock_api";
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "parking_lot_core";
packageId = "parking_lot_core 0.9.12";
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"inline" = [ "hashbrown/inline-more" ];
"rayon" = [ "dep:rayon" ];
"serde" = [ "dep:serde" ];
};
};
"data-encoding" = rec {
crateName = "data-encoding";
version = "2.11.0";
edition = "2018";
sha256 = "1j00wfmk4dzn4bnib07qlhylmd6a3kizwjz8mp00iix3vlamzbm4";
libName = "data_encoding";
authors = [
"Julien Cretin <git@ia0.eu>"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"data-url" = rec {
crateName = "data-url";
version = "0.1.1";
edition = "2018";
sha256 = "14z15yiyklp5dv0k0q6pd83irrn0y8hj9y3fj17akkrbf37byc1s";
libName = "data_url";
authors = [
"Simon Sapin <simon.sapin@exyr.org>"
];
dependencies = [
{
name = "matches";
packageId = "matches";
}
];
};
"dbus" = rec {
crateName = "dbus";
version = "0.9.11";
edition = "2018";
sha256 = "0wxzld0baycxa4z6zrmnh68yy456b0f82j8wyp8wyymvj8ln0hmr";
authors = [
"David Henningsson <diwic@ubuntu.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "libdbus-sys";
packageId = "libdbus-sys";
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
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" ];
};
};
"deadpool" = rec {
crateName = "deadpool";
version = "0.12.3";
edition = "2021";
sha256 = "06wvsfyni5f04ia6jczgjnpkq4w91cnjjdz10mpq93gcsv8v3qhb";
authors = [
"Michael P. Jung <michael.jung@terreon.de>"
];
dependencies = [
{
name = "deadpool-runtime";
packageId = "deadpool-runtime";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "num_cpus";
packageId = "num_cpus";
}
{
name = "tokio";
packageId = "tokio";
features = [ "sync" ];
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "macros" "rt" "rt-multi-thread" "time" ];
}
];
features = {
"default" = [ "managed" "unmanaged" ];
"rt_async-std_1" = [ "deadpool-runtime/async-std_1" ];
"rt_tokio_1" = [ "deadpool-runtime/tokio_1" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "managed" "unmanaged" ];
};
"deadpool-runtime" = rec {
crateName = "deadpool-runtime";
version = "0.1.4";
edition = "2021";
sha256 = "0arbchl5j887hcfvjy4gq38d32055s5cf7pkpmwn0lfw3ss6ca89";
libName = "deadpool_runtime";
authors = [
"Michael P. Jung <michael.jung@terreon.de>"
];
features = {
"async-std_1" = [ "dep:async-std_1" ];
"tokio_1" = [ "dep:tokio_1" ];
};
};
"der-parser" = rec {
crateName = "der-parser";
version = "9.0.0";
edition = "2018";
sha256 = "0lxmykajggvaq5mvpm2avgzwib4n9nyxii0kqaz2d5k88g3abl2w";
libName = "der_parser";
authors = [
"Pierre Chifflier <chifflier@wzdftpd.net>"
];
dependencies = [
{
name = "asn1-rs";
packageId = "asn1-rs";
}
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "nom";
packageId = "nom 7.1.3";
}
{
name = "num-bigint";
packageId = "num-bigint";
optional = true;
}
{
name = "num-traits";
packageId = "num-traits";
}
{
name = "rusticata-macros";
packageId = "rusticata-macros";
}
];
features = {
"bigint" = [ "num-bigint" ];
"cookie-factory" = [ "dep:cookie-factory" ];
"default" = [ "std" ];
"num-bigint" = [ "dep:num-bigint" ];
"serialize" = [ "std" "cookie-factory" ];
};
resolvedDefaultFeatures = [ "bigint" "default" "num-bigint" "std" ];
};
"deranged" = rec {
crateName = "deranged";
version = "0.5.8";
edition = "2021";
sha256 = "0711df3w16vx80k55ivkwzwswziinj4dz05xci3rvmn15g615n3w";
authors = [
"Jacob Pratt <jacob@jhpratt.dev>"
];
dependencies = [
{
name = "powerfmt";
packageId = "powerfmt";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"macros" = [ "dep:deranged-macros" ];
"num" = [ "dep:num-traits" ];
"powerfmt" = [ "dep:powerfmt" ];
"quickcheck" = [ "dep:quickcheck" "alloc" ];
"rand" = [ "rand08" "rand09" "rand010" ];
"rand010" = [ "dep:rand010" ];
"rand08" = [ "dep:rand08" ];
"rand09" = [ "dep:rand09" ];
"serde" = [ "dep:serde_core" ];
};
resolvedDefaultFeatures = [ "default" "powerfmt" ];
};
"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" ];
};
"diesel" = rec {
crateName = "diesel";
version = "2.3.9";
edition = "2021";
sha256 = "1mc2v0djrbbzrv81gh4f1nhnllxqbhc89lwf44967850cy2gnh4r";
dependencies = [
{
name = "bigdecimal";
packageId = "bigdecimal";
optional = true;
}
{
name = "bitflags";
packageId = "bitflags 2.12.1";
optional = true;
}
{
name = "byteorder";
packageId = "byteorder";
optional = true;
}
{
name = "chrono";
packageId = "chrono";
optional = true;
usesDefaultFeatures = false;
features = [ "clock" "std" ];
}
{
name = "diesel_derives";
packageId = "diesel_derives";
}
{
name = "downcast-rs";
packageId = "downcast-rs";
}
{
name = "ipnetwork";
packageId = "ipnetwork";
optional = true;
}
{
name = "itoa";
packageId = "itoa";
optional = true;
}
{
name = "libc";
packageId = "libc";
optional = true;
}
{
name = "num-bigint";
packageId = "num-bigint";
optional = true;
}
{
name = "num-integer";
packageId = "num-integer";
optional = true;
}
{
name = "num-traits";
packageId = "num-traits";
optional = true;
}
{
name = "r2d2";
packageId = "r2d2";
optional = true;
}
{
name = "serde_json";
packageId = "serde_json";
optional = true;
}
{
name = "time";
packageId = "time";
optional = true;
features = [ "macros" ];
}
{
name = "uuid";
packageId = "uuid";
optional = true;
}
];
devDependencies = [
{
name = "ipnetwork";
packageId = "ipnetwork";
}
];
features = {
"128-column-tables" = [ "64-column-tables" "diesel_derives/128-column-tables" ];
"32-column-tables" = [ "diesel_derives/32-column-tables" ];
"64-column-tables" = [ "32-column-tables" "diesel_derives/64-column-tables" ];
"__with_asan_tests" = [ "libsqlite3-sys?/bundled" "libsqlite3-sys?/with-asan" "pq-sys?/bundled" "pq-src?/with-asan" "mysqlclient-sys?/bundled" "mysqlclient-src?/with-asan" ];
"chrono" = [ "diesel_derives/chrono" "dep:chrono" ];
"default" = [ "with-deprecated" "32-column-tables" ];
"extras" = [ "chrono" "time" "serde_json" "uuid" "network-address" "numeric" "r2d2" ];
"huge-tables" = [ "64-column-tables" ];
"ipnet-address" = [ "dep:ipnet" "dep:libc" ];
"large-tables" = [ "32-column-tables" ];
"mysql" = [ "dep:mysqlclient-sys" "dep:url" "dep:percent-encoding" "dep:bitflags" "mysql_backend" ];
"mysql_backend" = [ "diesel_derives/mysql" "dep:byteorder" ];
"mysqlclient-src" = [ "dep:mysqlclient-src" ];
"network-address" = [ "dep:ipnetwork" "dep:libc" ];
"numeric" = [ "dep:num-bigint" "dep:bigdecimal" "dep:num-traits" "dep:num-integer" "diesel_derives/numeric" ];
"postgres" = [ "dep:pq-sys" "postgres_backend" ];
"postgres_backend" = [ "diesel_derives/postgres" "dep:bitflags" "dep:byteorder" "dep:itoa" ];
"pq-src" = [ "dep:pq-src" ];
"quickcheck" = [ "dep:quickcheck" ];
"r2d2" = [ "diesel_derives/r2d2" "dep:r2d2" ];
"returning_clauses_for_sqlite_3_35" = [ "sqlite" ];
"serde_json" = [ "dep:serde_json" ];
"sqlite" = [ "dep:libsqlite3-sys" "dep:sqlite-wasm-rs" "diesel_derives/sqlite" "time?/formatting" "time?/parsing" ];
"time" = [ "diesel_derives/time" "dep:time" ];
"unstable" = [ "diesel_derives/nightly" ];
"uuid" = [ "dep:uuid" ];
"with-deprecated" = [ "diesel_derives/with-deprecated" ];
"without-deprecated" = [ "diesel_derives/without-deprecated" ];
};
resolvedDefaultFeatures = [ "32-column-tables" "chrono" "default" "extras" "i-implement-a-third-party-backend-and-opt-into-breaking-changes" "network-address" "numeric" "postgres_backend" "r2d2" "serde_json" "time" "uuid" "with-deprecated" ];
};
"diesel-async" = rec {
crateName = "diesel-async";
version = "0.7.4";
edition = "2021";
sha256 = "0d2grgcr487vhm6sp8j463nm4mglhpn3nljb3i0jsgz5vaw6y28k";
libName = "diesel_async";
authors = [
"Georg Semmler <github@weiznich.de>"
];
dependencies = [
{
name = "deadpool";
packageId = "deadpool";
optional = true;
usesDefaultFeatures = false;
features = [ "managed" ];
}
{
name = "diesel";
packageId = "diesel";
usesDefaultFeatures = false;
features = [ "i-implement-a-third-party-backend-and-opt-into-breaking-changes" ];
}
{
name = "futures-core";
packageId = "futures-core";
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "alloc" "sink" ];
}
{
name = "scoped-futures";
packageId = "scoped-futures";
features = [ "std" ];
}
{
name = "tokio";
packageId = "tokio";
optional = true;
}
{
name = "tokio-postgres";
packageId = "tokio-postgres";
optional = true;
}
];
devDependencies = [
{
name = "diesel";
packageId = "diesel";
usesDefaultFeatures = false;
features = [ "chrono" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "rt" "macros" "rt-multi-thread" ];
}
];
features = {
"async-connection-wrapper" = [ "tokio/net" "tokio/rt" ];
"bb8" = [ "pool" "dep:bb8" ];
"deadpool" = [ "pool" "dep:deadpool" ];
"diesel_migrations" = [ "dep:diesel_migrations" ];
"futures-channel" = [ "dep:futures-channel" ];
"migrations" = [ "diesel_migrations" "async-connection-wrapper" "tokio/rt-multi-thread" ];
"mobc" = [ "pool" "dep:mobc" "dep:async-trait" "tokio/sync" ];
"mysql" = [ "diesel/mysql_backend" "mysql_async" "mysql_common" "futures-channel" "tokio" ];
"mysql_async" = [ "dep:mysql_async" ];
"mysql_common" = [ "dep:mysql_common" ];
"postgres" = [ "diesel/postgres_backend" "tokio-postgres" "tokio" "tokio/rt" ];
"r2d2" = [ "pool" "diesel/r2d2" ];
"sqlite" = [ "diesel/sqlite" "sync-connection-wrapper" ];
"sync-connection-wrapper" = [ "tokio/rt" ];
"tokio" = [ "dep:tokio" ];
"tokio-postgres" = [ "dep:tokio-postgres" ];
};
resolvedDefaultFeatures = [ "deadpool" "default" "pool" "postgres" "tokio" "tokio-postgres" ];
};
"diesel-derive-enum" = rec {
crateName = "diesel-derive-enum";
version = "2.1.0";
edition = "2021";
sha256 = "1m34vd3f3ifdg1kja6rd7ad24alc6lzlh7dd3ms69vwm50d17ic1";
procMacro = true;
libName = "diesel_derive_enum";
authors = [
"Alex Whitney <adwhit@fastmail.com>"
];
dependencies = [
{
name = "heck";
packageId = "heck 0.4.1";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
features = {
};
resolvedDefaultFeatures = [ "postgres" ];
};
"diesel_derives" = rec {
crateName = "diesel_derives";
version = "2.3.9";
edition = "2021";
sha256 = "1x8wvnyn0jn97b762rbh85qp5y75n09frpdg9ky4gfbr89zpp0fi";
procMacro = true;
dependencies = [
{
name = "diesel_table_macro_syntax";
packageId = "diesel_table_macro_syntax";
}
{
name = "dsl_auto_type";
packageId = "dsl_auto_type";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "derive" "fold" "full" "visit-mut" ];
}
];
features = {
"128-column-tables" = [ "64-column-tables" ];
"64-column-tables" = [ "32-column-tables" ];
"nightly" = [ "proc-macro2/nightly" ];
};
resolvedDefaultFeatures = [ "32-column-tables" "chrono" "default" "numeric" "postgres" "r2d2" "time" "with-deprecated" ];
};
"diesel_table_macro_syntax" = rec {
crateName = "diesel_table_macro_syntax";
version = "0.3.0";
edition = "2021";
sha256 = "135ypb3k6wg63kqf1bddc45w1hj3qy6n95sn253i2r28dc3l897y";
dependencies = [
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" ];
}
];
};
"diffs" = rec {
crateName = "diffs";
version = "0.5.1";
edition = "2018";
sha256 = "01f8bp77kgahgvr3s2igmnmsxynjklq830lmp2wp2jyph6bnq4gz";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
};
"digest 0.10.7" = rec {
crateName = "digest";
version = "0.10.7";
edition = "2018";
sha256 = "14p2n6ih29x81akj097lvz7wi9b6b9hvls0lwrv7b6xwyy0s5ncy";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "block-buffer";
packageId = "block-buffer 0.10.4";
optional = true;
}
{
name = "crypto-common";
packageId = "crypto-common 0.1.6";
}
{
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.11.3" = rec {
crateName = "digest";
version = "0.11.3";
edition = "2024";
sha256 = "1hnmhd4rkybr11292w42pz9ppzx1h49glrhqg107k4s1b2xnvpgi";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "block-buffer";
packageId = "block-buffer 0.12.0";
optional = true;
}
{
name = "const-oid";
packageId = "const-oid";
optional = true;
}
{
name = "crypto-common";
packageId = "crypto-common 0.2.2";
rename = "common";
}
{
name = "ctutils";
packageId = "ctutils";
optional = true;
}
];
features = {
"blobby" = [ "dep:blobby" ];
"block-api" = [ "dep:block-buffer" ];
"default" = [ "block-api" ];
"dev" = [ "blobby" ];
"getrandom" = [ "common/getrandom" "rand_core" ];
"mac" = [ "dep:ctutils" ];
"oid" = [ "dep:const-oid" ];
"rand_core" = [ "common/rand_core" ];
"zeroize" = [ "dep:zeroize" "block-buffer?/zeroize" ];
};
resolvedDefaultFeatures = [ "alloc" "block-api" "default" "mac" "oid" ];
};
"digest 0.9.0" = rec {
crateName = "digest";
version = "0.9.0";
edition = "2018";
sha256 = "0rmhvk33rgvd6ll71z8sng91a52rw14p0drjn1da0mqa138n1pfk";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
}
];
features = {
"blobby" = [ "dep:blobby" ];
"dev" = [ "blobby" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"dirs" = rec {
crateName = "dirs";
version = "3.0.2";
edition = "2015";
sha256 = "028kqy0vrbfgrk1yc1flq2fqh8snyg17qlygawm0r79w211s1fih";
authors = [
"Simon Ochsenreither <simon@ochsenreither.de>"
];
dependencies = [
{
name = "dirs-sys";
packageId = "dirs-sys";
}
];
};
"dirs-next" = rec {
crateName = "dirs-next";
version = "2.0.0";
edition = "2018";
sha256 = "1q9kr151h9681wwp6is18750ssghz6j9j7qm7qi1ngcwy7mzi35r";
libName = "dirs_next";
authors = [
"The @xdg-rs members"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "dirs-sys-next";
packageId = "dirs-sys-next";
}
];
};
"dirs-sys" = rec {
crateName = "dirs-sys";
version = "0.3.7";
edition = "2015";
sha256 = "19md1cnkazham8a6kh22v12d8hh3raqahfk6yb043vrjr68is78v";
libName = "dirs_sys";
authors = [
"Simon Ochsenreither <simon@ochsenreither.de>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "redox_users";
packageId = "redox_users";
usesDefaultFeatures = false;
target = { target, features }: ("redox" == target."os" or null);
}
{
name = "winapi";
packageId = "winapi";
target = { target, features }: (target."windows" or false);
features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ];
}
];
};
"dirs-sys-next" = rec {
crateName = "dirs-sys-next";
version = "0.1.2";
edition = "2018";
sha256 = "0kavhavdxv4phzj4l0psvh55hszwnr0rcz8sxbvx20pyqi2a3gaf";
libName = "dirs_sys_next";
authors = [
"The @xdg-rs members"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "redox_users";
packageId = "redox_users";
usesDefaultFeatures = false;
target = { target, features }: ("redox" == target."os" or null);
}
{
name = "winapi";
packageId = "winapi";
target = { target, features }: (target."windows" or false);
features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ];
}
];
};
"displaydoc" = rec {
crateName = "displaydoc";
version = "0.2.6";
edition = "2021";
sha256 = "0kyxwfbdmagd8afzb2pzja7wj8dhah7smxdsgw00iq8pa2jhmiqs";
procMacro = true;
authors = [
"Jane Lusby <jlusby@yaah.dev>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"downcast-rs" = rec {
crateName = "downcast-rs";
version = "2.0.2";
edition = "2021";
sha256 = "1g0crs9qgz0sd9cwdgmm0zvjin2v549v46xfnc859rk903v40whi";
libName = "downcast_rs";
features = {
"default" = [ "std" "sync" ];
};
resolvedDefaultFeatures = [ "default" "std" "sync" ];
};
"dragonbox_ecma" = rec {
crateName = "dragonbox_ecma";
version = "0.0.5";
edition = "2018";
sha256 = "0rjyk2ynf3wcyynwi11584jswj8qgdchd67awxilvcg8arkbahnp";
authors = [
"David Tolnay <dtolnay@gmail.com>"
"magic-akari <akari.ccino@gmail.com>"
];
};
"dsl_auto_type" = rec {
crateName = "dsl_auto_type";
version = "0.2.0";
edition = "2021";
sha256 = "0zkmlx1a3p9mfsfns39nspvci2gv70vivwipfyr6vw5ywhrjc4nx";
dependencies = [
{
name = "darling";
packageId = "darling 0.21.3";
}
{
name = "either";
packageId = "either";
}
{
name = "heck";
packageId = "heck 0.5.0";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "extra-traits" "full" "derive" "parsing" "visit" ];
}
];
};
"dtoa" = rec {
crateName = "dtoa";
version = "1.0.11";
edition = "2021";
sha256 = "1405jvczpxf1zd3nsvw02r50hr2k6argq6jkgdf04prd9s1g8g2c";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"no-panic" = [ "dep:no-panic" ];
};
};
"dtoa-short" = rec {
crateName = "dtoa-short";
version = "0.3.5";
edition = "2015";
sha256 = "11rwnkgql5jilsmwxpx6hjzkgyrbdmx1d71s0jyrjqm5nski25fd";
libName = "dtoa_short";
authors = [
"Xidorn Quan <me@upsuper.org>"
];
dependencies = [
{
name = "dtoa";
packageId = "dtoa";
}
];
};
"dunce" = rec {
crateName = "dunce";
version = "1.0.5";
edition = "2021";
sha256 = "04y8wwv3vvcqaqmqzssi6k0ii9gs6fpz96j5w9nky2ccsl23axwj";
authors = [
"Kornel <kornel@geekhood.net>"
];
};
"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 0.5.0";
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 = "1.5.3";
edition = "2021";
sha256 = "1rzydm5wd8szkddx3g55w4vm86y1ika8qp8qwckada5vf1fg7kwi";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
}
{
name = "signature";
packageId = "signature";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "pkcs8/alloc" ];
"default" = [ "std" ];
"pem" = [ "pkcs8/pem" ];
"pkcs8" = [ "dep:pkcs8" ];
"serde" = [ "dep:serde" ];
"serde_bytes" = [ "serde" "serde_bytes_crate" "std" ];
"serde_bytes_crate" = [ "dep:serde_bytes_crate" ];
"std" = [ "signature/std" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "serde" "std" ];
};
"ed25519-dalek" = rec {
crateName = "ed25519-dalek";
version = "1.0.1";
edition = "2018";
sha256 = "17bsriciv93nkm39z22w7mr0h2a3hnbmgf378v4c895gvkkblqn7";
libName = "ed25519_dalek";
authors = [
"isis lovecruft <isis@patternsinthevoid.net>"
];
dependencies = [
{
name = "curve25519-dalek";
packageId = "curve25519-dalek 3.2.0";
usesDefaultFeatures = false;
}
{
name = "ed25519";
packageId = "ed25519";
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand 0.7.3";
optional = true;
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
rename = "serde_crate";
optional = true;
usesDefaultFeatures = false;
}
{
name = "serde_bytes";
packageId = "serde_bytes";
optional = true;
}
{
name = "sha2";
packageId = "sha2 0.9.9";
usesDefaultFeatures = false;
}
{
name = "zeroize";
packageId = "zeroize";
usesDefaultFeatures = false;
features = [ "zeroize_derive" ];
}
];
devDependencies = [
{
name = "rand";
packageId = "rand 0.7.3";
}
{
name = "serde";
packageId = "serde";
rename = "serde_crate";
features = [ "derive" ];
}
];
features = {
"alloc" = [ "curve25519-dalek/alloc" "rand/alloc" "zeroize/alloc" ];
"asm" = [ "sha2/asm" ];
"batch" = [ "merlin" "rand" ];
"batch_deterministic" = [ "merlin" "rand" "rand_core" ];
"default" = [ "std" "rand" "u64_backend" ];
"merlin" = [ "dep:merlin" ];
"nightly" = [ "curve25519-dalek/nightly" ];
"rand" = [ "dep:rand" ];
"rand_core" = [ "dep:rand_core" ];
"serde" = [ "serde_crate" "serde_bytes" "ed25519/serde" ];
"serde_bytes" = [ "dep:serde_bytes" ];
"serde_crate" = [ "dep:serde_crate" ];
"simd_backend" = [ "curve25519-dalek/simd_backend" ];
"std" = [ "curve25519-dalek/std" "ed25519/std" "serde_crate/std" "sha2/std" "rand/std" ];
"u32_backend" = [ "curve25519-dalek/u32_backend" ];
"u64_backend" = [ "curve25519-dalek/u64_backend" ];
};
resolvedDefaultFeatures = [ "default" "rand" "serde" "serde_bytes" "serde_crate" "std" "u64_backend" ];
};
"either" = rec {
crateName = "either";
version = "1.16.0";
edition = "2021";
sha256 = "17k7jfbdz7k440h6lws9baz8p9zlxgb41sig3w81h80nwzsjyqli";
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"use_std" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" "use_std" ];
};
"email-encoding" = rec {
crateName = "email-encoding";
version = "0.4.1";
edition = "2021";
sha256 = "1dkhcqmhgc25m437fzxhkvhd135yc4xd9pzpsc77i7lv9m8fd64j";
libName = "email_encoding";
dependencies = [
{
name = "base64";
packageId = "base64 0.22.1";
usesDefaultFeatures = false;
}
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "base64/std" "memchr/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"email_address" = rec {
crateName = "email_address";
version = "0.2.9";
edition = "2018";
sha256 = "0jf4v3npa524c7npy7w3jl0a6gng26f51a4bgzs3jqna12dz2yg0";
authors = [
"Simon Johnston <johnstonskj@gmail.com>"
];
features = {
"default" = [ "serde_support" ];
"serde" = [ "dep:serde" ];
"serde_support" = [ "serde" ];
};
};
"embedded-io 0.4.0" = rec {
crateName = "embedded-io";
version = "0.4.0";
edition = "2021";
sha256 = "1v9wrc5nsgaaady7i3ya394sik5251j0iq5rls7mrx7fv696h6pg";
libName = "embedded_io";
features = {
"defmt" = [ "dep:defmt" ];
"futures" = [ "std" "async" "dep:futures" ];
"log" = [ "dep:log" ];
"std" = [ "alloc" "futures?/std" ];
"tokio" = [ "std" "async" "dep:tokio" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"embedded-io 0.6.1" = rec {
crateName = "embedded-io";
version = "0.6.1";
edition = "2021";
sha256 = "0v901xykajh3zffn6x4cnn4fhgfw3c8qpjwbsk6gai3gaccg3l7d";
libName = "embedded_io";
features = {
"defmt-03" = [ "dep:defmt-03" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"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 = "1.0.1";
edition = "2021";
sha256 = "1vvf9xhaxm0m78bp23b8j3cbv1vm5vffn3gaas27mc64rhm0rs9j";
dependencies = [
{
name = "log";
packageId = "log";
features = [ "std" ];
}
{
name = "regex";
packageId = "regex";
optional = true;
usesDefaultFeatures = false;
features = [ "std" "perf" ];
}
];
features = {
"default" = [ "regex" ];
"regex" = [ "dep:regex" ];
};
resolvedDefaultFeatures = [ "regex" ];
};
"env_logger" = rec {
crateName = "env_logger";
version = "0.11.10";
edition = "2021";
sha256 = "0smmk1hqzk7z91rg7fdq98d03gh9kidkd0ymim43zb4n457w0886";
dependencies = [
{
name = "anstream";
packageId = "anstream";
optional = true;
usesDefaultFeatures = false;
features = [ "wincon" ];
}
{
name = "anstyle";
packageId = "anstyle";
optional = true;
}
{
name = "env_filter";
packageId = "env_filter";
usesDefaultFeatures = false;
}
{
name = "jiff";
packageId = "jiff";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "log";
packageId = "log";
features = [ "std" ];
}
];
features = {
"auto-color" = [ "color" "anstream/auto" ];
"color" = [ "dep:anstream" "dep:anstyle" ];
"default" = [ "auto-color" "humantime" "regex" ];
"humantime" = [ "dep:jiff" ];
"kv" = [ "log/kv" ];
"regex" = [ "env_filter/regex" ];
"unstable-kv" = [ "kv" ];
};
resolvedDefaultFeatures = [ "auto-color" "color" "default" "humantime" "regex" ];
};
"equivalent" = rec {
crateName = "equivalent";
version = "1.0.2";
edition = "2015";
sha256 = "03swzqznragy8n0x31lqc78g2af054jwivp7lkrbrc0khz74lyl7";
};
"errno" = rec {
crateName = "errno";
version = "0.3.14";
edition = "2018";
sha256 = "1szgccmh8vgryqyadg8xd58mnwwicf39zmin3bsn63df2wbbgjir";
authors = [
"Chris Wong <lambda.fairy@gmail.com>"
"Dan Gohman <dev@sunfishcode.online>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("hermit" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("wasi" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (target."unix" or false);
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_System_Diagnostics_Debug" ];
}
];
features = {
"default" = [ "std" ];
"std" = [ "libc/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"fallible-iterator" = rec {
crateName = "fallible-iterator";
version = "0.2.0";
edition = "2018";
sha256 = "1xq759lsr8gqss7hva42azn3whgrbrs2sd9xpn92c5ickxm1fhs4";
libName = "fallible_iterator";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"fastrand" = rec {
crateName = "fastrand";
version = "2.4.1";
edition = "2018";
sha256 = "1mnqxxnxvd69ma9mczabpbbsgwlhd6l78yv3vd681453a9s247wz";
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" ];
};
};
"figment" = rec {
crateName = "figment";
version = "0.10.19";
edition = "2018";
sha256 = "1ww9sxdzjj2i80w7bq0kllnymjyrfb1cdx2h70ap5wqcdga1rc4c";
authors = [
"Sergio Benitez <sb@sergio.bz>"
];
dependencies = [
{
name = "atomic";
packageId = "atomic";
target = { target, features }: (("8" == target."pointer_width" or null) || ("16" == target."pointer_width" or null) || ("32" == target."pointer_width" or null));
}
{
name = "serde";
packageId = "serde";
}
{
name = "toml";
packageId = "toml 0.8.23";
optional = true;
}
{
name = "uncased";
packageId = "uncased";
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check";
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
];
features = {
"env" = [ "pear" "parse-value" ];
"json" = [ "serde_json" ];
"parking_lot" = [ "dep:parking_lot" ];
"parse-value" = [ "pear" ];
"pear" = [ "dep:pear" ];
"serde_json" = [ "dep:serde_json" ];
"serde_yaml" = [ "dep:serde_yaml" ];
"tempfile" = [ "dep:tempfile" ];
"test" = [ "tempfile" "parking_lot" ];
"toml" = [ "dep:toml" ];
"yaml" = [ "serde_yaml" ];
};
resolvedDefaultFeatures = [ "toml" ];
};
"filetime" = rec {
crateName = "filetime";
version = "0.2.29";
edition = "2018";
sha256 = "0napyyfccb26r7fyh9hg7ixrh4vph9h7y7k4iv1j19phqwrpla2w";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
];
};
"find-msvc-tools" = rec {
crateName = "find-msvc-tools";
version = "0.1.9";
edition = "2018";
sha256 = "10nmi0qdskq6l7zwxw5g56xny7hb624iki1c39d907qmfh3vrbjv";
libName = "find_msvc_tools";
};
"flate2" = rec {
crateName = "flate2";
version = "1.1.9";
edition = "2018";
sha256 = "0g2pb7cxnzcbzrj8bw4v6gpqqp21aycmf6d84rzb6j748qkvlgw4";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Josh Triplett <josh@joshtriplett.org>"
];
dependencies = [
{
name = "crc32fast";
packageId = "crc32fast";
optional = true;
}
{
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_c_zlib" = [ "any_zlib" ];
"any_zlib" = [ "any_impl" ];
"cloudflare-zlib-sys" = [ "dep:cloudflare-zlib-sys" ];
"cloudflare_zlib" = [ "any_c_zlib" "cloudflare-zlib-sys" "dep:crc32fast" ];
"default" = [ "rust_backend" ];
"document-features" = [ "dep:document-features" ];
"libz-ng-sys" = [ "dep:libz-ng-sys" ];
"libz-sys" = [ "dep:libz-sys" ];
"miniz-sys" = [ "rust_backend" ];
"miniz_oxide" = [ "any_impl" "dep:miniz_oxide" "dep:crc32fast" ];
"rust_backend" = [ "miniz_oxide" "any_impl" ];
"zlib" = [ "any_c_zlib" "libz-sys" "dep:crc32fast" ];
"zlib-default" = [ "any_c_zlib" "libz-sys/default" "dep:crc32fast" ];
"zlib-ng" = [ "any_c_zlib" "libz-ng-sys" "dep:crc32fast" ];
"zlib-ng-compat" = [ "zlib" "libz-sys/zlib-ng" "dep:crc32fast" ];
"zlib-rs" = [ "any_zlib" "dep:zlib-rs" ];
};
resolvedDefaultFeatures = [ "any_impl" "default" "miniz_oxide" "rust_backend" ];
};
"fnv" = rec {
crateName = "fnv";
version = "1.0.7";
edition = "2015";
sha256 = "1hc2mcqha06aibcaza94vbi81j6pr9a1bbxrxjfhc91zin8yr7iz";
libPath = "lib.rs";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"foldhash" = rec {
crateName = "foldhash";
version = "0.1.5";
edition = "2021";
sha256 = "1wisr1xlc2bj7hk4rgkcjkz3j2x4dhd1h9lwk7mj8p71qpdgbi6r";
authors = [
"Orson Peters <orsonpeters@gmail.com>"
];
features = {
"default" = [ "std" ];
};
};
"foreign-types" = rec {
crateName = "foreign-types";
version = "0.3.2";
edition = "2015";
sha256 = "1cgk0vyd7r45cj769jym4a6s7vwshvd0z4bqrb92q1fwibmkkwzn";
libName = "foreign_types";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "foreign-types-shared";
packageId = "foreign-types-shared";
}
];
};
"foreign-types-shared" = rec {
crateName = "foreign-types-shared";
version = "0.1.1";
edition = "2015";
sha256 = "0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00";
libName = "foreign_types_shared";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
};
"form_urlencoded" = rec {
crateName = "form_urlencoded";
version = "1.2.2";
edition = "2018";
sha256 = "1kqzb2qn608rxl3dws04zahcklpplkd5r1vpabwga5l50d2v4k6b";
authors = [
"The rust-url developers"
];
dependencies = [
{
name = "percent-encoding";
packageId = "percent-encoding";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "percent-encoding/alloc" ];
"default" = [ "std" ];
"std" = [ "alloc" "percent-encoding/std" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"fs-err" = rec {
crateName = "fs-err";
version = "3.3.0";
edition = "2018";
sha256 = "1h08mdjhdv3c48j3m32kj487rk6lwv3f5j6jrw1h14pwvd9f1zbk";
libName = "fs_err";
authors = [
"Andrew Hickman <andrew.hickman1@sky.com>"
];
dependencies = [
{
name = "tokio";
packageId = "tokio";
optional = true;
usesDefaultFeatures = false;
features = [ "fs" ];
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg";
}
];
features = {
"debug" = [ "path_facts" ];
"debug_tokio" = [ "path_facts" "tokio/rt-multi-thread" ];
"path_facts" = [ "dep:path_facts" ];
"tokio" = [ "dep:tokio" ];
};
resolvedDefaultFeatures = [ "tokio" ];
};
"fs4" = rec {
crateName = "fs4";
version = "0.6.6";
edition = "2021";
sha256 = "0ixxx352j33n4fdf1wif2dq2fd98vb6zkqxa1gxbfhrgw7clxsrf";
authors = [
"Dan Burkert <dan@danburkert.com>"
"Al Liu <scygliu1@gmail.com>"
];
dependencies = [
{
name = "rustix";
packageId = "rustix 0.38.44";
target = { target, features }: (!(target."windows" or false));
features = [ "fs" ];
}
{
name = "windows-sys";
packageId = "windows-sys 0.48.0";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Storage_FileSystem" "Win32_System_IO" ];
}
];
features = {
"async-std" = [ "dep:async-std" ];
"async-trait" = [ "dep:async-trait" ];
"default" = [ "sync" ];
"smol" = [ "dep:smol" ];
"smol-async" = [ "smol" "async-trait" ];
"std-async" = [ "async-std/async-io" "async-trait" ];
"tokio" = [ "dep:tokio" ];
"tokio-async" = [ "tokio/fs" "async-trait" ];
};
resolvedDefaultFeatures = [ "default" "sync" ];
};
"fs_extra" = rec {
crateName = "fs_extra";
version = "1.3.0";
edition = "2018";
sha256 = "075i25z70j2mz9r7i9p9r521y8xdj81q7skslyb7zhqnnw33fw22";
authors = [
"Denis Kurilenko <webdesus@gmail.com>"
];
};
"funty" = rec {
crateName = "funty";
version = "2.0.0";
edition = "2018";
sha256 = "177w048bm0046qlzvp33ag3ghqkqw4ncpzcm5lq36gxf2lla7mg6";
authors = [
"myrrlyn <self@myrrlyn.dev>"
];
features = {
"default" = [ "std" ];
};
};
"futf" = rec {
crateName = "futf";
version = "0.1.5";
edition = "2015";
sha256 = "0hvqk2r7v4fnc34hvc3vkri89gn52d5m9ihygmwn75l1hhp0whnz";
authors = [
"Keegan McAllister <kmcallister@mozilla.com>"
];
dependencies = [
{
name = "mac";
packageId = "mac";
}
{
name = "new_debug_unreachable";
packageId = "new_debug_unreachable";
}
];
};
"futures" = rec {
crateName = "futures";
version = "0.3.32";
edition = "2018";
sha256 = "0b9q86r5ar18v5xjiyqn7sb8sa32xv98qqnfz779gl7ns7lpw54b";
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" ];
"spin" = [ "futures-util/spin" ];
"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.32";
edition = "2018";
sha256 = "07fcyzrmbmh7fh4ainilf1s7gnwvnk07phdq77jkb9fpa2ffifq7";
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.32";
edition = "2018";
sha256 = "07bbvwjbm5g2i330nyr1kcvjapkmdqzl4r6mqv75ivvjaa0m0d3y";
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.32";
edition = "2018";
sha256 = "17aplz3ns74qn7a04qg7qlgsdx5iwwwkd4jvdfra6hl3h4w9rwms";
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" ];
"std" = [ "futures-core/std" "futures-task/std" "futures-util/std" ];
"thread-pool" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"futures-io" = rec {
crateName = "futures-io";
version = "0.3.32";
edition = "2018";
sha256 = "063pf5m6vfmyxj74447x8kx9q8zj6m9daamj4hvf49yrg9fs7jyf";
libName = "futures_io";
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"futures-macro" = rec {
crateName = "futures-macro";
version = "0.3.32";
edition = "2018";
sha256 = "0ys4b1lk7s0bsj29pv42bxsaavalch35rprp64s964p40c1bfdg8";
procMacro = true;
libName = "futures_macro";
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" ];
}
];
};
"futures-sink" = rec {
crateName = "futures-sink";
version = "0.3.32";
edition = "2018";
sha256 = "14q8ml7hn5a6gyy9ri236j28kh0svqmrk4gcg0wh26rkazhm95y3";
libName = "futures_sink";
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"futures-task" = rec {
crateName = "futures-task";
version = "0.3.32";
edition = "2018";
sha256 = "14s3vqf8llz3kjza33vn4ixg6kwxp61xrysn716h0cwwsnri2xq3";
libName = "futures_task";
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"futures-util" = rec {
crateName = "futures-util";
version = "0.3.32";
edition = "2018";
sha256 = "1mn60lw5kh32hz9isinjlpw34zx708fk5q1x0m40n6g6jq9a971q";
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 = "slab";
packageId = "slab";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "futures-core/alloc" "futures-task/alloc" "slab" ];
"async-await-macro" = [ "async-await" "futures-macro" ];
"channel" = [ "std" "futures-channel" ];
"compat" = [ "std" "futures_01" "libc" ];
"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" "libc" ];
"libc" = [ "dep:libc" ];
"memchr" = [ "dep:memchr" ];
"portable-atomic" = [ "futures-core/portable-atomic" ];
"sink" = [ "futures-sink" ];
"slab" = [ "dep:slab" ];
"spin" = [ "dep:spin" ];
"std" = [ "alloc" "futures-core/std" "futures-task/std" "slab/std" ];
"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.9";
edition = "2015";
sha256 = "1wpdn5ngpqkkyyibbg7wa4cfg0y8zjc57spaia2h47jkk0qp9djb";
libName = "generic_array";
authors = [
"Bartłomiej Kamiński <fizyk20@gmail.com>"
"Aaron Trent <novacrazy@gmail.com>"
];
dependencies = [
{
name = "typenum";
packageId = "typenum";
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check";
}
];
features = {
"serde" = [ "dep:serde" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "more_lengths" ];
};
"getopts" = rec {
crateName = "getopts";
version = "0.2.24";
edition = "2021";
sha256 = "1pylvsmq7fillnxmd6g58r7igdrlby412q37ws41z39va2ngpr6g";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "unicode-width";
packageId = "unicode-width";
optional = true;
}
];
features = {
"core" = [ "dep:core" ];
"default" = [ "unicode" ];
"rustc-dep-of-std" = [ "std" "core" ];
"std" = [ "dep:std" ];
"unicode" = [ "dep:unicode-width" ];
};
resolvedDefaultFeatures = [ "default" "unicode" ];
};
"getrandom 0.1.16" = rec {
crateName = "getrandom";
version = "0.1.16";
edition = "2018";
sha256 = "1kjzmz60qx9mn615ks1akjbf36n3lkv27zfwbcam0fzmj56wphwg";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (target."unix" or false);
}
{
name = "wasi";
packageId = "wasi 0.9.0+wasi-snapshot-preview1";
target = { target, features }: ("wasi" == target."os" or null);
}
];
features = {
"bindgen" = [ "dep:bindgen" ];
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"js-sys" = [ "dep:js-sys" ];
"log" = [ "dep:log" ];
"rustc-dep-of-std" = [ "compiler_builtins" "core" ];
"stdweb" = [ "dep:stdweb" ];
"test-in-browser" = [ "wasm-bindgen" ];
"wasm-bindgen" = [ "bindgen" "js-sys" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"getrandom 0.2.17" = rec {
crateName = "getrandom";
version = "0.2.17";
edition = "2018";
sha256 = "1l2ac6jfj9xhpjjgmcx6s1x89bbnw9x6j9258yy6xjkzpq0bqapz";
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 5.3.0";
usesDefaultFeatures = false;
target = { target, features }: (("uefi" == target."os" or null) && ("efi_rng" == target."getrandom_backend" or null));
}
{
name = "wasip2";
packageId = "wasip2";
usesDefaultFeatures = false;
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p2" == target."env" or null));
}
];
features = {
"wasm_js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"getrandom 0.4.2" = rec {
crateName = "getrandom";
version = "0.4.2";
edition = "2024";
sha256 = "0mb5833hf9pvn9dhvxjgfg5dx0m77g8wavvjdpvpnkp9fil1xr8d";
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 6.0.0";
usesDefaultFeatures = false;
target = { target, features }: (("uefi" == target."os" or null) && ("efi_rng" == target."getrandom_backend" or null));
}
{
name = "rand_core";
packageId = "rand_core 0.10.1";
optional = true;
}
{
name = "wasip2";
packageId = "wasip2";
usesDefaultFeatures = false;
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p2" == target."env" or null));
}
{
name = "wasip3";
packageId = "wasip3";
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p3" == target."env" or null));
}
];
features = {
"sys_rng" = [ "dep:rand_core" ];
"wasm_js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
};
resolvedDefaultFeatures = [ "std" "sys_rng" ];
};
"ghash" = rec {
crateName = "ghash";
version = "0.5.1";
edition = "2021";
sha256 = "1wbg4vdgzwhkpkclz1g6bs4r5x984w5gnlsj4q5wnafb5hva9n7h";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "opaque-debug";
packageId = "opaque-debug";
}
{
name = "polyval";
packageId = "polyval";
}
];
features = {
"std" = [ "polyval/std" ];
"zeroize" = [ "dep:zeroize" ];
};
};
"globset" = rec {
crateName = "globset";
version = "0.4.18";
edition = "2024";
sha256 = "1qsp3wg0mgxzmshcgymdlpivqlc1bihm6133pl6dx2x4af8w3psj";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "aho-corasick";
packageId = "aho-corasick";
}
{
name = "bstr";
packageId = "bstr";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "log";
packageId = "log";
optional = true;
}
{
name = "regex-automata";
packageId = "regex-automata";
usesDefaultFeatures = false;
features = [ "std" "perf" "syntax" "meta" "nfa" "hybrid" ];
}
{
name = "regex-syntax";
packageId = "regex-syntax";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"default" = [ "log" ];
"log" = [ "dep:log" ];
"serde" = [ "dep:serde" ];
"serde1" = [ "serde" ];
};
resolvedDefaultFeatures = [ "default" "log" ];
};
"h2 0.3.27" = rec {
crateName = "h2";
version = "0.3.27";
edition = "2018";
sha256 = "0b92141hilij015av6i5ziw9xfx4py3lbjy17yc35z5ih01sbv0b";
authors = [
"Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "fnv";
packageId = "fnv";
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-sink";
packageId = "futures-sink";
usesDefaultFeatures = false;
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
}
{
name = "http";
packageId = "http 0.2.12";
}
{
name = "indexmap";
packageId = "indexmap";
features = [ "std" ];
}
{
name = "slab";
packageId = "slab";
}
{
name = "tokio";
packageId = "tokio";
features = [ "io-util" ];
}
{
name = "tokio-util";
packageId = "tokio-util";
features = [ "codec" "io" ];
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "rt-multi-thread" "macros" "sync" "net" ];
}
];
features = {
};
};
"h2 0.4.14" = rec {
crateName = "h2";
version = "0.4.14";
edition = "2021";
sha256 = "0cw7jk7kn2vn6f8w8ssh6gis1mljnfjxd606gvi4sjpyjayfy7qp";
authors = [
"Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "atomic-waker";
packageId = "atomic-waker";
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "fnv";
packageId = "fnv";
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-sink";
packageId = "futures-sink";
usesDefaultFeatures = false;
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "indexmap";
packageId = "indexmap";
features = [ "std" ];
}
{
name = "slab";
packageId = "slab";
}
{
name = "tokio";
packageId = "tokio";
features = [ "io-util" ];
}
{
name = "tokio-util";
packageId = "tokio-util";
features = [ "codec" "io" ];
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "rt-multi-thread" "macros" "sync" "net" ];
}
];
features = {
};
};
"half" = rec {
crateName = "half";
version = "2.7.1";
edition = "2021";
sha256 = "0jyq42xfa6sghc397mx84av7fayd4xfxr4jahsqv90lmjr5xi8kf";
authors = [
"Kathryn Long <squeeself@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "crunchy";
packageId = "crunchy";
target = { target, features }: ("spirv" == target."arch" or null);
}
{
name = "zerocopy";
packageId = "zerocopy";
usesDefaultFeatures = false;
features = [ "derive" "simd" ];
}
];
devDependencies = [
{
name = "crunchy";
packageId = "crunchy";
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"bytemuck" = [ "dep:bytemuck" ];
"default" = [ "std" ];
"num-traits" = [ "dep:num-traits" ];
"rand_distr" = [ "dep:rand" "dep:rand_distr" ];
"rkyv" = [ "dep:rkyv" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" ];
};
};
"hashbrown 0.12.3" = rec {
crateName = "hashbrown";
version = "0.12.3";
edition = "2021";
sha256 = "1268ka4750pyg2pbgsr43f0289l5zah4arir2k4igx5a8c6fg7la";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "ahash";
packageId = "ahash 0.7.8";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"ahash" = [ "dep:ahash" ];
"ahash-compile-time-rng" = [ "ahash/compile-time-rng" ];
"alloc" = [ "dep:alloc" ];
"bumpalo" = [ "dep:bumpalo" ];
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"default" = [ "ahash" "inline-more" ];
"rayon" = [ "dep:rayon" ];
"rustc-dep-of-std" = [ "nightly" "core" "compiler_builtins" "alloc" "rustc-internal-api" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "ahash" "default" "inline-more" ];
};
"hashbrown 0.14.5" = rec {
crateName = "hashbrown";
version = "0.14.5";
edition = "2021";
sha256 = "1wa1vy1xs3mp11bn3z9dv0jricgr6a2j0zkf1g19yz3vw4il89z5";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
features = {
"ahash" = [ "dep:ahash" ];
"alloc" = [ "dep:alloc" ];
"allocator-api2" = [ "dep:allocator-api2" ];
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"default" = [ "ahash" "inline-more" "allocator-api2" ];
"equivalent" = [ "dep:equivalent" ];
"nightly" = [ "allocator-api2?/nightly" "bumpalo/allocator_api" ];
"rayon" = [ "dep:rayon" ];
"rkyv" = [ "dep:rkyv" ];
"rustc-dep-of-std" = [ "nightly" "core" "compiler_builtins" "alloc" "rustc-internal-api" ];
"serde" = [ "dep:serde" ];
};
};
"hashbrown 0.15.5" = rec {
crateName = "hashbrown";
version = "0.15.5";
edition = "2021";
sha256 = "189qaczmjxnikm9db748xyhiw04kpmhm9xj9k9hg0sgx7pjwyacj";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "allocator-api2";
packageId = "allocator-api2";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "equivalent";
packageId = "equivalent";
optional = true;
usesDefaultFeatures = false;
}
{
name = "foldhash";
packageId = "foldhash";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "dep:alloc" ];
"allocator-api2" = [ "dep:allocator-api2" ];
"core" = [ "dep:core" ];
"default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
"default-hasher" = [ "dep:foldhash" ];
"equivalent" = [ "dep:equivalent" ];
"nightly" = [ "bumpalo/allocator_api" ];
"rayon" = [ "dep:rayon" ];
"rustc-dep-of-std" = [ "nightly" "core" "alloc" "rustc-internal-api" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "allocator-api2" "default" "default-hasher" "equivalent" "inline-more" "raw-entry" ];
};
"hashbrown 0.16.1" = rec {
crateName = "hashbrown";
version = "0.16.1";
edition = "2021";
sha256 = "004i3njw38ji3bzdp9z178ba9x3k0c1pgy8x69pj7yfppv4iq7c4";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "allocator-api2";
packageId = "allocator-api2";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
];
features = {
"alloc" = [ "dep:alloc" ];
"allocator-api2" = [ "dep:allocator-api2" ];
"core" = [ "dep:core" ];
"default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
"default-hasher" = [ "dep:foldhash" ];
"equivalent" = [ "dep:equivalent" ];
"nightly" = [ "foldhash?/nightly" "bumpalo/allocator_api" ];
"rayon" = [ "dep:rayon" ];
"rustc-dep-of-std" = [ "nightly" "core" "alloc" "rustc-internal-api" ];
"serde" = [ "dep:serde_core" "dep:serde" ];
};
resolvedDefaultFeatures = [ "allocator-api2" "inline-more" ];
};
"hashbrown 0.17.1" = rec {
crateName = "hashbrown";
version = "0.17.1";
edition = "2024";
sha256 = "0jmqz7i4yl6cm7rbn0i2ffkfrmwi6xkmzkaldr2v8bcsx2v0jngd";
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" ];
};
};
"headers" = rec {
crateName = "headers";
version = "0.4.1";
edition = "2018";
sha256 = "1sr4zygaq1b2f0k7b5l8vx5vp05wvd82w7vpavgvr52xvdd4scdk";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.22.1";
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "headers-core";
packageId = "headers-core";
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "httpdate";
packageId = "httpdate";
}
{
name = "mime";
packageId = "mime";
}
{
name = "sha1";
packageId = "sha1";
}
];
features = {
};
};
"headers-core" = rec {
crateName = "headers-core";
version = "0.3.0";
edition = "2015";
sha256 = "1r1w80i2bhmyh8s5mjr2dz6baqlrm6cak6yvzm4jq96lacjs5d2l";
libName = "headers_core";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "http";
packageId = "http 1.4.1";
}
];
};
"heapsize" = rec {
crateName = "heapsize";
version = "0.4.2";
edition = "2015";
sha256 = "0q94q9ppqjgrw71swiyia4hgby2cz6dldp7ij57nkvhd6zmfcy8n";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "winapi";
packageId = "winapi";
target = { target, features }: (target."windows" or false);
features = [ "std" "heapapi" ];
}
];
features = {
};
};
"heck 0.4.1" = rec {
crateName = "heck";
version = "0.4.1";
edition = "2018";
sha256 = "1a7mqsnycv5z4z5vnv1k34548jzmc0ajic7c1j8jsaspnhw5ql4m";
authors = [
"Without Boats <woboats@gmail.com>"
];
features = {
"unicode" = [ "unicode-segmentation" ];
"unicode-segmentation" = [ "dep:unicode-segmentation" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"heck 0.5.0" = rec {
crateName = "heck";
version = "0.5.0";
edition = "2021";
sha256 = "1sjmpsdl8czyh9ywl3qcsfsq9a307dg4ni2vnlwgnzzqhc4y0113";
};
"helmet-core" = rec {
crateName = "helmet-core";
version = "0.2.0";
edition = "2021";
sha256 = "04bwjicd3jb2ink4q8hq7c2hz19sh6gig3r5qsjapd0sq1x2brbp";
libName = "helmet_core";
authors = [
"Daniel Kovacs <kovacsemod@gmail.com>"
];
};
"hermit-abi" = rec {
crateName = "hermit-abi";
version = "0.5.2";
edition = "2021";
sha256 = "1744vaqkczpwncfy960j2hxrbjl1q01csm84jpd9dajbdr2yy3zw";
libName = "hermit_abi";
authors = [
"Stefan Lankes"
];
features = {
"alloc" = [ "dep:alloc" ];
"core" = [ "dep:core" ];
"rustc-dep-of-std" = [ "core" "alloc" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"hex" = rec {
crateName = "hex";
version = "0.4.3";
edition = "2018";
sha256 = "0w1a4davm1lgzpamwnba907aysmlrnygbqmfis2mqjx5m552a93z";
authors = [
"KokaKiwi <kokakiwi@kokakiwi.net>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"hmac 0.11.0" = rec {
crateName = "hmac";
version = "0.11.0";
edition = "2018";
sha256 = "16z61aibdg4di40sqi4ks2s4rz6r29w4sx4gvblfph3yxch26aia";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "crypto-mac";
packageId = "crypto-mac";
}
{
name = "digest";
packageId = "digest 0.9.0";
}
];
devDependencies = [
{
name = "crypto-mac";
packageId = "crypto-mac";
features = [ "dev" ];
}
];
features = {
"std" = [ "crypto-mac/std" ];
};
};
"hmac 0.12.1" = rec {
crateName = "hmac";
version = "0.12.1";
edition = "2018";
sha256 = "0pmbr069sfg76z7wsssfk5ddcqd9ncp79fyz6zcm6yn115yc6jbc";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "digest";
packageId = "digest 0.10.7";
features = [ "mac" ];
}
];
devDependencies = [
{
name = "digest";
packageId = "digest 0.10.7";
features = [ "dev" ];
}
];
features = {
"std" = [ "digest/std" ];
};
};
"hmac 0.13.0" = rec {
crateName = "hmac";
version = "0.13.0";
edition = "2024";
sha256 = "0gw6avmix6ah63lf70dapxhml4dlcakl9f2lnm6b0hdf6abvq0v3";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "digest";
packageId = "digest 0.11.3";
features = [ "mac" ];
}
];
devDependencies = [
{
name = "digest";
packageId = "digest 0.11.3";
features = [ "dev" ];
}
];
features = {
"zeroize" = [ "digest/zeroize" ];
};
};
"hostname" = rec {
crateName = "hostname";
version = "0.4.2";
edition = "2021";
sha256 = "1g8cfg0a1v8y5a0zkncbns8hh24amjgskl39cc583wxfawsslyk1";
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: ((target."unix" or false) || ("redox" == target."os" or null));
}
{
name = "windows-link";
packageId = "windows-link";
target = { target, features }: ("windows" == target."os" or null);
}
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"html5ever 0.26.0" = rec {
crateName = "html5ever";
version = "0.26.0";
edition = "2018";
sha256 = "1dx3lhfwngi21wa79cpjv5rd4wn5vmklr50wrwbryidq92mqr9my";
authors = [
"The html5ever Project Developers"
];
dependencies = [
{
name = "log";
packageId = "log";
}
{
name = "mac";
packageId = "mac";
}
{
name = "markup5ever";
packageId = "markup5ever 0.11.0";
}
];
buildDependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 1.0.109";
features = [ "extra-traits" "full" "fold" ];
}
];
};
"html5ever 0.35.0" = rec {
crateName = "html5ever";
version = "0.35.0";
edition = "2021";
sha256 = "1m4yajw7slxqn0x3zdh3i9qlhb03vgdf2pq3la3l8rjbyz15inam";
authors = [
"The html5ever Project Developers"
];
dependencies = [
{
name = "log";
packageId = "log";
}
{
name = "markup5ever";
packageId = "markup5ever 0.35.0";
}
{
name = "match_token";
packageId = "match_token";
}
];
features = {
};
};
"http 0.2.12" = rec {
crateName = "http";
version = "0.2.12";
edition = "2018";
sha256 = "1w81s4bcbmcj9bjp7mllm8jlz6b31wzvirz8bgpzbqkpwmbvn730";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "fnv";
packageId = "fnv";
}
{
name = "itoa";
packageId = "itoa";
}
];
};
"http 1.4.1" = rec {
crateName = "http";
version = "1.4.1";
edition = "2021";
sha256 = "1l7k2ia57z3q7q3ka497krzps795kd3fymm2k12lr623y4nldrwb";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "itoa";
packageId = "itoa";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"http-body 0.4.6" = rec {
crateName = "http-body";
version = "0.4.6";
edition = "2018";
sha256 = "1lmyjfk6bqk6k9gkn1dxq770sb78pqbqshga241hr5p995bb5skw";
libName = "http_body";
authors = [
"Carl Lerche <me@carllerche.com>"
"Lucio Franco <luciofranco14@gmail.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "http";
packageId = "http 0.2.12";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
];
};
"http-body 1.0.1" = rec {
crateName = "http-body";
version = "1.0.1";
edition = "2018";
sha256 = "111ir5k2b9ihz5nr9cz7cwm7fnydca7dx4hc7vr16scfzghxrzhy";
libName = "http_body";
authors = [
"Carl Lerche <me@carllerche.com>"
"Lucio Franco <luciofranco14@gmail.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "http";
packageId = "http 1.4.1";
}
];
};
"http-body-util" = rec {
crateName = "http-body-util";
version = "0.1.3";
edition = "2018";
sha256 = "0jm6jv4gxsnlsi1kzdyffjrj8cfr3zninnxpw73mvkxy4qzdj8dh";
libName = "http_body_util";
authors = [
"Carl Lerche <me@carllerche.com>"
"Lucio Franco <luciofranco14@gmail.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "http-body";
packageId = "http-body 1.0.1";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
];
features = {
"channel" = [ "dep:tokio" ];
"full" = [ "channel" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"http-range-header" = rec {
crateName = "http-range-header";
version = "0.4.2";
edition = "2018";
sha256 = "171mszmmq0lzpj9brig4wz1sz8hh3h6dgmaxs69q2db8ibma4wci";
libName = "http_range_header";
};
"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>"
];
};
"hybrid-array" = rec {
crateName = "hybrid-array";
version = "0.4.12";
edition = "2024";
sha256 = "1njpm3mmsb6lgr9nn97ld5aavwjzrvijjb4nav0anhnimf1aamci";
libName = "hybrid_array";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "typenum";
packageId = "typenum";
features = [ "const-generics" ];
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"bytemuck" = [ "dep:bytemuck" ];
"ctutils" = [ "dep:ctutils" ];
"serde" = [ "dep:serde" ];
"subtle" = [ "dep:subtle" ];
"zerocopy" = [ "dep:zerocopy" ];
"zeroize" = [ "dep:zeroize" ];
};
};
"hyper 0.14.32" = rec {
crateName = "hyper";
version = "0.14.32";
edition = "2018";
sha256 = "1rvcb0smz8q1i0y6p7rwxr02x5sclfg2hhxf3g0774zczn0cgps1";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "futures-channel";
packageId = "futures-channel";
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
}
{
name = "h2";
packageId = "h2 0.3.27";
optional = true;
}
{
name = "http";
packageId = "http 0.2.12";
}
{
name = "http-body";
packageId = "http-body 0.4.6";
}
{
name = "httparse";
packageId = "httparse";
}
{
name = "httpdate";
packageId = "httpdate";
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "socket2";
packageId = "socket2 0.5.10";
optional = true;
features = [ "all" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "sync" ];
}
{
name = "tower-service";
packageId = "tower-service";
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "want";
packageId = "want";
}
];
devDependencies = [
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "fs" "macros" "io-std" "io-util" "rt" "rt-multi-thread" "sync" "time" "test-util" ];
}
];
features = {
"ffi" = [ "libc" ];
"full" = [ "client" "http1" "http2" "server" "stream" "runtime" ];
"h2" = [ "dep:h2" ];
"http2" = [ "h2" ];
"libc" = [ "dep:libc" ];
"runtime" = [ "tcp" "tokio/rt" "tokio/time" ];
"socket2" = [ "dep:socket2" ];
"tcp" = [ "socket2" "tokio/net" "tokio/rt" "tokio/time" ];
};
resolvedDefaultFeatures = [ "client" "h2" "http1" "http2" "runtime" "socket2" "tcp" ];
};
"hyper 1.10.1" = rec {
crateName = "hyper";
version = "1.10.1";
edition = "2021";
sha256 = "1624nwrh1ci34psqcl3q8q266kha8kd6fmqjj14qck49l59iqa2m";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "atomic-waker";
packageId = "atomic-waker";
optional = true;
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "futures-channel";
packageId = "futures-channel";
optional = true;
}
{
name = "futures-core";
packageId = "futures-core";
optional = true;
}
{
name = "h2";
packageId = "h2 0.4.14";
optional = true;
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "http-body";
packageId = "http-body 1.0.1";
}
{
name = "httparse";
packageId = "httparse";
optional = true;
}
{
name = "httpdate";
packageId = "httpdate";
optional = true;
}
{
name = "itoa";
packageId = "itoa";
optional = true;
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
optional = true;
}
{
name = "smallvec";
packageId = "smallvec";
optional = true;
features = [ "const_generics" "const_new" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "sync" ];
}
{
name = "want";
packageId = "want";
optional = true;
}
];
devDependencies = [
{
name = "futures-channel";
packageId = "futures-channel";
features = [ "sink" ];
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "tokio";
packageId = "tokio";
features = [ "fs" "macros" "net" "io-std" "io-util" "rt" "rt-multi-thread" "sync" "time" "test-util" ];
}
];
features = {
"client" = [ "dep:want" "dep:pin-project-lite" "dep:smallvec" ];
"ffi" = [ "dep:http-body-util" "dep:futures-util" ];
"full" = [ "client" "http1" "http2" "server" ];
"http1" = [ "dep:atomic-waker" "dep:futures-channel" "dep:futures-core" "dep:httparse" "dep:itoa" ];
"http2" = [ "dep:futures-channel" "dep:futures-core" "dep:h2" ];
"server" = [ "dep:httpdate" "dep:pin-project-lite" "dep:smallvec" ];
"tracing" = [ "dep:tracing" ];
};
resolvedDefaultFeatures = [ "client" "default" "http1" "http2" "server" ];
};
"hyper-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 0.14.32";
usesDefaultFeatures = false;
features = [ "tcp" "client" ];
}
{
name = "native-tls";
packageId = "native-tls";
}
{
name = "tokio";
packageId = "tokio";
}
{
name = "tokio-native-tls";
packageId = "tokio-native-tls";
}
];
devDependencies = [
{
name = "hyper";
packageId = "hyper 0.14.32";
usesDefaultFeatures = false;
features = [ "http1" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "io-std" "macros" "io-util" ];
}
];
features = {
"vendored" = [ "native-tls/vendored" ];
};
};
"hyper-util" = rec {
crateName = "hyper-util";
version = "0.1.20";
edition = "2021";
sha256 = "186zdc58hmm663csmjvrzgkr6jdh93sfmi3q2pxi57gcaqjpqm4n";
libName = "hyper_util";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "http-body";
packageId = "http-body 1.0.1";
}
{
name = "hyper";
packageId = "hyper 1.10.1";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "tokio";
packageId = "tokio";
optional = true;
usesDefaultFeatures = false;
}
{
name = "tower-service";
packageId = "tower-service";
optional = true;
}
];
devDependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "hyper";
packageId = "hyper 1.10.1";
features = [ "full" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "macros" "test-util" "signal" ];
}
];
features = {
"client" = [ "hyper/client" "tokio/net" "dep:tracing" "dep:futures-channel" "dep:tower-service" ];
"client-legacy" = [ "client" "dep:socket2" "tokio/sync" "dep:libc" "dep:futures-util" ];
"client-pool" = [ "client" "dep:futures-util" "dep:tower-layer" ];
"client-proxy" = [ "client" "dep:base64" "dep:ipnet" "dep:percent-encoding" ];
"client-proxy-system" = [ "dep:system-configuration" "dep:windows-registry" ];
"full" = [ "client" "client-legacy" "client-pool" "client-proxy" "client-proxy-system" "server" "server-auto" "server-graceful" "service" "http1" "http2" "tokio" "tracing" ];
"http1" = [ "hyper/http1" ];
"http2" = [ "hyper/http2" ];
"server" = [ "hyper/server" ];
"server-auto" = [ "server" "http1" "http2" ];
"server-graceful" = [ "server" "tokio/sync" ];
"service" = [ "dep:tower-service" ];
"tokio" = [ "dep:tokio" "tokio/rt" "tokio/time" ];
"tracing" = [ "dep:tracing" ];
};
resolvedDefaultFeatures = [ "default" "http1" "http2" "server" "server-auto" "service" "tokio" ];
};
"iana-time-zone" = rec {
crateName = "iana-time-zone";
version = "0.1.65";
edition = "2021";
sha256 = "0w64khw5p8s4nzwcf36bwnsmqzf61vpwk9ca1920x82bk6nwj6z3";
libName = "iana_time_zone";
authors = [
"Andrew Straw <strawman@astraw.com>"
"René Kijewski <rene.kijewski@fu-berlin.de>"
"Ryan Lopopolo <rjl@hyperbo.la>"
];
dependencies = [
{
name = "android_system_properties";
packageId = "android_system_properties";
target = { target, features }: ("android" == target."os" or null);
}
{
name = "core-foundation-sys";
packageId = "core-foundation-sys";
target = { target, features }: ("apple" == target."vendor" or null);
}
{
name = "iana-time-zone-haiku";
packageId = "iana-time-zone-haiku";
target = { target, features }: ("haiku" == target."os" or null);
}
{
name = "js-sys";
packageId = "js-sys";
target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."os" or null));
}
{
name = "log";
packageId = "log";
target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."os" or null));
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."os" or null));
}
{
name = "windows-core";
packageId = "windows-core";
target = { target, features }: ("windows" == target."os" or null);
}
];
features = {
};
resolvedDefaultFeatures = [ "fallback" ];
};
"iana-time-zone-haiku" = rec {
crateName = "iana-time-zone-haiku";
version = "0.1.2";
edition = "2018";
sha256 = "17r6jmj31chn7xs9698r122mapq85mfnv98bb4pg6spm0si2f67k";
libName = "iana_time_zone_haiku";
authors = [
"René Kijewski <crates.io@k6i.de>"
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
];
};
"icu_collections" = rec {
crateName = "icu_collections";
version = "2.2.0";
edition = "2021";
sha256 = "070r7xd0pynm0hnc1v2jzlbxka6wf50f81wybf9xg0y82v6x3119";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "potential_utf";
packageId = "potential_utf";
usesDefaultFeatures = false;
features = [ "zerovec" ];
}
{
name = "utf8_iter";
packageId = "utf8_iter";
usesDefaultFeatures = false;
}
{
name = "yoke";
packageId = "yoke";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerofrom";
packageId = "zerofrom";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerovec";
packageId = "zerovec";
usesDefaultFeatures = false;
features = [ "derive" "yoke" ];
}
];
features = {
"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.2.0";
edition = "2021";
sha256 = "0a9cmin5w1x3bg941dlmgszn33qgq428k7qiqn5did72ndi9n8cj";
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;
}
];
devDependencies = [
{
name = "litemap";
packageId = "litemap";
usesDefaultFeatures = false;
features = [ "testing" ];
}
];
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.2.0";
edition = "2021";
sha256 = "1d7krxr0xpc4x9635k1100a24nh0nrc59n65j6yk6gbfkplmwvn5";
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" ];
"harfbuzz_traits" = [ "dep:harfbuzz-traits" ];
"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.2.0";
edition = "2021";
sha256 = "0f5d5d5fhhr9937m2z6z38fzh6agf14z24kwlr6lyczafypf0fys";
authors = [
"The ICU4X Project Developers"
];
};
"icu_properties" = rec {
crateName = "icu_properties";
version = "2.2.0";
edition = "2021";
sha256 = "1pkh3s837808cbwxvfagwc28cvwrz2d9h5rl02jwrhm51ryvdqxy";
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" ];
"harfbuzz_traits" = [ "dep:harfbuzz-traits" ];
"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.2.0";
edition = "2021";
sha256 = "052awny0qwkbcbpd5jg2cd7vl5ry26pq4hz1nfsgf10c3qhbnawf";
authors = [
"The ICU4X Project Developers"
];
};
"icu_provider" = rec {
crateName = "icu_provider";
version = "2.2.0";
edition = "2021";
sha256 = "08dl8pxbwr8zsz4c5vphqb7xw0hykkznwi4rw7bk6pwb3krlr70k";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "icu_locale_core";
packageId = "icu_locale_core";
usesDefaultFeatures = false;
}
{
name = "writeable";
packageId = "writeable";
optional = true;
usesDefaultFeatures = false;
}
{
name = "yoke";
packageId = "yoke";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerofrom";
packageId = "zerofrom";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerotrie";
packageId = "zerotrie";
optional = true;
usesDefaultFeatures = false;
}
{
name = "zerovec";
packageId = "zerovec";
usesDefaultFeatures = false;
features = [ "derive" ];
}
];
features = {
"alloc" = [ "icu_locale_core/alloc" "serde?/alloc" "yoke/alloc" "zerofrom/alloc" "zerovec/alloc" "zerotrie?/alloc" "dep:stable_deref_trait" "dep:writeable" ];
"baked" = [ "dep:zerotrie" "dep:writeable" ];
"deserialize_bincode_1" = [ "serde" "dep:bincode" "std" ];
"deserialize_json" = [ "serde" "dep:serde_json" ];
"deserialize_postcard_1" = [ "serde" "dep:postcard" ];
"export" = [ "serde" "dep:erased-serde" "dep:databake" "std" "sync" "dep:postcard" "zerovec/databake" ];
"logging" = [ "dep:log" ];
"serde" = [ "dep:serde" "yoke/serde" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "baked" ];
};
"id-arena" = rec {
crateName = "id-arena";
version = "2.3.0";
edition = "2021";
sha256 = "0m6rs0jcaj4mg33gkv98d71w3hridghp5c4yr928hplpkgbnfc1x";
libName = "id_arena";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
"Aleksey Kladov <aleksey.kladov@gmail.com>"
];
features = {
"default" = [ "std" ];
"rayon" = [ "dep:rayon" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"ident_case" = rec {
crateName = "ident_case";
version = "1.0.1";
edition = "2015";
sha256 = "0fac21q6pwns8gh1hz3nbq15j8fi441ncl6w4vlnd1cmc55kiq5r";
authors = [
"Ted Driggs <ted.driggs@outlook.com>"
];
};
"idna" = rec {
crateName = "idna";
version = "1.1.0";
edition = "2018";
sha256 = "1pp4n7hppm480zcx411dsv9wfibai00wbpgnjj4qj0xa7kr7a21v";
authors = [
"The rust-url developers"
];
dependencies = [
{
name = "idna_adapter";
packageId = "idna_adapter";
}
{
name = "smallvec";
packageId = "smallvec";
features = [ "const_generics" ];
}
{
name = "utf8_iter";
packageId = "utf8_iter";
}
];
features = {
"compiled_data" = [ "idna_adapter/compiled_data" ];
"default" = [ "std" "compiled_data" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "compiled_data" "default" "std" ];
};
"idna_adapter" = rec {
crateName = "idna_adapter";
version = "1.2.2";
edition = "2024";
sha256 = "0557p76l8hj35r9zn1yv7c6x1c0qbrsffmg80n0yy8361ly3fs6b";
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.14.0";
edition = "2024";
sha256 = "1na9z6f0d5pkjr1lgsni470v98gv2r7c41j8w48skr089x2yjrnl";
dependencies = [
{
name = "equivalent";
packageId = "equivalent";
usesDefaultFeatures = false;
}
{
name = "hashbrown";
packageId = "hashbrown 0.17.1";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: false;
}
{
name = "serde_core";
packageId = "serde_core";
optional = true;
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
features = [ "derive" ];
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"borsh" = [ "dep:borsh" ];
"default" = [ "std" ];
"quickcheck" = [ "dep:quickcheck" ];
"rayon" = [ "dep:rayon" ];
"serde" = [ "dep:serde_core" "dep:serde" ];
"sval" = [ "dep:sval" ];
};
resolvedDefaultFeatures = [ "default" "serde" "std" ];
};
"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" ];
};
"inotify" = rec {
crateName = "inotify";
version = "0.11.2";
edition = "2018";
sha256 = "1hd2xixzzr8s6anxil0db57jbfxvr4zv17qmzr34jwrfhjjnhgjk";
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "futures-util";
packageId = "futures-util";
optional = true;
}
{
name = "inotify-sys";
packageId = "inotify-sys";
}
{
name = "libc";
packageId = "libc";
}
{
name = "tokio";
packageId = "tokio";
optional = true;
features = [ "net" ];
}
];
devDependencies = [
{
name = "futures-util";
packageId = "futures-util";
}
{
name = "tokio";
packageId = "tokio";
features = [ "macros" "rt-multi-thread" "time" ];
}
];
features = {
"default" = [ "stream" ];
"futures-util" = [ "dep:futures-util" ];
"stream" = [ "futures-util" "tokio" ];
"tokio" = [ "dep:tokio" ];
};
resolvedDefaultFeatures = [ "default" "futures-util" "stream" "tokio" ];
};
"inotify-sys" = rec {
crateName = "inotify-sys";
version = "0.1.5";
edition = "2015";
sha256 = "1syhjgvkram88my04kv03s0zwa66mdwa5v7ddja3pzwvx2sh4p70";
libName = "inotify_sys";
authors = [
"Hanno Braun <hb@hannobraun.de>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
};
"inout 0.1.4" = 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" ];
};
};
"inout 0.2.2" = rec {
crateName = "inout";
version = "0.2.2";
edition = "2024";
sha256 = "1iq39s01d3y56j2r6hf75yqhpa7s2ifwr316yzyi0879a9jcwl22";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "hybrid-array";
packageId = "hybrid-array";
}
];
features = {
"block-padding" = [ "dep:block-padding" ];
};
};
"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.12.0";
edition = "2018";
sha256 = "1qpq2y0asyv0jppw7zww9y96fpnpinwap8a0phhqqgyy3znnz3yr";
authors = [
"Kris Price <kris@krisprice.nz>"
];
features = {
"default" = [ "std" ];
"heapless" = [ "dep:heapless" "serde" ];
"json" = [ "schemars08" "serde" ];
"schemars" = [ "schemars08" ];
"schemars08" = [ "dep:schemars08" ];
"schemars1" = [ "dep:schemars1" ];
"ser_as_str" = [ "dep:heapless" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"ipnetwork" = rec {
crateName = "ipnetwork";
version = "0.21.1";
edition = "2021";
sha256 = "0qqpyjfma524v734nw4xri38xwj524z8q3k29bji6kfmmyyhldyg";
authors = [
"Abhishek Chanda <abhishek.becs@gmail.com>"
"Linus Färnstrand <faern@faern.net>"
];
features = {
"schemars" = [ "dep:schemars" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"is_terminal_polyfill" = rec {
crateName = "is_terminal_polyfill";
version = "1.70.2";
edition = "2021";
sha256 = "15anlc47sbz0jfs9q8fhwf0h3vs2w4imc030shdnq54sny5i7jx6";
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"itertools 0.10.5" = rec {
crateName = "itertools";
version = "0.10.5";
edition = "2018";
sha256 = "0ww45h7nxx5kj6z2y6chlskxd1igvs4j507anr6dzg99x1h25zdh";
authors = [
"bluss"
];
dependencies = [
{
name = "either";
packageId = "either";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "use_std" ];
"use_std" = [ "use_alloc" "either/use_std" ];
};
resolvedDefaultFeatures = [ "default" "use_alloc" "use_std" ];
};
"itertools 0.14.0" = rec {
crateName = "itertools";
version = "0.14.0";
edition = "2018";
sha256 = "118j6l1vs2mx65dqhwyssbrxpawa90886m3mzafdvyip41w2q69b";
authors = [
"bluss"
];
dependencies = [
{
name = "either";
packageId = "either";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "use_std" ];
"use_std" = [ "use_alloc" "either/use_std" ];
};
resolvedDefaultFeatures = [ "default" "use_alloc" "use_std" ];
};
"itoa" = rec {
crateName = "itoa";
version = "1.0.18";
edition = "2021";
sha256 = "10jnd1vpfkb8kj38rlkn2a6k02afvj3qmw054dfpzagrpl6achlg";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"no-panic" = [ "dep:no-panic" ];
};
};
"jiff" = rec {
crateName = "jiff";
version = "0.2.28";
edition = "2021";
sha256 = "00lixngcc7amh2fcsxfr0z38j06lllhapz192biv1qj97q1x60s6";
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-link";
packageId = "windows-link";
optional = true;
target = { target, features }: (target."windows" or false);
}
];
devDependencies = [
{
name = "log";
packageId = "log";
}
];
features = {
"alloc" = [ "serde_core?/alloc" "portable-atomic-util/alloc" ];
"default" = [ "std" "tz-system" "tz-fat" "tzdb-bundle-platform" "tzdb-zoneinfo" "tzdb-concatenated" "perf-inline" ];
"js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
"logging" = [ "dep:log" ];
"serde" = [ "dep:serde_core" ];
"static" = [ "static-tz" "jiff-static?/tzdb" ];
"static-tz" = [ "dep:jiff-static" ];
"std" = [ "alloc" "log?/std" "serde_core?/std" ];
"tz-fat" = [ "jiff-static?/tz-fat" ];
"tz-system" = [ "std" "dep:windows-link" ];
"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-diesel" = rec {
crateName = "jiff-diesel";
version = "0.1.3";
edition = "2021";
sha256 = "1vpffqizhr7qlwxlcnz530hl9q56d30qgvxaldr3haixya07v8fk";
libName = "jiff_diesel";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "diesel";
packageId = "diesel";
usesDefaultFeatures = false;
}
{
name = "jiff";
packageId = "jiff";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
devDependencies = [
{
name = "jiff";
packageId = "jiff";
}
];
features = {
"mysql" = [ "diesel/mysql_backend" ];
"postgres" = [ "diesel/postgres_backend" ];
"sqlite" = [ "diesel/sqlite" ];
};
resolvedDefaultFeatures = [ "default" "postgres" ];
};
"jiff-static" = rec {
crateName = "jiff-static";
version = "0.2.28";
edition = "2021";
sha256 = "0irbhfh2f4i9w5l53jcmh6ssnhdd92wfy76978chgwnxilvk4bbq";
procMacro = true;
libName = "jiff_static";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
features = {
"tzdb" = [ "dep:jiff-tzdb" ];
};
resolvedDefaultFeatures = [ "default" "tz-fat" ];
};
"jiff-tzdb" = rec {
crateName = "jiff-tzdb";
version = "0.1.6";
edition = "2021";
sha256 = "0xihzlnnyk0xnrzpq4xcyjdcmy8xc3ychzb9ayjkh4vgha2fy069";
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.99";
edition = "2021";
sha256 = "04azrzsz91gr5s3z0ij36lz0kj9ry4lw3jz0mmbiwb251rsc8aql";
libName = "js_sys";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "futures-util";
packageId = "futures-util";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "once_cell";
packageId = "once_cell";
usesDefaultFeatures = false;
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "unsafe-eval" ];
"futures-core-03-stream" = [ "dep:futures-util" "dep:futures-core" ];
"std" = [ "wasm-bindgen/std" "dep:futures-util" ];
};
resolvedDefaultFeatures = [ "default" "std" "unsafe-eval" ];
};
"json-escape-simd" = rec {
crateName = "json-escape-simd";
version = "3.0.2";
edition = "2024";
sha256 = "14x6r3m253ggg8bjpjiakrb75jqm5bd307avb622306p9ljp1rrm";
libName = "json_escape_simd";
features = {
"codspeed" = [ "criterion2/codspeed" ];
};
};
"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.7.0";
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" = rec {
crateName = "lazy_static";
version = "1.5.0";
edition = "2015";
sha256 = "1zk6dqqni0193xg6iijh7i3i44sryglwgvx20spdvwk3r6sbrlmv";
authors = [
"Marvin Löbel <loebel.marvin@gmail.com>"
];
features = {
"spin" = [ "dep:spin" ];
"spin_no_std" = [ "spin" ];
};
};
"leb128fmt" = rec {
crateName = "leb128fmt";
version = "0.1.0";
edition = "2021";
sha256 = "1chxm1484a0bly6anh6bd7a99sn355ymlagnwj3yajafnpldkv89";
authors = [
"Bryant Luk <code@bryantluk.com>"
];
features = {
"default" = [ "std" ];
};
};
"lettre" = rec {
crateName = "lettre";
version = "0.11.22";
edition = "2024";
sha256 = "0j9kbgx98k4zn2hvd38jdsl8s5snmn55gjrrs0r674nbyqbmd9hd";
authors = [
"Alexis Mousset <contact@amousset.me>"
"Paolo Barbolini <paolo@paolo565.org>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.22.1";
optional = true;
}
{
name = "email-encoding";
packageId = "email-encoding";
optional = true;
}
{
name = "email_address";
packageId = "email_address";
usesDefaultFeatures = false;
}
{
name = "fastrand";
packageId = "fastrand";
optional = true;
}
{
name = "futures-util";
packageId = "futures-util";
optional = true;
usesDefaultFeatures = false;
features = [ "io" ];
}
{
name = "hostname";
packageId = "hostname";
optional = true;
}
{
name = "httpdate";
packageId = "httpdate";
optional = true;
}
{
name = "idna";
packageId = "idna";
}
{
name = "mime";
packageId = "mime";
optional = true;
}
{
name = "native-tls";
packageId = "native-tls";
optional = true;
}
{
name = "nom";
packageId = "nom 8.0.0";
}
{
name = "percent-encoding";
packageId = "percent-encoding";
optional = true;
}
{
name = "quoted_printable";
packageId = "quoted_printable";
optional = true;
}
{
name = "socket2";
packageId = "socket2 0.6.4";
optional = true;
}
{
name = "tokio";
packageId = "tokio";
rename = "tokio1_crate";
optional = true;
}
{
name = "url";
packageId = "url";
optional = true;
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
rename = "tokio1_crate";
features = [ "macros" "rt-multi-thread" ];
}
];
features = {
"async-std1" = [ "dep:async-std" "dep:async-trait" "dep:futures-io" "dep:futures-util" ];
"async-std1-rustls" = [ "async-std1" "rustls" "dep:futures-rustls" ];
"async-std1-rustls-tls" = [ "async-std1-rustls" "rustls-tls" ];
"aws-lc-rs" = [ "rustls?/aws-lc-rs" ];
"boring-tls" = [ "dep:boring" ];
"builder" = [ "dep:httpdate" "dep:mime" "dep:fastrand" "dep:quoted_printable" "dep:email-encoding" ];
"default" = [ "smtp-transport" "pool" "native-tls" "hostname" "builder" ];
"dkim" = [ "dep:base64" "dep:sha2" "dep:rsa" "dep:ed25519-dalek" ];
"file-transport" = [ "dep:uuid" "tokio1_crate?/fs" "tokio1_crate?/io-util" ];
"file-transport-envelope" = [ "serde" "dep:serde_json" "file-transport" ];
"fips" = [ "aws-lc-rs" "rustls?/fips" ];
"hostname" = [ "dep:hostname" ];
"mime03" = [ "dep:mime" ];
"native-tls" = [ "dep:native-tls" ];
"pool" = [ "dep:futures-util" ];
"ring" = [ "rustls?/ring" ];
"rustls" = [ "dep:rustls" ];
"rustls-native-certs" = [ "dep:rustls-native-certs" ];
"rustls-no-provider" = [ "rustls" ];
"rustls-platform-verifier" = [ "dep:rustls-platform-verifier" ];
"rustls-tls" = [ "webpki-roots" "rustls" "ring" ];
"sendmail-transport" = [ "tokio1_crate?/process" "tokio1_crate?/io-util" "async-std?/unstable" ];
"serde" = [ "dep:serde" ];
"smtp-transport" = [ "dep:base64" "dep:socket2" "dep:url" "dep:percent-encoding" "tokio1_crate?/rt" "tokio1_crate?/time" "tokio1_crate?/net" ];
"tokio1" = [ "dep:tokio1_crate" "dep:async-trait" "dep:futures-io" "dep:futures-util" ];
"tokio1-boring-tls" = [ "tokio1" "boring-tls" "dep:tokio1_boring" ];
"tokio1-native-tls" = [ "tokio1" "native-tls" "dep:tokio1_native_tls_crate" ];
"tokio1-rustls" = [ "tokio1" "rustls" "dep:tokio1_rustls" ];
"tokio1-rustls-tls" = [ "tokio1-rustls" "rustls-tls" ];
"tracing" = [ "dep:tracing" ];
"web" = [ "dep:web-time" ];
"webpki-roots" = [ "dep:webpki-roots" ];
};
resolvedDefaultFeatures = [ "builder" "default" "hostname" "native-tls" "pool" "smtp-transport" ];
};
"libc" = rec {
crateName = "libc";
version = "0.2.186";
edition = "2021";
sha256 = "0rnyhzjyqq9x56skkllbjzzzwym3r61lq3l4hqj64v71gw0r3av8";
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" ];
};
"libm" = rec {
crateName = "libm";
version = "0.2.16";
edition = "2021";
sha256 = "10brh0a3qjmbzkr5mf5xqi887nhs5y9layvnki89ykz9xb1wxlmn";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Amanieu d'Antras <amanieu@gmail.com>"
"Jorge Aparicio <japaricious@gmail.com>"
"Trevor Gross <tg@trevorgross.com>"
];
features = {
"default" = [ "arch" ];
"unstable" = [ "unstable-intrinsics" "unstable-float" ];
};
resolvedDefaultFeatures = [ "arch" "default" ];
};
"libredox" = rec {
crateName = "libredox";
version = "0.1.17";
edition = "2021";
sha256 = "1ly9hnhiy0f6ccnlg3h8lca9smvv268gj5iwia4gnm10rsxbcaph";
authors = [
"4lDO2 <4lDO2@protonmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
optional = true;
}
{
name = "libc";
packageId = "libc";
optional = true;
}
{
name = "plain";
packageId = "plain";
optional = true;
}
{
name = "redox_syscall";
packageId = "redox_syscall 0.8.1";
optional = true;
}
];
features = {
"base" = [ "libc" ];
"bitflags" = [ "dep:bitflags" ];
"call" = [ "base" ];
"default" = [ "base" "call" "std" "redox_syscall" "protocol" ];
"ioslice" = [ "dep:ioslice" ];
"libc" = [ "dep:libc" ];
"mkns" = [ "ioslice" ];
"plain" = [ "dep:plain" ];
"protocol" = [ "plain" "bitflags" "redox_syscall" ];
"redox_syscall" = [ "dep:redox_syscall" ];
"std" = [ "base" ];
};
resolvedDefaultFeatures = [ "base" "bitflags" "call" "default" "libc" "plain" "protocol" "redox_syscall" "std" ];
};
"libsodium-sys" = rec {
crateName = "libsodium-sys";
version = "0.2.7";
edition = "2015";
links = "sodium";
sha256 = "1zcjka23grayr8kjrgbada6vwagp0kkni9m45v0gpbanrn3r6xvb";
libName = "libsodium_sys";
authors = [
"dnaq"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
target = { target, features }: (!("msvc" == target."env" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("msvc" == target."env" or null);
}
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "walkdir";
packageId = "walkdir";
}
];
features = {
};
resolvedDefaultFeatures = [ "use-pkg-config" ];
};
"lightningcss" = rec {
crateName = "lightningcss";
version = "1.0.0-alpha.71";
edition = "2021";
crateBin = [];
sha256 = "0ds9nlmlf1m9zi7n12gxkdswzax8gfxri6q9hqycj2jry3118qyb";type = [ "rlib" ];
authors = [
"Devon Govett <devongovett@gmail.com>"
];
dependencies = [
{
name = "ahash";
packageId = "ahash 0.8.12";
}
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "const-str";
packageId = "const-str";
}
{
name = "cssparser";
packageId = "cssparser 0.33.0";
}
{
name = "cssparser-color";
packageId = "cssparser-color";
}
{
name = "dashmap";
packageId = "dashmap";
optional = true;
}
{
name = "data-encoding";
packageId = "data-encoding";
}
{
name = "getrandom";
packageId = "getrandom 0.3.4";
usesDefaultFeatures = false;
target = { target, features }: ("wasm32" == target."arch" or null);
}
{
name = "indexmap";
packageId = "indexmap";
features = [ "serde" ];
}
{
name = "itertools";
packageId = "itertools 0.10.5";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "lightningcss-derive";
packageId = "lightningcss-derive";
}
{
name = "parcel_selectors";
packageId = "parcel_selectors";
}
{
name = "parcel_sourcemap";
packageId = "parcel_sourcemap";
optional = true;
features = [ "json" ];
}
{
name = "pastey";
packageId = "pastey";
}
{
name = "pathdiff";
packageId = "pathdiff";
}
{
name = "rayon";
packageId = "rayon";
optional = true;
}
{
name = "serde";
packageId = "serde";
optional = true;
features = [ "derive" ];
}
{
name = "serde-content";
packageId = "serde-content";
optional = true;
features = [ "serde" ];
}
{
name = "smallvec";
packageId = "smallvec";
features = [ "union" ];
}
];
features = {
"atty" = [ "dep:atty" ];
"browserslist" = [ "browserslist-rs" ];
"browserslist-rs" = [ "dep:browserslist-rs" ];
"bundler" = [ "dashmap" "sourcemap" "rayon" ];
"clap" = [ "dep:clap" ];
"cli" = [ "atty" "clap" "serde_json" "browserslist" "jemallocator" ];
"dashmap" = [ "dep:dashmap" ];
"default" = [ "bundler" "nodejs" "sourcemap" ];
"into_owned" = [ "static-self" "static-self/smallvec" "static-self/indexmap" "parcel_selectors/into_owned" ];
"jemallocator" = [ "dep:jemallocator" ];
"jsonschema" = [ "schemars" "serde" "parcel_selectors/jsonschema" ];
"nodejs" = [ "dep:serde" "dep:serde-content" ];
"parcel_sourcemap" = [ "dep:parcel_sourcemap" ];
"rayon" = [ "dep:rayon" ];
"schemars" = [ "dep:schemars" ];
"serde" = [ "dep:serde" "dep:serde-content" "bitflags/serde" "smallvec/serde" "cssparser/serde" "parcel_selectors/serde" "into_owned" ];
"serde_json" = [ "dep:serde_json" ];
"sourcemap" = [ "parcel_sourcemap" ];
"static-self" = [ "dep:static-self" ];
"substitute_variables" = [ "visitor" "into_owned" ];
};
resolvedDefaultFeatures = [ "bundler" "dashmap" "default" "nodejs" "parcel_sourcemap" "rayon" "sourcemap" ];
};
"lightningcss-derive" = rec {
crateName = "lightningcss-derive";
version = "1.0.0-alpha.43";
edition = "2021";
sha256 = "0lh2hxppjs53hjdlzkgzn0zxa9f3jkq9wws1xp56g4r7s522ghc4";
procMacro = true;
libName = "lightningcss_derive";
authors = [
"Devon Govett <devongovett@gmail.com>"
];
dependencies = [
{
name = "convert_case";
packageId = "convert_case";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 1.0.109";
features = [ "extra-traits" ];
}
];
};
"linked-hash-map" = rec {
crateName = "linked-hash-map";
version = "0.5.6";
edition = "2015";
sha256 = "03vpgw7x507g524nx5i1jf5dl8k3kv0fzg8v3ip6qqwbpkqww5q7";
libName = "linked_hash_map";
authors = [
"Stepan Koltsov <stepan.koltsov@gmail.com>"
"Andrew Paseltiner <apaseltiner@gmail.com>"
];
features = {
"heapsize" = [ "dep:heapsize" ];
"heapsize_impl" = [ "heapsize" ];
"serde" = [ "dep:serde" ];
"serde_impl" = [ "serde" ];
};
};
"linux-keyutils" = rec {
crateName = "linux-keyutils";
version = "0.2.5";
edition = "2021";
sha256 = "142m9n38ldn8f4783wgkwv068yx7mppkb7qyqh3hf3grx4c0l9w3";
libName = "linux_keyutils";
authors = [
"landhb <landhb@users.noreply.github.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
usesDefaultFeatures = false;
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
}
];
features = {
"std" = [ "bitflags/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"linux-raw-sys 0.12.1" = rec {
crateName = "linux-raw-sys";
version = "0.12.1";
edition = "2021";
sha256 = "0lwasljrqxjjfk9l2j8lyib1babh2qjlnhylqzl01nihw14nk9ij";
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.2";
edition = "2021";
sha256 = "1w7628bc7wwcxc4n4s5kw0610xk06710nh2hn5kwwk2wa91z9nlj";
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.31";
edition = "2021";
sha256 = "0kq2fh6q2bjkrm8m6hj8kb7gxfd7cr7qbcpxd1lc1xq5rns30fqi";
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" ];
};
};
"mac" = rec {
crateName = "mac";
version = "0.1.1";
edition = "2015";
sha256 = "194vc7vrshqff72rl56f9xgb0cazyl4jda7qsv31m5l6xx7hq7n4";
authors = [
"Jonathan Reem <jonathan.reem@gmail.com>"
];
};
"maplit" = rec {
crateName = "maplit";
version = "1.0.2";
edition = "2015";
sha256 = "07b5kjnhrrmfhgqm9wprjw8adx6i225lqp49gasgqg74lahnabiy";
authors = [
"bluss"
];
};
"markup5ever 0.11.0" = rec {
crateName = "markup5ever";
version = "0.11.0";
edition = "2018";
sha256 = "05mhzsp6lfxla1fgd0ac283b405s6kyj27wj5r6d7wq42jxjj9ks";
libPath = "lib.rs";
authors = [
"The html5ever Project Developers"
];
dependencies = [
{
name = "log";
packageId = "log";
}
{
name = "phf";
packageId = "phf 0.10.1";
}
{
name = "string_cache";
packageId = "string_cache";
}
{
name = "tendril";
packageId = "tendril";
}
];
buildDependencies = [
{
name = "phf_codegen";
packageId = "phf_codegen 0.10.0";
}
{
name = "string_cache_codegen";
packageId = "string_cache_codegen";
}
];
};
"markup5ever 0.35.0" = rec {
crateName = "markup5ever";
version = "0.35.0";
edition = "2021";
sha256 = "1hy1xh07jkm13j7vdnsphynl3z7hfmh99csjjvqzhl26jfffc7ri";
libPath = "lib.rs";
authors = [
"The html5ever Project Developers"
];
dependencies = [
{
name = "log";
packageId = "log";
}
{
name = "tendril";
packageId = "tendril";
}
{
name = "web_atoms";
packageId = "web_atoms";
}
];
};
"match_token" = rec {
crateName = "match_token";
version = "0.35.0";
edition = "2021";
sha256 = "1ksqd8li4kdd463cb2qf10d7d4j1m416y62xbzf47k0g6qzzv15c";
procMacro = true;
authors = [
"The html5ever Project Developers"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" ];
}
];
};
"matchers" = rec {
crateName = "matchers";
version = "0.2.0";
edition = "2018";
sha256 = "1sasssspdj2vwcwmbq3ra18d3qniapkimfcbr47zmx6750m5llni";
authors = [
"Eliza Weisman <eliza@buoyant.io>"
];
dependencies = [
{
name = "regex-automata";
packageId = "regex-automata";
usesDefaultFeatures = false;
features = [ "syntax" "dfa-build" "dfa-search" ];
}
];
features = {
"unicode" = [ "regex-automata/unicode" ];
};
};
"matches" = rec {
crateName = "matches";
version = "0.1.10";
edition = "2015";
sha256 = "1994402fq4viys7pjhzisj4wcw894l53g798kkm2y74laxk0jci5";
libPath = "lib.rs";
};
"matchit" = rec {
crateName = "matchit";
version = "0.8.4";
edition = "2021";
sha256 = "1hzl48fwq1cn5dvshfly6vzkzqhfihya65zpj7nz7lfx82mgzqa7";
authors = [
"Ibraheem Ahmed <ibraheem@ibraheem.ca>"
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"maxminddb" = rec {
crateName = "maxminddb";
version = "0.26.0";
edition = "2021";
sha256 = "1fhbi3qlfld2v4jg5qagjnsdky4vnnq78v20ha38b2176927w69a";
libPath = "src/maxminddb/lib.rs";
authors = [
"Gregory J. Oschwald <oschwald@gmail.com>"
];
dependencies = [
{
name = "ipnetwork";
packageId = "ipnetwork";
}
{
name = "log";
packageId = "log";
}
{
name = "memchr";
packageId = "memchr";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "thiserror";
packageId = "thiserror 2.0.18";
}
];
features = {
"memmap2" = [ "dep:memmap2" ];
"mmap" = [ "memmap2" ];
"simdutf8" = [ "dep:simdutf8" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"md-5" = rec {
crateName = "md-5";
version = "0.11.0";
edition = "2024";
sha256 = "166yqj8b11pawpys7knnn77cr618cby2iywpp0dq4dh3b4gl9dk9";
libName = "md5";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "digest";
packageId = "digest 0.11.3";
}
];
devDependencies = [
{
name = "digest";
packageId = "digest 0.11.3";
features = [ "dev" ];
}
];
features = {
"alloc" = [ "digest/alloc" ];
"default" = [ "alloc" "oid" ];
"oid" = [ "digest/oid" ];
"zeroize" = [ "digest/zeroize" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "oid" ];
};
"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.8.1";
edition = "2021";
sha256 = "1n448jx01h5z2xknj6x2dhxgr8s8fb717cf6vfqj5lmhkpj7m53b";
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.10";
edition = "2021";
sha256 = "1qz0n4ch68pz2mp07sdwnk27imdjjqy6aqir3hp9j4g0iw19hh3i";
authors = [
"Dan Burkert <dan@danburkert.com>"
"Yevhenii Reizner <razrfalcon@gmail.com>"
"The Contributors"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
];
features = {
"stable_deref_trait" = [ "dep:stable_deref_trait" ];
};
};
"mime" = rec {
crateName = "mime";
version = "0.3.17";
edition = "2015";
sha256 = "16hkibgvb9klh0w0jk5crr5xv90l3wlf77ggymzjmvl1818vnxv8";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
};
"mime_guess" = rec {
crateName = "mime_guess";
version = "2.0.5";
edition = "2015";
sha256 = "03jmg3yx6j39mg0kayf7w4a886dl3j15y8zs119zw01ccy74zi7p";
authors = [
"Austin Bonander <austin.bonander@gmail.com>"
];
dependencies = [
{
name = "mime";
packageId = "mime";
}
{
name = "unicase";
packageId = "unicase";
}
];
buildDependencies = [
{
name = "unicase";
packageId = "unicase";
}
];
features = {
"default" = [ "rev-mappings" ];
};
};
"minify-html" = rec {
crateName = "minify-html";
version = "0.18.1";
edition = "2018";
sha256 = "086inrjjxplxj6f12yv5p371wd96ppa35j83pkf70pvy8l8iak34";
libName = "minify_html";
authors = [
"Wilson Lin <code@wilsonl.in>"
];
dependencies = [
{
name = "ahash";
packageId = "ahash 0.8.12";
}
{
name = "aho-corasick";
packageId = "aho-corasick";
}
{
name = "lightningcss";
packageId = "lightningcss";
}
{
name = "memchr";
packageId = "memchr";
}
{
name = "minify-html-common";
packageId = "minify-html-common";
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "oxc_allocator";
packageId = "oxc_allocator";
}
{
name = "oxc_codegen";
packageId = "oxc_codegen";
}
{
name = "oxc_minifier";
packageId = "oxc_minifier";
}
{
name = "oxc_parser";
packageId = "oxc_parser";
}
{
name = "oxc_span";
packageId = "oxc_span";
}
];
};
"minify-html-common" = rec {
crateName = "minify-html-common";
version = "0.0.3";
edition = "2018";
sha256 = "1b4scla9sdwvj8hfqsfwy93nigz1478xjzlk95ly7i01wcddghsk";
libName = "minify_html_common";
authors = [
"Wilson Lin <code@wilsonl.in>"
];
dependencies = [
{
name = "ahash";
packageId = "ahash 0.8.12";
}
{
name = "aho-corasick";
packageId = "aho-corasick";
}
{
name = "memchr";
packageId = "memchr";
}
{
name = "once_cell";
packageId = "once_cell";
}
];
buildDependencies = [
{
name = "itertools";
packageId = "itertools 0.14.0";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
];
};
"minimal-lexical" = rec {
crateName = "minimal-lexical";
version = "0.2.1";
edition = "2018";
sha256 = "16ppc5g84aijpri4jzv14rvcnslvlpphbszc7zzp6vfkddf4qdb8";
libName = "minimal_lexical";
authors = [
"Alex Huszagh <ahuszagh@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"miniz_oxide" = rec {
crateName = "miniz_oxide";
version = "0.8.9";
edition = "2021";
sha256 = "05k3pdg8bjjzayq3rf0qhpirq9k37pxnasfn4arbs17phqn6m9qz";
authors = [
"Frommi <daniil.liferenko@gmail.com>"
"oyvindln <oyvindln@users.noreply.github.com>"
"Rich Geldreich richgel99@gmail.com"
];
dependencies = [
{
name = "adler2";
packageId = "adler2";
usesDefaultFeatures = false;
}
{
name = "simd-adler32";
packageId = "simd-adler32";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "dep:alloc" ];
"core" = [ "dep:core" ];
"default" = [ "with-alloc" ];
"rustc-dep-of-std" = [ "core" "alloc" "adler2/rustc-dep-of-std" ];
"serde" = [ "dep:serde" ];
"simd" = [ "simd-adler32" ];
"simd-adler32" = [ "dep:simd-adler32" ];
};
resolvedDefaultFeatures = [ "simd" "simd-adler32" "with-alloc" ];
};
"mio" = rec {
crateName = "mio";
version = "1.2.1";
edition = "2021";
sha256 = "1nkggmrlnjs93w8rja4lvjj4aml1xqahgimv1h0p7d373kvhmg82";
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 }: ((target."unix" or false) || ("hermit" == target."os" or null) || ("wasi" == target."os" or null));
}
{
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.18";
edition = "2021";
sha256 = "1wmv0g5p6jwyyslyw88w5fv9kc9qvjd1hi2d4sfl4qm19vhh0ma6";
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 3.7.0";
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" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"nest" = rec {
crateName = "nest";
version = "0.1.0";
edition = "2021";
crateBin = [
{
name = "nest";
path = "src/main.rs";
requiredFeatures = [ ];
}
];
src = lib.cleanSourceWith { filter = sourceFilter; src = ./api; };
dependencies = [
{
name = "ammonia";
packageId = "ammonia";
}
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "axum";
packageId = "axum";
features = [ "macros" "ws" ];
}
{
name = "axum-extra";
packageId = "axum-extra 0.12.6";
features = [ "cookie-signed" "cookie" "typed-header" ];
}
{
name = "axum-helmet";
packageId = "axum-helmet";
}
{
name = "axum-macros";
packageId = "axum-macros";
}
{
name = "axum-response-cache";
packageId = "axum-response-cache";
}
{
name = "axum-server";
packageId = "axum-server";
features = [ "tls-rustls" ];
}
{
name = "axum_csrf";
packageId = "axum_csrf";
}
{
name = "bincode";
packageId = "bincode";
}
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "bs58";
packageId = "bs58 0.5.1";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "chrono";
packageId = "chrono";
features = [ "serde" ];
}
{
name = "ci";
packageId = "ci";
}
{
name = "clap";
packageId = "clap";
features = [ "derive" ];
}
{
name = "cookie";
packageId = "cookie";
}
{
name = "cuach";
packageId = "cuach";
}
{
name = "data-encoding";
packageId = "data-encoding";
}
{
name = "deadpool";
packageId = "deadpool";
}
{
name = "diesel";
packageId = "diesel";
features = [ "postgres_backend" "extras" "network-address" ];
}
{
name = "diesel-async";
packageId = "diesel-async";
features = [ "postgres" "deadpool" ];
}
{
name = "diesel-derive-enum";
packageId = "diesel-derive-enum";
features = [ "postgres" ];
}
{
name = "futures";
packageId = "futures";
}
{
name = "headers";
packageId = "headers";
}
{
name = "heapsize";
packageId = "heapsize";
}
{
name = "helmet-core";
packageId = "helmet-core";
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "http-body-util";
packageId = "http-body-util";
}
{
name = "httpdate";
packageId = "httpdate";
}
{
name = "hyper";
packageId = "hyper 1.10.1";
features = [ "client" ];
}
{
name = "hyper-util";
packageId = "hyper-util";
}
{
name = "inotify";
packageId = "inotify";
}
{
name = "ipnetwork";
packageId = "ipnetwork";
}
{
name = "jiff";
packageId = "jiff";
}
{
name = "jiff-diesel";
packageId = "jiff-diesel";
features = [ "postgres" ];
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "lettre";
packageId = "lettre";
}
{
name = "libc";
packageId = "libc";
}
{
name = "lru-cache";
packageId = "lru-cache";
}
{
name = "maxminddb";
packageId = "maxminddb";
}
{
name = "minify-html";
packageId = "minify-html";
}
{
name = "openssl";
packageId = "openssl";
}
{
name = "percent-encoding";
packageId = "percent-encoding";
}
{
name = "pijul-core";
packageId = "pijul-core";
features = [ "tarball" ];
}
{
name = "pijul-hooks";
packageId = "pijul-hooks";
}
{
name = "privdrop";
packageId = "privdrop";
}
{
name = "pulldown-cmark";
packageId = "pulldown-cmark";
}
{
name = "rand";
packageId = "rand 0.9.4";
}
{
name = "rand_chacha";
packageId = "rand_chacha 0.9.0";
}
{
name = "regex";
packageId = "regex";
}
{
name = "replication";
packageId = "replication";
}
{
name = "reqwest";
packageId = "reqwest";
features = [ "stream" "json" ];
}
{
name = "sanakirja";
packageId = "sanakirja";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "serde_urlencoded";
packageId = "serde_urlencoded";
}
{
name = "syntect";
packageId = "syntect";
}
{
name = "tempfile";
packageId = "tempfile";
}
{
name = "thiserror";
packageId = "thiserror 2.0.18";
}
{
name = "thrussh";
packageId = "thrussh";
features = [ "openssl" ];
}
{
name = "thrussh-keys";
packageId = "thrussh-keys";
features = [ "openssl" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "full" ];
}
{
name = "tokio-postgres";
packageId = "tokio-postgres";
}
{
name = "tokio-stream";
packageId = "tokio-stream";
}
{
name = "tokio-util";
packageId = "tokio-util";
}
{
name = "toml";
packageId = "toml 0.9.12+spec-1.1.0";
}
{
name = "tower-http";
packageId = "tower-http";
features = [ "trace" "cors" "compression-br" "compression-gzip" "compression-zstd" "compression-deflate" "fs" ];
}
{
name = "tower-service";
packageId = "tower-service";
}
{
name = "tracing";
packageId = "tracing";
}
{
name = "tracing-subscriber";
packageId = "tracing-subscriber";
features = [ "env-filter" ];
}
{
name = "url";
packageId = "url";
}
{
name = "uuid";
packageId = "uuid";
}
{
name = "webauthn-rs";
packageId = "webauthn-rs";
}
{
name = "zstd-seekable";
packageId = "zstd-seekable";
}
];
features = {
};
resolvedDefaultFeatures = [ "default" "jobs" ];
};
"new_debug_unreachable" = rec {
crateName = "new_debug_unreachable";
version = "1.0.6";
edition = "2021";
sha256 = "11phpf1mjxq6khk91yzcbd3ympm78m3ivl7xg6lg2c0lf66fy3k5";
libName = "debug_unreachable";
authors = [
"Matt Brubeck <mbrubeck@limpet.net>"
"Jonathan Reem <jonathan.reem@gmail.com>"
];
};
"nix" = rec {
crateName = "nix";
version = "0.30.1";
edition = "2021";
sha256 = "1dixahq9hk191g0c2ydc0h1ppxj0xw536y6rl63vlnp06lx3ylkl";
authors = [
"The nix-rust Project Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
features = [ "extra_traits" ];
}
];
buildDependencies = [
{
name = "cfg_aliases";
packageId = "cfg_aliases";
}
];
features = {
"aio" = [ "pin-utils" ];
"dir" = [ "fs" ];
"event" = [ "poll" ];
"memoffset" = [ "dep:memoffset" ];
"mount" = [ "uio" ];
"mqueue" = [ "fs" ];
"net" = [ "socket" ];
"pin-utils" = [ "dep:pin-utils" ];
"ptrace" = [ "process" ];
"sched" = [ "process" ];
"signal" = [ "process" ];
"socket" = [ "memoffset" ];
"ucontext" = [ "signal" ];
"user" = [ "feature" ];
"zerocopy" = [ "fs" "uio" ];
};
resolvedDefaultFeatures = [ "default" "feature" "fs" "user" ];
};
"nom 7.1.3" = rec {
crateName = "nom";
version = "7.1.3";
edition = "2018";
sha256 = "0jha9901wxam390jcf5pfa0qqfrgh8li787jx2ip0yk5b8y9hwyj";
authors = [
"contact@geoffroycouprie.com"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "minimal-lexical";
packageId = "minimal-lexical";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" "memchr/std" "minimal-lexical/std" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"nom 8.0.0" = rec {
crateName = "nom";
version = "8.0.0";
edition = "2021";
sha256 = "01cl5xng9d0gxf26h39m0l8lprgpa00fcc75ps1yzgbib1vn35yz";
authors = [
"contact@geoffroycouprie.com"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" "memchr/std" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"nonmax" = rec {
crateName = "nonmax";
version = "0.5.5";
edition = "2018";
sha256 = "0lfvyfz4falgmc9g1cbfi2wkys9wka2nfmdyga87zikf636ml2k1";
authors = [
"Lucien Greathouse <me@lpghatguy.com>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"nu-ansi-term" = rec {
crateName = "nu-ansi-term";
version = "0.50.3";
edition = "2021";
sha256 = "1ra088d885lbd21q1bxgpqdlk1zlndblmarn948jz2a40xsbjmvr";
libName = "nu_ansi_term";
authors = [
"ogham@bsago.me"
"Ryan Scheel (Havvy) <ryan.havvy@gmail.com>"
"Josh Triplett <josh@joshtriplett.org>"
"The Nushell Project Developers"
];
dependencies = [
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
rename = "windows";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_System_Console" "Win32_Storage_FileSystem" "Win32_Security" ];
}
];
features = {
"default" = [ "std" ];
"derive_serde_style" = [ "serde" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"num-bigint" = rec {
crateName = "num-bigint";
version = "0.4.6";
edition = "2021";
sha256 = "1f903zd33i6hkjpsgwhqwi2wffnvkxbn6rv4mkgcjcqi7xr4zr55";
libName = "num_bigint";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
features = [ "i128" ];
}
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
features = [ "i128" ];
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"default" = [ "std" ];
"quickcheck" = [ "dep:quickcheck" ];
"rand" = [ "dep:rand" ];
"serde" = [ "dep:serde" ];
"std" = [ "num-integer/std" "num-traits/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"num-conv" = rec {
crateName = "num-conv";
version = "0.2.2";
edition = "2021";
sha256 = "0hg4f9bwmy7cwpxdkm165dmkfc8jhkkayci234jsmi5ssb33j5sj";
libName = "num_conv";
authors = [
"Jacob Pratt <jacob@jhpratt.dev>"
];
};
"num-integer" = rec {
crateName = "num-integer";
version = "0.1.46";
edition = "2018";
sha256 = "13w5g54a9184cqlbsq80rnxw4jj4s0d8wv75jsq5r2lms8gncsbr";
libName = "num_integer";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
features = [ "i128" ];
}
];
features = {
"default" = [ "std" ];
"std" = [ "num-traits/std" ];
};
resolvedDefaultFeatures = [ "default" "i128" "std" ];
};
"num-traits" = rec {
crateName = "num-traits";
version = "0.2.19";
edition = "2021";
sha256 = "0h984rhdkkqd4ny9cif7y2azl3xdfb7768hb9irhpsch4q3gq787";
libName = "num_traits";
authors = [
"The Rust Project Developers"
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg";
}
];
features = {
"default" = [ "std" ];
"libm" = [ "dep:libm" ];
};
resolvedDefaultFeatures = [ "default" "i128" "std" ];
};
"num_cpus" = rec {
crateName = "num_cpus";
version = "1.17.0";
edition = "2015";
sha256 = "0fxjazlng4z8cgbmsvbzv411wrg7x3hyxdq8nxixgzjswyylppwi";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "hermit-abi";
packageId = "hermit-abi";
target = { target, features }: ("hermit" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (!(target."windows" or false));
}
];
};
"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-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.12.1";
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 = [ "CFArray" "CFDictionary" "CFError" "CFRunLoop" "CFString" "bitflags" ];
};
"objc2-system-configuration" = rec {
crateName = "objc2-system-configuration";
version = "0.3.2";
edition = "2021";
sha256 = "15m39m325yhkjpcagcygbv3qx19vr4ym4kdqramwqm6src8vs5kj";
libName = "objc2_system_configuration";
dependencies = [
{
name = "objc2-core-foundation";
packageId = "objc2-core-foundation";
usesDefaultFeatures = false;
features = [ "CFError" ];
}
];
features = {
"CaptiveNetwork" = [ "objc2-core-foundation/CFArray" "objc2-core-foundation/CFDictionary" ];
"SCDynamicStore" = [ "objc2-core-foundation/CFArray" "objc2-core-foundation/CFDictionary" "objc2-core-foundation/CFRunLoop" ];
"SCDynamicStoreCopyDHCPInfo" = [ "objc2-core-foundation/CFData" "objc2-core-foundation/CFDate" "objc2-core-foundation/CFDictionary" ];
"SCDynamicStoreCopySpecific" = [ "objc2-core-foundation/CFDictionary" "objc2-core-foundation/CFString" ];
"SCNetworkConfiguration" = [ "objc2-core-foundation/CFArray" "objc2-core-foundation/CFDictionary" "objc2-core-foundation/CFNumber" ];
"SCNetworkConnection" = [ "objc2-core-foundation/CFDictionary" "objc2-core-foundation/CFRunLoop" ];
"SCNetworkReachability" = [ "bitflags" "objc2-core-foundation/CFRunLoop" ];
"SCPreferences" = [ "bitflags" "objc2-core-foundation/CFArray" "objc2-core-foundation/CFData" "objc2-core-foundation/CFRunLoop" ];
"SCPreferencesPath" = [ "objc2-core-foundation/CFDictionary" ];
"SCPreferencesSetSpecific" = [ "objc2-core-foundation/CFString" ];
"bitflags" = [ "dep:bitflags" ];
"default" = [ "std" "CaptiveNetwork" "DHCPClientPreferences" "SCDynamicStore" "SCDynamicStoreCopyDHCPInfo" "SCDynamicStoreCopySpecific" "SCDynamicStoreKey" "SCNetwork" "SCNetworkConfiguration" "SCNetworkConnection" "SCNetworkReachability" "SCPreferences" "SCPreferencesPath" "SCPreferencesSetSpecific" "SCSchemaDefinitions" "bitflags" "dispatch2" "libc" "objc2" "objc2-security" ];
"dispatch2" = [ "dep:dispatch2" ];
"libc" = [ "dep:libc" ];
"objc2" = [ "dep:objc2" "dispatch2?/objc2" "objc2-core-foundation/objc2" "objc2-security?/objc2" ];
"objc2-security" = [ "dep:objc2-security" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "SCDynamicStore" "SCDynamicStoreCopySpecific" ];
};
"oid-registry" = rec {
crateName = "oid-registry";
version = "0.7.1";
edition = "2018";
sha256 = "1navxdy0gx7f92ymwr6n02x35fypp2izdfcf49wszkc9ji6h7n58";
libName = "oid_registry";
authors = [
"Pierre Chifflier <chifflier@wzdftpd.net>"
];
dependencies = [
{
name = "asn1-rs";
packageId = "asn1-rs";
}
];
features = {
"crypto" = [ "kdf" "pkcs1" "pkcs7" "pkcs9" "pkcs12" "nist_algs" "x962" ];
"default" = [ "registry" ];
};
resolvedDefaultFeatures = [ "crypto" "default" "kdf" "nist_algs" "pkcs1" "pkcs12" "pkcs7" "pkcs9" "registry" "x509" "x962" ];
};
"once_cell" = rec {
crateName = "once_cell";
version = "1.21.4";
edition = "2021";
sha256 = "0l1v676wf71kjg2khch4dphwh1jp3291ffiymr2mvy1kxd5kwz4z";
authors = [
"Aleksey Kladov <aleksey.kladov@gmail.com>"
];
features = {
"alloc" = [ "race" ];
"atomic-polyfill" = [ "critical-section" ];
"critical-section" = [ "dep:critical-section" "portable-atomic" ];
"default" = [ "std" ];
"parking_lot" = [ "dep:parking_lot_core" ];
"portable-atomic" = [ "dep:portable-atomic" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "race" "std" ];
};
"once_cell_polyfill" = rec {
crateName = "once_cell_polyfill";
version = "1.70.2";
edition = "2021";
sha256 = "1zmla628f0sk3fhjdjqzgxhalr2xrfna958s632z65bjsfv8ljrq";
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"onig" = rec {
crateName = "onig";
version = "6.5.3";
edition = "2021";
sha256 = "1qh9qyv59ca5py5x5bvmfpi9sjyhls80r20sq638jhzrk3vcphqc";
authors = [
"Will Speak <will@willspeak.me>"
"Ivan Ivashchenko <defuz@me.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."windows" or false);
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "onig_sys";
packageId = "onig_sys";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "generate" ];
"generate" = [ "onig_sys/generate" ];
"posix-api" = [ "onig_sys/posix-api" ];
"print-debug" = [ "onig_sys/print-debug" ];
};
};
"onig_sys" = rec {
crateName = "onig_sys";
version = "69.9.3";
edition = "2021";
links = "onig";
sha256 = "1mzd6l3vjb8iw7jwk7l99jvj279wh0d8wf4nb2w56zp70iv32s0y";
authors = [
"Will Speak <will@willspeak.me>"
"Ivan Ivashchenko <defuz@me.com>"
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
{
name = "pkg-config";
packageId = "pkg-config";
}
];
features = {
"bindgen" = [ "dep:bindgen" ];
"default" = [ "generate" ];
"generate" = [ "bindgen" ];
};
};
"opaque-debug" = rec {
crateName = "opaque-debug";
version = "0.3.1";
edition = "2018";
sha256 = "10b3w0kydz5jf1ydyli5nv10gdfp97xh79bgz327d273bs46b3f0";
libName = "opaque_debug";
authors = [
"RustCrypto Developers"
];
};
"openssl" = rec {
crateName = "openssl";
version = "0.10.80";
edition = "2021";
sha256 = "0ryrcbdd7hq0ydvassn4cr02agii1l54yd6sali7chkci2ma4px4";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "foreign-types";
packageId = "foreign-types";
}
{
name = "libc";
packageId = "libc";
}
{
name = "openssl-macros";
packageId = "openssl-macros";
}
{
name = "openssl-sys";
packageId = "openssl-sys";
rename = "ffi";
}
];
features = {
"aws-lc" = [ "ffi/aws-lc" ];
"aws-lc-fips" = [ "ffi/aws-lc-fips" ];
"bindgen" = [ "ffi/bindgen" ];
"unstable_boringssl" = [ "ffi/unstable_boringssl" ];
"vendored" = [ "ffi/vendored" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"openssl-macros" = rec {
crateName = "openssl-macros";
version = "0.1.1";
edition = "2018";
sha256 = "173xxvfc63rr5ybwqwylsir0vq6xsj4kxiv4hmg4c3vscdmncj59";
procMacro = true;
libName = "openssl_macros";
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" ];
}
];
};
"openssl-probe" = rec {
crateName = "openssl-probe";
version = "0.2.1";
edition = "2021";
sha256 = "1gpwpb7smfhkscwvbri8xzbab39wcnby1jgz1s49vf1aqgsdx1vw";
libName = "openssl_probe";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
};
"openssl-sys" = rec {
crateName = "openssl-sys";
version = "0.9.116";
edition = "2021";
links = "openssl";
sha256 = "1i0qcgsimh8qkfgrglmzz2kq3jk2d5575rz5jvqabka0f7f252pj";
build = "build/main.rs";
libName = "openssl_sys";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "vcpkg";
packageId = "vcpkg";
}
];
features = {
"aws-lc" = [ "dep:aws-lc-sys" ];
"aws-lc-fips" = [ "dep:aws-lc-fips-sys" ];
"bindgen" = [ "dep:bindgen" ];
"bssl-sys" = [ "dep:bssl-sys" ];
"openssl-src" = [ "dep:openssl-src" ];
"unstable_boringssl" = [ "bssl-sys" ];
"vendored" = [ "openssl-src" ];
};
};
"outref 0.1.0" = rec {
crateName = "outref";
version = "0.1.0";
edition = "2021";
sha256 = "1x61h7dl1cc6cj2f3zsalr8d98v0cw6497sykwxf74wjmqljh8kz";
};
"outref 0.5.2" = rec {
crateName = "outref";
version = "0.5.2";
edition = "2021";
sha256 = "03pzw9aj4qskqhh0fkagy2mkgfwgj5a1m67ajlba5hw80h68100s";
};
"owo-colors" = rec {
crateName = "owo-colors";
version = "4.3.0";
edition = "2021";
sha256 = "0kgrf4r9vcczhw5r30nkcl6abm99l0ay8dr2fxl0ymvbkcxq04fj";
libName = "owo_colors";
authors = [
"jam1garner <8260240+jam1garner@users.noreply.github.com>"
];
features = {
"supports-color" = [ "dep:supports-color" ];
"supports-colors" = [ "dep:supports-color-2" "supports-color" ];
};
};
"oxc-browserslist" = rec {
crateName = "oxc-browserslist";
version = "2.3.1";
edition = "2024";
sha256 = "1pq6p24gk38bm9ka1rwmqr4vg4b4aydq6bbjz0szj0am78ba3dxb";
libName = "browserslist";
authors = [
"Boshen <boshenc@gmail.com>"
"Pig Fang <g-plane@hotmail.com>"
];
dependencies = [
{
name = "flate2";
packageId = "flate2";
}
{
name = "postcard";
packageId = "postcard";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "thiserror";
packageId = "thiserror 2.0.18";
}
];
features = {
"codspeed" = [ "criterion2/codspeed" ];
"js-sys" = [ "dep:js-sys" ];
"serde-wasm-bindgen" = [ "dep:serde-wasm-bindgen" ];
"wasm-bindgen" = [ "dep:wasm-bindgen" ];
"wasm_bindgen" = [ "js-sys" "serde-wasm-bindgen" "wasm-bindgen" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"oxc-miette" = rec {
crateName = "oxc-miette";
version = "2.7.1";
edition = "2024";
sha256 = "0p14fhxakvyhp5yzh6b929vv43lp92zmy8a509hv7jfl5qgscmj3";
libName = "miette";
authors = [
"Boshen"
"Kat Marchán <kzm@zkat.tech>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "owo-colors";
packageId = "owo-colors";
optional = true;
}
{
name = "oxc-miette-derive";
packageId = "oxc-miette-derive";
optional = true;
}
{
name = "textwrap";
packageId = "textwrap";
optional = true;
}
{
name = "thiserror";
packageId = "thiserror 2.0.18";
}
{
name = "unicode-segmentation";
packageId = "unicode-segmentation";
}
{
name = "unicode-width";
packageId = "unicode-width";
}
];
features = {
"backtrace" = [ "dep:backtrace" ];
"backtrace-ext" = [ "dep:backtrace-ext" ];
"default" = [ "derive" ];
"derive" = [ "oxc-miette-derive" ];
"fancy" = [ "fancy-no-backtrace" "backtrace" "backtrace-ext" ];
"fancy-base" = [ "owo-colors" "textwrap" ];
"fancy-no-backtrace" = [ "fancy-base" "terminal_size" "supports-hyperlinks" "supports-color" "supports-unicode" ];
"fancy-no-syscall" = [ "fancy-base" ];
"owo-colors" = [ "dep:owo-colors" ];
"oxc-miette-derive" = [ "dep:oxc-miette-derive" ];
"serde" = [ "dep:serde" ];
"supports-color" = [ "dep:supports-color" ];
"supports-hyperlinks" = [ "dep:supports-hyperlinks" ];
"supports-unicode" = [ "dep:supports-unicode" ];
"terminal_size" = [ "dep:terminal_size" ];
"textwrap" = [ "dep:textwrap" ];
};
resolvedDefaultFeatures = [ "default" "derive" "fancy-base" "fancy-no-syscall" "owo-colors" "oxc-miette-derive" "textwrap" ];
};
"oxc-miette-derive" = rec {
crateName = "oxc-miette-derive";
version = "2.7.1";
edition = "2024";
sha256 = "15pn3cy0g7xkxf5wh8hsambqsgyijzk7k4xvfpzqz3sg04ml4dxj";
procMacro = true;
libName = "oxc_miette_derive";
authors = [
"Boshen"
"Kat Marchán <kzm@zkat.tech>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
};
"oxc_allocator" = rec {
crateName = "oxc_allocator";
version = "0.95.0";
edition = "2024";
sha256 = "16x4rxjcdl9gjj56bqvyz3mkakal7995m8kwk1fnhq5qb7318cj3";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "allocator-api2";
packageId = "allocator-api2";
}
{
name = "bumpalo";
packageId = "bumpalo";
features = [ "allocator-api2" "collections" ];
}
{
name = "hashbrown";
packageId = "hashbrown 0.16.1";
usesDefaultFeatures = false;
features = [ "inline-more" "allocator-api2" ];
}
{
name = "oxc_data_structures";
packageId = "oxc_data_structures";
features = [ "assert_unchecked" ];
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
];
features = {
"fixed_size" = [ "from_raw_parts" "pool" "dep:oxc_ast_macros" ];
"oxc_estree" = [ "dep:oxc_estree" ];
"serialize" = [ "dep:serde" "oxc_estree/serialize" ];
};
resolvedDefaultFeatures = [ "bitset" ];
};
"oxc_ast" = rec {
crateName = "oxc_ast";
version = "0.95.0";
edition = "2024";
sha256 = "0pb1da7vp1w0rndk8wgvyxnxj2yx6n31j2fmvhp0j89ms8jyly0f";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "oxc_allocator";
packageId = "oxc_allocator";
}
{
name = "oxc_ast_macros";
packageId = "oxc_ast_macros";
}
{
name = "oxc_data_structures";
packageId = "oxc_data_structures";
features = [ "inline_string" ];
}
{
name = "oxc_diagnostics";
packageId = "oxc_diagnostics";
}
{
name = "oxc_estree";
packageId = "oxc_estree";
}
{
name = "oxc_regular_expression";
packageId = "oxc_regular_expression";
}
{
name = "oxc_span";
packageId = "oxc_span";
}
{
name = "oxc_syntax";
packageId = "oxc_syntax";
}
];
features = {
"serialize" = [ "oxc_allocator/serialize" "oxc_span/serialize" "oxc_syntax/serialize" "oxc_estree/serialize" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"oxc_ast_macros" = rec {
crateName = "oxc_ast_macros";
version = "0.95.0";
edition = "2024";
sha256 = "1vg3l57afb3w91qblfmnr4qc4k2197s3y3fkpdz1li9577w9pwnk";
procMacro = true;
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "phf";
packageId = "phf 0.13.1";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
usesDefaultFeatures = false;
features = [ "full" "parsing" "printing" "proc-macro" "clone-impls" ];
}
];
};
"oxc_ast_visit" = rec {
crateName = "oxc_ast_visit";
version = "0.95.0";
edition = "2024";
sha256 = "0nz968gw2mhhddgs7dk0pv673x6v91m1s9l7y569acck5ks65240";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "oxc_allocator";
packageId = "oxc_allocator";
}
{
name = "oxc_ast";
packageId = "oxc_ast";
}
{
name = "oxc_span";
packageId = "oxc_span";
}
{
name = "oxc_syntax";
packageId = "oxc_syntax";
}
];
features = {
"serialize" = [ "oxc_allocator/serialize" "oxc_ast/serialize" "oxc_span/serialize" "oxc_syntax/serialize" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"oxc_codegen" = rec {
crateName = "oxc_codegen";
version = "0.95.0";
edition = "2024";
sha256 = "18jfgxlvyp089f738bqyl4z2bkxa2nzqlw2h8z9j3j9rhj9sn2s8";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "cow-utils";
packageId = "cow-utils";
}
{
name = "dragonbox_ecma";
packageId = "dragonbox_ecma";
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "oxc_allocator";
packageId = "oxc_allocator";
}
{
name = "oxc_ast";
packageId = "oxc_ast";
}
{
name = "oxc_data_structures";
packageId = "oxc_data_structures";
features = [ "code_buffer" "slice_iter" "stack" ];
}
{
name = "oxc_index";
packageId = "oxc_index";
features = [ "nonmax" "serde" ];
}
{
name = "oxc_semantic";
packageId = "oxc_semantic";
}
{
name = "oxc_sourcemap";
packageId = "oxc_sourcemap";
}
{
name = "oxc_span";
packageId = "oxc_span";
}
{
name = "oxc_syntax";
packageId = "oxc_syntax";
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
];
};
"oxc_compat" = rec {
crateName = "oxc_compat";
version = "0.95.0";
edition = "2024";
sha256 = "1imh9b6023wd3wr0bld2gxb0r888260nzp0a86z37sgcb75va1mx";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "cow-utils";
packageId = "cow-utils";
}
{
name = "oxc-browserslist";
packageId = "oxc-browserslist";
}
{
name = "oxc_syntax";
packageId = "oxc_syntax";
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
];
};
"oxc_data_structures" = rec {
crateName = "oxc_data_structures";
version = "0.95.0";
edition = "2024";
sha256 = "0m5q6snjhwm0asjrqhbjl1418a5ikfxrla14yjaf7hb9ma40j2fx";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
features = {
"all" = [ "assert_unchecked" "box_macros" "code_buffer" "inline_string" "rope" "slice_iter" "stack" ];
"code_buffer" = [ "assert_unchecked" ];
"inline_string" = [ "assert_unchecked" ];
"rope" = [ "dep:ropey" ];
"slice_iter" = [ "assert_unchecked" ];
};
resolvedDefaultFeatures = [ "assert_unchecked" "code_buffer" "default" "inline_string" "slice_iter" "stack" ];
};
"oxc_diagnostics" = rec {
crateName = "oxc_diagnostics";
version = "0.95.0";
edition = "2024";
sha256 = "1kl3n9hwchbccgw42n9plx9nzcmm6zdrq97hz8ipzviqimahk2lv";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "cow-utils";
packageId = "cow-utils";
}
{
name = "oxc-miette";
packageId = "oxc-miette";
rename = "miette";
features = [ "fancy-no-syscall" ];
}
{
name = "percent-encoding";
packageId = "percent-encoding";
}
];
};
"oxc_ecmascript" = rec {
crateName = "oxc_ecmascript";
version = "0.95.0";
edition = "2024";
sha256 = "0rkj636xz0y2hwxrb7ffmw0za31bap7kjgciaikalrn23k72w060";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "cow-utils";
packageId = "cow-utils";
}
{
name = "num-bigint";
packageId = "num-bigint";
}
{
name = "num-traits";
packageId = "num-traits";
}
{
name = "oxc_allocator";
packageId = "oxc_allocator";
}
{
name = "oxc_ast";
packageId = "oxc_ast";
}
{
name = "oxc_span";
packageId = "oxc_span";
}
{
name = "oxc_syntax";
packageId = "oxc_syntax";
features = [ "to_js_string" ];
}
];
};
"oxc_estree" = rec {
crateName = "oxc_estree";
version = "0.95.0";
edition = "2024";
sha256 = "0jd6gyzpqrlk740n4vqlpb0kc4pmja2d65ig4p5hrgqhgr5v51dg";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
features = {
"serialize" = [ "dep:oxc_data_structures" "dep:itoa" "dep:dragonbox_ecma" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"oxc_index" = rec {
crateName = "oxc_index";
version = "4.1.0";
edition = "2024";
sha256 = "0avc8488591cj2l34xjmjmzbn3j1kxyanph20fbyq9wnk4h62gpb";
authors = [
"Boshen <boshenc@gmail.com>"
];
dependencies = [
{
name = "nonmax";
packageId = "nonmax";
optional = true;
}
{
name = "serde";
packageId = "serde";
optional = true;
}
];
features = {
"nonmax" = [ "dep:nonmax" ];
"rayon" = [ "dep:rayon" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "nonmax" "serde" ];
};
"oxc_mangler" = rec {
crateName = "oxc_mangler";
version = "0.95.0";
edition = "2024";
sha256 = "07fx24d90sr1wxzwmwxc98sysnsxfpiyppvy6i3rb07hf4ciwxgv";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "itertools";
packageId = "itertools 0.14.0";
}
{
name = "oxc_allocator";
packageId = "oxc_allocator";
features = [ "bitset" ];
}
{
name = "oxc_ast";
packageId = "oxc_ast";
}
{
name = "oxc_data_structures";
packageId = "oxc_data_structures";
features = [ "inline_string" ];
}
{
name = "oxc_index";
packageId = "oxc_index";
features = [ "nonmax" "serde" ];
}
{
name = "oxc_semantic";
packageId = "oxc_semantic";
}
{
name = "oxc_span";
packageId = "oxc_span";
}
{
name = "oxc_syntax";
packageId = "oxc_syntax";
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
];
};
"oxc_minifier" = rec {
crateName = "oxc_minifier";
version = "0.95.0";
edition = "2024";
sha256 = "0k2s0q1m4lrzmfcqw30n66p69qfi1066pxgb7rhgk9pgdfiwldp8";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "cow-utils";
packageId = "cow-utils";
}
{
name = "oxc_allocator";
packageId = "oxc_allocator";
}
{
name = "oxc_ast";
packageId = "oxc_ast";
}
{
name = "oxc_ast_visit";
packageId = "oxc_ast_visit";
}
{
name = "oxc_codegen";
packageId = "oxc_codegen";
}
{
name = "oxc_compat";
packageId = "oxc_compat";
}
{
name = "oxc_data_structures";
packageId = "oxc_data_structures";
features = [ "stack" ];
}
{
name = "oxc_ecmascript";
packageId = "oxc_ecmascript";
}
{
name = "oxc_index";
packageId = "oxc_index";
features = [ "nonmax" "serde" ];
}
{
name = "oxc_mangler";
packageId = "oxc_mangler";
}
{
name = "oxc_parser";
packageId = "oxc_parser";
features = [ "regular_expression" ];
}
{
name = "oxc_regular_expression";
packageId = "oxc_regular_expression";
}
{
name = "oxc_semantic";
packageId = "oxc_semantic";
}
{
name = "oxc_span";
packageId = "oxc_span";
}
{
name = "oxc_syntax";
packageId = "oxc_syntax";
}
{
name = "oxc_traverse";
packageId = "oxc_traverse";
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
];
devDependencies = [
{
name = "oxc_parser";
packageId = "oxc_parser";
features = [ "regular_expression" ];
}
];
};
"oxc_parser" = rec {
crateName = "oxc_parser";
version = "0.95.0";
edition = "2024";
sha256 = "0n41hljdg0v26v9salnxhjr9nw7sga29y47p3r3vqfzj7ywhlwzv";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "cow-utils";
packageId = "cow-utils";
}
{
name = "memchr";
packageId = "memchr";
}
{
name = "num-bigint";
packageId = "num-bigint";
}
{
name = "num-traits";
packageId = "num-traits";
}
{
name = "oxc_allocator";
packageId = "oxc_allocator";
}
{
name = "oxc_ast";
packageId = "oxc_ast";
}
{
name = "oxc_data_structures";
packageId = "oxc_data_structures";
features = [ "assert_unchecked" ];
}
{
name = "oxc_diagnostics";
packageId = "oxc_diagnostics";
}
{
name = "oxc_ecmascript";
packageId = "oxc_ecmascript";
}
{
name = "oxc_regular_expression";
packageId = "oxc_regular_expression";
optional = true;
}
{
name = "oxc_span";
packageId = "oxc_span";
}
{
name = "oxc_syntax";
packageId = "oxc_syntax";
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
{
name = "seq-macro";
packageId = "seq-macro";
}
];
devDependencies = [
{
name = "oxc_ast";
packageId = "oxc_ast";
features = [ "serialize" ];
}
];
features = {
"default" = [ "regular_expression" ];
"regular_expression" = [ "dep:oxc_regular_expression" ];
};
resolvedDefaultFeatures = [ "default" "regular_expression" ];
};
"oxc_regular_expression" = rec {
crateName = "oxc_regular_expression";
version = "0.95.0";
edition = "2024";
sha256 = "0iipm16f95yi2sx510l5n0hfazla22y7nvz5b9azxc736lqgrfi7";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "oxc_allocator";
packageId = "oxc_allocator";
}
{
name = "oxc_ast_macros";
packageId = "oxc_ast_macros";
}
{
name = "oxc_diagnostics";
packageId = "oxc_diagnostics";
}
{
name = "oxc_span";
packageId = "oxc_span";
}
{
name = "phf";
packageId = "phf 0.13.1";
features = [ "macros" ];
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
{
name = "unicode-id-start";
packageId = "unicode-id-start";
}
];
};
"oxc_semantic" = rec {
crateName = "oxc_semantic";
version = "0.95.0";
edition = "2024";
sha256 = "1q6swfny3zwk9rnra99j7kz4ai89vz482v7s3wfqx8kmp6h5z3jp";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "itertools";
packageId = "itertools 0.14.0";
}
{
name = "oxc_allocator";
packageId = "oxc_allocator";
}
{
name = "oxc_ast";
packageId = "oxc_ast";
}
{
name = "oxc_ast_visit";
packageId = "oxc_ast_visit";
}
{
name = "oxc_data_structures";
packageId = "oxc_data_structures";
features = [ "assert_unchecked" ];
}
{
name = "oxc_diagnostics";
packageId = "oxc_diagnostics";
}
{
name = "oxc_ecmascript";
packageId = "oxc_ecmascript";
}
{
name = "oxc_index";
packageId = "oxc_index";
features = [ "nonmax" "serde" ];
}
{
name = "oxc_span";
packageId = "oxc_span";
}
{
name = "oxc_syntax";
packageId = "oxc_syntax";
}
{
name = "phf";
packageId = "phf 0.13.1";
features = [ "macros" ];
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
{
name = "self_cell";
packageId = "self_cell";
}
];
devDependencies = [
{
name = "phf";
packageId = "phf 0.13.1";
features = [ "macros" ];
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
];
features = {
"cfg" = [ "dep:oxc_cfg" ];
"serialize" = [ "oxc_span/serialize" "oxc_syntax/serialize" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"oxc_sourcemap" = rec {
crateName = "oxc_sourcemap";
version = "6.1.1";
edition = "2024";
sha256 = "1mhk6xvvpsnkpm5ckjlj21bhhm3a3ysvmbkncbb8j3njpaw8wdvd";type = [ "lib" "cdylib" ];
authors = [
"Boshen <boshenc@gmail.com>"
];
dependencies = [
{
name = "base64-simd";
packageId = "base64-simd 0.8.0";
}
{
name = "json-escape-simd";
packageId = "json-escape-simd";
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
];
features = {
"codspeed" = [ "criterion2/codspeed" ];
"napi" = [ "dep:napi" "dep:napi-derive" "dep:napi-build" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"oxc_span" = rec {
crateName = "oxc_span";
version = "0.95.0";
edition = "2024";
sha256 = "1wrv0k42xs5vr7bmdc7kg2syx4hp0lfv2ajypsk72zz2xkhky93i";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "compact_str";
packageId = "compact_str";
}
{
name = "oxc-miette";
packageId = "oxc-miette";
rename = "miette";
features = [ "fancy-no-syscall" ];
}
{
name = "oxc_allocator";
packageId = "oxc_allocator";
}
{
name = "oxc_ast_macros";
packageId = "oxc_ast_macros";
}
{
name = "oxc_estree";
packageId = "oxc_estree";
}
];
features = {
"schemars" = [ "dep:schemars" ];
"serialize" = [ "compact_str/serde" "dep:serde" "oxc_estree/serialize" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"oxc_syntax" = rec {
crateName = "oxc_syntax";
version = "0.95.0";
edition = "2024";
sha256 = "0d4nsq0lgqimn3paqcr77q6hpfcgdymb47x70h8135ylbrarxjck";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "cow-utils";
packageId = "cow-utils";
}
{
name = "dragonbox_ecma";
packageId = "dragonbox_ecma";
optional = true;
}
{
name = "nonmax";
packageId = "nonmax";
}
{
name = "oxc_allocator";
packageId = "oxc_allocator";
}
{
name = "oxc_ast_macros";
packageId = "oxc_ast_macros";
}
{
name = "oxc_data_structures";
packageId = "oxc_data_structures";
features = [ "assert_unchecked" ];
}
{
name = "oxc_estree";
packageId = "oxc_estree";
}
{
name = "oxc_index";
packageId = "oxc_index";
features = [ "nonmax" "serde" ];
}
{
name = "oxc_span";
packageId = "oxc_span";
}
{
name = "phf";
packageId = "phf 0.13.1";
features = [ "macros" ];
}
{
name = "unicode-id-start";
packageId = "unicode-id-start";
}
];
features = {
"serialize" = [ "bitflags/serde" "dep:serde" "oxc_estree/serialize" ];
"to_js_string" = [ "dep:dragonbox_ecma" ];
};
resolvedDefaultFeatures = [ "default" "to_js_string" ];
};
"oxc_traverse" = rec {
crateName = "oxc_traverse";
version = "0.95.0";
edition = "2024";
sha256 = "0yvvy0n9jvydm4rzn3kgf7ca3ndcri2glax0isc79x4f4ij05l38";
authors = [
"Boshen <boshenc@gmail.com>"
"Oxc contributors"
];
dependencies = [
{
name = "itoa";
packageId = "itoa";
}
{
name = "oxc_allocator";
packageId = "oxc_allocator";
}
{
name = "oxc_ast";
packageId = "oxc_ast";
}
{
name = "oxc_ast_visit";
packageId = "oxc_ast_visit";
}
{
name = "oxc_data_structures";
packageId = "oxc_data_structures";
features = [ "stack" ];
}
{
name = "oxc_ecmascript";
packageId = "oxc_ecmascript";
}
{
name = "oxc_semantic";
packageId = "oxc_semantic";
}
{
name = "oxc_span";
packageId = "oxc_span";
}
{
name = "oxc_syntax";
packageId = "oxc_syntax";
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
];
};
"parcel_selectors" = rec {
crateName = "parcel_selectors";
version = "0.28.2";
edition = "2021";
sha256 = "15m1hvl6rj8k0nkb28dlvgkkkmiviaklyhdpq4z6pjr6mpqh7zal";
libPath = "lib.rs";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "cssparser";
packageId = "cssparser 0.33.0";
}
{
name = "log";
packageId = "log";
}
{
name = "phf";
packageId = "phf 0.11.3";
}
{
name = "precomputed-hash";
packageId = "precomputed-hash";
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
{
name = "smallvec";
packageId = "smallvec";
}
];
buildDependencies = [
{
name = "phf_codegen";
packageId = "phf_codegen 0.11.3";
}
];
features = {
"into_owned" = [ "static-self" ];
"jsonschema" = [ "serde" "schemars" ];
"schemars" = [ "dep:schemars" ];
"serde" = [ "dep:serde" "smallvec/serde" ];
"smallvec" = [ "static-self/smallvec" ];
"static-self" = [ "dep:static-self" ];
};
};
"parcel_sourcemap" = rec {
crateName = "parcel_sourcemap";
version = "2.1.1";
edition = "2018";
sha256 = "1fsvw1mlqc5x4psj90jxrdbivq8sqvxi5zz3q2vv4s4047bp8ns8";
authors = [
"Jasper De Moor <jasperdemoor@gmail.com>"
];
dependencies = [
{
name = "base64-simd";
packageId = "base64-simd 0.7.0";
optional = true;
}
{
name = "data-url";
packageId = "data-url";
optional = true;
}
{
name = "rkyv";
packageId = "rkyv";
}
{
name = "serde";
packageId = "serde";
optional = true;
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
optional = true;
}
{
name = "vlq";
packageId = "vlq";
}
];
features = {
"base64-simd" = [ "dep:base64-simd" ];
"data-url" = [ "dep:data-url" ];
"json" = [ "serde" "serde_json" "base64-simd" "data-url" ];
"serde" = [ "dep:serde" ];
"serde_json" = [ "dep:serde_json" ];
};
resolvedDefaultFeatures = [ "base64-simd" "data-url" "json" "serde" "serde_json" ];
};
"parking_lot 0.11.2" = rec {
crateName = "parking_lot";
version = "0.11.2";
edition = "2018";
sha256 = "16gzf41bxmm10x82bla8d6wfppy9ym3fxsmdjyvn61m66s0bf5vx";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "instant";
packageId = "instant";
}
{
name = "lock_api";
packageId = "lock_api";
}
{
name = "parking_lot_core";
packageId = "parking_lot_core 0.8.6";
}
];
features = {
"arc_lock" = [ "lock_api/arc_lock" ];
"deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
"nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
"owning_ref" = [ "lock_api/owning_ref" ];
"serde" = [ "lock_api/serde" ];
"stdweb" = [ "instant/stdweb" ];
"wasm-bindgen" = [ "instant/wasm-bindgen" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"parking_lot 0.12.5" = rec {
crateName = "parking_lot";
version = "0.12.5";
edition = "2021";
sha256 = "06jsqh9aqmc94j2rlm8gpccilqm6bskbd67zf6ypfc0f4m9p91ck";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "lock_api";
packageId = "lock_api";
}
{
name = "parking_lot_core";
packageId = "parking_lot_core 0.9.12";
}
];
features = {
"arc_lock" = [ "lock_api/arc_lock" ];
"deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
"nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
"owning_ref" = [ "lock_api/owning_ref" ];
"serde" = [ "lock_api/serde" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"parking_lot_core 0.8.6" = rec {
crateName = "parking_lot_core";
version = "0.8.6";
edition = "2018";
sha256 = "1p2nfcbr0b9lm9rglgm28k6mwyjwgm4knipsmqbgqaxdy3kcz8k0";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "instant";
packageId = "instant";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "redox_syscall";
packageId = "redox_syscall 0.2.16";
target = { target, features }: ("redox" == target."os" or null);
}
{
name = "smallvec";
packageId = "smallvec";
}
{
name = "winapi";
packageId = "winapi";
target = { target, features }: (target."windows" or false);
features = [ "winnt" "ntstatus" "minwindef" "winerror" "winbase" "errhandlingapi" "handleapi" ];
}
];
features = {
"backtrace" = [ "dep:backtrace" ];
"deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ];
"petgraph" = [ "dep:petgraph" ];
"thread-id" = [ "dep:thread-id" ];
};
};
"parking_lot_core 0.9.12" = rec {
crateName = "parking_lot_core";
version = "0.9.12";
edition = "2021";
sha256 = "1hb4rggy70fwa1w9nb0svbyflzdc69h047482v2z3sx2hmcnh896";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "redox_syscall";
packageId = "redox_syscall 0.5.18";
target = { target, features }: ("redox" == target."os" or null);
}
{
name = "smallvec";
packageId = "smallvec";
}
{
name = "windows-link";
packageId = "windows-link";
target = { target, features }: (target."windows" or false);
}
];
features = {
"backtrace" = [ "dep:backtrace" ];
"deadlock_detection" = [ "petgraph" "backtrace" ];
"petgraph" = [ "dep:petgraph" ];
};
};
"password-hash" = rec {
crateName = "password-hash";
version = "0.2.1";
edition = "2018";
sha256 = "10i2jp5d3cng482baqrfwz01i0p981ianjmqffpc3lh5qblx99f1";
libName = "password_hash";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "base64ct";
packageId = "base64ct";
}
{
name = "rand_core";
packageId = "rand_core 0.6.4";
optional = true;
usesDefaultFeatures = false;
}
{
name = "subtle";
packageId = "subtle";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "base64ct/alloc" ];
"default" = [ "rand_core" ];
"rand_core" = [ "dep:rand_core" ];
"std" = [ "alloc" "base64ct/std" ];
};
resolvedDefaultFeatures = [ "rand_core" ];
};
"pastey" = rec {
crateName = "pastey";
version = "0.1.1";
edition = "2018";
sha256 = "1v389jkifv757903flrrps67dvc6q6giwlyx3xi33hcfjmgjxyrm";
procMacro = true;
authors = [
"Aditya Kumar <git@adityais.dev>"
"David Tolnay <dtolnay@gmail.com>"
];
};
"path-slash" = rec {
crateName = "path-slash";
version = "0.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 0.11.0";
optional = true;
usesDefaultFeatures = false;
}
{
name = "password-hash";
packageId = "password-hash";
optional = true;
usesDefaultFeatures = false;
features = [ "rand_core" ];
}
{
name = "sha2";
packageId = "sha2 0.9.9";
optional = true;
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "hmac";
packageId = "hmac 0.11.0";
}
{
name = "sha2";
packageId = "sha2 0.9.9";
}
];
features = {
"base64ct" = [ "dep:base64ct" ];
"default" = [ "simple" ];
"hmac" = [ "dep:hmac" ];
"parallel" = [ "rayon" "std" ];
"password-hash" = [ "dep:password-hash" ];
"rayon" = [ "dep:rayon" ];
"sha1" = [ "dep:sha1" ];
"sha2" = [ "dep:sha2" ];
"simple" = [ "sha2" "hmac" "password-hash" "base64ct" ];
"std" = [ "password-hash/std" ];
};
resolvedDefaultFeatures = [ "base64ct" "default" "hmac" "password-hash" "sha2" "simple" ];
};
"pbkdf2 0.9.0" = rec {
crateName = "pbkdf2";
version = "0.9.0";
edition = "2018";
sha256 = "0fa7j0gdgghk64qlhzdv32yg52p0cfaz5ifhk7i4pfm1wsy98n7h";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "crypto-mac";
packageId = "crypto-mac";
}
];
features = {
"default" = [ "simple" ];
"hmac" = [ "dep:hmac" ];
"parallel" = [ "rayon" "std" ];
"password-hash" = [ "dep:password-hash" ];
"rayon" = [ "dep:rayon" ];
"sha1" = [ "dep:sha1" ];
"sha2" = [ "dep:sha2" ];
"simple" = [ "hmac" "password-hash" "sha2" ];
"std" = [ "password-hash/std" ];
};
};
"percent-encoding" = rec {
crateName = "percent-encoding";
version = "2.3.2";
edition = "2018";
sha256 = "083jv1ai930azvawz2khv7w73xh8mnylk7i578cifndjn5y64kwv";
libName = "percent_encoding";
authors = [
"The rust-url developers"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"phf 0.10.1" = rec {
crateName = "phf";
version = "0.10.1";
edition = "2018";
sha256 = "0naj8n5nasv5hj5ldlva3cl6y3sv7zp3kfgqylhbrg55v3mg3fzs";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "phf_shared";
packageId = "phf_shared 0.10.0";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"macros" = [ "phf_macros" "proc-macro-hack" ];
"phf_macros" = [ "dep:phf_macros" ];
"proc-macro-hack" = [ "dep:proc-macro-hack" ];
"serde" = [ "dep:serde" ];
"std" = [ "phf_shared/std" ];
"uncased" = [ "phf_shared/uncased" ];
"unicase" = [ "phf_shared/unicase" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"phf 0.11.3" = rec {
crateName = "phf";
version = "0.11.3";
edition = "2021";
sha256 = "0y6hxp1d48rx2434wgi5g8j1pr8s5jja29ha2b65435fh057imhz";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "phf_macros";
packageId = "phf_macros 0.11.3";
optional = true;
}
{
name = "phf_shared";
packageId = "phf_shared 0.11.3";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"macros" = [ "phf_macros" ];
"phf_macros" = [ "dep:phf_macros" ];
"serde" = [ "dep:serde" ];
"std" = [ "phf_shared/std" ];
"uncased" = [ "phf_shared/uncased" ];
"unicase" = [ "phf_macros?/unicase" "phf_shared/unicase" ];
};
resolvedDefaultFeatures = [ "default" "macros" "phf_macros" "std" ];
};
"phf 0.13.1" = rec {
crateName = "phf";
version = "0.13.1";
edition = "2021";
sha256 = "1pzswx5gdglgjgp4azyzwyr4gh031r0kcnpqq6jblga72z3jsmn1";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "phf_macros";
packageId = "phf_macros 0.13.1";
optional = true;
}
{
name = "phf_shared";
packageId = "phf_shared 0.13.1";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"macros" = [ "phf_macros" ];
"phf_macros" = [ "dep:phf_macros" ];
"serde" = [ "dep:serde" ];
"std" = [ "phf_shared/std" "serde?/std" ];
"uncased" = [ "phf_macros?/uncased" "phf_shared/uncased" ];
"unicase" = [ "phf_macros?/unicase" "phf_shared/unicase" ];
};
resolvedDefaultFeatures = [ "default" "macros" "phf_macros" "std" ];
};
"phf_codegen 0.10.0" = rec {
crateName = "phf_codegen";
version = "0.10.0";
edition = "2018";
sha256 = "1k8kdad9wk2d5972k6jmjki2xpdy2ky4zd19rv7ybm2dpjlc7cag";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "phf_generator";
packageId = "phf_generator 0.10.0";
}
{
name = "phf_shared";
packageId = "phf_shared 0.10.0";
}
];
};
"phf_codegen 0.11.3" = rec {
crateName = "phf_codegen";
version = "0.11.3";
edition = "2021";
sha256 = "0si1n6zr93kzjs3wah04ikw8z6npsr39jw4dam8yi9czg2609y5f";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "phf_generator";
packageId = "phf_generator 0.11.3";
}
{
name = "phf_shared";
packageId = "phf_shared 0.11.3";
}
];
};
"phf_generator 0.10.0" = rec {
crateName = "phf_generator";
version = "0.10.0";
edition = "2018";
crateBin = [];
sha256 = "1mlq6hlajsvlsx6rhw49g9ricsm017lrxmgmmbk85sxm7f4qaljx";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "phf_shared";
packageId = "phf_shared 0.10.0";
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand 0.8.6";
features = [ "small_rng" ];
}
];
features = {
"criterion" = [ "dep:criterion" ];
};
};
"phf_generator 0.11.3" = rec {
crateName = "phf_generator";
version = "0.11.3";
edition = "2021";
crateBin = [];
sha256 = "0gc4np7s91ynrgw73s2i7iakhb4lzdv1gcyx7yhlc0n214a2701w";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "phf_shared";
packageId = "phf_shared 0.11.3";
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand 0.8.6";
usesDefaultFeatures = false;
features = [ "small_rng" ];
}
];
features = {
"criterion" = [ "dep:criterion" ];
};
};
"phf_generator 0.13.1" = rec {
crateName = "phf_generator";
version = "0.13.1";
edition = "2021";
crateBin = [];
sha256 = "0dwpp11l41dy9mag4phkyyvhpf66lwbp79q3ik44wmhyfqxcwnhk";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "fastrand";
packageId = "fastrand";
usesDefaultFeatures = false;
}
{
name = "phf_shared";
packageId = "phf_shared 0.13.1";
usesDefaultFeatures = false;
}
];
};
"phf_macros 0.11.3" = rec {
crateName = "phf_macros";
version = "0.11.3";
edition = "2021";
sha256 = "05kjfbyb439344rhmlzzw0f9bwk9fp95mmw56zs7yfn1552c0jpq";
procMacro = true;
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "phf_generator";
packageId = "phf_generator 0.11.3";
}
{
name = "phf_shared";
packageId = "phf_shared 0.11.3";
usesDefaultFeatures = false;
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" ];
}
];
features = {
"unicase" = [ "unicase_" "phf_shared/unicase" ];
"unicase_" = [ "dep:unicase_" ];
};
};
"phf_macros 0.13.1" = rec {
crateName = "phf_macros";
version = "0.13.1";
edition = "2021";
sha256 = "1vv9h8pr7xh18sigpvq1hxc8q9nmjmv6gdpqsp65krxiahmh6bw1";
procMacro = true;
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "phf_generator";
packageId = "phf_generator 0.13.1";
}
{
name = "phf_shared";
packageId = "phf_shared 0.13.1";
usesDefaultFeatures = false;
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" ];
}
];
features = {
"uncased" = [ "uncased_" "phf_shared/uncased" ];
"uncased_" = [ "dep:uncased_" ];
"unicase" = [ "unicase_" "phf_shared/unicase" ];
"unicase_" = [ "dep:unicase_" ];
};
};
"phf_shared 0.10.0" = rec {
crateName = "phf_shared";
version = "0.10.0";
edition = "2018";
sha256 = "15n02nc8yqpd8hbxngblar2g53p3nllc93d8s8ih3p5cf7bnlydn";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "siphasher";
packageId = "siphasher 0.3.11";
}
];
features = {
"default" = [ "std" ];
"uncased" = [ "dep:uncased" ];
"unicase" = [ "dep:unicase" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"phf_shared 0.11.3" = rec {
crateName = "phf_shared";
version = "0.11.3";
edition = "2021";
sha256 = "1rallyvh28jqd9i916gk5gk2igdmzlgvv5q0l3xbf3m6y8pbrsk7";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "siphasher";
packageId = "siphasher 1.0.3";
}
];
features = {
"default" = [ "std" ];
"uncased" = [ "dep:uncased" ];
"unicase" = [ "dep:unicase" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"phf_shared 0.13.1" = rec {
crateName = "phf_shared";
version = "0.13.1";
edition = "2021";
sha256 = "0rpjchnswm0x5l4mz9xqfpw0j4w68sjvyqrdrv13h7lqqmmyyzz5";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "siphasher";
packageId = "siphasher 1.0.3";
}
];
features = {
"default" = [ "std" ];
"uncased" = [ "dep:uncased" ];
"unicase" = [ "dep:unicase" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"pijul-config" = rec {
crateName = "pijul-config";
version = "1.0.0-beta.12";
edition = "2024";
sha256 = "0wmf7ym6nz0xypz9l0v479hr6jiqd9f8cfc5vrkz422z2gkwj83r";
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 = "figment";
packageId = "figment";
features = [ "toml" ];
}
{
name = "log";
packageId = "log";
}
{
name = "pijul-core";
packageId = "pijul-core";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "toml";
packageId = "toml 0.8.23";
features = [ "preserve_order" ];
}
{
name = "whoami";
packageId = "whoami 1.6.1";
usesDefaultFeatures = false;
}
];
};
"pijul-core" = rec {
crateName = "pijul-core";
version = "1.0.0-beta.14";
edition = "2024";
sha256 = "09m04pg9dqz91xnfcby309a3si72zc55jsm0png7zn3y1151cw4y";
libName = "pijul_core";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "adler32";
packageId = "adler32";
}
{
name = "aes";
packageId = "aes 0.9.1";
}
{
name = "bincode";
packageId = "bincode";
}
{
name = "bitflags";
packageId = "bitflags 2.12.1";
features = [ "serde" ];
}
{
name = "blake3";
packageId = "blake3";
}
{
name = "bs58";
packageId = "bs58 0.4.0";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "canonical-path";
packageId = "canonical-path";
optional = true;
}
{
name = "chardetng";
packageId = "chardetng";
}
{
name = "crossbeam-deque";
packageId = "crossbeam-deque";
}
{
name = "ctr";
packageId = "ctr 0.10.1";
}
{
name = "curve25519-dalek";
packageId = "curve25519-dalek 4.1.3";
features = [ "serde" ];
}
{
name = "data-encoding";
packageId = "data-encoding";
}
{
name = "diffs";
packageId = "diffs";
}
{
name = "ed25519-dalek";
packageId = "ed25519-dalek";
features = [ "serde" ];
}
{
name = "encoding_rs";
packageId = "encoding_rs";
}
{
name = "flate2";
packageId = "flate2";
optional = true;
}
{
name = "generic-array";
packageId = "generic-array";
}
{
name = "getrandom";
packageId = "getrandom 0.2.17";
target = { target, features }: ("wasm32" == target."arch" or null);
features = [ "js" ];
}
{
name = "hmac";
packageId = "hmac 0.11.0";
}
{
name = "ignore";
packageId = "ignore";
optional = true;
}
{
name = "imara-diff";
packageId = "imara-diff";
}
{
name = "jiff";
packageId = "jiff";
features = [ "serde" "alloc" ];
}
{
name = "log";
packageId = "log";
}
{
name = "lru-cache";
packageId = "lru-cache";
optional = true;
}
{
name = "nom";
packageId = "nom 7.1.3";
}
{
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 0.10.1";
}
{
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.18";
}
{
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 = "rand";
packageId = "rand 0.10.1";
}
];
features = {
"canonical-path" = [ "dep:canonical-path" ];
"default" = [ "ondisk-repos" "text-changes" ];
"flate2" = [ "dep:flate2" ];
"ignore" = [ "dep:ignore" ];
"lru-cache" = [ "dep:lru-cache" ];
"mmap" = [ "sanakirja/mmap" ];
"ondisk-repos" = [ "mmap" "zstd" "ignore" "canonical-path" "lru-cache" "tempfile" "path-slash" ];
"path-slash" = [ "dep:path-slash" ];
"tar" = [ "dep:tar" ];
"tarball" = [ "tar" "flate2" ];
"tempfile" = [ "dep:tempfile" ];
"zstd" = [ "zstd-seekable" ];
"zstd-seekable" = [ "dep:zstd-seekable" ];
};
resolvedDefaultFeatures = [ "canonical-path" "default" "flate2" "ignore" "lru-cache" "mmap" "ondisk-repos" "path-slash" "tar" "tarball" "tempfile" "text-changes" "zstd" "zstd-seekable" ];
};
"pijul-hooks" = rec {
crateName = "pijul-hooks";
version = "0.1.2";
edition = "2021";
src = lib.cleanSourceWith { filter = sourceFilter; src = ./hooks; };
libName = "pijul_hooks";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
];
};
"pijul-identity" = rec {
crateName = "pijul-identity";
version = "1.0.0-beta.12";
edition = "2024";
sha256 = "05r7c5spjlps4yff6b1b1kjhzprbp4awbvag8ff6m1j2517l5z7i";
libName = "pijul_identity";
authors = [
"Finchie"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "dirs-next";
packageId = "dirs-next";
}
{
name = "jiff";
packageId = "jiff";
features = [ "serde" "alloc" ];
}
{
name = "keyring";
packageId = "keyring";
usesDefaultFeatures = false;
features = [ "apple-native" "linux-native-sync-persistent" "windows-native" ];
}
{
name = "log";
packageId = "log";
}
{
name = "pijul-config";
packageId = "pijul-config";
}
{
name = "pijul-core";
packageId = "pijul-core";
}
{
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.18";
}
{
name = "thrussh-keys";
packageId = "thrussh-keys";
}
{
name = "toml";
packageId = "toml 0.8.23";
features = [ "preserve_order" ];
}
{
name = "validator";
packageId = "validator";
}
{
name = "whoami";
packageId = "whoami 1.6.1";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "openssl" ];
"openssl" = [ "thrussh-keys/openssl" ];
};
resolvedDefaultFeatures = [ "default" "openssl" ];
};
"pijul-interaction" = rec {
crateName = "pijul-interaction";
version = "1.0.0-beta.12";
edition = "2024";
sha256 = "1kxbadi9pk41bp7lhsqrymw0b6ka2q6ld44n2n79zpq3ilzgv1s7";
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.18";
}
];
};
"pijul-macros" = rec {
crateName = "pijul-macros";
version = "1.0.0-beta.13";
edition = "2024";
sha256 = "12550ki8g37f11pcb0bfsg1zzjd30v0p7bnj5cphrckm44l5ldwp";
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 2.0.117";
}
];
};
"pijul-remote" = rec {
crateName = "pijul-remote";
version = "1.0.0-beta.14";
edition = "2024";
sha256 = "00sb5v83g6srfkfvgafzg4vf6478j6m3xnxklwxs12k063mgfq8i";
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 = "log";
packageId = "log";
}
{
name = "pijul-config";
packageId = "pijul-config";
}
{
name = "pijul-core";
packageId = "pijul-core";
features = [ "tarball" ];
}
{
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.13";
edition = "2024";
sha256 = "1bsiakciw14hqz9zzgirqib90pwa0rlzbxsdc5am5p653r0hxlbl";
libName = "pijul_repository";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "log";
packageId = "log";
}
{
name = "pijul-config";
packageId = "pijul-config";
}
{
name = "pijul-core";
packageId = "pijul-core";
}
{
name = "rlimit";
packageId = "rlimit";
}
{
name = "toml";
packageId = "toml 0.8.23";
features = [ "preserve_order" ];
}
];
};
"pin-project" = rec {
crateName = "pin-project";
version = "1.1.13";
edition = "2021";
sha256 = "09091qp946lpmjz4yp0xil1r5v4hgc91fi19dg5csayhdqrv4ri4";
libName = "pin_project";
dependencies = [
{
name = "pin-project-internal";
packageId = "pin-project-internal";
}
];
};
"pin-project-internal" = rec {
crateName = "pin-project-internal";
version = "1.1.13";
edition = "2021";
sha256 = "12rzlh07i1sdgrvzj6wgkka5bjqyvbfsl8knq6qi7g16m7q9aqy9";
procMacro = true;
libName = "pin_project_internal";
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
usesDefaultFeatures = false;
features = [ "parsing" "printing" "clone-impls" "proc-macro" "full" "visit-mut" ];
}
];
};
"pin-project-lite" = rec {
crateName = "pin-project-lite";
version = "0.2.17";
edition = "2018";
sha256 = "1kfmwvs271si96zay4mm8887v5khw0c27jc9srw1a75ykvgj54x8";
libName = "pin_project_lite";
};
"pkg-config" = rec {
crateName = "pkg-config";
version = "0.3.33";
edition = "2018";
sha256 = "17jnqmcbxsnwhg9gjf0nh6dj5k0x3hgwi3mb9krjnmfa9v435w8r";
libName = "pkg_config";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
};
"plain" = rec {
crateName = "plain";
version = "0.2.3";
edition = "2015";
sha256 = "19n1xbxb4wa7w891268bzf6cbwq4qvdb86bik1z129qb0xnnnndl";
authors = [
"jzr"
];
};
"plist" = rec {
crateName = "plist";
version = "1.9.0";
edition = "2021";
sha256 = "1wa6kk1179hxn0dd0sw99jcz4053lfxwzgavnv0p6qh2iqkr29q9";
authors = [
"Ed Barnard <eabarnard@gmail.com>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.22.1";
}
{
name = "indexmap";
packageId = "indexmap";
}
{
name = "quick-xml";
packageId = "quick-xml";
rename = "quick_xml";
}
{
name = "serde";
packageId = "serde";
optional = true;
}
{
name = "time";
packageId = "time";
features = [ "parsing" "formatting" ];
}
];
features = {
"default" = [ "serde" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "serde" ];
};
"polyval" = rec {
crateName = "polyval";
version = "0.6.2";
edition = "2021";
sha256 = "09gs56vm36ls6pyxgh06gw2875z2x77r8b2km8q28fql0q6yc7wx";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "cpufeatures";
packageId = "cpufeatures 0.2.17";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
}
{
name = "opaque-debug";
packageId = "opaque-debug";
}
{
name = "universal-hash";
packageId = "universal-hash";
usesDefaultFeatures = false;
}
];
features = {
"std" = [ "universal-hash/std" ];
"zeroize" = [ "dep:zeroize" ];
};
};
"portable-atomic" = rec {
crateName = "portable-atomic";
version = "1.13.1";
edition = "2018";
sha256 = "0j8vlar3n5acyigq8q6f4wjx3k3s5yz0rlpqrv76j73gi5qr8fn3";
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.7";
edition = "2018";
sha256 = "0616j0fhy6y71hyxg3n86f6hng0fmsc269s3wp4gl8ww4p8hd8f2";
libName = "portable_atomic_util";
dependencies = [
{
name = "portable-atomic";
packageId = "portable-atomic";
usesDefaultFeatures = false;
features = [ "require-cas" ];
}
];
features = {
"serde" = [ "dep:serde" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"postcard" = rec {
crateName = "postcard";
version = "1.1.3";
edition = "2021";
sha256 = "094srff139n7m8g5ssq36ag6s29ikf7fgpz660x2hkj5vnsw6r37";
authors = [
"James Munns <james@onevariable.com>"
];
dependencies = [
{
name = "cobs";
packageId = "cobs";
usesDefaultFeatures = false;
}
{
name = "embedded-io";
packageId = "embedded-io 0.4.0";
rename = "embedded-io-04";
optional = true;
}
{
name = "embedded-io";
packageId = "embedded-io 0.6.1";
rename = "embedded-io-06";
optional = true;
}
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
features = [ "derive" ];
}
];
features = {
"alloc" = [ "serde/alloc" "embedded-io-04?/alloc" "embedded-io-06?/alloc" ];
"crc" = [ "dep:crc" ];
"default" = [ "heapless-cas" ];
"defmt" = [ "dep:defmt" ];
"embedded-io" = [ "dep:embedded-io-04" ];
"embedded-io-04" = [ "dep:embedded-io-04" ];
"embedded-io-06" = [ "dep:embedded-io-06" ];
"experimental-derive" = [ "postcard-derive" ];
"heapless" = [ "dep:heapless" ];
"heapless-cas" = [ "heapless" "dep:heapless" "heapless/cas" ];
"nalgebra-v0_33" = [ "nalgebra_v0_33" ];
"nalgebra_v0_33" = [ "dep:nalgebra_v0_33" ];
"postcard-derive" = [ "dep:postcard-derive" ];
"use-crc" = [ "crc" ];
"use-defmt" = [ "defmt" ];
"use-std" = [ "serde/std" "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"postgres-protocol" = rec {
crateName = "postgres-protocol";
version = "0.6.11";
edition = "2024";
sha256 = "1z3hkvsag549f5vmn867w2v6nsk1j55ipqs8x0w2ygn5v83i482n";
libName = "postgres_protocol";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.22.1";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "fallible-iterator";
packageId = "fallible-iterator";
}
{
name = "hmac";
packageId = "hmac 0.13.0";
}
{
name = "md-5";
packageId = "md-5";
}
{
name = "memchr";
packageId = "memchr";
}
{
name = "rand";
packageId = "rand 0.10.1";
}
{
name = "sha2";
packageId = "sha2 0.11.0";
}
{
name = "stringprep";
packageId = "stringprep";
}
];
features = {
"getrandom" = [ "dep:getrandom" ];
"js" = [ "getrandom/wasm_js" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"postgres-types" = rec {
crateName = "postgres-types";
version = "0.2.13";
edition = "2024";
sha256 = "11ni6g0zwkskdpgmdfvc15mk66x03ap31kbh879fi0p656hjkiwd";
libName = "postgres_types";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "fallible-iterator";
packageId = "fallible-iterator";
}
{
name = "postgres-protocol";
packageId = "postgres-protocol";
}
];
features = {
"array-impls" = [ "array-init" ];
"array-init" = [ "dep:array-init" ];
"bit-vec-06" = [ "dep:bit-vec-06" ];
"bit-vec-07" = [ "dep:bit-vec-07" ];
"bit-vec-08" = [ "dep:bit-vec-08" ];
"bit-vec-09" = [ "dep:bit-vec-09" ];
"chrono-04" = [ "dep:chrono-04" ];
"cidr-02" = [ "dep:cidr-02" ];
"cidr-03" = [ "dep:cidr-03" ];
"derive" = [ "postgres-derive" ];
"eui48-04" = [ "dep:eui48-04" ];
"eui48-1" = [ "dep:eui48-1" ];
"geo-types-06" = [ "dep:geo-types-06" ];
"geo-types-0_7" = [ "dep:geo-types-0_7" ];
"jiff-01" = [ "dep:jiff-01" ];
"jiff-02" = [ "dep:jiff-02" ];
"js" = [ "postgres-protocol/js" ];
"postgres-derive" = [ "dep:postgres-derive" ];
"serde-1" = [ "dep:serde-1" ];
"serde_json-1" = [ "dep:serde_json-1" ];
"smol_str-01" = [ "dep:smol_str-01" ];
"time-02" = [ "dep:time-02" ];
"time-03" = [ "dep:time-03" ];
"uuid-08" = [ "dep:uuid-08" ];
"uuid-1" = [ "dep:uuid-1" ];
"with-bit-vec-0_6" = [ "bit-vec-06" ];
"with-bit-vec-0_7" = [ "bit-vec-07" ];
"with-bit-vec-0_8" = [ "bit-vec-08" ];
"with-bit-vec-0_9" = [ "bit-vec-09" ];
"with-chrono-0_4" = [ "chrono-04" ];
"with-cidr-0_2" = [ "cidr-02" ];
"with-cidr-0_3" = [ "cidr-03" ];
"with-eui48-0_4" = [ "eui48-04" ];
"with-eui48-1" = [ "eui48-1" ];
"with-geo-types-0_6" = [ "geo-types-06" ];
"with-geo-types-0_7" = [ "geo-types-0_7" ];
"with-jiff-0_1" = [ "jiff-01" ];
"with-jiff-0_2" = [ "jiff-02" ];
"with-serde_json-1" = [ "serde-1" "serde_json-1" ];
"with-smol_str-01" = [ "smol_str-01" ];
"with-time-0_2" = [ "time-02" ];
"with-time-0_3" = [ "time-03" ];
"with-uuid-0_8" = [ "uuid-08" ];
"with-uuid-1" = [ "uuid-1" ];
};
};
"potential_utf" = rec {
crateName = "potential_utf";
version = "0.1.5";
edition = "2021";
sha256 = "0r0518fr32xbkgzqap509s3r60cr0iancsg9j1jgf37cyz7b20q1";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "zerovec";
packageId = "zerovec";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde_core?/alloc" "writeable/alloc" "zerovec?/alloc" ];
"databake" = [ "dep:databake" ];
"default" = [ "alloc" ];
"serde" = [ "dep:serde_core" ];
"writeable" = [ "dep:writeable" ];
"zerovec" = [ "dep:zerovec" ];
};
resolvedDefaultFeatures = [ "zerovec" ];
};
"powerfmt" = rec {
crateName = "powerfmt";
version = "0.2.0";
edition = "2021";
sha256 = "14ckj2xdpkhv3h6l5sdmb9f1d57z8hbfpdldjc2vl5givq2y77j3";
authors = [
"Jacob Pratt <jacob@jhpratt.dev>"
];
features = {
"default" = [ "std" "macros" ];
"macros" = [ "dep:powerfmt-macros" ];
"std" = [ "alloc" ];
};
};
"ppv-lite86" = rec {
crateName = "ppv-lite86";
version = "0.2.21";
edition = "2021";
sha256 = "1abxx6qz5qnd43br1dd9b2savpihzjza8gb4fbzdql1gxp2f7sl5";
libName = "ppv_lite86";
authors = [
"The CryptoCorrosion Contributors"
];
dependencies = [
{
name = "zerocopy";
packageId = "zerocopy";
features = [ "simd" ];
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "simd" "std" ];
};
"precomputed-hash" = rec {
crateName = "precomputed-hash";
version = "0.1.1";
edition = "2015";
sha256 = "075k9bfy39jhs53cb2fpb9klfakx2glxnf28zdw08ws6lgpq6lwj";
libName = "precomputed_hash";
authors = [
"Emilio Cobos Álvarez <emilio@crisal.io>"
];
};
"prettyplease" = rec {
crateName = "prettyplease";
version = "0.2.37";
edition = "2021";
links = "prettyplease02";
sha256 = "0azn11i1kh0byabhsgab6kqs74zyrg69xkirzgqyhz6xmjnsi727";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
}
{
name = "syn";
packageId = "syn 2.0.117";
usesDefaultFeatures = false;
features = [ "full" ];
}
];
devDependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
}
{
name = "syn";
packageId = "syn 2.0.117";
usesDefaultFeatures = false;
features = [ "clone-impls" "extra-traits" "parsing" "printing" "visit-mut" ];
}
];
features = {
"verbatim" = [ "syn/parsing" ];
};
};
"privdrop" = rec {
crateName = "privdrop";
version = "0.5.6";
edition = "2018";
sha256 = "03slfr61nl3zv9343qkldnp4vr8yim5vcsclily61j986xd2lwkh";
authors = [
"Frank Denis <github@pureftpd.org>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "nix";
packageId = "nix";
features = [ "user" "fs" ];
}
];
};
"proc-macro2" = rec {
crateName = "proc-macro2";
version = "1.0.106";
edition = "2021";
sha256 = "0d09nczyaj67x4ihqr5p7gxbkz38gxhk4asc0k8q23g9n85hzl4g";
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 2.0.117";
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check";
}
];
features = {
"colors" = [ "yansi" ];
"default" = [ "colors" ];
"yansi" = [ "dep:yansi" ];
};
};
"ptr_meta" = rec {
crateName = "ptr_meta";
version = "0.1.4";
edition = "2018";
sha256 = "1wd4wy0wxrcays4f1gy8gwcmxg7mskmivcv40p0hidh6xbvwqf07";
authors = [
"David Koloski <djkoloski@gmail.com>"
];
dependencies = [
{
name = "ptr_meta_derive";
packageId = "ptr_meta_derive";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"ptr_meta_derive" = rec {
crateName = "ptr_meta_derive";
version = "0.1.4";
edition = "2018";
sha256 = "1b69cav9wn67cixshizii0q5mlbl0lihx706vcrzm259zkdlbf0n";
procMacro = true;
authors = [
"David Koloski <djkoloski@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 1.0.109";
features = [ "full" ];
}
];
};
"pulldown-cmark" = rec {
crateName = "pulldown-cmark";
version = "0.13.4";
edition = "2021";
crateBin = [];
sha256 = "0kii5zdm7nvdjh7rjkjpvxd0sx1cyd21p0qijmgiq1z7m3mniw79";
libName = "pulldown_cmark";
authors = [
"Raph Levien <raph.levien@gmail.com>"
"Marcus Klaas de Vries <mail@marcusklaas.nl>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "getopts";
packageId = "getopts";
optional = true;
}
{
name = "memchr";
packageId = "memchr";
}
{
name = "pulldown-cmark-escape";
packageId = "pulldown-cmark-escape";
optional = true;
}
{
name = "unicase";
packageId = "unicase";
}
];
features = {
"default" = [ "getopts" "html" ];
"getopts" = [ "dep:getopts" ];
"html" = [ "pulldown-cmark-escape" ];
"pulldown-cmark-escape" = [ "dep:pulldown-cmark-escape" ];
"serde" = [ "dep:serde" ];
"simd" = [ "pulldown-cmark-escape?/simd" ];
};
resolvedDefaultFeatures = [ "default" "getopts" "html" "pulldown-cmark-escape" ];
};
"pulldown-cmark-escape" = rec {
crateName = "pulldown-cmark-escape";
version = "0.11.0";
edition = "2021";
sha256 = "1bp13akkz52p43vh2ffpgv604l3xd9b67b4iykizidnsbpdqlz80";
libName = "pulldown_cmark_escape";
authors = [
"Raph Levien <raph.levien@gmail.com>"
"Marcus Klaas de Vries <mail@marcusklaas.nl>"
];
features = {
};
};
"quick-xml" = rec {
crateName = "quick-xml";
version = "0.39.4";
edition = "2021";
sha256 = "0plfhnna58ad2hlym3q02zrmmh7xdpikzs7hll4x6w7nwba8vk6d";
libName = "quick_xml";
dependencies = [
{
name = "memchr";
packageId = "memchr";
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"async-tokio" = [ "tokio" ];
"document-features" = [ "dep:document-features" ];
"encoding" = [ "encoding_rs" ];
"encoding_rs" = [ "dep:encoding_rs" ];
"serde" = [ "dep:serde" ];
"serde-types" = [ "serde/derive" ];
"serialize" = [ "serde" ];
"tokio" = [ "dep:tokio" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"quote" = rec {
crateName = "quote";
version = "1.0.45";
edition = "2021";
sha256 = "095rb5rg7pbnwdp6v8w5jw93wndwyijgci1b5lw8j1h5cscn3wj1";
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" ];
};
"quoted_printable" = rec {
crateName = "quoted_printable";
version = "0.5.2";
edition = "2018";
sha256 = "0wm9xr8qajngy0lvsf00hy51s6x53w73qzpb0yj2l4lscn2hb3j7";
authors = [
"Kartikaya Gupta <kats@seldon.staktrace.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"r-efi 5.3.0" = 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" ];
};
};
"r-efi 6.0.0" = rec {
crateName = "r-efi";
version = "6.0.0";
edition = "2018";
sha256 = "1gyrl2k5fyzj9k7kchg2n296z5881lg7070msabid09asp3wkp7q";
libName = "r_efi";
features = {
"core" = [ "dep:core" ];
"rustc-dep-of-std" = [ "core" ];
};
};
"r2d2" = rec {
crateName = "r2d2";
version = "0.8.10";
edition = "2018";
sha256 = "14qw32y4m564xb1f5ya8ii7dwqyknvk8bsx2r0lljlmn7zxqbpji";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "log";
packageId = "log";
}
{
name = "parking_lot";
packageId = "parking_lot 0.12.5";
}
{
name = "scheduled-thread-pool";
packageId = "scheduled-thread-pool";
}
];
};
"radium" = rec {
crateName = "radium";
version = "0.7.0";
edition = "2018";
sha256 = "02cxfi3ky3c4yhyqx9axqwhyaca804ws46nn4gc1imbk94nzycyw";
authors = [
"Nika Layzell <nika@thelayzells.com>"
"myrrlyn <self@myrrlyn.dev>"
];
};
"rand 0.10.1" = rec {
crateName = "rand";
version = "0.10.1";
edition = "2024";
sha256 = "01r22vdpw6z69jzy6khnyr0ljq9im337h4j0mkyz26lnqyyfis6j";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "chacha20";
packageId = "chacha20";
optional = true;
usesDefaultFeatures = false;
features = [ "rng" ];
}
{
name = "getrandom";
packageId = "getrandom 0.4.2";
optional = true;
}
{
name = "rand_core";
packageId = "rand_core 0.10.1";
usesDefaultFeatures = false;
}
];
features = {
"chacha" = [ "dep:chacha20" ];
"default" = [ "std" "std_rng" "sys_rng" "thread_rng" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" "getrandom?/std" ];
"std_rng" = [ "dep:chacha20" ];
"sys_rng" = [ "dep:getrandom" "getrandom/sys_rng" ];
"thread_rng" = [ "std" "std_rng" "sys_rng" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" "std_rng" "sys_rng" "thread_rng" ];
};
"rand 0.7.3" = rec {
crateName = "rand";
version = "0.7.3";
edition = "2018";
sha256 = "00sdaimkbz491qgi6qxkv582yivl32m2jd401kzbn94vsiwicsva";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom 0.1.16";
rename = "getrandom_package";
optional = true;
}
{
name = "libc";
packageId = "libc";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (target."unix" or false);
}
{
name = "rand_chacha";
packageId = "rand_chacha 0.2.2";
usesDefaultFeatures = false;
target = { target, features }: (!("emscripten" == target."os" or null));
}
{
name = "rand_core";
packageId = "rand_core 0.5.1";
}
{
name = "rand_hc";
packageId = "rand_hc";
target = { target, features }: ("emscripten" == target."os" or null);
}
];
devDependencies = [
{
name = "rand_hc";
packageId = "rand_hc";
}
];
features = {
"alloc" = [ "rand_core/alloc" ];
"default" = [ "std" ];
"getrandom" = [ "getrandom_package" "rand_core/getrandom" ];
"getrandom_package" = [ "dep:getrandom_package" ];
"libc" = [ "dep:libc" ];
"log" = [ "dep:log" ];
"nightly" = [ "simd_support" ];
"packed_simd" = [ "dep:packed_simd" ];
"rand_pcg" = [ "dep:rand_pcg" ];
"simd_support" = [ "packed_simd" ];
"small_rng" = [ "rand_pcg" ];
"std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ];
"stdweb" = [ "getrandom_package/stdweb" ];
"wasm-bindgen" = [ "getrandom_package/wasm-bindgen" ];
};
resolvedDefaultFeatures = [ "alloc" "getrandom" "getrandom_package" "libc" "std" ];
};
"rand 0.8.6" = rec {
crateName = "rand";
version = "0.8.6";
edition = "2018";
sha256 = "12kd4rljn86m00rcaz4c1rcya4mb4gk5ig6i8xq00a8wjgxfr82w";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "libc";
packageId = "libc";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (target."unix" or false);
}
{
name = "rand_chacha";
packageId = "rand_chacha 0.3.1";
optional = true;
usesDefaultFeatures = false;
}
{
name = "rand_core";
packageId = "rand_core 0.6.4";
}
];
features = {
"alloc" = [ "rand_core/alloc" ];
"default" = [ "std" "std_rng" ];
"getrandom" = [ "rand_core/getrandom" ];
"libc" = [ "dep:libc" ];
"rand_chacha" = [ "dep:rand_chacha" ];
"serde" = [ "dep:serde" ];
"serde1" = [ "serde" "rand_core/serde1" ];
"std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ];
"std_rng" = [ "rand_chacha" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "getrandom" "libc" "rand_chacha" "small_rng" "std" "std_rng" ];
};
"rand 0.9.4" = rec {
crateName = "rand";
version = "0.9.4";
edition = "2021";
sha256 = "1sknbxgs6nfg0nxdd7689lwbyr2i4vaswchrv4b34z8vpc3azia4";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "rand_chacha";
packageId = "rand_chacha 0.9.0";
optional = true;
usesDefaultFeatures = false;
}
{
name = "rand_core";
packageId = "rand_core 0.9.5";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "std_rng" "os_rng" "small_rng" "thread_rng" ];
"os_rng" = [ "rand_core/os_rng" ];
"serde" = [ "dep:serde" "rand_core/serde" ];
"std" = [ "rand_core/std" "rand_chacha?/std" "alloc" ];
"std_rng" = [ "dep:rand_chacha" ];
"thread_rng" = [ "std" "std_rng" "os_rng" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "os_rng" "small_rng" "std" "std_rng" "thread_rng" ];
};
"rand_chacha 0.2.2" = rec {
crateName = "rand_chacha";
version = "0.2.2";
edition = "2018";
sha256 = "00il36fkdbsmpr99p9ksmmp6dn1md7rmnwmz0rr77jbrca2yvj7l";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
"The CryptoCorrosion Contributors"
];
dependencies = [
{
name = "ppv-lite86";
packageId = "ppv-lite86";
usesDefaultFeatures = false;
features = [ "simd" ];
}
{
name = "rand_core";
packageId = "rand_core 0.5.1";
}
];
features = {
"default" = [ "std" "simd" ];
"std" = [ "ppv-lite86/std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"rand_chacha 0.3.1" = rec {
crateName = "rand_chacha";
version = "0.3.1";
edition = "2018";
sha256 = "123x2adin558xbhvqb8w4f6syjsdkmqff8cxwhmjacpsl1ihmhg6";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
"The CryptoCorrosion Contributors"
];
dependencies = [
{
name = "ppv-lite86";
packageId = "ppv-lite86";
usesDefaultFeatures = false;
features = [ "simd" ];
}
{
name = "rand_core";
packageId = "rand_core 0.6.4";
}
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"serde1" = [ "serde" ];
"std" = [ "ppv-lite86/std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"rand_chacha 0.9.0" = rec {
crateName = "rand_chacha";
version = "0.9.0";
edition = "2021";
sha256 = "1jr5ygix7r60pz0s1cv3ms1f6pd1i9pcdmnxzzhjc3zn3mgjn0nk";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
"The CryptoCorrosion Contributors"
];
dependencies = [
{
name = "ppv-lite86";
packageId = "ppv-lite86";
usesDefaultFeatures = false;
features = [ "simd" ];
}
{
name = "rand_core";
packageId = "rand_core 0.9.5";
}
];
devDependencies = [
{
name = "rand_core";
packageId = "rand_core 0.9.5";
features = [ "os_rng" ];
}
];
features = {
"default" = [ "std" ];
"os_rng" = [ "rand_core/os_rng" ];
"serde" = [ "dep:serde" ];
"std" = [ "ppv-lite86/std" "rand_core/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"rand_core 0.10.1" = rec {
crateName = "rand_core";
version = "0.10.1";
edition = "2024";
sha256 = "0s9wiacxrr100icl7i41308gcj85nlcclrc5jx1jd6p10dhigf33";
authors = [
"The Rand Project Developers"
];
};
"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.17";
optional = true;
}
];
features = {
"getrandom" = [ "dep:getrandom" ];
"serde" = [ "dep:serde" ];
"serde1" = [ "serde" ];
"std" = [ "alloc" "getrandom" "getrandom/std" ];
};
resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ];
};
"rand_core 0.9.5" = rec {
crateName = "rand_core";
version = "0.9.5";
edition = "2021";
sha256 = "0g6qc5r3f0hdmz9b11nripyp9qqrzb0xqk9piip8w8qlvqkcibvn";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom 0.3.4";
optional = true;
}
];
features = {
"os_rng" = [ "dep:getrandom" ];
"serde" = [ "dep:serde" ];
"std" = [ "getrandom?/std" ];
};
resolvedDefaultFeatures = [ "os_rng" "std" ];
};
"rand_hc" = rec {
crateName = "rand_hc";
version = "0.2.0";
edition = "2018";
sha256 = "0g31sqwpmsirdlwr0svnacr4dbqyz339im4ssl9738cjgfpjjcfa";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "rand_core";
packageId = "rand_core 0.5.1";
}
];
};
"rayon" = rec {
crateName = "rayon";
version = "1.12.0";
edition = "2021";
sha256 = "0vcj63xgnk72c30vdrak7dhl53snnaqv9x2faf1d94hzg1kb2fgv";
dependencies = [
{
name = "either";
packageId = "either";
usesDefaultFeatures = false;
}
{
name = "rayon-core";
packageId = "rayon-core";
}
];
features = {
"web_spin_lock" = [ "dep:wasm_sync" "rayon-core/web_spin_lock" ];
};
};
"rayon-core" = rec {
crateName = "rayon-core";
version = "1.13.0";
edition = "2021";
links = "rayon-core";
sha256 = "14dbr0sq83a6lf1rfjq5xdpk5r6zgzvmzs5j6110vlv2007qpq92";
libName = "rayon_core";
dependencies = [
{
name = "crossbeam-deque";
packageId = "crossbeam-deque";
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils";
}
];
features = {
"web_spin_lock" = [ "dep:wasm_sync" ];
};
};
"redox_syscall 0.2.16" = rec {
crateName = "redox_syscall";
version = "0.2.16";
edition = "2018";
sha256 = "16jicm96kjyzm802cxdd1k9jmcph0db1a4lhslcnhjsvhp0mhnpv";
libName = "syscall";
authors = [
"Jeremy Soller <jackpot51@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 1.3.2";
}
];
};
"redox_syscall 0.5.18" = rec {
crateName = "redox_syscall";
version = "0.5.18";
edition = "2021";
sha256 = "0b9n38zsxylql36vybw18if68yc9jczxmbyzdwyhb9sifmag4azd";
libName = "syscall";
authors = [
"Jeremy Soller <jackpot51@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
];
features = {
"core" = [ "dep:core" ];
"default" = [ "userspace" ];
"rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ];
};
resolvedDefaultFeatures = [ "default" "userspace" ];
};
"redox_syscall 0.8.1" = rec {
crateName = "redox_syscall";
version = "0.8.1";
edition = "2021";
sha256 = "1rrcn3nxva589cdhq1bhbvnxdbb6726f1lb5srbn9qx6yaabhi2v";
libName = "syscall";
authors = [
"Jeremy Soller <jackpot51@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
];
features = {
"core" = [ "dep:core" ];
"default" = [ "userspace" ];
"rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ];
};
resolvedDefaultFeatures = [ "default" "userspace" ];
};
"redox_users" = rec {
crateName = "redox_users";
version = "0.4.6";
edition = "2021";
sha256 = "0hya2cxx6hxmjfxzv9n8rjl5igpychav7zfi1f81pz6i4krry05s";
authors = [
"Jose Narvaez <goyox86@gmail.com>"
"Wesley Hershberger <mggmugginsmc@gmail.com>"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom 0.2.17";
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.3";
edition = "2021";
sha256 = "0xp2q0x7ybmpa5zlgaz00p8zswcirj9h8nry3rxxsdwi9fhm81z1";
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.14";
edition = "2021";
sha256 = "13xf7hhn4qmgfh784llcp2kzrvljd13lb2b1ca0mwnf15w9d87bf";
libName = "regex_automata";
authors = [
"The Rust Project Developers"
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "aho-corasick";
packageId = "aho-corasick";
optional = true;
usesDefaultFeatures = false;
}
{
name = "memchr";
packageId = "memchr";
optional = true;
usesDefaultFeatures = false;
}
{
name = "regex-syntax";
packageId = "regex-syntax";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "syntax" "perf" "unicode" "meta" "nfa" "dfa" "hybrid" ];
"dfa" = [ "dfa-build" "dfa-search" "dfa-onepass" ];
"dfa-build" = [ "nfa-thompson" "dfa-search" ];
"dfa-onepass" = [ "nfa-thompson" ];
"hybrid" = [ "alloc" "nfa-thompson" ];
"internal-instrument" = [ "internal-instrument-pikevm" ];
"internal-instrument-pikevm" = [ "logging" "std" ];
"logging" = [ "dep:log" "aho-corasick?/logging" "memchr?/logging" ];
"meta" = [ "syntax" "nfa-pikevm" ];
"nfa" = [ "nfa-thompson" "nfa-pikevm" "nfa-backtrack" ];
"nfa-backtrack" = [ "nfa-thompson" ];
"nfa-pikevm" = [ "nfa-thompson" ];
"nfa-thompson" = [ "alloc" ];
"perf" = [ "perf-inline" "perf-literal" ];
"perf-literal" = [ "perf-literal-substring" "perf-literal-multisubstring" ];
"perf-literal-multisubstring" = [ "dep:aho-corasick" ];
"perf-literal-substring" = [ "aho-corasick?/perf-literal" "dep:memchr" ];
"std" = [ "regex-syntax?/std" "memchr?/std" "aho-corasick?/std" "alloc" ];
"syntax" = [ "dep:regex-syntax" "alloc" ];
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" "regex-syntax?/unicode" ];
"unicode-age" = [ "regex-syntax?/unicode-age" ];
"unicode-bool" = [ "regex-syntax?/unicode-bool" ];
"unicode-case" = [ "regex-syntax?/unicode-case" ];
"unicode-gencat" = [ "regex-syntax?/unicode-gencat" ];
"unicode-perl" = [ "regex-syntax?/unicode-perl" ];
"unicode-script" = [ "regex-syntax?/unicode-script" ];
"unicode-segment" = [ "regex-syntax?/unicode-segment" ];
};
resolvedDefaultFeatures = [ "alloc" "dfa-build" "dfa-onepass" "dfa-search" "hybrid" "meta" "nfa" "nfa-backtrack" "nfa-pikevm" "nfa-thompson" "perf" "perf-inline" "perf-literal" "perf-literal-multisubstring" "perf-literal-substring" "std" "syntax" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" ];
};
"regex-syntax" = rec {
crateName = "regex-syntax";
version = "0.8.10";
edition = "2021";
sha256 = "02jx311ka0daxxc7v45ikzhcl3iydjbbb0mdrpc1xgg8v7c7v2fw";
libName = "regex_syntax";
authors = [
"The Rust Project Developers"
"Andrew Gallant <jamslam@gmail.com>"
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"default" = [ "std" "unicode" ];
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
};
resolvedDefaultFeatures = [ "default" "std" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
};
"rend" = rec {
crateName = "rend";
version = "0.4.2";
edition = "2018";
sha256 = "0z4rrkycva0lcw0hxq479h4amxj9syn5vq4vb2qid5v2ylj3izki";
authors = [
"David Koloski <djkoloski@gmail.com>"
];
dependencies = [
{
name = "bytecheck";
packageId = "bytecheck";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"bytecheck" = [ "dep:bytecheck" ];
"bytemuck" = [ "dep:bytemuck" ];
"default" = [ "std" ];
"std" = [ "bytecheck/std" ];
"validation" = [ "bytecheck" ];
};
resolvedDefaultFeatures = [ "bytecheck" "std" ];
};
"replication" = rec {
crateName = "replication";
version = "0.1.0";
edition = "2021";
src = lib.cleanSourceWith { filter = sourceFilter; src = ./replication; };
authors = [
"Pierre-Étienne Meunier <pmeunier@mailbox.org>"
];
dependencies = [
{
name = "futures";
packageId = "futures";
}
{
name = "pijul-core";
packageId = "pijul-core";
features = [ "tarball" ];
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
{
name = "tokio";
packageId = "tokio";
features = [ "process" "fs" ];
}
{
name = "uuid";
packageId = "uuid";
features = [ "serde" ];
}
];
};
"reqwest" = rec {
crateName = "reqwest";
version = "0.11.27";
edition = "2021";
sha256 = "0qjary4hpplpgdi62d2m0xvbn6lnzckwffm0rgkm2x51023m6ryx";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.21.7";
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "encoding_rs";
packageId = "encoding_rs";
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
}
{
name = "h2";
packageId = "h2 0.3.27";
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "http";
packageId = "http 0.2.12";
}
{
name = "http-body";
packageId = "http-body 0.4.6";
target = { target, features }: (!("wasm32" == target."arch" or null));
}
{
name = "hyper";
packageId = "hyper 0.14.32";
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 1.0.4";
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 0.1.2";
}
{
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 0.14.32";
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" ];
};
"ring" = rec {
crateName = "ring";
version = "0.17.14";
edition = "2021";
links = "ring_core_0_17_14_";
sha256 = "1dw32gv19ccq4hsx3ribhpdzri1vnrlcfqb2vj41xn4l49n9ws54";
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
usesDefaultFeatures = false;
}
{
name = "getrandom";
packageId = "getrandom 0.2.17";
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ((("aarch64" == target."arch" or null) && ("little" == target."endian" or null)) && ("apple" == target."vendor" or null) && (("ios" == target."os" or null) || ("macos" == target."os" or null) || ("tvos" == target."os" or null) || ("visionos" == target."os" or null) || ("watchos" == target."os" or null)));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (((("aarch64" == target."arch" or null) && ("little" == target."endian" or null)) || (("arm" == target."arch" or null) && ("little" == target."endian" or null))) && (("android" == target."os" or null) || ("linux" == target."os" or null)));
}
{
name = "untrusted";
packageId = "untrusted";
}
{
name = "windows-sys";
packageId = "windows-sys 0.52.0";
target = { target, features }: ((("aarch64" == target."arch" or null) && ("little" == target."endian" or null)) && ("windows" == target."os" or null));
features = [ "Win32_Foundation" "Win32_System_Threading" ];
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ((target."unix" or false) || (target."windows" or false) || ("wasi" == target."os" or null));
}
];
features = {
"default" = [ "alloc" "dev_urandom_fallback" ];
"std" = [ "alloc" ];
"wasm32_unknown_unknown_js" = [ "getrandom/js" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"rkyv" = rec {
crateName = "rkyv";
version = "0.7.46";
edition = "2021";
sha256 = "18fngrp1kzsmkkl7asl25661cm7hi05kf8cmpjbdrw53h6fbz5r2";
authors = [
"David Koloski <djkoloski@gmail.com>"
];
dependencies = [
{
name = "bitvec";
packageId = "bitvec";
optional = true;
usesDefaultFeatures = false;
}
{
name = "bytecheck";
packageId = "bytecheck";
optional = true;
usesDefaultFeatures = false;
}
{
name = "bytes";
packageId = "bytes";
optional = true;
usesDefaultFeatures = false;
}
{
name = "hashbrown";
packageId = "hashbrown 0.12.3";
optional = true;
}
{
name = "ptr_meta";
packageId = "ptr_meta";
usesDefaultFeatures = false;
}
{
name = "rend";
packageId = "rend";
optional = true;
usesDefaultFeatures = false;
}
{
name = "rkyv_derive";
packageId = "rkyv_derive";
}
{
name = "seahash";
packageId = "seahash";
}
{
name = "tinyvec";
packageId = "tinyvec";
optional = true;
usesDefaultFeatures = false;
}
{
name = "uuid";
packageId = "uuid";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "hashbrown" "bitvec?/alloc" "tinyvec?/alloc" ];
"arbitrary_enum_discriminant" = [ "rkyv_derive/arbitrary_enum_discriminant" ];
"archive_be" = [ "rend" "rkyv_derive/archive_be" ];
"archive_le" = [ "rend" "rkyv_derive/archive_le" ];
"arrayvec" = [ "dep:arrayvec" ];
"bitvec" = [ "dep:bitvec" ];
"bytecheck" = [ "dep:bytecheck" ];
"bytes" = [ "dep:bytes" ];
"copy" = [ "rkyv_derive/copy" ];
"default" = [ "size_32" "std" ];
"hashbrown" = [ "dep:hashbrown" ];
"indexmap" = [ "dep:indexmap" ];
"rend" = [ "dep:rend" ];
"smallvec" = [ "dep:smallvec" ];
"smol_str" = [ "dep:smol_str" ];
"std" = [ "alloc" "bytecheck?/std" "ptr_meta/std" "rend?/std" "uuid?/std" "bytes?/std" ];
"strict" = [ "rkyv_derive/strict" ];
"tinyvec" = [ "dep:tinyvec" ];
"uuid" = [ "dep:uuid" "bytecheck?/uuid" ];
"validation" = [ "alloc" "bytecheck" "rend/validation" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "hashbrown" "size_32" "std" ];
};
"rkyv_derive" = rec {
crateName = "rkyv_derive";
version = "0.7.46";
edition = "2021";
sha256 = "1x9q626kkppbnbrbbw09nyz2r56b3frhxny87a6h81ld9cnv9mw4";
procMacro = true;
authors = [
"David Koloski <djkoloski@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 1.0.109";
}
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"rlimit" = rec {
crateName = "rlimit";
version = "0.10.2";
edition = "2021";
sha256 = "0fkr1jyhg0ch50kryy1jxd83nfh2skk80ss7irial6nds0xvchvh";
authors = [
"Nugine <nugine@foxmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
};
"rustc-hash" = rec {
crateName = "rustc-hash";
version = "2.1.2";
edition = "2021";
sha256 = "1gjdc5bw9982cj176jvgz9rrqf9xvr1q1ddpzywf5qhs7yzhlc4l";
libName = "rustc_hash";
authors = [
"The Rust Project Developers"
];
features = {
"default" = [ "std" ];
"rand" = [ "dep:rand" "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"rustc_version" = rec {
crateName = "rustc_version";
version = "0.4.1";
edition = "2018";
sha256 = "14lvdsmr5si5qbqzrajgb6vfn69k0sfygrvfvr2mps26xwi3mjyg";
dependencies = [
{
name = "semver";
packageId = "semver";
}
];
};
"rusticata-macros" = rec {
crateName = "rusticata-macros";
version = "4.1.0";
edition = "2018";
sha256 = "0ch67lljmgl5pfrlb90bl5kkp2x6yby1qaxnpnd0p5g9xjkc9w7s";
libName = "rusticata_macros";
authors = [
"Pierre Chifflier <chifflier@wzdftpd.net>"
];
dependencies = [
{
name = "nom";
packageId = "nom 7.1.3";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
};
"rustix 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.12.1";
usesDefaultFeatures = false;
}
{
name = "errno";
packageId = "errno";
rename = "libc_errno";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
}
{
name = "errno";
packageId = "errno";
rename = "libc_errno";
usesDefaultFeatures = false;
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
}
{
name = "errno";
packageId = "errno";
rename = "libc_errno";
usesDefaultFeatures = false;
target = { target, features }: (target."windows" or false);
}
{
name = "libc";
packageId = "libc";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
}
{
name = "linux-raw-sys";
packageId = "linux-raw-sys 0.4.15";
usesDefaultFeatures = false;
target = { target, features }: ((("android" == target."os" or null) || ("linux" == target."os" or null)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
features = [ "general" "ioctl" "no_std" ];
}
{
name = "linux-raw-sys";
packageId = "linux-raw-sys 0.4.15";
usesDefaultFeatures = false;
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
features = [ "general" "errno" "ioctl" "no_std" "elf" ];
}
{
name = "windows-sys";
packageId = "windows-sys 0.59.0";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_NetworkManagement_IpHelper" "Win32_System_Threading" ];
}
];
devDependencies = [
{
name = "errno";
packageId = "errno";
rename = "libc_errno";
usesDefaultFeatures = false;
}
{
name = "libc";
packageId = "libc";
}
];
features = {
"all-apis" = [ "event" "fs" "io_uring" "mm" "mount" "net" "param" "pipe" "process" "procfs" "pty" "rand" "runtime" "shm" "stdio" "system" "termios" "thread" "time" ];
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"default" = [ "std" "use-libc-auxv" ];
"io_uring" = [ "event" "fs" "net" "linux-raw-sys/io_uring" ];
"itoa" = [ "dep:itoa" ];
"libc" = [ "dep:libc" ];
"libc-extra-traits" = [ "libc?/extra_traits" ];
"libc_errno" = [ "dep:libc_errno" ];
"linux_latest" = [ "linux_4_11" ];
"net" = [ "linux-raw-sys/net" "linux-raw-sys/netlink" "linux-raw-sys/if_ether" "linux-raw-sys/xdp" ];
"once_cell" = [ "dep:once_cell" ];
"param" = [ "fs" ];
"process" = [ "linux-raw-sys/prctl" ];
"procfs" = [ "once_cell" "itoa" "fs" ];
"pty" = [ "itoa" "fs" ];
"runtime" = [ "linux-raw-sys/prctl" ];
"rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" "compiler_builtins" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" "compiler_builtins?/rustc-dep-of-std" ];
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
"shm" = [ "fs" ];
"std" = [ "bitflags/std" "alloc" "libc?/std" "libc_errno?/std" "libc-extra-traits" ];
"system" = [ "linux-raw-sys/system" ];
"thread" = [ "linux-raw-sys/prctl" ];
"use-libc" = [ "libc_errno" "libc" "libc-extra-traits" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "fs" "libc-extra-traits" "std" "use-libc-auxv" ];
};
"rustix 1.1.4" = rec {
crateName = "rustix";
version = "1.1.4";
edition = "2021";
sha256 = "14511f9yjqh0ix07xjrjpllah3325774gfwi9zpq72sip5jlbzmn";
authors = [
"Dan Gohman <dev@sunfishcode.online>"
"Jakub Konka <kubkon@jakubkonka.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
usesDefaultFeatures = false;
}
{
name = "errno";
packageId = "errno";
rename = "libc_errno";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
}
{
name = "errno";
packageId = "errno";
rename = "libc_errno";
usesDefaultFeatures = false;
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
}
{
name = "errno";
packageId = "errno";
rename = "libc_errno";
usesDefaultFeatures = false;
target = { target, features }: (target."windows" or false);
}
{
name = "libc";
packageId = "libc";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
}
{
name = "linux-raw-sys";
packageId = "linux-raw-sys 0.12.1";
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.12.1";
usesDefaultFeatures = false;
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
features = [ "auxvec" "general" "errno" "ioctl" "no_std" "elf" ];
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Networking_WinSock" ];
}
];
devDependencies = [
{
name = "errno";
packageId = "errno";
rename = "libc_errno";
usesDefaultFeatures = false;
}
{
name = "libc";
packageId = "libc";
}
];
features = {
"all-apis" = [ "event" "fs" "io_uring" "mm" "mount" "net" "param" "pipe" "process" "pty" "rand" "runtime" "shm" "stdio" "system" "termios" "thread" "time" ];
"core" = [ "dep:core" ];
"default" = [ "std" ];
"io_uring" = [ "event" "fs" "net" "thread" "linux-raw-sys/io_uring" ];
"libc" = [ "dep:libc" ];
"libc_errno" = [ "dep:libc_errno" ];
"linux_5_1" = [ "linux_4_11" ];
"linux_5_11" = [ "linux_5_1" ];
"linux_latest" = [ "linux_5_11" ];
"net" = [ "linux-raw-sys/net" "linux-raw-sys/netlink" "linux-raw-sys/if_ether" "linux-raw-sys/xdp" ];
"process" = [ "linux-raw-sys/prctl" ];
"pty" = [ "fs" ];
"runtime" = [ "linux-raw-sys/prctl" ];
"rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" ];
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
"shm" = [ "fs" ];
"std" = [ "bitflags/std" "alloc" "libc?/std" "libc_errno?/std" ];
"system" = [ "linux-raw-sys/system" ];
"thread" = [ "linux-raw-sys/prctl" ];
"use-libc" = [ "libc_errno" "libc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "fs" "std" ];
};
"rustls" = rec {
crateName = "rustls";
version = "0.23.40";
edition = "2021";
sha256 = "12qnv3ag4wrw7aj8jng74kgrilpjm2b1rfcjaac8h691frccv1pg";
dependencies = [
{
name = "aws-lc-rs";
packageId = "aws-lc-rs";
optional = true;
usesDefaultFeatures = false;
}
{
name = "once_cell";
packageId = "once_cell";
usesDefaultFeatures = false;
features = [ "alloc" "race" ];
}
{
name = "rustls-pki-types";
packageId = "rustls-pki-types";
rename = "pki-types";
features = [ "alloc" ];
}
{
name = "rustls-webpki";
packageId = "rustls-webpki";
rename = "webpki";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "subtle";
packageId = "subtle";
usesDefaultFeatures = false;
}
{
name = "zeroize";
packageId = "zeroize";
}
];
features = {
"aws-lc-rs" = [ "aws_lc_rs" ];
"aws_lc_rs" = [ "dep:aws-lc-rs" "webpki/aws-lc-rs" "aws-lc-rs/aws-lc-sys" "aws-lc-rs/prebuilt-nasm" ];
"brotli" = [ "dep:brotli" "dep:brotli-decompressor" "std" ];
"default" = [ "aws_lc_rs" "logging" "prefer-post-quantum" "std" "tls12" ];
"fips" = [ "aws_lc_rs" "aws-lc-rs?/fips" "webpki/aws-lc-rs-fips" ];
"hashbrown" = [ "dep:hashbrown" ];
"log" = [ "dep:log" ];
"logging" = [ "log" ];
"prefer-post-quantum" = [ "aws_lc_rs" ];
"read_buf" = [ "rustversion" "std" ];
"ring" = [ "dep:ring" "webpki/ring" ];
"rustversion" = [ "dep:rustversion" ];
"std" = [ "webpki/std" "pki-types/std" "once_cell/std" ];
"zlib" = [ "dep:zlib-rs" ];
};
resolvedDefaultFeatures = [ "aws-lc-rs" "aws_lc_rs" "std" ];
};
"rustls-pemfile 1.0.4" = rec {
crateName = "rustls-pemfile";
version = "1.0.4";
edition = "2018";
sha256 = "1324n5bcns0rnw6vywr5agff3rwfvzphi7rmbyzwnv6glkhclx0w";
libName = "rustls_pemfile";
dependencies = [
{
name = "base64";
packageId = "base64 0.21.7";
}
];
};
"rustls-pemfile 2.2.0" = rec {
crateName = "rustls-pemfile";
version = "2.2.0";
edition = "2018";
sha256 = "0l3f3mrfkgdjrava7ibwzgwc4h3dljw3pdkbsi9rkwz3zvji9qyw";
libName = "rustls_pemfile";
dependencies = [
{
name = "rustls-pki-types";
packageId = "rustls-pki-types";
rename = "pki-types";
}
];
features = {
"default" = [ "std" ];
"std" = [ "pki-types/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"rustls-pki-types" = rec {
crateName = "rustls-pki-types";
version = "1.14.1";
edition = "2021";
sha256 = "1a9pr54y0f3qr97bxpd3ahjldq0gqdld0h799xbnwdzbwxx1k9rh";
libName = "rustls_pki_types";
dependencies = [
{
name = "zeroize";
packageId = "zeroize";
optional = true;
}
];
features = {
"alloc" = [ "dep:zeroize" ];
"default" = [ "alloc" ];
"std" = [ "alloc" ];
"web" = [ "web-time" ];
"web-time" = [ "dep:web-time" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"rustls-webpki" = rec {
crateName = "rustls-webpki";
version = "0.103.13";
edition = "2021";
sha256 = "0vkm7z9pnxz5qz66p2kmyy2pwx0g4jnsbqk5xzfhs4czcjl2ki31";
libName = "webpki";
dependencies = [
{
name = "aws-lc-rs";
packageId = "aws-lc-rs";
optional = true;
usesDefaultFeatures = false;
}
{
name = "ring";
packageId = "ring";
optional = true;
usesDefaultFeatures = false;
}
{
name = "rustls-pki-types";
packageId = "rustls-pki-types";
rename = "pki-types";
usesDefaultFeatures = false;
}
{
name = "untrusted";
packageId = "untrusted";
}
];
features = {
"alloc" = [ "ring?/alloc" "pki-types/alloc" ];
"aws-lc-rs" = [ "dep:aws-lc-rs" "aws-lc-rs/aws-lc-sys" "aws-lc-rs/prebuilt-nasm" ];
"aws-lc-rs-fips" = [ "dep:aws-lc-rs" "aws-lc-rs/fips" ];
"aws-lc-rs-unstable" = [ "aws-lc-rs" "aws-lc-rs/unstable" ];
"default" = [ "std" ];
"ring" = [ "dep:ring" ];
"std" = [ "alloc" "pki-types/std" ];
};
resolvedDefaultFeatures = [ "alloc" "aws-lc-rs" "std" ];
};
"rustversion" = rec {
crateName = "rustversion";
version = "1.0.22";
edition = "2018";
sha256 = "0vfl70jhv72scd9rfqgr2n11m5i9l1acnk684m2w83w0zbqdx75k";
procMacro = true;
build = "build/build.rs";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
};
"ryu" = rec {
crateName = "ryu";
version = "1.0.23";
edition = "2021";
sha256 = "0zs70sg00l2fb9jwrf6cbkdyscjs53anrvai2hf7npyyfi5blx4p";
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 = "2.0.0-beta";
edition = "2018";
sha256 = "0jp30pk3id6v0nr780hhkcn63l97fiqx5h290w3prlhrg8g3miag";
authors = [
"Pierre-Étienne Meunier"
];
dependencies = [
{
name = "crc32fast";
packageId = "crc32fast";
optional = true;
usesDefaultFeatures = false;
}
{
name = "fs4";
packageId = "fs4";
optional = true;
}
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
{
name = "libc";
packageId = "libc";
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";
}
];
devDependencies = [
{
name = "libc";
packageId = "libc";
}
];
features = {
"crc32" = [ "crc32fast" "lazy_static" "sanakirja-core/crc32" ];
"crc32fast" = [ "dep:crc32fast" ];
"default" = [ "mmap" ];
"ed25519" = [ "sanakirja-core/ed25519" ];
"fs4" = [ "dep:fs4" ];
"lazy_static" = [ "dep:lazy_static" ];
"libc" = [ "dep:libc" ];
"memmap2" = [ "dep:memmap2" ];
"mmap" = [ "memmap2" "fs4" "libc" ];
"std" = [ "sanakirja-core/std" ];
"uuid" = [ "sanakirja-core/uuid" ];
};
resolvedDefaultFeatures = [ "crc32" "crc32fast" "default" "fs4" "lazy_static" "libc" "memmap2" "mmap" ];
};
"sanakirja-core" = rec {
crateName = "sanakirja-core";
version = "2.0.0-beta";
edition = "2018";
crateBin = [];
sha256 = "1w0nzw9dg22ylgylzl649nr11207bj60xhrk2idn1zkrrc5m1a28";
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.29";
edition = "2018";
sha256 = "0ffrzz5vf2s3gnzvphgb5gg8fqifvryl07qcf7q3x1scj3jbghci";
authors = [
"Steven Fackler <sfackler@gmail.com>"
"Steffen Butzer <steffen.butzer@outlook.com>"
];
dependencies = [
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
features = [ "Win32_Foundation" "Win32_Security_Cryptography" "Win32_Security_Authentication_Identity" "Win32_Security_Credentials" "Win32_System_LibraryLoader" "Win32_System_Memory" "Win32_System_SystemInformation" ];
}
];
devDependencies = [
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
features = [ "Win32_System_SystemInformation" "Win32_System_Time" ];
}
];
};
"scheduled-thread-pool" = rec {
crateName = "scheduled-thread-pool";
version = "0.2.7";
edition = "2018";
sha256 = "068s77f9xcpvzl70nsxk8750dzzc6f9pixajhd979815cj0ndg1w";
libName = "scheduled_thread_pool";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "parking_lot";
packageId = "parking_lot 0.12.5";
}
];
};
"scoped-futures" = rec {
crateName = "scoped-futures";
version = "0.1.4";
edition = "2021";
sha256 = "14ch6bc4bn56lqkrnsanwz2i37b60h6fzmg9b7rk0rb3s3ial90v";
libName = "scoped_futures";
dependencies = [
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"scopeguard" = rec {
crateName = "scopeguard";
version = "1.2.0";
edition = "2015";
sha256 = "0jcz9sd47zlsgcnm1hdw0664krxwb5gczlif4qngj2aif8vky54l";
authors = [
"bluss"
];
features = {
"default" = [ "use_std" ];
};
};
"seahash" = rec {
crateName = "seahash";
version = "4.1.0";
edition = "2015";
sha256 = "0sxsb64np6bvnppjz5hg4rqpnkczhsl8w8kf2a5lr1c08xppn40w";
authors = [
"ticki <ticki@users.noreply.github.com>"
"Tom Almeida <tom@tommoa.me>"
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"security-framework 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.12.1";
}
{
name = "core-foundation";
packageId = "core-foundation 0.9.4";
}
{
name = "core-foundation-sys";
packageId = "core-foundation-sys";
}
{
name = "libc";
packageId = "libc";
}
{
name = "security-framework-sys";
packageId = "security-framework-sys";
usesDefaultFeatures = false;
}
];
features = {
"OSX_10_10" = [ "OSX_10_9" "security-framework-sys/OSX_10_10" ];
"OSX_10_11" = [ "OSX_10_10" "security-framework-sys/OSX_10_11" ];
"OSX_10_12" = [ "OSX_10_11" "security-framework-sys/OSX_10_12" ];
"OSX_10_13" = [ "OSX_10_12" "security-framework-sys/OSX_10_13" "alpn" "session-tickets" "serial-number-bigint" ];
"OSX_10_14" = [ "OSX_10_13" "security-framework-sys/OSX_10_14" ];
"OSX_10_15" = [ "OSX_10_14" "security-framework-sys/OSX_10_15" ];
"OSX_10_9" = [ "security-framework-sys/OSX_10_9" ];
"default" = [ "OSX_10_12" ];
"log" = [ "dep:log" ];
"serial-number-bigint" = [ "dep:num-bigint" ];
};
resolvedDefaultFeatures = [ "OSX_10_10" "OSX_10_11" "OSX_10_12" "OSX_10_9" "default" ];
};
"security-framework 3.7.0" = rec {
crateName = "security-framework";
version = "3.7.0";
edition = "2024";
sha256 = "07fd0j29j8yczb3hd430vwz784lx9knb5xwbvqna1nbkbivvrx5p";
libName = "security_framework";
authors = [
"Steven Fackler <sfackler@gmail.com>"
"Kornel <kornel@geekhood.net>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "core-foundation";
packageId = "core-foundation 0.10.1";
}
{
name = "core-foundation-sys";
packageId = "core-foundation-sys";
}
{
name = "libc";
packageId = "libc";
}
{
name = "security-framework-sys";
packageId = "security-framework-sys";
usesDefaultFeatures = false;
}
];
features = {
"OSX_10_15" = [ "security-framework-sys/OSX_10_15" ];
"default" = [ "OSX_10_14" "alpn" "session-tickets" ];
"log" = [ "dep:log" ];
"macos-12" = [ "security-framework-sys/macos-12" ];
"sync-keychain" = [ "OSX_10_13" ];
};
resolvedDefaultFeatures = [ "OSX_10_14" "alpn" "default" "session-tickets" ];
};
"security-framework-sys" = rec {
crateName = "security-framework-sys";
version = "2.17.0";
edition = "2021";
sha256 = "1qr0w0y9iwvmv3hwg653q1igngnc5b74xcf0679cbv23z0fnkqkc";
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 = {
"default" = [ "OSX_10_13" ];
};
resolvedDefaultFeatures = [ "OSX_10_10" "OSX_10_11" "OSX_10_12" "OSX_10_13" "OSX_10_9" "default" ];
};
"self_cell" = rec {
crateName = "self_cell";
version = "1.2.2";
edition = "2018";
sha256 = "12cdmh9p2h72rmw923kj841jji4k0vrykihvx19fn059az8pcbmi";
authors = [
"Lukas Bergdoll <lukas.bergdoll@gmail.com>"
];
features = {
"old_rust" = [ "rustversion" ];
"rustversion" = [ "dep:rustversion" ];
};
};
"semver" = rec {
crateName = "semver";
version = "1.0.28";
edition = "2021";
sha256 = "1kaimrpy876bcgi8bfj0qqfxk77zm9iz2zhn1hp9hj685z854y4a";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"seq-macro" = rec {
crateName = "seq-macro";
version = "0.3.6";
edition = "2018";
sha256 = "1k4sshn0x2i6a9g97sy5jl7ghlqgmmh3n76aj3rrjwxy1x0i3iqv";
procMacro = true;
libName = "seq_macro";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
};
"serde" = rec {
crateName = "serde";
version = "1.0.228";
edition = "2021";
sha256 = "17mf4hhjxv5m90g42wmlbc61hdhlm6j9hwfkpcnd72rpgzm993ls";
authors = [
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "serde_core";
packageId = "serde_core";
usesDefaultFeatures = false;
features = [ "result" ];
}
{
name = "serde_derive";
packageId = "serde_derive";
optional = true;
}
];
features = {
"alloc" = [ "serde_core/alloc" ];
"default" = [ "std" ];
"derive" = [ "serde_derive" ];
"rc" = [ "serde_core/rc" ];
"serde_derive" = [ "dep:serde_derive" ];
"std" = [ "serde_core/std" ];
"unstable" = [ "serde_core/unstable" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "derive" "serde_derive" "std" ];
};
"serde-content" = rec {
crateName = "serde-content";
version = "0.1.2";
edition = "2021";
sha256 = "1ih9np0g2byfkgh12bpgr6457ib3bras6ik11g895yjhyc2cllrp";
libName = "serde_content";
authors = [
"rushmorem <rushmore@surrealdb.com>"
];
dependencies = [
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
];
features = {
"default" = [ "std" "derive" ];
"derive" = [ "serde/derive" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "derive" "serde" "std" ];
};
"serde_bytes" = rec {
crateName = "serde_bytes";
version = "0.11.19";
edition = "2018";
sha256 = "1a1y1v0r9akqyvprxnmpgc0i8wybqqpvgi01mi8qxn3rkrq41m55";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
target = { target, features }: false;
}
{
name = "serde_core";
packageId = "serde_core";
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
}
];
features = {
"alloc" = [ "serde_core/alloc" ];
"default" = [ "std" ];
"std" = [ "serde_core/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"serde_cbor_2" = rec {
crateName = "serde_cbor_2";
version = "0.13.0";
edition = "2021";
sha256 = "0b28infkbbcr8xfxngzvr5ispav7x54diawhf03qw1z9kmqc5bil";
authors = [
"William Brown <william@blackhats.net.au>"
"James Hodgkinson <james@terminaloutcomes.com>"
];
dependencies = [
{
name = "half";
packageId = "half";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
features = [ "derive" ];
}
];
features = {
"alloc" = [ "serde/alloc" ];
"default" = [ "std" ];
"std" = [ "serde/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"serde_core" = rec {
crateName = "serde_core";
version = "1.0.228";
edition = "2021";
sha256 = "1bb7id2xwx8izq50098s5j2sqrrvk31jbbrjqygyan6ask3qbls1";
authors = [
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "serde_derive";
packageId = "serde_derive";
target = { target, features }: false;
}
];
devDependencies = [
{
name = "serde_derive";
packageId = "serde_derive";
}
];
features = {
"default" = [ "std" "result" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "result" "std" ];
};
"serde_derive" = rec {
crateName = "serde_derive";
version = "1.0.228";
edition = "2021";
sha256 = "0y8xm7fvmr2kjcd029g9fijpndh8csv5m20g4bd76w8qschg4h6m";
procMacro = true;
authors = [
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
features = [ "proc-macro" ];
}
{
name = "quote";
packageId = "quote";
usesDefaultFeatures = false;
features = [ "proc-macro" ];
}
{
name = "syn";
packageId = "syn 2.0.117";
usesDefaultFeatures = false;
features = [ "clone-impls" "derive" "parsing" "printing" "proc-macro" ];
}
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"serde_json" = rec {
crateName = "serde_json";
version = "1.0.150";
edition = "2021";
sha256 = "1ffgfhy9kndjnrz8lmy95pr758p2zk8dxv6yi99x0vkkni24w0g8";
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" "raw_value" "std" ];
};
"serde_path_to_error" = rec {
crateName = "serde_path_to_error";
version = "0.1.20";
edition = "2021";
sha256 = "0mxls44p2ycmnxh03zpnlxxygq42w61ws7ir7r0ba6rp5s1gza8h";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "itoa";
packageId = "itoa";
}
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
target = { target, features }: false;
}
{
name = "serde_core";
packageId = "serde_core";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
}
];
};
"serde_spanned 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.1.1" = rec {
crateName = "serde_spanned";
version = "1.1.1";
edition = "2024";
sha256 = "09jzk7i6wihn3d8i3wi4j4n98ghi93c3b8m8k64nxq0ijn3vaqk6";
dependencies = [
{
name = "serde_core";
packageId = "serde_core";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde_core?/alloc" ];
"default" = [ "std" "serde" ];
"serde" = [ "dep:serde_core" ];
"std" = [ "alloc" "serde_core?/std" ];
};
resolvedDefaultFeatures = [ "alloc" "serde" "std" ];
};
"serde_urlencoded" = rec {
crateName = "serde_urlencoded";
version = "0.7.1";
edition = "2018";
sha256 = "1zgklbdaysj3230xivihs30qi5vkhigg323a9m62k8jwf4a1qjfk";
authors = [
"Anthony Ramine <n.oxyde@gmail.com>"
];
dependencies = [
{
name = "form_urlencoded";
packageId = "form_urlencoded";
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "ryu";
packageId = "ryu";
}
{
name = "serde";
packageId = "serde";
}
];
};
"sha1" = rec {
crateName = "sha1";
version = "0.10.6";
edition = "2018";
sha256 = "1fnnxlfg08xhkmwf2ahv634as30l1i3xhlhkvxflmasi5nd85gz3";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "cpufeatures";
packageId = "cpufeatures 0.2.17";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86" == target."arch" or null) || ("x86_64" == target."arch" or null));
}
{
name = "digest";
packageId = "digest 0.10.7";
}
];
devDependencies = [
{
name = "digest";
packageId = "digest 0.10.7";
features = [ "dev" ];
}
];
features = {
"asm" = [ "sha1-asm" ];
"default" = [ "std" ];
"oid" = [ "digest/oid" ];
"sha1-asm" = [ "dep:sha1-asm" ];
"std" = [ "digest/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"sha2 0.10.9" = rec {
crateName = "sha2";
version = "0.10.9";
edition = "2018";
sha256 = "10xjj843v31ghsksd9sl9y12qfc48157j1xpb8v1ml39jy0psl57";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "cpufeatures";
packageId = "cpufeatures 0.2.17";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
}
{
name = "digest";
packageId = "digest 0.10.7";
}
];
devDependencies = [
{
name = "digest";
packageId = "digest 0.10.7";
features = [ "dev" ];
}
];
features = {
"asm" = [ "sha2-asm" ];
"asm-aarch64" = [ "asm" ];
"default" = [ "std" ];
"oid" = [ "digest/oid" ];
"sha2-asm" = [ "dep:sha2-asm" ];
"std" = [ "digest/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"sha2 0.11.0" = rec {
crateName = "sha2";
version = "0.11.0";
edition = "2024";
sha256 = "1x15x22c5yf54ac0np5bfqnq5x0hdw4wqzpi48zwn94ma0bsfss4";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "cpufeatures";
packageId = "cpufeatures 0.3.0";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
}
{
name = "digest";
packageId = "digest 0.11.3";
}
];
devDependencies = [
{
name = "digest";
packageId = "digest 0.11.3";
features = [ "dev" ];
}
];
features = {
"alloc" = [ "digest/alloc" ];
"default" = [ "alloc" "oid" ];
"oid" = [ "digest/oid" ];
"zeroize" = [ "digest/zeroize" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "oid" ];
};
"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 0.2.17";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
}
{
name = "digest";
packageId = "digest 0.9.0";
}
{
name = "opaque-debug";
packageId = "opaque-debug";
}
];
devDependencies = [
{
name = "digest";
packageId = "digest 0.9.0";
features = [ "dev" ];
}
];
features = {
"asm" = [ "sha2-asm" ];
"asm-aarch64" = [ "asm" ];
"default" = [ "std" ];
"sha2-asm" = [ "dep:sha2-asm" ];
"std" = [ "digest/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"sharded-slab" = rec {
crateName = "sharded-slab";
version = "0.1.7";
edition = "2018";
sha256 = "1xipjr4nqsgw34k7a2cgj9zaasl2ds6jwn89886kww93d32a637l";
libName = "sharded_slab";
authors = [
"Eliza Weisman <eliza@buoyant.io>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
];
features = {
"loom" = [ "dep:loom" ];
};
};
"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 = "2.0.1";
edition = "2018";
sha256 = "1fjsll1cd7d2bcpdij9kd6w62rpbc7qqzvydvs021vsmr1cxvypq";
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";
}
{
name = "libc";
packageId = "libc";
}
];
};
"signature" = rec {
crateName = "signature";
version = "1.6.4";
edition = "2021";
sha256 = "0z3xg405pg827g6hfdprnszsdqkkbrsfx7f1dl04nv9g7cxks8vl";
authors = [
"RustCrypto Developers"
];
features = {
"default" = [ "std" ];
"derive-preview" = [ "digest-preview" "signature_derive" ];
"digest" = [ "dep:digest" ];
"digest-preview" = [ "digest" ];
"rand-preview" = [ "rand_core" ];
"rand_core" = [ "dep:rand_core" ];
"signature_derive" = [ "dep:signature_derive" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"simd-abstraction" = rec {
crateName = "simd-abstraction";
version = "0.7.1";
edition = "2021";
sha256 = "11v9hy8qg0b4qypz2p75ijv41ln1rssk6qilz0gwbbfaayfb5bcw";
libName = "simd_abstraction";
dependencies = [
{
name = "outref";
packageId = "outref 0.1.0";
}
];
features = {
"detect" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "detect" "std" ];
};
"simd-adler32" = rec {
crateName = "simd-adler32";
version = "0.3.9";
edition = "2018";
sha256 = "0532ysdwcvzyp2bwpk8qz0hijplcdwpssr5gy5r7qwqqy5z5qgbh";
libName = "simd_adler32";
authors = [
"Marvin Countryman <me@maar.vin>"
];
features = {
"default" = [ "std" "const-generics" ];
};
};
"simdutf8" = rec {
crateName = "simdutf8";
version = "0.1.5";
edition = "2018";
sha256 = "0vmpf7xaa0dnaikib5jlx6y4dxd3hxqz6l830qb079g7wcsgxag3";
authors = [
"Hans Kratz <hans@appfour.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"siphasher 0.3.11" = rec {
crateName = "siphasher";
version = "0.3.11";
edition = "2018";
sha256 = "03axamhmwsrmh0psdw3gf7c0zc4fyl5yjxfifz9qfka6yhkqid9q";
authors = [
"Frank Denis <github@pureftpd.org>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"serde_json" = [ "dep:serde_json" ];
"serde_no_std" = [ "serde/alloc" ];
"serde_std" = [ "std" "serde/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"siphasher 1.0.3" = rec {
crateName = "siphasher";
version = "1.0.3";
edition = "2018";
sha256 = "0jg6l9xyzca5vy4h6gf8r6p4kk84g98fk95pzig1kq6cr4z8grcf";
authors = [
"Frank Denis <github@pureftpd.org>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"serde_json" = [ "dep:serde_json" ];
"serde_no_std" = [ "serde/alloc" ];
"serde_std" = [ "std" "serde/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"slab" = rec {
crateName = "slab";
version = "0.4.12";
edition = "2018";
sha256 = "1xcwik6s6zbd3lf51kkrcicdq2j4c1fw0yjdai2apy9467i0sy8c";
authors = [
"Carl Lerche <me@carllerche.com>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"smallvec" = rec {
crateName = "smallvec";
version = "1.15.1";
edition = "2018";
sha256 = "00xxdxxpgyq5vjnpljvkmy99xij5rxgh913ii1v16kzynnivgcb7";
authors = [
"The Servo Project Developers"
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"bincode" = [ "dep:bincode" ];
"const_new" = [ "const_generics" ];
"drain_keep_rest" = [ "drain_filter" ];
"impl_bincode" = [ "bincode" "unty" ];
"malloc_size_of" = [ "dep:malloc_size_of" ];
"serde" = [ "dep:serde" ];
"unty" = [ "dep:unty" ];
};
resolvedDefaultFeatures = [ "const_generics" "const_new" "union" ];
};
"smawk" = rec {
crateName = "smawk";
version = "0.3.2";
edition = "2021";
sha256 = "0344z1la39incggwn6nl45k8cbw2x10mr5j0qz85cdz9np0qihxp";
authors = [
"Martin Geisler <martin@geisler.net>"
];
features = {
"ndarray" = [ "dep:ndarray" ];
};
};
"socket2 0.5.10" = rec {
crateName = "socket2";
version = "0.5.10";
edition = "2021";
sha256 = "0y067ki5q946w91xlz2sb175pnfazizva6fi3kfp639mxnmpc8z2";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "windows-sys";
packageId = "windows-sys 0.52.0";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" ];
}
];
features = {
};
resolvedDefaultFeatures = [ "all" ];
};
"socket2 0.6.4" = rec {
crateName = "socket2";
version = "0.6.4";
edition = "2021";
sha256 = "0ldyp5rhba15spwxj1n94xh7sjks1398c3vwpwkxkd1087nwzlaj";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: ((target."unix" or false) || ("wasi" == target."os" or null));
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" ];
}
];
features = {
};
resolvedDefaultFeatures = [ "all" ];
};
"ssh-libsodium" = rec {
crateName = "ssh-libsodium";
version = "0.4.0";
edition = "2018";
sha256 = "0sy7qm5s9gsz1gcgazybr0b51qqqb86r4xdbnb7v1dp9zzmmiv4q";
libName = "ssh_libsodium";
authors = [
"pe@pijul.org <pe@pijul.org>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "libc";
packageId = "libc";
}
{
name = "libsodium-sys";
packageId = "libsodium-sys";
features = [ "use-pkg-config" ];
}
];
buildDependencies = [
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "vcpkg";
packageId = "vcpkg";
}
];
};
"stable_deref_trait" = rec {
crateName = "stable_deref_trait";
version = "1.2.1";
edition = "2015";
sha256 = "15h5h73ppqyhdhx6ywxfj88azmrpml9gl6zp3pwy2malqa6vxqkc";
authors = [
"Robert Grosse <n210241048576@gmail.com>"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
};
"static_assertions" = rec {
crateName = "static_assertions";
version = "1.1.0";
edition = "2015";
sha256 = "0gsl6xmw10gvn3zs1rv99laj5ig7ylffnh71f9l34js4nr4r7sx2";
authors = [
"Nikolai Vazquez"
];
features = {
};
};
"string_cache" = rec {
crateName = "string_cache";
version = "0.8.9";
edition = "2018";
sha256 = "03z7km2kzlwiv2r2qifq5riv4g8phazwng9wnvs3py3lzainnxxz";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "new_debug_unreachable";
packageId = "new_debug_unreachable";
}
{
name = "parking_lot";
packageId = "parking_lot 0.12.5";
}
{
name = "phf_shared";
packageId = "phf_shared 0.11.3";
}
{
name = "precomputed-hash";
packageId = "precomputed-hash";
}
{
name = "serde";
packageId = "serde";
optional = true;
}
];
features = {
"default" = [ "serde_support" ];
"malloc_size_of" = [ "dep:malloc_size_of" ];
"serde" = [ "dep:serde" ];
"serde_support" = [ "serde" ];
};
resolvedDefaultFeatures = [ "default" "serde" "serde_support" ];
};
"string_cache_codegen" = rec {
crateName = "string_cache_codegen";
version = "0.5.4";
edition = "2018";
sha256 = "181ir4d6y053s1kka2idpjx5g9d9jgll6fy517jhzzpi2n3r44f7";
libPath = "lib.rs";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "phf_generator";
packageId = "phf_generator 0.11.3";
}
{
name = "phf_shared";
packageId = "phf_shared 0.11.3";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
];
};
"stringprep" = rec {
crateName = "stringprep";
version = "0.1.5";
edition = "2015";
sha256 = "1cb3jis4h2b767csk272zw92lc6jzfzvh8d6m1cd86yqjb9z6kbv";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "unicode-bidi";
packageId = "unicode-bidi";
}
{
name = "unicode-normalization";
packageId = "unicode-normalization";
}
{
name = "unicode-properties";
packageId = "unicode-properties";
}
];
};
"strsim" = rec {
crateName = "strsim";
version = "0.11.1";
edition = "2015";
sha256 = "0kzvqlw8hxqb7y598w1s0hxlnmi84sg5vsipp3yg5na5d1rvba3x";
authors = [
"Danny Guo <danny@dannyguo.com>"
"maxbachmann <oss@maxbachmann.de>"
];
};
"subtle" = rec {
crateName = "subtle";
version = "2.6.1";
edition = "2018";
sha256 = "14ijxaymghbl1p0wql9cib5zlwiina7kall6w7g89csprkgbvhhk";
authors = [
"Isis Lovecruft <isis@patternsinthevoid.net>"
"Henry de Valence <hdevalence@hdevalence.ca>"
];
features = {
"default" = [ "std" "i128" ];
};
resolvedDefaultFeatures = [ "default" "i128" "std" ];
};
"syn 1.0.109" = rec {
crateName = "syn";
version = "1.0.109";
edition = "2018";
sha256 = "0ds2if4600bd59wsv7jjgfkayfzy3hnazs394kz6zdkmna8l3dkj";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
}
{
name = "quote";
packageId = "quote";
optional = true;
usesDefaultFeatures = false;
}
{
name = "unicode-ident";
packageId = "unicode-ident";
}
];
features = {
"default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
"printing" = [ "quote" ];
"proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ];
"quote" = [ "dep:quote" ];
"test" = [ "syn-test-suite/all-features" ];
};
resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "fold" "full" "parsing" "printing" "proc-macro" "quote" ];
};
"syn 2.0.117" = rec {
crateName = "syn";
version = "2.0.117";
edition = "2021";
sha256 = "16cv7c0wbn8amxc54n4w15kxlx5ypdmla8s0gxr2l7bv7s0bhrg6";
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 0.1.2" = 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" ];
};
};
"sync_wrapper 1.0.2" = rec {
crateName = "sync_wrapper";
version = "1.0.2";
edition = "2021";
sha256 = "0qvjyasd6w18mjg5xlaq5jgy84jsjfsvmnn12c13gypxbv75dwhb";
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 2.0.117";
usesDefaultFeatures = false;
features = [ "derive" "parsing" "printing" "clone-impls" "visit" "extra-traits" ];
}
];
features = {
"default" = [ "proc-macro" ];
"proc-macro" = [ "proc-macro2/proc-macro" "syn/proc-macro" "quote/proc-macro" ];
};
resolvedDefaultFeatures = [ "default" "proc-macro" ];
};
"syntect" = rec {
crateName = "syntect";
version = "5.3.0";
edition = "2021";
sha256 = "09f9j0hlsz5zmc0fkjdp64sjnyzcvp86pvxfk51p19cmbp04asv5";
authors = [
"Tristan Hume <tristan@thume.ca>"
];
dependencies = [
{
name = "bincode";
packageId = "bincode";
optional = true;
}
{
name = "flate2";
packageId = "flate2";
optional = true;
}
{
name = "fnv";
packageId = "fnv";
optional = true;
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "onig";
packageId = "onig";
optional = true;
usesDefaultFeatures = false;
}
{
name = "plist";
packageId = "plist";
optional = true;
}
{
name = "regex-syntax";
packageId = "regex-syntax";
optional = true;
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
optional = true;
}
{
name = "thiserror";
packageId = "thiserror 2.0.18";
}
{
name = "walkdir";
packageId = "walkdir";
}
{
name = "yaml-rust";
packageId = "yaml-rust";
optional = true;
}
];
devDependencies = [
{
name = "serde_json";
packageId = "serde_json";
}
];
features = {
"bincode" = [ "dep:bincode" ];
"default" = [ "default-onig" ];
"default-fancy" = [ "parsing" "default-syntaxes" "default-themes" "html" "plist-load" "yaml-load" "dump-load" "dump-create" "regex-fancy" ];
"default-onig" = [ "parsing" "default-syntaxes" "default-themes" "html" "plist-load" "yaml-load" "dump-load" "dump-create" "regex-onig" ];
"default-syntaxes" = [ "parsing" "dump-load" ];
"default-themes" = [ "dump-load" ];
"dump-create" = [ "flate2" "bincode" ];
"dump-load" = [ "flate2" "bincode" ];
"fancy-regex" = [ "dep:fancy-regex" ];
"flate2" = [ "dep:flate2" ];
"fnv" = [ "dep:fnv" ];
"html" = [ "parsing" ];
"metadata" = [ "parsing" "plist-load" "dep:serde_json" ];
"onig" = [ "dep:onig" ];
"parsing" = [ "regex-syntax" "fnv" "dump-create" "dump-load" ];
"plist" = [ "dep:plist" ];
"plist-load" = [ "plist" "dep:serde_json" ];
"regex-fancy" = [ "fancy-regex" ];
"regex-onig" = [ "onig" ];
"regex-syntax" = [ "dep:regex-syntax" ];
"yaml-load" = [ "yaml-rust" "parsing" ];
"yaml-rust" = [ "dep:yaml-rust" ];
};
resolvedDefaultFeatures = [ "bincode" "default" "default-onig" "default-syntaxes" "default-themes" "dump-create" "dump-load" "flate2" "fnv" "html" "onig" "parsing" "plist" "plist-load" "regex-onig" "regex-syntax" "yaml-load" "yaml-rust" ];
};
"system-configuration" = rec {
crateName = "system-configuration";
version = "0.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";
}
];
};
"tap" = rec {
crateName = "tap";
version = "1.0.1";
edition = "2015";
sha256 = "0sc3gl4nldqpvyhqi3bbd0l9k7fngrcl4zs47n314nqqk4bpx4sm";
authors = [
"Elliott Linder <elliott.darfink@gmail.com>"
"myrrlyn <self@myrrlyn.dev>"
];
};
"tar" = rec {
crateName = "tar";
version = "0.4.46";
edition = "2021";
sha256 = "0h68bc0y1nma3h2ypj28vxc84msjydlrj8rviqwphg00lvcj2qiz";
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.27.0";
edition = "2021";
sha256 = "1gblhnyfjsbg9wjg194n89wrzah7jy3yzgnyzhp56f3v9jd7wj9j";
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.4.2";
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.4";
target = { target, features }: ((target."unix" or false) || ("wasi" == target."os" or null));
features = [ "fs" ];
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Storage_FileSystem" "Win32_Foundation" ];
}
];
features = {
"default" = [ "getrandom" ];
"getrandom" = [ "dep:getrandom" ];
};
resolvedDefaultFeatures = [ "default" "getrandom" ];
};
"tendril" = rec {
crateName = "tendril";
version = "0.4.3";
edition = "2015";
sha256 = "1c3vip59sqwxn148i714nmkrvjzbk7105vj0h92s6r64bw614jnj";
authors = [
"Keegan McAllister <mcallister.keegan@gmail.com>"
"Simon Sapin <simon.sapin@exyr.org>"
"Chris Morgan <me@chrismorgan.info>"
];
dependencies = [
{
name = "futf";
packageId = "futf";
}
{
name = "mac";
packageId = "mac";
}
{
name = "utf-8";
packageId = "utf-8";
}
];
features = {
"encoding" = [ "dep:encoding" ];
"encoding_rs" = [ "dep:encoding_rs" ];
};
};
"textwrap" = rec {
crateName = "textwrap";
version = "0.16.2";
edition = "2021";
sha256 = "0mrhd8q0dnh5hwbwhiv89c6i41yzmhw4clwa592rrp24b9hlfdf1";
authors = [
"Martin Geisler <martin@geisler.net>"
];
dependencies = [
{
name = "smawk";
packageId = "smawk";
optional = true;
}
{
name = "unicode-linebreak";
packageId = "unicode-linebreak";
optional = true;
}
{
name = "unicode-width";
packageId = "unicode-width";
optional = true;
}
];
features = {
"default" = [ "unicode-linebreak" "unicode-width" "smawk" ];
"hyphenation" = [ "dep:hyphenation" ];
"smawk" = [ "dep:smawk" ];
"terminal_size" = [ "dep:terminal_size" ];
"unicode-linebreak" = [ "dep:unicode-linebreak" ];
"unicode-width" = [ "dep:unicode-width" ];
};
resolvedDefaultFeatures = [ "default" "smawk" "unicode-linebreak" "unicode-width" ];
};
"thiserror 1.0.69" = rec {
crateName = "thiserror";
version = "1.0.69";
edition = "2021";
sha256 = "0lizjay08agcr5hs9yfzzj6axs53a2rgx070a1dsi3jpkcrzbamn";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "thiserror-impl";
packageId = "thiserror-impl 1.0.69";
}
];
};
"thiserror 2.0.18" = rec {
crateName = "thiserror";
version = "2.0.18";
edition = "2021";
sha256 = "1i7vcmw9900bvsmay7mww04ahahab7wmr8s925xc083rpjybb222";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "thiserror-impl";
packageId = "thiserror-impl 2.0.18";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"thiserror-impl 1.0.69" = rec {
crateName = "thiserror-impl";
version = "1.0.69";
edition = "2021";
sha256 = "1h84fmn2nai41cxbhk6pqf46bxqq1b344v8yz089w1chzi76rvjg";
procMacro = true;
libName = "thiserror_impl";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
};
"thiserror-impl 2.0.18" = rec {
crateName = "thiserror-impl";
version = "2.0.18";
edition = "2021";
sha256 = "1mf1vrbbimj1g6dvhdgzjmn6q09yflz2b92zs1j9n3k7cxzyxi7b";
procMacro = true;
libName = "thiserror_impl";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
};
"thread_local" = rec {
crateName = "thread_local";
version = "1.1.9";
edition = "2021";
sha256 = "1191jvl8d63agnq06pcnarivf63qzgpws5xa33hgc92gjjj4c0pn";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
];
features = {
};
};
"threadpool" = rec {
crateName = "threadpool";
version = "1.8.1";
edition = "2015";
sha256 = "1amgfyzvynbm8pacniivzq9r0fh3chhs7kijic81j76l6c5ycl6h";
authors = [
"The Rust Project Developers"
"Corey Farwell <coreyf@rwell.org>"
"Stefan Schindler <dns2utf8@estada.ch>"
];
dependencies = [
{
name = "num_cpus";
packageId = "num_cpus";
}
];
};
"thrussh" = rec {
crateName = "thrussh";
version = "0.40.5";
edition = "2024";
sha256 = "1wm3xcz30hr3m7z1jmihqgg14ad0kxydbnfnhbl00x1vvl78h5iz";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 1.3.2";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "cryptovec";
packageId = "cryptovec";
}
{
name = "digest";
packageId = "digest 0.9.0";
}
{
name = "flate2";
packageId = "flate2";
optional = true;
}
{
name = "futures";
packageId = "futures";
}
{
name = "generic-array";
packageId = "generic-array";
}
{
name = "log";
packageId = "log";
}
{
name = "openssl";
packageId = "openssl";
optional = true;
}
{
name = "rand";
packageId = "rand 0.9.4";
}
{
name = "sha2";
packageId = "sha2 0.9.9";
}
{
name = "ssh-libsodium";
packageId = "ssh-libsodium";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
{
name = "thrussh-keys";
packageId = "thrussh-keys";
}
{
name = "tokio";
packageId = "tokio";
features = [ "io-util" "rt-multi-thread" "time" "net" "sync" "macros" "process" ];
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "io-util" "rt-multi-thread" "time" "net" "sync" "macros" ];
}
];
features = {
"default" = [ "flate2" ];
"flate2" = [ "dep:flate2" ];
"openssl" = [ "thrussh-keys/openssl" "dep:openssl" ];
"p256" = [ "thrussh-keys/p256" ];
};
resolvedDefaultFeatures = [ "default" "flate2" "openssl" ];
};
"thrussh-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 1.6.1";
}
];
};
"thrussh-keys" = rec {
crateName = "thrussh-keys";
version = "0.23.2";
edition = "2018";
sha256 = "0m37x90vnskpk9lmw5sy7ibml86fxh5v0nmkihzrz734zzbb1s2s";
libName = "thrussh_keys";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "aes";
packageId = "aes 0.7.5";
features = [ "ctr" ];
}
{
name = "bcrypt-pbkdf";
packageId = "bcrypt-pbkdf";
}
{
name = "bit-vec";
packageId = "bit-vec";
}
{
name = "block-modes";
packageId = "block-modes";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "cryptovec";
packageId = "cryptovec";
}
{
name = "data-encoding";
packageId = "data-encoding";
}
{
name = "dirs";
packageId = "dirs";
}
{
name = "futures";
packageId = "futures";
}
{
name = "hmac";
packageId = "hmac 0.11.0";
}
{
name = "log";
packageId = "log";
}
{
name = "md5";
packageId = "md5";
}
{
name = "num-bigint";
packageId = "num-bigint";
}
{
name = "num-integer";
packageId = "num-integer";
}
{
name = "openssl";
packageId = "openssl";
optional = true;
}
{
name = "pbkdf2";
packageId = "pbkdf2 0.8.0";
}
{
name = "rand";
packageId = "rand 0.8.6";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "sha2";
packageId = "sha2 0.9.9";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
{
name = "thrussh-libsodium";
packageId = "thrussh-libsodium";
}
{
name = "tokio";
packageId = "tokio";
features = [ "io-util" "rt-multi-thread" "time" "net" ];
}
{
name = "tokio-stream";
packageId = "tokio-stream";
features = [ "net" ];
}
{
name = "yasna";
packageId = "yasna";
features = [ "bit-vec" "num-bigint" ];
}
];
features = {
"openssl" = [ "dep:openssl" ];
"p256" = [ "dep:p256" ];
};
resolvedDefaultFeatures = [ "openssl" ];
};
"thrussh-libsodium" = rec {
crateName = "thrussh-libsodium";
version = "0.4.0";
edition = "2018";
sha256 = "0jnyxw7xm9yz86vmsjc1irl7s93jd97nw3nk1isfjvxrrl17sz64";
libName = "thrussh_libsodium";
authors = [
"pe@pijul.org <pe@pijul.org>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "libc";
packageId = "libc";
}
{
name = "libsodium-sys";
packageId = "libsodium-sys";
features = [ "use-pkg-config" ];
}
];
buildDependencies = [
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "vcpkg";
packageId = "vcpkg";
}
];
};
"time" = rec {
crateName = "time";
version = "0.3.47";
edition = "2024";
sha256 = "0b7g9ly2iabrlgizliz6v5x23yq5d6bpp0mqz6407z1s526d8fvl";
authors = [
"Jacob Pratt <open-source@jhpratt.dev>"
"Time contributors"
];
dependencies = [
{
name = "deranged";
packageId = "deranged";
features = [ "powerfmt" ];
}
{
name = "itoa";
packageId = "itoa";
optional = true;
}
{
name = "num-conv";
packageId = "num-conv";
}
{
name = "powerfmt";
packageId = "powerfmt";
usesDefaultFeatures = false;
}
{
name = "serde_core";
packageId = "serde_core";
optional = true;
usesDefaultFeatures = false;
}
{
name = "time-core";
packageId = "time-core";
}
{
name = "time-macros";
packageId = "time-macros";
optional = true;
}
];
devDependencies = [
{
name = "num-conv";
packageId = "num-conv";
}
{
name = "time-macros";
packageId = "time-macros";
}
];
features = {
"alloc" = [ "serde_core?/alloc" ];
"default" = [ "std" ];
"formatting" = [ "dep:itoa" "std" "time-macros?/formatting" ];
"large-dates" = [ "time-core/large-dates" "time-macros?/large-dates" ];
"local-offset" = [ "std" "dep:libc" "dep:num_threads" ];
"macros" = [ "dep:time-macros" ];
"parsing" = [ "time-macros?/parsing" ];
"quickcheck" = [ "dep:quickcheck" "alloc" "deranged/quickcheck" ];
"rand" = [ "rand08" "rand09" ];
"rand08" = [ "dep:rand08" "deranged/rand08" ];
"rand09" = [ "dep:rand09" "deranged/rand09" ];
"serde" = [ "dep:serde_core" "time-macros?/serde" "deranged/serde" ];
"serde-human-readable" = [ "serde" "formatting" "parsing" ];
"serde-well-known" = [ "serde" "formatting" "parsing" ];
"std" = [ "alloc" ];
"wasm-bindgen" = [ "dep:js-sys" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "formatting" "macros" "parsing" "std" ];
};
"time-core" = rec {
crateName = "time-core";
version = "0.1.8";
edition = "2024";
sha256 = "1jidl426mw48i7hjj4hs9vxgd9lwqq4vyalm4q8d7y4iwz7y353n";
libName = "time_core";
authors = [
"Jacob Pratt <open-source@jhpratt.dev>"
"Time contributors"
];
features = {
};
};
"time-macros" = rec {
crateName = "time-macros";
version = "0.2.27";
edition = "2024";
sha256 = "058ja265waq275wxvnfwavbz9r1hd4dgwpfn7a1a9a70l32y8w1f";
procMacro = true;
libName = "time_macros";
authors = [
"Jacob Pratt <open-source@jhpratt.dev>"
"Time contributors"
];
dependencies = [
{
name = "num-conv";
packageId = "num-conv";
}
{
name = "time-core";
packageId = "time-core";
}
];
features = {
};
resolvedDefaultFeatures = [ "formatting" "parsing" ];
};
"tinystr" = rec {
crateName = "tinystr";
version = "0.8.3";
edition = "2021";
sha256 = "0vfr8x285w6zsqhna0a9jyhylwiafb2kc8pj2qaqaahw48236cn8";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "zerovec";
packageId = "zerovec";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde_core?/alloc" "zerovec?/alloc" ];
"databake" = [ "dep:databake" ];
"default" = [ "alloc" ];
"serde" = [ "dep:serde_core" ];
"zerovec" = [ "dep:zerovec" ];
};
resolvedDefaultFeatures = [ "zerovec" ];
};
"tinyvec" = rec {
crateName = "tinyvec";
version = "1.11.0";
edition = "2018";
sha256 = "1wvycrghzmaysnw34kzwnf0mfx6r75045s24r214wnnjadqfcq9y";
authors = [
"Lokathor <zefria@gmail.com>"
];
dependencies = [
{
name = "tinyvec_macros";
packageId = "tinyvec_macros";
optional = true;
}
];
features = {
"alloc" = [ "tinyvec_macros" ];
"arbitrary" = [ "dep:arbitrary" ];
"borsh" = [ "dep:borsh" ];
"defmt" = [ "dep:defmt" ];
"generic-array" = [ "dep:generic-array" ];
"latest_stable_rust" = [ "rustc_1_61" ];
"real_blackbox" = [ "criterion/real_blackbox" ];
"rustc_1_61" = [ "rustc_1_57" ];
"serde" = [ "dep:serde_core" ];
"std" = [ "alloc" ];
"tinyvec_macros" = [ "dep:tinyvec_macros" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "grab_spare_slice" "std" "tinyvec_macros" ];
};
"tinyvec_macros" = rec {
crateName = "tinyvec_macros";
version = "0.1.1";
edition = "2018";
sha256 = "081gag86208sc3y6sdkshgw3vysm5d34p431dzw0bshz66ncng0z";
authors = [
"Soveu <marx.tomasz@gmail.com>"
];
};
"tokio" = rec {
crateName = "tokio";
version = "1.52.3";
edition = "2021";
sha256 = "1zpzazypkg61sw91na1m85x5s4rsjym335fwwhwm1hcs70dz1iwg";
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 }: ("wasi" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
optional = true;
target = { target, features }: (target."unix" or false);
}
{
name = "mio";
packageId = "mio";
optional = true;
usesDefaultFeatures = false;
}
{
name = "mio";
packageId = "mio";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((target."tokio_unstable" or false) && ("linux" == target."os" or null));
features = [ "os-poll" "os-ext" ];
}
{
name = "parking_lot";
packageId = "parking_lot 0.12.5";
optional = true;
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "signal-hook-registry";
packageId = "signal-hook-registry";
optional = true;
target = { target, features }: (target."unix" or false);
}
{
name = "socket2";
packageId = "socket2 0.6.4";
optional = true;
target = { target, features }: ((!(builtins.elem "wasm" target."family")) || (("wasi" == target."os" or null) && (!("p1" == target."env" or null))));
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.4";
target = { target, features }: (!(builtins.elem "wasm" target."family"));
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Security_Authorization" ];
}
];
features = {
"bytes" = [ "dep:bytes" ];
"full" = [ "fs" "io-util" "io-std" "macros" "net" "parking_lot" "process" "rt" "rt-multi-thread" "signal" "sync" "time" ];
"io-uring" = [ "dep:io-uring" "libc" "mio/os-poll" "mio/os-ext" "dep:slab" ];
"io-util" = [ "bytes" ];
"libc" = [ "dep:libc" ];
"macros" = [ "tokio-macros" ];
"mio" = [ "dep:mio" ];
"net" = [ "libc" "mio/os-poll" "mio/os-ext" "mio/net" "socket2" "windows-sys/Win32_Foundation" "windows-sys/Win32_Security" "windows-sys/Win32_Storage_FileSystem" "windows-sys/Win32_System_Pipes" "windows-sys/Win32_System_SystemServices" ];
"parking_lot" = [ "dep:parking_lot" ];
"process" = [ "bytes" "libc" "mio/os-poll" "mio/os-ext" "mio/net" "signal-hook-registry" "windows-sys/Win32_Foundation" "windows-sys/Win32_System_Threading" "windows-sys/Win32_System_WindowsProgramming" ];
"rt-multi-thread" = [ "rt" ];
"signal" = [ "libc" "mio/os-poll" "mio/net" "mio/os-ext" "signal-hook-registry" "windows-sys/Win32_Foundation" "windows-sys/Win32_System_Console" ];
"signal-hook-registry" = [ "dep:signal-hook-registry" ];
"socket2" = [ "dep:socket2" ];
"taskdump" = [ "dep:backtrace" ];
"test-util" = [ "rt" "sync" "time" ];
"tokio-macros" = [ "dep:tokio-macros" ];
"tracing" = [ "dep:tracing" ];
"windows-sys" = [ "dep:windows-sys" ];
};
resolvedDefaultFeatures = [ "bytes" "default" "fs" "full" "io-std" "io-util" "libc" "macros" "mio" "net" "parking_lot" "process" "rt" "rt-multi-thread" "signal" "signal-hook-registry" "socket2" "sync" "time" "tokio-macros" "windows-sys" ];
};
"tokio-macros" = rec {
crateName = "tokio-macros";
version = "2.7.0";
edition = "2021";
sha256 = "15m4f37mdafs0gg36sh0rskm1i768lb7zmp8bw67kaxr3avnqniq";
procMacro = true;
libName = "tokio_macros";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
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-postgres" = rec {
crateName = "tokio-postgres";
version = "0.7.17";
edition = "2024";
sha256 = "1kkl6ngzz9i61143gvndhsnbnkysmmx0zw56b53kdxl0y5gdzn2d";
libName = "tokio_postgres";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "async-trait";
packageId = "async-trait";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "fallible-iterator";
packageId = "fallible-iterator";
}
{
name = "futures-channel";
packageId = "futures-channel";
features = [ "sink" ];
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "sink" ];
}
{
name = "log";
packageId = "log";
}
{
name = "parking_lot";
packageId = "parking_lot 0.12.5";
}
{
name = "percent-encoding";
packageId = "percent-encoding";
}
{
name = "phf";
packageId = "phf 0.13.1";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "postgres-protocol";
packageId = "postgres-protocol";
}
{
name = "postgres-types";
packageId = "postgres-types";
}
{
name = "rand";
packageId = "rand 0.10.1";
}
{
name = "socket2";
packageId = "socket2 0.6.4";
target = { target, features }: (!("wasm32" == target."arch" or null));
features = [ "all" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "io-util" ];
}
{
name = "tokio-util";
packageId = "tokio-util";
features = [ "codec" ];
}
{
name = "whoami";
packageId = "whoami 2.1.2";
}
];
devDependencies = [
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "async-await-macro" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "macros" "net" "rt" "rt-multi-thread" "time" ];
}
];
features = {
"array-impls" = [ "postgres-types/array-impls" ];
"default" = [ "runtime" ];
"js" = [ "postgres-protocol/js" "postgres-types/js" ];
"runtime" = [ "tokio/net" "tokio/time" ];
"with-bit-vec-0_6" = [ "postgres-types/with-bit-vec-0_6" ];
"with-bit-vec-0_7" = [ "postgres-types/with-bit-vec-0_7" ];
"with-bit-vec-0_8" = [ "postgres-types/with-bit-vec-0_8" ];
"with-bit-vec-0_9" = [ "postgres-types/with-bit-vec-0_9" ];
"with-chrono-0_4" = [ "postgres-types/with-chrono-0_4" ];
"with-cidr-0_2" = [ "postgres-types/with-cidr-0_2" ];
"with-cidr-0_3" = [ "postgres-types/with-cidr-0_3" ];
"with-eui48-0_4" = [ "postgres-types/with-eui48-0_4" ];
"with-eui48-1" = [ "postgres-types/with-eui48-1" ];
"with-geo-types-0_6" = [ "postgres-types/with-geo-types-0_6" ];
"with-geo-types-0_7" = [ "postgres-types/with-geo-types-0_7" ];
"with-jiff-0_1" = [ "postgres-types/with-jiff-0_1" ];
"with-jiff-0_2" = [ "postgres-types/with-jiff-0_2" ];
"with-serde_json-1" = [ "postgres-types/with-serde_json-1" ];
"with-smol_str-01" = [ "postgres-types/with-smol_str-01" ];
"with-time-0_2" = [ "postgres-types/with-time-0_2" ];
"with-time-0_3" = [ "postgres-types/with-time-0_3" ];
"with-uuid-0_8" = [ "postgres-types/with-uuid-0_8" ];
"with-uuid-1" = [ "postgres-types/with-uuid-1" ];
};
resolvedDefaultFeatures = [ "default" "runtime" ];
};
"tokio-rustls" = rec {
crateName = "tokio-rustls";
version = "0.26.4";
edition = "2021";
sha256 = "0qggwknz9w4bbsv1z158hlnpkm97j3w8v31586jipn99byaala8p";
libName = "tokio_rustls";
dependencies = [
{
name = "rustls";
packageId = "rustls";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "tokio";
packageId = "tokio";
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "full" ];
}
];
features = {
"aws-lc-rs" = [ "aws_lc_rs" ];
"aws_lc_rs" = [ "rustls/aws_lc_rs" ];
"brotli" = [ "rustls/brotli" ];
"default" = [ "logging" "tls12" "aws_lc_rs" ];
"fips" = [ "rustls/fips" ];
"logging" = [ "rustls/logging" ];
"ring" = [ "rustls/ring" ];
"tls12" = [ "rustls/tls12" ];
"zlib" = [ "rustls/zlib" ];
};
};
"tokio-stream" = rec {
crateName = "tokio-stream";
version = "0.1.18";
edition = "2021";
sha256 = "0w3cj33605ab58wqd382gnla5pnd9hnr00xgg333np5bka04knij";
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-tungstenite" = rec {
crateName = "tokio-tungstenite";
version = "0.29.0";
edition = "2018";
sha256 = "0p4i0a9fwhn92y4ybc0z75pc8hn2hjjgnlymminqb1c5h9ga0wlg";
libName = "tokio_tungstenite";
authors = [
"Daniel Abramov <dabramov@snapview.de>"
"Alexey Galakhov <agalakhov@snapview.de>"
];
dependencies = [
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "sink" "std" ];
}
{
name = "log";
packageId = "log";
}
{
name = "tokio";
packageId = "tokio";
usesDefaultFeatures = false;
features = [ "io-util" ];
}
{
name = "tungstenite";
packageId = "tungstenite";
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
usesDefaultFeatures = false;
features = [ "io-std" "macros" "net" "rt-multi-thread" "time" ];
}
];
features = {
"__rustls-tls" = [ "rustls" "rustls-pki-types" "tokio-rustls" "stream" "tungstenite/__rustls-tls" "handshake" ];
"connect" = [ "stream" "tokio/net" "handshake" ];
"default" = [ "connect" "handshake" ];
"handshake" = [ "tungstenite/handshake" ];
"native-tls" = [ "native-tls-crate" "tokio-native-tls" "stream" "tungstenite/native-tls" "handshake" ];
"native-tls-crate" = [ "dep:native-tls-crate" ];
"native-tls-vendored" = [ "native-tls" "native-tls-crate/vendored" "tungstenite/native-tls-vendored" ];
"rustls" = [ "dep:rustls" ];
"rustls-native-certs" = [ "dep:rustls-native-certs" ];
"rustls-pki-types" = [ "dep:rustls-pki-types" ];
"rustls-tls-native-roots" = [ "__rustls-tls" "rustls-native-certs" ];
"rustls-tls-webpki-roots" = [ "__rustls-tls" "webpki-roots" ];
"tokio-native-tls" = [ "dep:tokio-native-tls" ];
"tokio-rustls" = [ "dep:tokio-rustls" ];
"url" = [ "tungstenite/url" ];
"webpki-roots" = [ "dep:webpki-roots" ];
};
resolvedDefaultFeatures = [ "connect" "default" "handshake" "stream" ];
};
"tokio-util" = rec {
crateName = "tokio-util";
version = "0.7.18";
edition = "2021";
sha256 = "1600rd47pylwn7cap1k7s5nvdaa9j7w8kqigzp1qy7mh0p4cxscs";
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.12+spec-1.1.0" = rec {
crateName = "toml";
version = "0.9.12+spec-1.1.0";
edition = "2021";
sha256 = "0qwqbrymqn88mg2yqyq3rj52z6p20448z0jxdbpjsbpwg5g894ng";
dependencies = [
{
name = "indexmap";
packageId = "indexmap";
optional = true;
usesDefaultFeatures = false;
}
{
name = "serde_core";
packageId = "serde_core";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "serde_spanned";
packageId = "serde_spanned 1.1.1";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "toml_datetime";
packageId = "toml_datetime 0.7.5+spec-1.1.0";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "toml_parser";
packageId = "toml_parser";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "toml_writer";
packageId = "toml_writer";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "winnow";
packageId = "winnow 0.7.15";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"debug" = [ "std" "toml_parser?/debug" "dep:anstream" "dep:anstyle" ];
"default" = [ "std" "serde" "parse" "display" ];
"display" = [ "dep:toml_writer" ];
"fast_hash" = [ "preserve_order" "dep:foldhash" ];
"parse" = [ "dep:toml_parser" "dep:winnow" ];
"preserve_order" = [ "dep:indexmap" "std" ];
"serde" = [ "dep:serde_core" "toml_datetime/serde" "serde_spanned/serde" ];
"std" = [ "indexmap?/std" "serde_core?/std" "toml_parser?/std" "toml_writer?/std" "toml_datetime/std" "serde_spanned/std" ];
};
resolvedDefaultFeatures = [ "default" "display" "parse" "serde" "std" ];
};
"toml_datetime 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" "std" ];
};
"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 0.7.15";
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_parser" = rec {
crateName = "toml_parser";
version = "1.1.2+spec-1.1.0";
edition = "2024";
sha256 = "09kmzc55a0j21whm290wlf5a8b18a0qc87a1s8sncrckc6wfkax2";
dependencies = [
{
name = "winnow";
packageId = "winnow 1.0.3";
usesDefaultFeatures = false;
}
];
features = {
"debug" = [ "std" "dep:anstream" "dep:anstyle" ];
"default" = [ "std" ];
"simd" = [ "winnow/simd" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"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.1.1+spec-1.1.0";
edition = "2024";
sha256 = "1nwjhvvrxz8f4ck1qi4xcz2x9qhpci37nrknhxxf9sqk22dsyvbm";
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"tower" = rec {
crateName = "tower";
version = "0.5.3";
edition = "2018";
sha256 = "1m5i3a2z1sgs8nnz1hgfq2nr4clpdmizlp1d9qsg358ma5iyzrgb";
authors = [
"Tower Maintainers <team@tower-rs.com>"
];
dependencies = [
{
name = "futures-core";
packageId = "futures-core";
optional = true;
}
{
name = "futures-util";
packageId = "futures-util";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
optional = true;
}
{
name = "sync_wrapper";
packageId = "sync_wrapper 1.0.2";
optional = true;
}
{
name = "tokio";
packageId = "tokio";
optional = true;
}
{
name = "tower-layer";
packageId = "tower-layer";
}
{
name = "tower-service";
packageId = "tower-service";
}
{
name = "tracing";
packageId = "tracing";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
];
devDependencies = [
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "async-await-macro" ];
}
{
name = "tokio";
packageId = "tokio";
features = [ "macros" "sync" "test-util" "rt-multi-thread" ];
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
features = {
"balance" = [ "discover" "load" "ready-cache" "make" "slab" "util" ];
"buffer" = [ "tokio/sync" "tokio/rt" "tokio-util" "tracing" "pin-project-lite" ];
"discover" = [ "futures-core" "pin-project-lite" ];
"filter" = [ "futures-util" "pin-project-lite" ];
"full" = [ "balance" "buffer" "discover" "filter" "hedge" "limit" "load" "load-shed" "make" "ready-cache" "reconnect" "retry" "spawn-ready" "steer" "timeout" "util" ];
"futures-core" = [ "dep:futures-core" ];
"futures-util" = [ "dep:futures-util" ];
"hdrhistogram" = [ "dep:hdrhistogram" ];
"hedge" = [ "util" "filter" "futures-util" "hdrhistogram" "tokio/time" "tracing" ];
"indexmap" = [ "dep:indexmap" ];
"limit" = [ "tokio/time" "tokio/sync" "tokio-util" "tracing" "pin-project-lite" ];
"load" = [ "tokio/time" "tracing" "pin-project-lite" ];
"load-shed" = [ "pin-project-lite" ];
"log" = [ "tracing/log" ];
"make" = [ "pin-project-lite" "tokio" ];
"pin-project-lite" = [ "dep:pin-project-lite" ];
"ready-cache" = [ "futures-core" "futures-util" "indexmap" "tokio/sync" "tracing" "pin-project-lite" ];
"reconnect" = [ "make" "tracing" ];
"retry" = [ "tokio/time" "util" ];
"slab" = [ "dep:slab" ];
"spawn-ready" = [ "futures-util" "tokio/sync" "tokio/rt" "util" "tracing" ];
"sync_wrapper" = [ "dep:sync_wrapper" ];
"timeout" = [ "pin-project-lite" "tokio/time" ];
"tokio" = [ "dep:tokio" ];
"tokio-util" = [ "dep:tokio-util" ];
"tracing" = [ "dep:tracing" ];
"util" = [ "futures-core" "futures-util" "pin-project-lite" "sync_wrapper" ];
};
resolvedDefaultFeatures = [ "futures-core" "futures-util" "log" "make" "pin-project-lite" "sync_wrapper" "tokio" "tracing" "util" ];
};
"tower-http" = rec {
crateName = "tower-http";
version = "0.6.11";
edition = "2018";
sha256 = "0h08wjgs3hwnq11iwwzlmnabn1h4cl0fzd48svaccvqffkiggz2c";
libName = "tower_http";
authors = [
"Tower Maintainers <team@tower-rs.com>"
];
dependencies = [
{
name = "async-compression";
packageId = "async-compression";
optional = true;
features = [ "tokio" ];
}
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "futures-core";
packageId = "futures-core";
optional = true;
usesDefaultFeatures = false;
}
{
name = "futures-util";
packageId = "futures-util";
optional = true;
usesDefaultFeatures = false;
}
{
name = "http";
packageId = "http 1.4.1";
}
{
name = "http-body";
packageId = "http-body 1.0.1";
optional = true;
}
{
name = "http-body-util";
packageId = "http-body-util";
optional = true;
}
{
name = "http-range-header";
packageId = "http-range-header";
optional = true;
}
{
name = "httpdate";
packageId = "httpdate";
optional = true;
}
{
name = "mime";
packageId = "mime";
optional = true;
usesDefaultFeatures = false;
}
{
name = "mime_guess";
packageId = "mime_guess";
optional = true;
usesDefaultFeatures = false;
}
{
name = "percent-encoding";
packageId = "percent-encoding";
optional = true;
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "tokio";
packageId = "tokio";
optional = true;
usesDefaultFeatures = false;
}
{
name = "tokio-util";
packageId = "tokio-util";
optional = true;
usesDefaultFeatures = false;
features = [ "io" ];
}
{
name = "tower-layer";
packageId = "tower-layer";
}
{
name = "tower-service";
packageId = "tower-service";
}
{
name = "tracing";
packageId = "tracing";
optional = true;
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "futures-util";
packageId = "futures-util";
}
{
name = "http-body";
packageId = "http-body 1.0.1";
}
{
name = "http-body-util";
packageId = "http-body-util";
}
{
name = "tokio";
packageId = "tokio";
features = [ "full" ];
}
];
features = {
"auth" = [ "base64" "validate-request" ];
"base64" = [ "dep:base64" ];
"catch-panic" = [ "tracing" "futures-util/std" "dep:http-body" "dep:http-body-util" ];
"compression-br" = [ "dep:async-compression" "async-compression?/brotli" "futures-core" "dep:http-body" "tokio-util" "dep:tokio" ];
"compression-deflate" = [ "dep:async-compression" "async-compression?/zlib" "futures-core" "dep:http-body" "tokio-util" "dep:tokio" ];
"compression-full" = [ "compression-br" "compression-deflate" "compression-gzip" "compression-zstd" ];
"compression-gzip" = [ "dep:async-compression" "async-compression?/gzip" "futures-core" "dep:http-body" "tokio-util" "dep:tokio" ];
"compression-zstd" = [ "dep:async-compression" "async-compression?/zstd" "futures-core" "dep:http-body" "tokio-util" "dep:tokio" ];
"decompression-br" = [ "dep:async-compression" "async-compression?/brotli" "futures-core" "dep:http-body" "dep:http-body-util" "tokio-util" "dep:tokio" ];
"decompression-deflate" = [ "dep:async-compression" "async-compression?/zlib" "futures-core" "dep:http-body" "dep:http-body-util" "tokio-util" "dep:tokio" ];
"decompression-full" = [ "decompression-br" "decompression-deflate" "decompression-gzip" "decompression-zstd" ];
"decompression-gzip" = [ "dep:async-compression" "async-compression?/gzip" "futures-core" "dep:http-body" "dep:http-body-util" "tokio-util" "dep:tokio" ];
"decompression-zstd" = [ "dep:async-compression" "async-compression?/zstd" "futures-core" "dep:http-body" "dep:http-body-util" "tokio-util" "dep:tokio" ];
"follow-redirect" = [ "futures-util" "dep:http-body" "dep:url" "tower/util" ];
"fs" = [ "dep:tokio" "tokio?/fs" "tokio?/io-util" "futures-core" "futures-util" "dep:http-body" "dep:http-body-util" "tokio-util/io" "dep:http-range-header" "mime_guess" "mime" "percent-encoding" "httpdate" "set-status" "futures-util/alloc" ];
"full" = [ "add-extension" "auth" "catch-panic" "compression-full" "cors" "decompression-full" "follow-redirect" "fs" "limit" "map-request-body" "map-response-body" "metrics" "normalize-path" "on-early-drop" "propagate-header" "redirect" "request-id" "sensitive-headers" "set-header" "set-status" "timeout" "trace" "util" "validate-request" ];
"futures-core" = [ "dep:futures-core" ];
"futures-util" = [ "dep:futures-util" ];
"httpdate" = [ "dep:httpdate" ];
"limit" = [ "dep:http-body" "dep:http-body-util" ];
"metrics" = [ "dep:http-body" "dep:tokio" "tokio?/time" ];
"mime" = [ "dep:mime" ];
"mime_guess" = [ "dep:mime_guess" ];
"on-early-drop" = [ "dep:http-body" ];
"percent-encoding" = [ "dep:percent-encoding" ];
"request-id" = [ "uuid" ];
"timeout" = [ "dep:http-body" "dep:tokio" "tokio?/time" ];
"tokio-util" = [ "dep:tokio-util" ];
"tower" = [ "dep:tower" ];
"trace" = [ "dep:http-body" "tracing" ];
"tracing" = [ "dep:tracing" ];
"util" = [ "tower" ];
"uuid" = [ "dep:uuid" ];
"validate-request" = [ "mime" ];
};
resolvedDefaultFeatures = [ "compression-br" "compression-deflate" "compression-gzip" "compression-zstd" "cors" "default" "fs" "futures-core" "futures-util" "httpdate" "mime" "mime_guess" "percent-encoding" "set-status" "tokio-util" "trace" "tracing" ];
};
"tower-layer" = rec {
crateName = "tower-layer";
version = "0.3.3";
edition = "2018";
sha256 = "03kq92fdzxin51w8iqix06dcfgydyvx7yr6izjq0p626v9n2l70j";
libName = "tower_layer";
authors = [
"Tower Maintainers <team@tower-rs.com>"
];
};
"tower-service" = rec {
crateName = "tower-service";
version = "0.3.3";
edition = "2018";
sha256 = "1hzfkvkci33ra94xjx64vv3pp0sq346w06fpkcdwjcid7zhvdycd";
libName = "tower_service";
authors = [
"Tower Maintainers <team@tower-rs.com>"
];
};
"tracing" = rec {
crateName = "tracing";
version = "0.1.44";
edition = "2018";
sha256 = "006ilqkg1lmfdh3xhg3z762izfwmxcvz0w7m4qx2qajbz9i1drv3";
authors = [
"Eliza Weisman <eliza@buoyant.io>"
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "log";
packageId = "log";
optional = true;
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "tracing-attributes";
packageId = "tracing-attributes";
optional = true;
}
{
name = "tracing-core";
packageId = "tracing-core";
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "log";
packageId = "log";
}
];
features = {
"attributes" = [ "tracing-attributes" ];
"default" = [ "std" "attributes" ];
"log" = [ "dep:log" ];
"log-always" = [ "log" ];
"std" = [ "tracing-core/std" ];
"tracing-attributes" = [ "dep:tracing-attributes" ];
"valuable" = [ "tracing-core/valuable" ];
};
resolvedDefaultFeatures = [ "attributes" "default" "log" "std" "tracing-attributes" ];
};
"tracing-attributes" = rec {
crateName = "tracing-attributes";
version = "0.1.31";
edition = "2018";
sha256 = "1np8d77shfvz0n7camx2bsf1qw0zg331lra0hxb4cdwnxjjwz43l";
procMacro = true;
libName = "tracing_attributes";
authors = [
"Tokio Contributors <team@tokio.rs>"
"Eliza Weisman <eliza@buoyant.io>"
"David Barsky <dbarsky@amazon.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
usesDefaultFeatures = false;
features = [ "full" "parsing" "printing" "visit-mut" "clone-impls" "extra-traits" "proc-macro" ];
}
];
features = {
};
};
"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;
}
{
name = "valuable";
packageId = "valuable";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (target."tracing_unstable" or false);
}
];
features = {
"default" = [ "std" "valuable?/std" ];
"once_cell" = [ "dep:once_cell" ];
"std" = [ "once_cell" ];
"valuable" = [ "dep:valuable" ];
};
resolvedDefaultFeatures = [ "default" "once_cell" "std" ];
};
"tracing-futures" = rec {
crateName = "tracing-futures";
version = "0.2.5";
edition = "2018";
sha256 = "1wimg0iwa2ldq7xv98lvivvf3q9ykfminig8r1bs0ig22np9bl4p";
libName = "tracing_futures";
authors = [
"Eliza Weisman <eliza@buoyant.io>"
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "pin-project";
packageId = "pin-project";
optional = true;
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std-future" "std" ];
"futures" = [ "dep:futures" ];
"futures-01" = [ "futures_01" "std" ];
"futures-03" = [ "std-future" "futures" "futures-task" "std" ];
"futures-task" = [ "dep:futures-task" ];
"futures_01" = [ "dep:futures_01" ];
"pin-project" = [ "dep:pin-project" ];
"std" = [ "tracing/std" ];
"std-future" = [ "pin-project" ];
"tokio" = [ "dep:tokio" ];
"tokio-executor" = [ "dep:tokio-executor" ];
};
resolvedDefaultFeatures = [ "default" "pin-project" "std" "std-future" ];
};
"tracing-log" = rec {
crateName = "tracing-log";
version = "0.2.0";
edition = "2018";
sha256 = "1hs77z026k730ij1a9dhahzrl0s073gfa2hm5p0fbl0b80gmz1gf";
libName = "tracing_log";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "log";
packageId = "log";
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "tracing-core";
packageId = "tracing-core";
}
];
features = {
"ahash" = [ "dep:ahash" ];
"default" = [ "log-tracer" "std" ];
"interest-cache" = [ "lru" "ahash" ];
"lru" = [ "dep:lru" ];
"std" = [ "log/std" ];
};
resolvedDefaultFeatures = [ "log-tracer" "std" ];
};
"tracing-subscriber" = rec {
crateName = "tracing-subscriber";
version = "0.3.23";
edition = "2018";
sha256 = "06fkr0qhggvrs861d7f74pn3i3a10h5jsp4n70jj9ys5b675fzyb";
libName = "tracing_subscriber";
authors = [
"Eliza Weisman <eliza@buoyant.io>"
"David Barsky <me@davidbarsky.com>"
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "matchers";
packageId = "matchers";
optional = true;
}
{
name = "nu-ansi-term";
packageId = "nu-ansi-term";
optional = true;
}
{
name = "once_cell";
packageId = "once_cell";
optional = true;
}
{
name = "regex-automata";
packageId = "regex-automata";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "sharded-slab";
packageId = "sharded-slab";
optional = true;
}
{
name = "smallvec";
packageId = "smallvec";
optional = true;
}
{
name = "thread_local";
packageId = "thread_local";
optional = true;
}
{
name = "tracing";
packageId = "tracing";
optional = true;
usesDefaultFeatures = false;
}
{
name = "tracing-core";
packageId = "tracing-core";
usesDefaultFeatures = false;
}
{
name = "tracing-log";
packageId = "tracing-log";
optional = true;
usesDefaultFeatures = false;
features = [ "log-tracer" "std" ];
}
];
devDependencies = [
{
name = "tracing";
packageId = "tracing";
}
{
name = "tracing-log";
packageId = "tracing-log";
}
];
features = {
"ansi" = [ "fmt" "nu-ansi-term" ];
"chrono" = [ "dep:chrono" ];
"default" = [ "smallvec" "fmt" "ansi" "tracing-log" "std" ];
"env-filter" = [ "matchers" "once_cell" "tracing" "std" "thread_local" "dep:regex-automata" ];
"fmt" = [ "registry" "std" ];
"json" = [ "tracing-serde" "serde" "serde_json" ];
"local-time" = [ "time/local-offset" ];
"matchers" = [ "dep:matchers" ];
"nu-ansi-term" = [ "dep:nu-ansi-term" ];
"once_cell" = [ "dep:once_cell" ];
"parking_lot" = [ "dep:parking_lot" ];
"registry" = [ "sharded-slab" "thread_local" "std" ];
"serde" = [ "dep:serde" ];
"serde_json" = [ "dep:serde_json" ];
"sharded-slab" = [ "dep:sharded-slab" ];
"smallvec" = [ "dep:smallvec" ];
"std" = [ "alloc" "tracing-core/std" ];
"thread_local" = [ "dep:thread_local" ];
"time" = [ "dep:time" ];
"tracing" = [ "dep:tracing" ];
"tracing-log" = [ "dep:tracing-log" ];
"tracing-serde" = [ "dep:tracing-serde" ];
"valuable" = [ "tracing-core/valuable" "valuable_crate" "valuable-serde" "tracing-serde/valuable" ];
"valuable-serde" = [ "dep:valuable-serde" ];
"valuable_crate" = [ "dep:valuable_crate" ];
};
resolvedDefaultFeatures = [ "alloc" "ansi" "default" "env-filter" "fmt" "matchers" "nu-ansi-term" "once_cell" "registry" "sharded-slab" "smallvec" "std" "thread_local" "tracing" "tracing-log" ];
};
"try-lock" = rec {
crateName = "try-lock";
version = "0.2.5";
edition = "2015";
sha256 = "0jqijrrvm1pyq34zn1jmy2vihd4jcrjlvsh4alkjahhssjnsn8g4";
libName = "try_lock";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
};
"tungstenite" = rec {
crateName = "tungstenite";
version = "0.29.0";
edition = "2021";
sha256 = "1f7673dhqbfxc0f2ccyiyqhv882nkialnzm5qb3vkbwky8m1a0bc";
authors = [
"Alexey Galakhov"
"Daniel Abramov"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "data-encoding";
packageId = "data-encoding";
optional = true;
}
{
name = "http";
packageId = "http 1.4.1";
optional = true;
}
{
name = "httparse";
packageId = "httparse";
optional = true;
}
{
name = "log";
packageId = "log";
}
{
name = "rand";
packageId = "rand 0.9.4";
}
{
name = "sha1";
packageId = "sha1";
optional = true;
}
{
name = "thiserror";
packageId = "thiserror 2.0.18";
}
];
devDependencies = [
{
name = "rand";
packageId = "rand 0.9.4";
}
];
features = {
"__rustls-tls" = [ "rustls" "rustls-pki-types" ];
"data-encoding" = [ "dep:data-encoding" ];
"default" = [ "handshake" ];
"handshake" = [ "data-encoding" "http" "httparse" "sha1" ];
"http" = [ "dep:http" ];
"httparse" = [ "dep:httparse" ];
"native-tls" = [ "native-tls-crate" ];
"native-tls-crate" = [ "dep:native-tls-crate" ];
"native-tls-vendored" = [ "native-tls" "native-tls-crate/vendored" ];
"rustls" = [ "dep:rustls" ];
"rustls-native-certs" = [ "dep:rustls-native-certs" ];
"rustls-pki-types" = [ "dep:rustls-pki-types" ];
"rustls-tls-native-roots" = [ "__rustls-tls" "rustls-native-certs" ];
"rustls-tls-webpki-roots" = [ "__rustls-tls" "webpki-roots" ];
"sha1" = [ "dep:sha1" ];
"url" = [ "dep:url" ];
"webpki-roots" = [ "dep:webpki-roots" ];
};
resolvedDefaultFeatures = [ "data-encoding" "handshake" "http" "httparse" "sha1" ];
};
"twox-hash" = rec {
crateName = "twox-hash";
version = "1.6.3";
edition = "2018";
crateBin = [];
sha256 = "0xgn72j36a270l5ls1jk88n7bmq2dhlfkbhdh5554hbagjsydzlp";
libName = "twox_hash";
authors = [
"Jake Goulding <jake.goulding@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand 0.8.6";
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.20.1";
edition = "2018";
sha256 = "086s9ly0906kw5yw41249fba97w5zfxf03pyfwdkffvcprqfixdn";
features = {
"scale-info" = [ "dep:scale-info" ];
"scale_info" = [ "scale-info/derive" ];
};
resolvedDefaultFeatures = [ "const-generics" ];
};
"uncased" = rec {
crateName = "uncased";
version = "0.9.10";
edition = "2018";
sha256 = "15q6r6g4fszr8c2lzg9z9k9g52h8g29h24awda3d72cyw37qzf71";
authors = [
"Sergio Benitez <sb@sergio.bz>"
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check";
}
];
features = {
"default" = [ "alloc" ];
"serde" = [ "dep:serde" ];
"with-serde" = [ "serde" ];
"with-serde-alloc" = [ "serde" "serde/alloc" "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" ];
};
"unicase" = rec {
crateName = "unicase";
version = "2.9.0";
edition = "2018";
sha256 = "0hh1wrfd7807mfph2q67jsxqgw8hm82xg2fb8ln8cvblkwxbri6v";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
features = {
};
};
"unicode-bidi" = rec {
crateName = "unicode-bidi";
version = "0.3.18";
edition = "2018";
sha256 = "1xcxwbsqa24b8vfchhzyyzgj0l6bn51ib5v8j6krha0m77dva72w";
libName = "unicode_bidi";
authors = [
"The Servo Project Developers"
];
features = {
"default" = [ "std" "hardcoded-data" ];
"flame" = [ "dep:flame" ];
"flame_it" = [ "flame" "flamer" ];
"flamer" = [ "dep:flamer" ];
"serde" = [ "dep:serde" ];
"smallvec" = [ "dep:smallvec" ];
"with_serde" = [ "serde" ];
};
resolvedDefaultFeatures = [ "default" "hardcoded-data" "std" ];
};
"unicode-id-start" = rec {
crateName = "unicode-id-start";
version = "1.4.0";
edition = "2018";
sha256 = "01v0ig6a5dy75r9wwhnjfw1fzcj3nhcqj3q2c11dw6aykg99mdw1";
libName = "unicode_id_start";
authors = [
"David Tolnay <dtolnay@gmail.com>"
"Boshen <boshenc@gmail.com>"
];
};
"unicode-ident" = rec {
crateName = "unicode-ident";
version = "1.0.24";
edition = "2021";
sha256 = "0xfs8y1g7syl2iykji8zk5hgfi5jw819f5zsrbaxmlzwsly33r76";
libName = "unicode_ident";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
};
"unicode-linebreak" = rec {
crateName = "unicode-linebreak";
version = "0.1.5";
edition = "2021";
sha256 = "07spj2hh3daajg335m4wdav6nfkl0f6c0q72lc37blr97hych29v";
libName = "unicode_linebreak";
authors = [
"Axel Forsman <axelsfor@gmail.com>"
];
};
"unicode-normalization" = rec {
crateName = "unicode-normalization";
version = "0.1.25";
edition = "2018";
sha256 = "1s76dcrxw7vs32yhpi0p074apdc3s7lak7809f3qvclwij3zdm2z";
libName = "unicode_normalization";
authors = [
"kwantam <kwantam@gmail.com>"
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "tinyvec";
packageId = "tinyvec";
features = [ "alloc" ];
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"unicode-properties" = rec {
crateName = "unicode-properties";
version = "0.1.4";
edition = "2021";
sha256 = "07fpm3sqq7lm9gmgpxa93z31q933h3c3ypfwy4cdh6l42g3miw3x";
libName = "unicode_properties";
authors = [
"Charles Lew <crlf0710@gmail.com>"
"Manish Goregaokar <manishsmail@gmail.com>"
];
features = {
"default" = [ "general-category" "emoji" ];
};
resolvedDefaultFeatures = [ "default" "emoji" "general-category" ];
};
"unicode-segmentation" = rec {
crateName = "unicode-segmentation";
version = "1.13.3";
edition = "2018";
sha256 = "1a47zaq83p386r3baq4m018xd5q4q0grdg56i1x042dzn71x7xf6";
libName = "unicode_segmentation";
authors = [
"kwantam <kwantam@gmail.com>"
"Manish Goregaokar <manishsmail@gmail.com>"
];
features = {
};
};
"unicode-width" = rec {
crateName = "unicode-width";
version = "0.2.2";
edition = "2021";
sha256 = "0m7jjzlcccw716dy9423xxh0clys8pfpllc5smvfxrzdf66h9b5l";
libName = "unicode_width";
authors = [
"kwantam <kwantam@gmail.com>"
"Manish Goregaokar <manishsmail@gmail.com>"
];
features = {
"core" = [ "dep:core" ];
"default" = [ "cjk" ];
"rustc-dep-of-std" = [ "std" "core" ];
"std" = [ "dep:std" ];
};
resolvedDefaultFeatures = [ "cjk" "default" ];
};
"unicode-xid" = rec {
crateName = "unicode-xid";
version = "0.2.6";
edition = "2015";
sha256 = "0lzqaky89fq0bcrh6jj6bhlz37scfd8c7dsj5dq7y32if56c1hgb";
libName = "unicode_xid";
authors = [
"erick.tryzelaar <erick.tryzelaar@gmail.com>"
"kwantam <kwantam@gmail.com>"
"Manish Goregaokar <manishsmail@gmail.com>"
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"universal-hash" = rec {
crateName = "universal-hash";
version = "0.5.1";
edition = "2021";
sha256 = "1sh79x677zkncasa95wz05b36134822w6qxmi1ck05fwi33f47gw";
libName = "universal_hash";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "crypto-common";
packageId = "crypto-common 0.1.6";
}
{
name = "subtle";
packageId = "subtle";
usesDefaultFeatures = false;
}
];
features = {
"std" = [ "crypto-common/std" ];
};
};
"untrusted" = rec {
crateName = "untrusted";
version = "0.9.0";
edition = "2018";
sha256 = "1ha7ib98vkc538x0z60gfn0fc5whqdd85mb87dvisdcaifi6vjwf";
authors = [
"Brian Smith <brian@briansmith.org>"
];
};
"url" = rec {
crateName = "url";
version = "2.5.8";
edition = "2018";
sha256 = "1v8f7nx3hpr1qh76if0a04sj08k86amsq4h8cvpw6wvk76jahrzz";
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;
}
{
name = "serde_derive";
packageId = "serde_derive";
optional = true;
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" "dep:serde_derive" ];
"std" = [ "idna/std" "percent-encoding/std" "form_urlencoded/std" "serde?/std" ];
};
resolvedDefaultFeatures = [ "default" "serde" "std" ];
};
"utf-8" = rec {
crateName = "utf-8";
version = "0.7.6";
edition = "2015";
sha256 = "1a9ns3fvgird0snjkd3wbdhwd3zdpc2h5gpyybrfr6ra5pkqxk09";
libName = "utf8";
authors = [
"Simon Sapin <simon.sapin@exyr.org>"
];
};
"utf8_iter" = rec {
crateName = "utf8_iter";
version = "1.0.4";
edition = "2021";
sha256 = "1gmna9flnj8dbyd8ba17zigrp9c4c3zclngf5lnb5yvz1ri41hdn";
authors = [
"Henri Sivonen <hsivonen@hsivonen.fi>"
];
};
"utf8parse" = rec {
crateName = "utf8parse";
version = "0.2.2";
edition = "2018";
sha256 = "088807qwjq46azicqwbhlmzwrbkz7l4hpw43sdkdyyk524vdxaq6";
authors = [
"Joe Wilm <joe@jwilm.com>"
"Christian Duerr <contact@christianduerr.com>"
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"uuid" = rec {
crateName = "uuid";
version = "1.23.2";
edition = "2021";
sha256 = "1xy942s4z0bi8p3441wvd4ry3hx6ry1c7s6fgrr38462xqybhn6j";
authors = [
"Ashley Mannix<ashleymannix@live.com.au>"
"Dylan DPC<dylan.dpc@gmail.com>"
"Hunar Roop Kahlon<hunar.roop@gmail.com>"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom 0.4.2";
optional = true;
target = { target, features }: (!(("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null))));
}
{
name = "js-sys";
packageId = "js-sys";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null)) && (builtins.elem "atomics" targetFeatures));
}
{
name = "serde_core";
packageId = "serde_core";
optional = true;
usesDefaultFeatures = false;
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null)));
}
];
devDependencies = [
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
target = { target, features }: (("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null)));
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"atomic" = [ "dep:atomic" ];
"borsh" = [ "dep:borsh" "dep:borsh-derive" ];
"bytemuck" = [ "dep:bytemuck" ];
"default" = [ "std" ];
"fast-rng" = [ "rng" "dep:rand" ];
"js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
"md5" = [ "dep:md-5" ];
"rng" = [ "dep:getrandom" ];
"rng-getrandom" = [ "rng" "dep:getrandom" "uuid-rng-internal-lib" "uuid-rng-internal-lib/getrandom" ];
"rng-rand" = [ "rng" "dep:rand" "uuid-rng-internal-lib" "uuid-rng-internal-lib/rand" ];
"serde" = [ "dep:serde_core" ];
"sha1" = [ "dep:sha1_smol" ];
"slog" = [ "dep:slog" ];
"std" = [ "wasm-bindgen?/std" "js-sys?/std" ];
"uuid-rng-internal-lib" = [ "dep:uuid-rng-internal-lib" ];
"v1" = [ "atomic" ];
"v3" = [ "md5" ];
"v4" = [ "rng" ];
"v5" = [ "sha1" ];
"v6" = [ "atomic" ];
"v7" = [ "rng" ];
"zerocopy" = [ "dep:zerocopy" ];
};
resolvedDefaultFeatures = [ "default" "rng" "serde" "std" "v4" ];
};
"v_htmlescape" = rec {
crateName = "v_htmlescape";
version = "0.15.8";
edition = "2021";
sha256 = "135inp4x7cc32k0hzrymlz1baf0rj0ah5h82nrpa9w0hqpxmg0jf";
authors = [
"Juan Aguilar Santillana <mhpoin@gmail.com>"
];
features = {
"buf-min" = [ "dep:buf-min" ];
"bytes-buf" = [ "buf-min" ];
};
};
"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" ];
};
};
"valuable" = rec {
crateName = "valuable";
version = "0.1.1";
edition = "2021";
sha256 = "0r9srp55v7g27s5bg7a2m095fzckrcdca5maih6dy9bay6fflwxs";
features = {
"default" = [ "std" ];
"derive" = [ "valuable-derive" ];
"std" = [ "alloc" ];
"valuable-derive" = [ "dep:valuable-derive" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"vcpkg" = rec {
crateName = "vcpkg";
version = "0.2.15";
edition = "2015";
sha256 = "09i4nf5y8lig6xgj3f7fyrvzd3nlaw4znrihw8psidvv5yk4xkdc";
authors = [
"Jim McGrath <jimmc2@gmail.com>"
];
};
"version_check" = rec {
crateName = "version_check";
version = "0.9.5";
edition = "2015";
sha256 = "0nhhi4i5x89gm911azqbn7avs9mdacw2i3vcz3cnmz3mv4rqz4hb";
authors = [
"Sergio Benitez <sb@sergio.bz>"
];
};
"vlq" = rec {
crateName = "vlq";
version = "0.5.1";
edition = "2015";
sha256 = "1zygijgl47gasi0zx34ak1jq2n4qmk0cx2zpn13shba157npxpb5";
authors = [
"Tom Tromey <tom@tromey.com>"
"Nick Fitzgerald <fitzgen@gmail.com>"
];
};
"vsimd" = rec {
crateName = "vsimd";
version = "0.8.0";
edition = "2021";
sha256 = "0r4wn54jxb12r0x023r5yxcrqk785akmbddqkcafz9fm03584c2w";
features = {
"detect" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "detect" "std" ];
};
"walkdir" = rec {
crateName = "walkdir";
version = "2.5.0";
edition = "2018";
sha256 = "0jsy7a710qv8gld5957ybrnc07gavppp963gs32xk4ag8130jy99";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "same-file";
packageId = "same-file";
}
{
name = "winapi-util";
packageId = "winapi-util";
target = { target, features }: (target."windows" or false);
}
];
};
"want" = rec {
crateName = "want";
version = "0.3.1";
edition = "2018";
sha256 = "03hbfrnvqqdchb5kgxyavb9jabwza0dmh2vw5kg0dq8rxl57d9xz";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "try-lock";
packageId = "try-lock";
}
];
};
"wasi 0.11.1+wasi-snapshot-preview1" = rec {
crateName = "wasi";
version = "0.11.1+wasi-snapshot-preview1";
edition = "2018";
sha256 = "0jx49r7nbkbhyfrfyhz0bm4817yrnxgd3jiwwwfv0zl439jyrwyc";
authors = [
"The Cranelift Project Developers"
];
features = {
"core" = [ "dep:core" ];
"default" = [ "std" ];
"rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" ];
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"wasi 0.14.7+wasi-0.2.4" = rec {
crateName = "wasi";
version = "0.14.7+wasi-0.2.4";
edition = "2021";
sha256 = "133fq3mq7h65mzrsphcm7bbbx1gsz7srrbwh01624zin43g7hd48";
dependencies = [
{
name = "wasip2";
packageId = "wasip2";
usesDefaultFeatures = false;
}
];
features = {
"bitflags" = [ "wasip2/bitflags" ];
"default" = [ "wasip2/default" ];
"std" = [ "wasip2/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.3+wasi-0.2.9";
edition = "2021";
sha256 = "1mi3w855dz99xzjqc4aa8c9q5b6z1y5c963pkk4cvmr6vdr4c1i0";
dependencies = [
{
name = "wit-bindgen";
packageId = "wit-bindgen 0.57.1";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "dep:alloc" ];
"bitflags" = [ "wit-bindgen/bitflags" ];
"core" = [ "dep:core" ];
"default" = [ "std" "bitflags" ];
"rustc-dep-of-std" = [ "core" "alloc" "wit-bindgen/rustc-dep-of-std" ];
};
};
"wasip3" = rec {
crateName = "wasip3";
version = "0.4.0+wasi-0.3.0-rc-2026-01-06";
edition = "2021";
sha256 = "19dc8p0y2mfrvgk3qw3c3240nfbylv22mvyxz84dqpgai2zzha2l";
dependencies = [
{
name = "wit-bindgen";
packageId = "wit-bindgen 0.51.0";
usesDefaultFeatures = false;
features = [ "async" ];
}
];
devDependencies = [
{
name = "wit-bindgen";
packageId = "wit-bindgen 0.51.0";
usesDefaultFeatures = false;
features = [ "async-spawn" ];
}
];
features = {
"http-compat" = [ "dep:bytes" "dep:http-body" "dep:http" "dep:thiserror" "wit-bindgen/async-spawn" ];
};
};
"wasite 0.1.0" = rec {
crateName = "wasite";
version = "0.1.0";
edition = "2018";
sha256 = "0nw5h9nmcl4fyf4j5d4mfdjfgvwi1cakpi349wc4zrr59wxxinmq";
};
"wasite 1.0.2" = rec {
crateName = "wasite";
version = "1.0.2";
edition = "2021";
sha256 = "0hhsyylwsnbyz6dsr7i0gadzgk34nw4ljhnmafkji03b98mr1zk6";
dependencies = [
{
name = "wasi";
packageId = "wasi 0.14.7+wasi-0.2.4";
usesDefaultFeatures = false;
}
];
};
"wasm-bindgen" = rec {
crateName = "wasm-bindgen";
version = "0.2.122";
edition = "2021";
sha256 = "02flix96brsb2r1i3grnikii302iqpdm337kl3xv5lklz5v4bl1y";
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.72";
edition = "2021";
sha256 = "03qb24gfr072rk8hb69glfdc8yhqqqq2rhy3j5i0ps8sk79dnwwl";
libName = "wasm_bindgen_futures";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "js-sys";
packageId = "js-sys";
usesDefaultFeatures = false;
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"futures-core-03-stream" = [ "js-sys/futures-core-03-stream" ];
"std" = [ "wasm-bindgen/std" "js-sys/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"wasm-bindgen-macro" = rec {
crateName = "wasm-bindgen-macro";
version = "0.2.122";
edition = "2021";
sha256 = "1inyl55bvdifx7l60q9wl0ivmw7236jg7jqmcqpxhsx3knq52qci";
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.122";
edition = "2021";
sha256 = "0pjw5kc2mbfz59agk5l21kh4hxzp94rygdvsnr4f3z6b5hv4g419";
libName = "wasm_bindgen_macro_support";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "bumpalo";
packageId = "bumpalo";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "visit" "visit-mut" "full" "extra-traits" ];
}
{
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.122";
edition = "2021";
links = "wasm_bindgen";
sha256 = "0ds4mmfqvxwc5fp33hn0jblf0f6b4lghrd9mpkls66zic4n9p4ls";
libName = "wasm_bindgen_shared";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "unicode-ident";
packageId = "unicode-ident";
}
];
};
"wasm-encoder" = rec {
crateName = "wasm-encoder";
version = "0.244.0";
edition = "2021";
sha256 = "06c35kv4h42vk3k51xjz1x6hn3mqwfswycmr6ziky033zvr6a04r";
libName = "wasm_encoder";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
];
dependencies = [
{
name = "leb128fmt";
packageId = "leb128fmt";
usesDefaultFeatures = false;
}
{
name = "wasmparser";
packageId = "wasmparser";
optional = true;
usesDefaultFeatures = false;
features = [ "simd" "simd" ];
}
];
features = {
"component-model" = [ "wasmparser?/component-model" ];
"default" = [ "std" "component-model" ];
"std" = [ "wasmparser?/std" ];
"wasmparser" = [ "dep:wasmparser" ];
};
resolvedDefaultFeatures = [ "component-model" "std" "wasmparser" ];
};
"wasm-metadata" = rec {
crateName = "wasm-metadata";
version = "0.244.0";
edition = "2021";
sha256 = "02f9dhlnryd2l7zf03whlxai5sv26x4spfibjdvc3g9gd8z3a3mv";
libName = "wasm_metadata";
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "indexmap";
packageId = "indexmap";
usesDefaultFeatures = false;
features = [ "serde" ];
}
{
name = "wasm-encoder";
packageId = "wasm-encoder";
usesDefaultFeatures = false;
features = [ "std" "component-model" ];
}
{
name = "wasmparser";
packageId = "wasmparser";
usesDefaultFeatures = false;
features = [ "simd" "std" "component-model" "hash-collections" ];
}
];
features = {
"clap" = [ "dep:clap" ];
"default" = [ "oci" "serde" ];
"oci" = [ "dep:auditable-serde" "dep:flate2" "dep:url" "dep:spdx" "dep:serde_json" "serde" ];
"serde" = [ "dep:serde_derive" "dep:serde" ];
};
};
"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" ];
}
];
};
"wasmparser" = rec {
crateName = "wasmparser";
version = "0.244.0";
edition = "2021";
sha256 = "1zi821hrlsxfhn39nqpmgzc0wk7ax3dv6vrs5cw6kb0v5v3hgf27";
authors = [
"Yury Delendik <ydelendik@mozilla.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "hashbrown";
packageId = "hashbrown 0.15.5";
optional = true;
usesDefaultFeatures = false;
features = [ "default-hasher" ];
}
{
name = "indexmap";
packageId = "indexmap";
optional = true;
usesDefaultFeatures = false;
}
{
name = "semver";
packageId = "semver";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"component-model" = [ "dep:semver" ];
"default" = [ "std" "validate" "serde" "features" "component-model" "hash-collections" "simd" ];
"hash-collections" = [ "dep:hashbrown" "dep:indexmap" ];
"serde" = [ "dep:serde" "indexmap?/serde" "hashbrown?/serde" ];
"std" = [ "indexmap?/std" ];
};
resolvedDefaultFeatures = [ "component-model" "features" "hash-collections" "simd" "std" "validate" ];
};
"web-sys" = rec {
crateName = "web-sys";
version = "0.3.99";
edition = "2021";
sha256 = "0dilfvl9jnyhi4skl6cry9wc300r693j0w82jjbq8yy3rx0i8qkd";
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" ];
"AudioDecoder" = [ "EventTarget" ];
"AudioDestinationNode" = [ "AudioNode" "EventTarget" ];
"AudioEncoder" = [ "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" ];
"CommandEvent" = [ "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" ];
"CssViewTransitionRule" = [ "CssRule" ];
"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" ];
"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" ];
"Range" = [ "AbstractRange" ];
"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" ];
"ScreenDetailed" = [ "EventTarget" "Screen" ];
"ScreenDetails" = [ "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" ];
"StaticRange" = [ "AbstractRange" ];
"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" ];
"VideoDecoder" = [ "EventTarget" ];
"VideoEncoder" = [ "EventTarget" ];
"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" "EventTarget" "File" "FormData" "Headers" "Location" "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" "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" ];
};
};
"web_atoms" = rec {
crateName = "web_atoms";
version = "0.1.3";
edition = "2021";
sha256 = "056lg00xm67d2yiyi1fh3x15jpi3idk0acifk7wvsh0jq0fxxzsp";
libPath = "lib.rs";
authors = [
"The html5ever Project Developers"
];
dependencies = [
{
name = "phf";
packageId = "phf 0.11.3";
}
{
name = "string_cache";
packageId = "string_cache";
}
];
buildDependencies = [
{
name = "phf_codegen";
packageId = "phf_codegen 0.11.3";
}
{
name = "string_cache_codegen";
packageId = "string_cache_codegen";
}
];
};
"webauthn-attestation-ca" = rec {
crateName = "webauthn-attestation-ca";
version = "0.5.5";
edition = "2021";
sha256 = "13p1sgar0295iipkrgg6qn01drjvii081279lgx4mw53s6xw0xb4";
libName = "webauthn_attestation_ca";
authors = [
"William Brown <william@blackhats.net.au>"
"Michael Farrell <micolous+git@gmail.com>"
"James Hodgkinson <james@terminaloutcomes.com>"
];
dependencies = [
{
name = "base64urlsafedata";
packageId = "base64urlsafedata";
}
{
name = "openssl";
packageId = "openssl";
}
{
name = "openssl-sys";
packageId = "openssl-sys";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "tracing";
packageId = "tracing";
}
{
name = "uuid";
packageId = "uuid";
features = [ "serde" ];
}
];
};
"webauthn-rs" = rec {
crateName = "webauthn-rs";
version = "0.5.5";
edition = "2021";
sha256 = "08n47yh83fijcz6961sbjwyzbgi1x80wzbpjpd3fjbp9w0aqjm3c";
libName = "webauthn_rs";
authors = [
"William Brown <william@blackhats.net.au>"
"Michael Farrell <micolous+git@gmail.com>"
"James Hodgkinson <james@terminaloutcomes.com>"
];
dependencies = [
{
name = "base64urlsafedata";
packageId = "base64urlsafedata";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "tracing";
packageId = "tracing";
}
{
name = "url";
packageId = "url";
features = [ "serde" ];
}
{
name = "uuid";
packageId = "uuid";
features = [ "v4" "serde" ];
}
{
name = "webauthn-rs-core";
packageId = "webauthn-rs-core";
}
];
features = {
"default" = [ "attestation" ];
"preview-features" = [ "conditional-ui" ];
};
resolvedDefaultFeatures = [ "attestation" "default" ];
};
"webauthn-rs-core" = rec {
crateName = "webauthn-rs-core";
version = "0.5.5";
edition = "2021";
sha256 = "0spa7dkppl8k20x30q7l2z53n1xipa4gp1p1p205swgb3x82sv99";
libName = "webauthn_rs_core";
authors = [
"William Brown <william@blackhats.net.au>"
"Michael Farrell <micolous+git@gmail.com>"
"James Hodgkinson <james@terminaloutcomes.com>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.21.7";
}
{
name = "base64urlsafedata";
packageId = "base64urlsafedata";
}
{
name = "der-parser";
packageId = "der-parser";
}
{
name = "hex";
packageId = "hex";
}
{
name = "nom";
packageId = "nom 7.1.3";
}
{
name = "openssl";
packageId = "openssl";
}
{
name = "openssl-sys";
packageId = "openssl-sys";
}
{
name = "rand";
packageId = "rand 0.9.4";
}
{
name = "rand_chacha";
packageId = "rand_chacha 0.9.0";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "serde_cbor_2";
packageId = "serde_cbor_2";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
{
name = "tracing";
packageId = "tracing";
}
{
name = "url";
packageId = "url";
features = [ "serde" ];
}
{
name = "uuid";
packageId = "uuid";
features = [ "serde" ];
}
{
name = "webauthn-attestation-ca";
packageId = "webauthn-attestation-ca";
}
{
name = "webauthn-rs-proto";
packageId = "webauthn-rs-proto";
}
{
name = "x509-parser";
packageId = "x509-parser";
}
];
features = {
};
resolvedDefaultFeatures = [ "default" ];
};
"webauthn-rs-proto" = rec {
crateName = "webauthn-rs-proto";
version = "0.5.5";
edition = "2021";
sha256 = "07pgswnhb6ccskn90pd4ndm33yw32zhb2c5vdp5d27lwmjz96wy3";
libName = "webauthn_rs_proto";
authors = [
"William Brown <william@blackhats.net.au>"
"Michael Farrell <micolous+git@gmail.com>"
"James Hodgkinson <james@terminaloutcomes.com>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.21.7";
}
{
name = "base64urlsafedata";
packageId = "base64urlsafedata";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "url";
packageId = "url";
features = [ "serde" ];
}
];
features = {
"js-sys" = [ "dep:js-sys" ];
"serde-wasm-bindgen" = [ "dep:serde-wasm-bindgen" ];
"wasm" = [ "wasm-bindgen" "web-sys" "js-sys" "serde-wasm-bindgen" ];
"wasm-bindgen" = [ "dep:wasm-bindgen" ];
"web-sys" = [ "dep:web-sys" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"whoami 1.6.1" = 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 0.1.0";
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" ];
};
"whoami 2.1.2" = rec {
crateName = "whoami";
version = "2.1.2";
edition = "2021";
sha256 = "03d4qn43gr4fnqnrq9k2769565234hycbac20rdiy3bli3png1wr";
dependencies = [
{
name = "libc";
packageId = "libc";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((("apple" == target."vendor" or null) || ("linux" == target."os" or null) || ("dragonfly" == target."os" or null) || ("freebsd" == target."os" or null) || ("netbsd" == target."os" or null) || ("openbsd" == target."os" or null) || ("illumos" == target."os" or null) || ("hurd" == target."os" or null)) && (!("wasm32" == target."arch" or null)));
}
{
name = "libredox";
packageId = "libredox";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (("redox" == target."os" or null) && (!("wasm32" == target."arch" or null)));
features = [ "call" ];
}
{
name = "objc2-system-configuration";
packageId = "objc2-system-configuration";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ("apple" == target."vendor" or null);
features = [ "SCDynamicStore" "SCDynamicStoreCopySpecific" ];
}
{
name = "wasite";
packageId = "wasite 1.0.2";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null));
}
{
name = "web-sys";
packageId = "web-sys";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (("wasm32" == target."arch" or null) && (!("wasi" == target."os" or null)) && (!(target."daku" or false)));
features = [ "Navigator" "Document" "Window" "Location" ];
}
];
features = {
"default" = [ "std" "wasi-wasite" "wasm-web" ];
"std" = [ "dep:libc" "dep:libredox" "dep:objc2-system-configuration" "libc?/std" "web-sys?/std" ];
"wasi-wasite" = [ "dep:wasite" ];
"wasm-web" = [ "dep:web-sys" ];
};
resolvedDefaultFeatures = [ "default" "std" "wasi-wasite" "wasm-web" ];
};
"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 }: (target.name == "i686-pc-windows-gnu");
}
{
name = "winapi-x86_64-pc-windows-gnu";
packageId = "winapi-x86_64-pc-windows-gnu";
target = { target, features }: (target.name == "x86_64-pc-windows-gnu");
}
];
features = {
"debug" = [ "impl-debug" ];
};
resolvedDefaultFeatures = [ "basetsd" "errhandlingapi" "handleapi" "heapapi" "knownfolders" "memoryapi" "minwindef" "ntstatus" "objbase" "shlobj" "std" "winbase" "winerror" "winnt" ];
};
"winapi-i686-pc-windows-gnu" = rec {
crateName = "winapi-i686-pc-windows-gnu";
version = "0.4.0";
edition = "2015";
sha256 = "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc";
libName = "winapi_i686_pc_windows_gnu";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
};
"winapi-util" = rec {
crateName = "winapi-util";
version = "0.1.11";
edition = "2021";
sha256 = "08hdl7mkll7pz8whg869h58c1r9y7in0w0pk8fm24qc77k0b39y2";
libName = "winapi_util";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Storage_FileSystem" "Win32_System_Console" "Win32_System_SystemInformation" ];
}
];
};
"winapi-x86_64-pc-windows-gnu" = rec {
crateName = "winapi-x86_64-pc-windows-gnu";
version = "0.4.0";
edition = "2015";
sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki";
libName = "winapi_x86_64_pc_windows_gnu";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
};
"windows-core" = rec {
crateName = "windows-core";
version = "0.62.2";
edition = "2021";
sha256 = "1swxpv1a8qvn3bkxv8cn663238h2jccq35ff3nsj61jdsca3ms5q";
libName = "windows_core";
dependencies = [
{
name = "windows-implement";
packageId = "windows-implement";
usesDefaultFeatures = false;
}
{
name = "windows-interface";
packageId = "windows-interface";
usesDefaultFeatures = false;
}
{
name = "windows-link";
packageId = "windows-link";
usesDefaultFeatures = false;
}
{
name = "windows-result";
packageId = "windows-result";
usesDefaultFeatures = false;
}
{
name = "windows-strings";
packageId = "windows-strings";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "windows-result/std" "windows-strings/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"windows-implement" = rec {
crateName = "windows-implement";
version = "0.60.2";
edition = "2021";
sha256 = "1psxhmklzcf3wjs4b8qb42qb6znvc142cb5pa74rsyxm1822wgh5";
procMacro = true;
libName = "windows_implement";
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
}
{
name = "quote";
packageId = "quote";
usesDefaultFeatures = false;
}
{
name = "syn";
packageId = "syn 2.0.117";
usesDefaultFeatures = false;
features = [ "parsing" "proc-macro" "printing" "full" "clone-impls" ];
}
];
};
"windows-interface" = rec {
crateName = "windows-interface";
version = "0.59.3";
edition = "2021";
sha256 = "0n73cwrn4247d0axrk7gjp08p34x1723483jxjxjdfkh4m56qc9z";
procMacro = true;
libName = "windows_interface";
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
}
{
name = "quote";
packageId = "quote";
usesDefaultFeatures = false;
}
{
name = "syn";
packageId = "syn 2.0.117";
usesDefaultFeatures = false;
features = [ "parsing" "proc-macro" "printing" "full" "clone-impls" ];
}
];
};
"windows-link" = rec {
crateName = "windows-link";
version = "0.2.1";
edition = "2021";
sha256 = "1rag186yfr3xx7piv5rg8b6im2dwcf8zldiflvb22xbzwli5507h";
libName = "windows_link";
};
"windows-result" = rec {
crateName = "windows-result";
version = "0.4.1";
edition = "2021";
sha256 = "1d9yhmrmmfqh56zlj751s5wfm9a2aa7az9rd7nn5027nxa4zm0bp";
libName = "windows_result";
dependencies = [
{
name = "windows-link";
packageId = "windows-link";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"windows-strings" = rec {
crateName = "windows-strings";
version = "0.5.1";
edition = "2021";
sha256 = "14bhng9jqv4fyl7lqjz3az7vzh8pw0w4am49fsqgcz67d67x0dvq";
libName = "windows_strings";
dependencies = [
{
name = "windows-link";
packageId = "windows-link";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"windows-sys 0.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_IO" "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_Security" "Win32_Security_Credentials" "default" ];
};
"windows-sys 0.61.2" = rec {
crateName = "windows-sys";
version = "0.61.2";
edition = "2021";
sha256 = "1z7k3y9b6b5h52kid57lvmvm05362zv1v8w0gc7xyv5xphlp44xf";
libName = "windows_sys";
dependencies = [
{
name = "windows-link";
packageId = "windows-link";
usesDefaultFeatures = false;
}
];
features = {
"Wdk" = [ "Win32_Foundation" ];
"Wdk_Devices" = [ "Wdk" ];
"Wdk_Devices_Bluetooth" = [ "Wdk_Devices" ];
"Wdk_Devices_HumanInterfaceDevice" = [ "Wdk_Devices" ];
"Wdk_Foundation" = [ "Wdk" ];
"Wdk_Graphics" = [ "Wdk" ];
"Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
"Wdk_NetworkManagement" = [ "Wdk" ];
"Wdk_NetworkManagement_Ndis" = [ "Wdk_NetworkManagement" ];
"Wdk_NetworkManagement_WindowsFilteringPlatform" = [ "Wdk_NetworkManagement" ];
"Wdk_Storage" = [ "Wdk" ];
"Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
"Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
"Wdk_System" = [ "Wdk" ];
"Wdk_System_IO" = [ "Wdk_System" ];
"Wdk_System_Memory" = [ "Wdk_System" ];
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
"Wdk_System_Registry" = [ "Wdk_System" ];
"Wdk_System_SystemInformation" = [ "Wdk_System" ];
"Wdk_System_SystemServices" = [ "Wdk_System" ];
"Wdk_System_Threading" = [ "Wdk_System" ];
"Win32" = [ "Win32_Foundation" ];
"Win32_Data" = [ "Win32" ];
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
"Win32_Devices" = [ "Win32" ];
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
"Win32_Devices_Beep" = [ "Win32_Devices" ];
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
"Win32_Devices_Cdrom" = [ "Win32_Devices" ];
"Win32_Devices_Communication" = [ "Win32_Devices" ];
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
"Win32_Devices_Display" = [ "Win32_Devices" ];
"Win32_Devices_Dvd" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
"Win32_Devices_Fax" = [ "Win32_Devices" ];
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
"Win32_Devices_Nfc" = [ "Win32_Devices" ];
"Win32_Devices_Nfp" = [ "Win32_Devices" ];
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
"Win32_Devices_Properties" = [ "Win32_Devices" ];
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
"Win32_Devices_Usb" = [ "Win32_Devices" ];
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
"Win32_Foundation" = [ "Win32" ];
"Win32_Gaming" = [ "Win32" ];
"Win32_Globalization" = [ "Win32" ];
"Win32_Graphics" = [ "Win32" ];
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
"Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
"Win32_Management" = [ "Win32" ];
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
"Win32_Media" = [ "Win32" ];
"Win32_Media_Audio" = [ "Win32_Media" ];
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
"Win32_Media_Multimedia" = [ "Win32_Media" ];
"Win32_Media_Streaming" = [ "Win32_Media" ];
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
"Win32_NetworkManagement" = [ "Win32" ];
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
"Win32_Networking" = [ "Win32" ];
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
"Win32_Security" = [ "Win32" ];
"Win32_Security_AppLocker" = [ "Win32_Security" ];
"Win32_Security_Authentication" = [ "Win32_Security" ];
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
"Win32_Security_Authorization" = [ "Win32_Security" ];
"Win32_Security_Credentials" = [ "Win32_Security" ];
"Win32_Security_Cryptography" = [ "Win32_Security" ];
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
"Win32_Security_Isolation" = [ "Win32_Security" ];
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
"Win32_Security_WinTrust" = [ "Win32_Security" ];
"Win32_Security_WinWlx" = [ "Win32_Security" ];
"Win32_Storage" = [ "Win32" ];
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
"Win32_Storage_Compression" = [ "Win32_Storage" ];
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
"Win32_Storage_Jet" = [ "Win32_Storage" ];
"Win32_Storage_Nvme" = [ "Win32_Storage" ];
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
"Win32_Storage_Xps" = [ "Win32_Storage" ];
"Win32_System" = [ "Win32" ];
"Win32_System_AddressBook" = [ "Win32_System" ];
"Win32_System_Antimalware" = [ "Win32_System" ];
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
"Win32_System_ClrHosting" = [ "Win32_System" ];
"Win32_System_Com" = [ "Win32_System" ];
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
"Win32_System_ComponentServices" = [ "Win32_System" ];
"Win32_System_Console" = [ "Win32_System" ];
"Win32_System_CorrelationVector" = [ "Win32_System" ];
"Win32_System_DataExchange" = [ "Win32_System" ];
"Win32_System_DeploymentServices" = [ "Win32_System" ];
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
"Win32_System_Diagnostics" = [ "Win32_System" ];
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_TraceLogging" = [ "Win32_System_Diagnostics" ];
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
"Win32_System_Environment" = [ "Win32_System" ];
"Win32_System_ErrorReporting" = [ "Win32_System" ];
"Win32_System_EventCollector" = [ "Win32_System" ];
"Win32_System_EventLog" = [ "Win32_System" ];
"Win32_System_EventNotificationService" = [ "Win32_System" ];
"Win32_System_GroupPolicy" = [ "Win32_System" ];
"Win32_System_HostCompute" = [ "Win32_System" ];
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
"Win32_System_Hypervisor" = [ "Win32_System" ];
"Win32_System_IO" = [ "Win32_System" ];
"Win32_System_Iis" = [ "Win32_System" ];
"Win32_System_Ioctl" = [ "Win32_System" ];
"Win32_System_JobObjects" = [ "Win32_System" ];
"Win32_System_Js" = [ "Win32_System" ];
"Win32_System_Kernel" = [ "Win32_System" ];
"Win32_System_LibraryLoader" = [ "Win32_System" ];
"Win32_System_Mailslots" = [ "Win32_System" ];
"Win32_System_Mapi" = [ "Win32_System" ];
"Win32_System_Memory" = [ "Win32_System" ];
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
"Win32_System_MessageQueuing" = [ "Win32_System" ];
"Win32_System_MixedReality" = [ "Win32_System" ];
"Win32_System_Ole" = [ "Win32_System" ];
"Win32_System_PasswordManagement" = [ "Win32_System" ];
"Win32_System_Performance" = [ "Win32_System" ];
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
"Win32_System_Pipes" = [ "Win32_System" ];
"Win32_System_Power" = [ "Win32_System" ];
"Win32_System_ProcessStatus" = [ "Win32_System" ];
"Win32_System_Recovery" = [ "Win32_System" ];
"Win32_System_Registry" = [ "Win32_System" ];
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
"Win32_System_RemoteManagement" = [ "Win32_System" ];
"Win32_System_RestartManager" = [ "Win32_System" ];
"Win32_System_Restore" = [ "Win32_System" ];
"Win32_System_Rpc" = [ "Win32_System" ];
"Win32_System_Search" = [ "Win32_System" ];
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
"Win32_System_SecurityCenter" = [ "Win32_System" ];
"Win32_System_Services" = [ "Win32_System" ];
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
"Win32_System_Shutdown" = [ "Win32_System" ];
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
"Win32_System_SystemInformation" = [ "Win32_System" ];
"Win32_System_SystemServices" = [ "Win32_System" ];
"Win32_System_Threading" = [ "Win32_System" ];
"Win32_System_Time" = [ "Win32_System" ];
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
"Win32_System_Variant" = [ "Win32_System" ];
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
"Win32_System_Wmi" = [ "Win32_System" ];
"Win32_UI" = [ "Win32" ];
"Win32_UI_Accessibility" = [ "Win32_UI" ];
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
"Win32_UI_Controls" = [ "Win32_UI" ];
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
"Win32_UI_HiDpi" = [ "Win32_UI" ];
"Win32_UI_Input" = [ "Win32_UI" ];
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
"Win32_UI_Magnification" = [ "Win32_UI" ];
"Win32_UI_Shell" = [ "Win32_UI" ];
"Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
"Win32_UI_TabletPC" = [ "Win32_UI" ];
"Win32_UI_TextServices" = [ "Win32_UI" ];
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
"Win32_Web" = [ "Win32" ];
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
};
resolvedDefaultFeatures = [ "Wdk" "Wdk_Foundation" "Wdk_Storage" "Wdk_Storage_FileSystem" "Wdk_System" "Wdk_System_IO" "Win32" "Win32_Foundation" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Security_Authentication" "Win32_Security_Authentication_Identity" "Win32_Security_Credentials" "Win32_Security_Cryptography" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Console" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "Win32_System_IO" "Win32_System_LibraryLoader" "Win32_System_Memory" "Win32_System_Pipes" "Win32_System_SystemInformation" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
};
"windows-targets 0.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 }: (target.name == "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 }: (target.name == "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 }: (target.name == "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 }: (target.name == "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 }: (target.name == "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 }: (target.name == "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 }: (target.name == "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 }: (target.name == "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.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.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.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.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.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.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.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 0.7.15" = rec {
crateName = "winnow";
version = "0.7.15";
edition = "2021";
sha256 = "0i9rkl2rqpbnnxlgs20gmkj3nd0b2k8q55mjmpc2ybb84xwxjyfz";
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" ];
};
"winnow 1.0.3" = rec {
crateName = "winnow";
version = "1.0.3";
edition = "2021";
sha256 = "1wajycd3krn6h699vydjv7hm0ll5l31p899qzpk59y2is74y34h5";
features = {
"ascii" = [ "parser" ];
"binary" = [ "parser" ];
"debug" = [ "std" "dep:anstream" "dep:anstyle" "dep:is_terminal_polyfill" "dep:terminal_size" ];
"default" = [ "std" "ascii" "binary" ];
"simd" = [ "dep:memchr" ];
"std" = [ "alloc" "memchr?/std" ];
"unstable-doc" = [ "alloc" "std" "ascii" "binary" "simd" "unstable-recover" ];
"unstable-recover" = [ "parser" ];
};
};
"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 0.51.0" = rec {
crateName = "wit-bindgen";
version = "0.51.0";
edition = "2024";
sha256 = "19fazgch8sq5cvjv3ynhhfh5d5x08jq2pkw8jfb05vbcyqcr496p";
libName = "wit_bindgen";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "wit-bindgen-rust-macro";
packageId = "wit-bindgen-rust-macro";
optional = true;
}
];
features = {
"async" = [ "std" "wit-bindgen-rust-macro?/async" ];
"async-spawn" = [ "async" "dep:futures" ];
"bitflags" = [ "dep:bitflags" ];
"default" = [ "macros" "realloc" "async" "std" "bitflags" ];
"inter-task-wakeup" = [ "async" ];
"macros" = [ "dep:wit-bindgen-rust-macro" ];
"rustc-dep-of-std" = [ "dep:core" "dep:alloc" ];
};
resolvedDefaultFeatures = [ "async" "std" ];
};
"wit-bindgen 0.57.1" = rec {
crateName = "wit-bindgen";
version = "0.57.1";
edition = "2024";
sha256 = "0vjk2jb593ri9k1aq4iqs2si9mrw5q46wxnn78im7hm7hx799gqy";
libName = "wit_bindgen";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"async-spawn" = [ "async" "dep:futures" "std" ];
"bitflags" = [ "dep:bitflags" ];
"default" = [ "macros" "realloc" "async" "std" "bitflags" "macro-string" ];
"futures-stream" = [ "async" "dep:futures" ];
"inter-task-wakeup" = [ "async" ];
"macro-string" = [ "wit-bindgen-rust-macro?/macro-string" ];
"macros" = [ "dep:wit-bindgen-rust-macro" ];
"rustc-dep-of-std" = [ "dep:core" "dep:alloc" ];
};
};
"wit-bindgen-core" = rec {
crateName = "wit-bindgen-core";
version = "0.51.0";
edition = "2024";
sha256 = "1p2jszqsqbx8k7y8nwvxg65wqzxjm048ba5phaq8r9iy9ildwqga";
libName = "wit_bindgen_core";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "heck";
packageId = "heck 0.5.0";
}
{
name = "wit-parser";
packageId = "wit-parser";
}
];
features = {
"clap" = [ "dep:clap" ];
"serde" = [ "dep:serde" ];
};
};
"wit-bindgen-rust" = rec {
crateName = "wit-bindgen-rust";
version = "0.51.0";
edition = "2024";
sha256 = "08bzn5fsvkb9x9wyvyx98qglknj2075xk1n7c5jxv15jykh6didp";
libName = "wit_bindgen_rust";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "heck";
packageId = "heck 0.5.0";
}
{
name = "indexmap";
packageId = "indexmap";
}
{
name = "prettyplease";
packageId = "prettyplease";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "printing" ];
}
{
name = "wasm-metadata";
packageId = "wasm-metadata";
usesDefaultFeatures = false;
}
{
name = "wit-bindgen-core";
packageId = "wit-bindgen-core";
}
{
name = "wit-component";
packageId = "wit-component";
}
];
features = {
"clap" = [ "dep:clap" "wit-bindgen-core/clap" ];
"serde" = [ "dep:serde" "wit-bindgen-core/serde" ];
};
};
"wit-bindgen-rust-macro" = rec {
crateName = "wit-bindgen-rust-macro";
version = "0.51.0";
edition = "2024";
sha256 = "0ymizapzv2id89igxsz2n587y2hlfypf6n8kyp68x976fzyrn3qc";
procMacro = true;
libName = "wit_bindgen_rust_macro";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "prettyplease";
packageId = "prettyplease";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "printing" ];
}
{
name = "wit-bindgen-core";
packageId = "wit-bindgen-core";
}
{
name = "wit-bindgen-rust";
packageId = "wit-bindgen-rust";
}
];
features = {
};
resolvedDefaultFeatures = [ "async" ];
};
"wit-component" = rec {
crateName = "wit-component";
version = "0.244.0";
edition = "2021";
sha256 = "1clwxgsgdns3zj2fqnrjcp8y5gazwfa1k0sy5cbk0fsmx4hflrlx";
libName = "wit_component";
authors = [
"Peter Huene <peter@huene.dev>"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "bitflags";
packageId = "bitflags 2.12.1";
}
{
name = "indexmap";
packageId = "indexmap";
usesDefaultFeatures = false;
}
{
name = "log";
packageId = "log";
}
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "wasm-encoder";
packageId = "wasm-encoder";
usesDefaultFeatures = false;
features = [ "std" "wasmparser" ];
}
{
name = "wasm-metadata";
packageId = "wasm-metadata";
usesDefaultFeatures = false;
}
{
name = "wasmparser";
packageId = "wasmparser";
usesDefaultFeatures = false;
features = [ "simd" "std" "component-model" "simd" ];
}
{
name = "wit-parser";
packageId = "wit-parser";
features = [ "decoding" "serde" ];
}
];
devDependencies = [
{
name = "wasm-metadata";
packageId = "wasm-metadata";
usesDefaultFeatures = false;
features = [ "oci" ];
}
{
name = "wasmparser";
packageId = "wasmparser";
usesDefaultFeatures = false;
features = [ "simd" "std" "component-model" "features" ];
}
];
features = {
"dummy-module" = [ "dep:wat" ];
"semver-check" = [ "dummy-module" ];
"wat" = [ "dep:wast" "dep:wat" ];
};
};
"wit-parser" = rec {
crateName = "wit-parser";
version = "0.244.0";
edition = "2021";
sha256 = "0dm7avvdxryxd5b02l0g5h6933z1cw5z0d4wynvq2cywq55srj7c";
libName = "wit_parser";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "anyhow";
packageId = "anyhow";
}
{
name = "id-arena";
packageId = "id-arena";
}
{
name = "indexmap";
packageId = "indexmap";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "log";
packageId = "log";
}
{
name = "semver";
packageId = "semver";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "serde_derive";
packageId = "serde_derive";
optional = true;
}
{
name = "serde_json";
packageId = "serde_json";
optional = true;
}
{
name = "unicode-xid";
packageId = "unicode-xid";
}
{
name = "wasmparser";
packageId = "wasmparser";
optional = true;
usesDefaultFeatures = false;
features = [ "simd" "std" "validate" "component-model" "features" ];
}
];
devDependencies = [
{
name = "serde_json";
packageId = "serde_json";
}
];
features = {
"decoding" = [ "dep:wasmparser" ];
"default" = [ "serde" "decoding" ];
"serde" = [ "dep:serde" "dep:serde_derive" "indexmap/serde" "serde_json" ];
"serde_json" = [ "dep:serde_json" ];
"wat" = [ "decoding" "dep:wat" ];
};
resolvedDefaultFeatures = [ "decoding" "default" "serde" "serde_json" ];
};
"writeable" = rec {
crateName = "writeable";
version = "0.6.3";
edition = "2021";
sha256 = "1i54d13h9bpap2hf13xcry1s4lxh7ap3923g8f3c0grd7c9fbyhz";
authors = [
"The ICU4X Project Developers"
];
features = {
"default" = [ "alloc" ];
"either" = [ "dep:either" ];
};
};
"wyz" = rec {
crateName = "wyz";
version = "0.5.1";
edition = "2018";
sha256 = "1vdrfy7i2bznnzjdl9vvrzljvs4s3qm8bnlgqwln6a941gy61wq5";
authors = [
"myrrlyn <self@myrrlyn.dev>"
];
dependencies = [
{
name = "tap";
packageId = "tap";
}
];
features = {
"default" = [ "std" ];
"garbage" = [ "once_cell" "typemap" ];
"once_cell" = [ "dep:once_cell" ];
"std" = [ "alloc" ];
"typemap" = [ "dep:typemap" ];
};
};
"x509-parser" = rec {
crateName = "x509-parser";
version = "0.16.0";
edition = "2018";
sha256 = "0s8zyl6fafkzpylcpcn08bmcmrzzcb6gfjx2h8zny3bh60pidg7w";
libName = "x509_parser";
authors = [
"Pierre Chifflier <chifflier@wzdftpd.net>"
];
dependencies = [
{
name = "asn1-rs";
packageId = "asn1-rs";
features = [ "datetime" ];
}
{
name = "data-encoding";
packageId = "data-encoding";
}
{
name = "der-parser";
packageId = "der-parser";
features = [ "bigint" ];
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "nom";
packageId = "nom 7.1.3";
}
{
name = "oid-registry";
packageId = "oid-registry";
features = [ "crypto" "x509" "x962" ];
}
{
name = "rusticata-macros";
packageId = "rusticata-macros";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
{
name = "time";
packageId = "time";
features = [ "formatting" ];
}
];
features = {
"ring" = [ "dep:ring" ];
"verify" = [ "ring" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"xattr" = rec {
crateName = "xattr";
version = "1.6.1";
edition = "2021";
sha256 = "0ml1mb43gqasawillql6b344m0zgq8mz0isi11wj8vbg43a5mr1j";
authors = [
"Steven Allen <steven@stebalien.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (("freebsd" == target."os" or null) || ("netbsd" == target."os" or null));
}
{
name = "rustix";
packageId = "rustix 1.1.4";
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" ];
};
"yaml-rust" = rec {
crateName = "yaml-rust";
version = "0.4.5";
edition = "2018";
sha256 = "118wbqrr4n6wgk5rjjnlrdlahawlxc1bdsx146mwk8f79in97han";
libName = "yaml_rust";
authors = [
"Yuheng Chen <yuhengchen@sensetime.com>"
];
dependencies = [
{
name = "linked-hash-map";
packageId = "linked-hash-map";
}
];
};
"yasna" = rec {
crateName = "yasna";
version = "0.4.0";
edition = "2018";
sha256 = "0xgsvxqnycdakh6j3hg4dk3mylrpnba50w0d36vg5k311sfs4qp2";
authors = [
"Masaki Hara <ackie.h.gmai@gmail.com>"
];
dependencies = [
{
name = "bit-vec";
packageId = "bit-vec";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "num-bigint";
packageId = "num-bigint";
optional = true;
}
];
features = {
"bit-vec" = [ "dep:bit-vec" ];
"chrono" = [ "dep:chrono" ];
"num-bigint" = [ "dep:num-bigint" ];
};
resolvedDefaultFeatures = [ "bit-vec" "default" "num-bigint" ];
};
"yoke" = rec {
crateName = "yoke";
version = "0.8.2";
edition = "2021";
sha256 = "1jprcs7a98a5whvfs6r3jvfh1nnfp6zyijl7y4ywmn88lzywbs5b";
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.2";
edition = "2021";
sha256 = "13l5y5sz4lqm7rmyakjbh6vwgikxiql51xfff9hq2j485hk4r16y";
procMacro = true;
libName = "yoke_derive";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "fold" ];
}
{
name = "synstructure";
packageId = "synstructure";
}
];
};
"zerocopy" = rec {
crateName = "zerocopy";
version = "0.8.50";
edition = "2021";
sha256 = "1laahnfxs4qyfb1fdf5nbb2qfshi72b1hbi0ffp2zy2m1r7ms1iv";
authors = [
"Joshua Liebow-Feeser <joshlf@google.com>"
"Jack Wrenn <jswrenn@amazon.com>"
];
dependencies = [
{
name = "zerocopy-derive";
packageId = "zerocopy-derive";
optional = true;
}
{
name = "zerocopy-derive";
packageId = "zerocopy-derive";
target = { target, features }: false;
}
];
devDependencies = [
{
name = "zerocopy-derive";
packageId = "zerocopy-derive";
}
];
features = {
"__internal_use_only_features_that_work_on_stable" = [ "alloc" "derive" "simd" "std" ];
"derive" = [ "zerocopy-derive" ];
"simd-nightly" = [ "simd" ];
"std" = [ "alloc" ];
"zerocopy-derive" = [ "dep:zerocopy-derive" ];
};
resolvedDefaultFeatures = [ "derive" "simd" "zerocopy-derive" ];
};
"zerocopy-derive" = rec {
crateName = "zerocopy-derive";
version = "0.8.50";
edition = "2021";
sha256 = "0fdnr9qslx1hbn2i9rsvy9s95mychfy2vj90ajsjm2basccinqqb";
procMacro = true;
libName = "zerocopy_derive";
authors = [
"Joshua Liebow-Feeser <joshlf@google.com>"
"Jack Wrenn <jswrenn@amazon.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" ];
}
];
devDependencies = [
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "visit" ];
}
];
};
"zerofrom" = rec {
crateName = "zerofrom";
version = "0.1.8";
edition = "2021";
sha256 = "0wjjdj7gdmd0iq91gzkxl7dlv0nhkk80l4bmdpzh3a1yh48mmh0f";
authors = [
"The ICU4X Project Developers"
];
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.7";
edition = "2021";
sha256 = "18c4wsnznhdxx6m80piil1lbyszdiwsshgjrybqcm4b6qic22lqi";
procMacro = true;
libName = "zerofrom_derive";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
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.3";
edition = "2021";
sha256 = "0bl5vd1lz27p4z336nximg5wrlw5j7jc8fxh7iv6r1wrhhav99c5";
procMacro = true;
authors = [
"The RustCrypto Project Developers"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" "extra-traits" "visit" ];
}
];
};
"zerotrie" = rec {
crateName = "zerotrie";
version = "0.2.4";
edition = "2021";
sha256 = "1gr0pkcn3qsr6in6iixqyp0vbzwf2j1jzyvh7yl2yydh3p9m548g";
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 = {
"alloc" = [ "zerovec?/alloc" ];
"databake" = [ "dep:databake" "zerovec?/databake" ];
"dense" = [ "dep:zerovec" ];
"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.6";
edition = "2021";
sha256 = "0fdjsy6b31q9i0d73sl7xjd12xadbwi45lkpfgqnmasrqg5i3ych";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "yoke";
packageId = "yoke";
optional = true;
usesDefaultFeatures = false;
}
{
name = "zerofrom";
packageId = "zerofrom";
usesDefaultFeatures = false;
}
{
name = "zerovec-derive";
packageId = "zerovec-derive";
optional = true;
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "yoke";
packageId = "yoke";
usesDefaultFeatures = false;
features = [ "derive" ];
}
];
features = {
"alloc" = [ "serde?/alloc" ];
"databake" = [ "dep:databake" ];
"derive" = [ "dep:zerovec-derive" ];
"hashmap" = [ "dep:twox-hash" "alloc" ];
"schemars" = [ "dep:schemars" "alloc" ];
"serde" = [ "dep:serde" ];
"yoke" = [ "dep:yoke" ];
};
resolvedDefaultFeatures = [ "derive" "yoke" ];
};
"zerovec-derive" = rec {
crateName = "zerovec-derive";
version = "0.11.3";
edition = "2021";
sha256 = "0m85qj92mmfvhjra6ziqky5b1p4kcmp5069k7kfadp5hr8jw8pb2";
procMacro = true;
libName = "zerovec_derive";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "extra-traits" ];
}
];
};
"zmij" = rec {
crateName = "zmij";
version = "1.0.21";
edition = "2021";
sha256 = "1amb5i6gz7yjb0dnmz5y669674pqmwbj44p4yfxfv2ncgvk8x15q";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"no-panic" = [ "dep:no-panic" ];
};
};
"zstd" = rec {
crateName = "zstd";
version = "0.13.3";
edition = "2018";
sha256 = "12n0h4w9l526li7jl972rxpyf012jw3nwmji2qbjghv9ll8y67p9";
authors = [
"Alexandre Bury <alexandre.bury@gmail.com>"
];
dependencies = [
{
name = "zstd-safe";
packageId = "zstd-safe";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
features = {
"arrays" = [ "zstd-safe/arrays" ];
"bindgen" = [ "zstd-safe/bindgen" ];
"debug" = [ "zstd-safe/debug" ];
"default" = [ "legacy" "arrays" "zdict_builder" ];
"experimental" = [ "zstd-safe/experimental" ];
"fat-lto" = [ "zstd-safe/fat-lto" ];
"legacy" = [ "zstd-safe/legacy" ];
"no_asm" = [ "zstd-safe/no_asm" ];
"pkg-config" = [ "zstd-safe/pkg-config" ];
"thin" = [ "zstd-safe/thin" ];
"thin-lto" = [ "zstd-safe/thin-lto" ];
"zdict_builder" = [ "zstd-safe/zdict_builder" ];
"zstdmt" = [ "zstd-safe/zstdmt" ];
};
};
"zstd-safe" = rec {
crateName = "zstd-safe";
version = "7.2.4";
edition = "2018";
sha256 = "179vxmkzhpz6cq6mfzvgwc99bpgllkr6lwxq7ylh5dmby3aw8jcg";
libName = "zstd_safe";
authors = [
"Alexandre Bury <alexandre.bury@gmail.com>"
];
dependencies = [
{
name = "zstd-sys";
packageId = "zstd-sys";
usesDefaultFeatures = false;
}
];
features = {
"bindgen" = [ "zstd-sys/bindgen" ];
"debug" = [ "zstd-sys/debug" ];
"default" = [ "legacy" "arrays" "zdict_builder" ];
"experimental" = [ "zstd-sys/experimental" ];
"fat-lto" = [ "zstd-sys/fat-lto" ];
"legacy" = [ "zstd-sys/legacy" ];
"no_asm" = [ "zstd-sys/no_asm" ];
"pkg-config" = [ "zstd-sys/pkg-config" ];
"seekable" = [ "zstd-sys/seekable" ];
"std" = [ "zstd-sys/std" ];
"thin" = [ "zstd-sys/thin" ];
"thin-lto" = [ "zstd-sys/thin-lto" ];
"zdict_builder" = [ "zstd-sys/zdict_builder" ];
"zstdmt" = [ "zstd-sys/zstdmt" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"zstd-seekable" = rec {
crateName = "zstd-seekable";
version = "0.1.23";
edition = "2018";
sha256 = "1hn3lry2p1fzjlx6shwq1k5bcpx4lqckmvl16gqx326vbiy12jjp";
libName = "zstd_seekable";
authors = [
"Pierre-Étienne Meunier <pe@pijul.org>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "thiserror";
packageId = "thiserror 1.0.69";
}
{
name = "threadpool";
packageId = "threadpool";
}
];
buildDependencies = [
{
name = "bincode";
packageId = "bincode";
}
{
name = "cc";
packageId = "cc";
}
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
];
};
"zstd-sys" = rec {
crateName = "zstd-sys";
version = "2.0.16+zstd.1.5.7";
edition = "2018";
links = "zstd";
sha256 = "0j1pd2iaqpvaxlgqmmijj68wma7xwdv9grrr63j873yw5ay9xqci";
libName = "zstd_sys";
authors = [
"Alexandre Bury <alexandre.bury@gmail.com>"
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
features = [ "parallel" ];
}
{
name = "pkg-config";
packageId = "pkg-config";
}
];
features = {
"bindgen" = [ "dep:bindgen" ];
"default" = [ "legacy" "zdict_builder" "bindgen" ];
};
resolvedDefaultFeatures = [ "std" ];
};
};
#
# crate2nix/default.nix (excerpt start)
#
/*
Target (platform) data for conditional dependencies.
This corresponds roughly to what buildRustCrate is setting.
*/
makeDefaultTarget = platform: {
name = platform.rust.rustcTarget;
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;
} // extraTargetFlags;
registryUrl =
{ registries
, url
, crate
, version
, sha256
,
}:
let
dl = registries.${url}.dl;
tmpl = [
"{crate}"
"{version}"
"{prefix}"
"{lowerprefix}"
"{sha256-checksum}"
];
in
with lib.strings;
if lib.lists.any (i: hasInfix "{}" dl) tmpl then
let
prefix =
if builtins.stringLength crate == 1 then
"1"
else if builtins.stringLength crate == 2 then
"2"
else
"${builtins.substring 0 2 crate}/${builtins.substring 2 (builtins.stringLength crate - 2) crate}";
in
builtins.replaceStrings tmpl [
crate
version
prefix
(lib.strings.toLower prefix)
sha256
]
else
"${dl}/${crate}/${version}/download";
# 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.stdenvNoCC.mkDerivation {
name = "run-tests-${testCrate.name}";
inherit (crate) src;
inherit testCrateFlags;
buildInputs = testInputs;
buildPhase = ''
set -e
export RUST_BACKTRACE=1
# 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 meta;
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 pkgs.stdenv.hostPlatform;
build = mkBuiltByPackageIdByPkgs pkgs.buildPackages;
};
in
self;
buildByPackageIdForPkgsImpl =
self: pkgs: packageId:
let
features = mergedFeatures."${packageId}" or [ ];
crateConfig' = crateConfigs."${packageId}";
crateConfig = builtins.removeAttrs crateConfig' [
"resolvedDefaultFeatures"
"devDependencies"
];
devDependencies = lib.optionals (runTests && packageId == rootPackageId) (
crateConfig'.devDependencies or [ ]
);
dependencies = dependencyDerivations {
inherit features;
inherit (self) target;
buildByPackageId =
depPackageId:
# proc_macro crates must be compiled for the build architecture
if crateConfigs.${depPackageId}.procMacro or false then
self.build.crates.${depPackageId}
else
self.crates.${depPackageId};
dependencies = (crateConfig.dependencies or [ ]) ++ devDependencies;
};
buildDependencies = dependencyDerivations {
inherit features;
inherit (self.build) target;
buildByPackageId = depPackageId: self.build.crates.${depPackageId};
dependencies = crateConfig.buildDependencies or [ ];
};
dependenciesWithRenames =
let
buildDeps = filterEnabledDependencies {
inherit features;
inherit (self) target;
dependencies = crateConfig.dependencies or [ ] ++ devDependencies;
};
hostDeps = filterEnabledDependencies {
inherit features;
inherit (self.build) target;
dependencies = crateConfig.buildDependencies or [ ];
};
in
lib.filter (d: d ? "rename") (hostDeps ++ buildDeps);
# Crate renames have the form:
#
# {
# crate_name = [
# { version = "1.2.3"; rename = "crate_name01"; }
# ];
# # ...
# }
crateRenames =
let
grouped = lib.groupBy (dependency: dependency.name) dependenciesWithRenames;
versionAndRename =
dep:
let
package = crateConfigs."${dep.packageId}";
in
{
inherit (dep) rename;
inherit (package) version;
};
in
lib.mapAttrs (name: builtins.map versionAndRename) grouped;
in
buildRustCrateForPkgsFunc pkgs (
crateConfig
// {
src =
crateConfig.src or (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)
#
};
}