# 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.
#
rootCrate = rec {
packageId = "pleme-codegen";
# Use this attribute to refer to the derivation building your root crate package.
# You can override the features with rootCrate.build.override { features = [ "default" "feature1" ... ]; }.
build = internal.buildRustCrateWithFeatures {
inherit packageId;
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
# Refer your crate build derivation by name here.
# You can override the features with
# workspaceMembers."${crateName}".build.override { features = [ "default" "feature1" ... ]; }.
workspaceMembers = {
"pleme-codegen" = rec {
packageId = "pleme-codegen";
build = internal.buildRustCrateWithFeatures {
packageId = "pleme-codegen";
};
# 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 = {
"Inflector" = rec {
crateName = "Inflector";
version = "0.11.4";
edition = "2015";
sha256 = "1lqmcni21ifzyq41fhz6k1j2b23cmsx469s4g4sf01l78miqqhzy";
libName = "inflector";
authors = [
"Josh Teeter<joshteeter@gmail.com>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
{
name = "regex";
packageId = "regex";
optional = true;
}
];
features = {
"default" = [ "heavyweight" ];
"heavyweight" = [ "regex" "lazy_static" ];
"lazy_static" = [ "dep:lazy_static" ];
"regex" = [ "dep:regex" ];
};
resolvedDefaultFeatures = [ "default" "heavyweight" "lazy_static" "regex" ];
};
"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 = [ "perf-literal" "std" ];
};
"allocator-api2" = rec {
crateName = "allocator-api2";
version = "0.2.21";
edition = "2018";
sha256 = "08zrzs022xwndihvzdn78yqarv2b9696y67i6h78nla3ww87jgb8";
libName = "allocator_api2";
authors = [
"Zakarum <zaq.dev@icloud.com>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"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";
}
];
};
"anes" = rec {
crateName = "anes";
version = "0.1.6";
edition = "2018";
sha256 = "16bj1ww1xkwzbckk32j2pnbn5vk6wgsl3q4p3j9551xbcarwnijb";
authors = [
"Robert Vojta <rvojta@me.com>"
];
features = {
"bitflags" = [ "dep:bitflags" ];
"parser" = [ "bitflags" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"anstyle" = rec {
crateName = "anstyle";
version = "1.0.13";
edition = "2021";
sha256 = "0y2ynjqajpny6q0amvfzzgw0gfw3l47z85km4gvx87vg02lcr4ji";
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"anyhow" = rec {
crateName = "anyhow";
version = "1.0.102";
edition = "2021";
sha256 = "0b447dra1v12z474c6z4jmicdmc5yxz5bakympdnij44ckw2s83z";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"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" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"ascii_utils" = rec {
crateName = "ascii_utils";
version = "0.9.3";
edition = "2015";
sha256 = "0jpp550pwi38msflpy7lnqm2r153kn9k19bss6k9ak9yacq8z4vi";
authors = [
"Jonas mg (https://github.com/tredoe)"
];
};
"async-graphql" = rec {
crateName = "async-graphql";
version = "6.0.11";
edition = "2021";
sha256 = "132a942rljsq8s8rgz6h3wlyp02s6bfg4spm3ckxnvvfgmc5v2i9";
libName = "async_graphql";
authors = [
"sunli <scott_s829@163.com>"
"Koxiaet"
];
dependencies = [
{
name = "async-graphql-derive";
packageId = "async-graphql-derive";
}
{
name = "async-graphql-parser";
packageId = "async-graphql-parser";
}
{
name = "async-graphql-value";
packageId = "async-graphql-value";
}
{
name = "async-stream";
packageId = "async-stream";
}
{
name = "async-trait";
packageId = "async-trait";
}
{
name = "base64";
packageId = "base64 0.13.1";
}
{
name = "bytes";
packageId = "bytes";
features = [ "serde" ];
}
{
name = "chrono";
packageId = "chrono";
optional = true;
usesDefaultFeatures = false;
features = [ "clock" "std" ];
}
{
name = "fast_chemail";
packageId = "fast_chemail";
optional = true;
}
{
name = "fnv";
packageId = "fnv";
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "std" "io" "sink" "async-await" "async-await-macro" ];
}
{
name = "handlebars";
packageId = "handlebars";
optional = true;
}
{
name = "http";
packageId = "http";
}
{
name = "indexmap";
packageId = "indexmap";
features = [ "serde" ];
}
{
name = "mime";
packageId = "mime";
}
{
name = "multer";
packageId = "multer";
}
{
name = "num-traits";
packageId = "num-traits";
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "regex";
packageId = "regex";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "serde_urlencoded";
packageId = "serde_urlencoded";
}
{
name = "static_assertions";
packageId = "static_assertions";
}
{
name = "tempfile";
packageId = "tempfile";
optional = true;
}
{
name = "thiserror";
packageId = "thiserror";
}
{
name = "uuid";
packageId = "uuid";
optional = true;
features = [ "v4" "serde" ];
}
];
features = {
"apollo_persisted_queries" = [ "lru" "sha2" ];
"apollo_tracing" = [ "chrono" ];
"bigdecimal" = [ "dep:bigdecimal" ];
"blocking" = [ "dep:blocking" ];
"bson" = [ "dep:bson" ];
"cbor" = [ "serde_cbor" ];
"chrono" = [ "dep:chrono" ];
"chrono-duration" = [ "chrono" "iso8601" ];
"chrono-tz" = [ "dep:chrono-tz" ];
"dataloader" = [ "futures-timer" "futures-channel" "lru" ];
"decimal" = [ "rust_decimal" ];
"default" = [ "email-validator" "tempfile" "playground" "graphiql" ];
"email-validator" = [ "fast_chemail" ];
"fast_chemail" = [ "dep:fast_chemail" ];
"futures-channel" = [ "dep:futures-channel" ];
"futures-timer" = [ "dep:futures-timer" ];
"graphiql" = [ "handlebars" ];
"handlebars" = [ "dep:handlebars" ];
"hashbrown" = [ "dep:hashbrown" ];
"iso8601" = [ "dep:iso8601" ];
"log" = [ "dep:log" ];
"lru" = [ "dep:lru" ];
"opentelemetry" = [ "dep:opentelemetry" ];
"password-strength-validator" = [ "zxcvbn" ];
"rust_decimal" = [ "dep:rust_decimal" ];
"secrecy" = [ "dep:secrecy" ];
"serde_cbor" = [ "dep:serde_cbor" ];
"sha2" = [ "dep:sha2" ];
"smol_str" = [ "dep:smol_str" ];
"tempfile" = [ "dep:tempfile" ];
"time" = [ "dep:time" ];
"tokio" = [ "dep:tokio" ];
"tokio-sync" = [ "tokio" ];
"tracing" = [ "tracinglib" "tracing-futures" ];
"tracing-futures" = [ "dep:tracing-futures" ];
"tracinglib" = [ "dep:tracinglib" ];
"unblock" = [ "blocking" ];
"url" = [ "dep:url" ];
"uuid" = [ "dep:uuid" ];
"uuid08" = [ "dep:uuid08" ];
"zxcvbn" = [ "dep:zxcvbn" ];
};
resolvedDefaultFeatures = [ "chrono" "default" "email-validator" "fast_chemail" "graphiql" "handlebars" "playground" "tempfile" "uuid" ];
};
"async-graphql-derive" = rec {
crateName = "async-graphql-derive";
version = "6.0.11";
edition = "2021";
sha256 = "1c06s0zk9bf8r86v0v64dqspv1khdi8lp70cyxr6lr4vxg3jkwy7";
procMacro = true;
libName = "async_graphql_derive";
authors = [
"sunli <scott_s829@163.com>"
"Koxiaet"
];
dependencies = [
{
name = "Inflector";
packageId = "Inflector";
}
{
name = "async-graphql-parser";
packageId = "async-graphql-parser";
}
{
name = "darling";
packageId = "darling";
}
{
name = "proc-macro-crate";
packageId = "proc-macro-crate 1.3.1";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "strum";
packageId = "strum";
features = [ "derive" ];
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" "extra-traits" "visit-mut" "visit" ];
}
{
name = "thiserror";
packageId = "thiserror";
}
];
};
"async-graphql-parser" = rec {
crateName = "async-graphql-parser";
version = "6.0.11";
edition = "2021";
sha256 = "0fymbgbcv0vf7jxykc4dg45ibmrns3rkk25v7ykxczvm8lc1hfb1";
libName = "async_graphql_parser";
authors = [
"sunli <scott_s829@163.com>"
"Koxiaet"
];
dependencies = [
{
name = "async-graphql-value";
packageId = "async-graphql-value";
}
{
name = "pest";
packageId = "pest";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
];
};
"async-graphql-value" = rec {
crateName = "async-graphql-value";
version = "6.0.11";
edition = "2021";
sha256 = "0l1pgw5cb6a2qqlj2f6gg5pd7cf9474f1wp38l7h7lmxym1m2fij";
libName = "async_graphql_value";
authors = [
"sunli <scott_s829@163.com>"
"Koxiaet"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
features = [ "serde" ];
}
{
name = "indexmap";
packageId = "indexmap";
features = [ "serde" ];
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
];
};
"async-stream" = rec {
crateName = "async-stream";
version = "0.3.6";
edition = "2021";
sha256 = "0xl4zqncrdmw2g6241wgr11dxdg4h7byy6bz3l6si03qyfk72nhb";
libName = "async_stream";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "async-stream-impl";
packageId = "async-stream-impl";
}
{
name = "futures-core";
packageId = "futures-core";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
];
};
"async-stream-impl" = rec {
crateName = "async-stream-impl";
version = "0.3.6";
edition = "2021";
sha256 = "0kaplfb5axsvf1gfs2gk6c4zx6zcsns0yf3ssk7iwni7bphlvhn7";
procMacro = true;
libName = "async_stream_impl";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" "visit-mut" ];
}
];
};
"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" ];
}
];
};
"atoi" = rec {
crateName = "atoi";
version = "2.0.0";
edition = "2021";
sha256 = "0a05h42fggmy7h0ajjv6m7z72l924i7igbx13hk9d8pyign9k3gj";
authors = [
"Markus Klein"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "num-traits/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"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" ];
};
};
"autocfg" = rec {
crateName = "autocfg";
version = "1.5.0";
edition = "2015";
sha256 = "1s77f98id9l4af4alklmzq46f21c980v13z2r1pcxx6bqgw0d1n0";
authors = [
"Josh Stone <cuviper@gmail.com>"
];
};
"base64 0.13.1" = rec {
crateName = "base64";
version = "0.13.1";
edition = "2018";
sha256 = "1s494mqmzjb766fy1kqlccgfg2sdcjb6hzbvzqv2jw65fdi5h6wy";
authors = [
"Alice Maz <alice@alicemaz.com>"
"Marshall Pierce <marshall@mpierce.org>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"base64 0.21.7" = rec {
crateName = "base64";
version = "0.21.7";
edition = "2018";
sha256 = "0rw52yvsk75kar9wgqfwgb414kvil1gn7mqkrhn9zf1537mpsacx";
authors = [
"Alice Maz <alice@alicemaz.com>"
"Marshall Pierce <marshall@mpierce.org>"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"base64ct" = rec {
crateName = "base64ct";
version = "1.8.3";
edition = "2024";
sha256 = "01nyyyx84bhwrcc168hn47d8gvz2pzpv3y3lmck7mq4hw5vh3x9a";
authors = [
"RustCrypto Developers"
];
features = {
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"bit-set" = rec {
crateName = "bit-set";
version = "0.8.0";
edition = "2015";
sha256 = "18riaa10s6n59n39vix0cr7l2dgwdhcpbcm97x1xbyfp1q47x008";
libName = "bit_set";
authors = [
"Alexis Beingessner <a.beingessner@gmail.com>"
];
dependencies = [
{
name = "bit-vec";
packageId = "bit-vec";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" "bit-vec/serde" ];
"std" = [ "bit-vec/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"bit-vec" = rec {
crateName = "bit-vec";
version = "0.8.0";
edition = "2015";
sha256 = "1xxa1s2cj291r7k1whbxq840jxvmdsq9xgh7bvrxl46m80fllxjy";
libName = "bit_vec";
authors = [
"Alexis Beingessner <a.beingessner@gmail.com>"
];
features = {
"borsh" = [ "dep:borsh" ];
"borsh_std" = [ "borsh/std" ];
"default" = [ "std" ];
"miniserde" = [ "dep:miniserde" ];
"nanoserde" = [ "dep:nanoserde" ];
"serde" = [ "dep:serde" ];
"serde_no_std" = [ "serde/alloc" ];
"serde_std" = [ "std" "serde/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"bitflags" = rec {
crateName = "bitflags";
version = "2.11.0";
edition = "2021";
sha256 = "1bwjibwry5nfwsfm9kjg2dqx5n5nja9xymwbfl6svnn8jsz6ff44";
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" ];
};
"block-buffer" = rec {
crateName = "block-buffer";
version = "0.10.4";
edition = "2018";
sha256 = "0w9sa2ypmrsqqvc20nhwr75wbb5cjr4kkyhpjm1z1lv2kdicfy1h";
libName = "block_buffer";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
}
];
};
"borsh" = rec {
crateName = "borsh";
version = "1.6.0";
edition = "2018";
crateBin = [];
sha256 = "0vvsmxiksyw5fq3ap7i7f9hpdrr9hyb8vj7pxwg70dqlgjvmmnni";
authors = [
"Near Inc <hello@near.org>"
];
dependencies = [
{
name = "borsh-derive";
packageId = "borsh-derive";
optional = true;
}
];
buildDependencies = [
{
name = "cfg_aliases";
packageId = "cfg_aliases";
}
];
features = {
"ascii" = [ "dep:ascii" ];
"borsh-derive" = [ "dep:borsh-derive" ];
"bson" = [ "dep:bson" ];
"bytes" = [ "dep:bytes" ];
"default" = [ "std" ];
"derive" = [ "borsh-derive" ];
"hashbrown" = [ "dep:hashbrown" ];
"indexmap" = [ "dep:indexmap" ];
"unstable__schema" = [ "derive" "borsh-derive/schema" ];
};
resolvedDefaultFeatures = [ "borsh-derive" "derive" "std" "unstable__schema" ];
};
"borsh-derive" = rec {
crateName = "borsh-derive";
version = "1.6.0";
edition = "2018";
sha256 = "0b2ybhmhc60hdn84sgn02kv91xidl3bdfdprk120rb3am9bci1h6";
procMacro = true;
libName = "borsh_derive";
authors = [
"Near Inc <hello@nearprotocol.com>"
];
dependencies = [
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "proc-macro-crate";
packageId = "proc-macro-crate 3.4.0";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" "fold" ];
}
];
devDependencies = [
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" "fold" "parsing" ];
}
];
features = {
};
resolvedDefaultFeatures = [ "default" "schema" ];
};
"bumpalo" = rec {
crateName = "bumpalo";
version = "3.20.2";
edition = "2021";
sha256 = "1jrgxlff76k9glam0akhwpil2fr1w32gbjdf5hpipc7ld2c7h82x";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
];
features = {
"allocator-api2" = [ "dep:allocator-api2" ];
"bench_allocator_api" = [ "allocator_api" "blink-alloc/nightly" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"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 = [ "std" ];
};
"bytes" = rec {
crateName = "bytes";
version = "1.11.1";
edition = "2021";
sha256 = "0czwlhbq8z29wq0ia87yass2mzy1y0jcasjb8ghriiybnwrqfx0y";
authors = [
"Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
];
features = {
"default" = [ "std" ];
"extra-platforms" = [ "dep:extra-platforms" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "serde" "std" ];
};
"cast" = rec {
crateName = "cast";
version = "0.3.0";
edition = "2018";
sha256 = "1dbyngbyz2qkk0jn2sxil8vrz3rnpcj142y184p9l4nbl9radcip";
authors = [
"Jorge Aparicio <jorge@japaric.io>"
];
features = {
};
};
"cc" = rec {
crateName = "cc";
version = "1.2.56";
edition = "2018";
sha256 = "1chvh9g2izhqad7vzy4cc7xpdljdvqpsr6x6hv1hmyqv3mlkbgxf";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "find-msvc-tools";
packageId = "find-msvc-tools";
}
{
name = "shlex";
packageId = "shlex";
}
];
features = {
"parallel" = [ "dep:libc" "dep:jobserver" ];
};
};
"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>"
];
};
"chrono" = rec {
crateName = "chrono";
version = "0.4.43";
edition = "2021";
sha256 = "06312amlyys4kkjazl13mbxw0j2f7zxygzjkr1yk7s2sn57p9i7s";
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" ];
};
"chrono-tz" = rec {
crateName = "chrono-tz";
version = "0.8.6";
edition = "2021";
sha256 = "0vlksnmpb6rd4h55245agnfhphnpslwnq9al3aw3is43dd3f16nm";
libName = "chrono_tz";
dependencies = [
{
name = "chrono";
packageId = "chrono";
usesDefaultFeatures = false;
}
{
name = "phf";
packageId = "phf";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "chrono-tz-build";
packageId = "chrono-tz-build";
}
];
devDependencies = [
{
name = "chrono";
packageId = "chrono";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"case-insensitive" = [ "dep:uncased" "chrono-tz-build/case-insensitive" "phf/uncased" ];
"default" = [ "std" ];
"filter-by-regex" = [ "chrono-tz-build/filter-by-regex" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"chrono-tz-build" = rec {
crateName = "chrono-tz-build";
version = "0.2.1";
edition = "2021";
sha256 = "03rmzd69cn7fp0fgkjr5042b3g54s2l941afjm3001ls7kqkjgj3";
libName = "chrono_tz_build";
dependencies = [
{
name = "parse-zoneinfo";
packageId = "parse-zoneinfo";
}
{
name = "phf";
packageId = "phf";
usesDefaultFeatures = false;
}
{
name = "phf_codegen";
packageId = "phf_codegen";
usesDefaultFeatures = false;
}
];
features = {
"case-insensitive" = [ "uncased" "phf/uncased" ];
"filter-by-regex" = [ "regex" ];
"regex" = [ "dep:regex" ];
"uncased" = [ "dep:uncased" ];
};
};
"ciborium" = rec {
crateName = "ciborium";
version = "0.2.2";
edition = "2021";
sha256 = "03hgfw4674im1pdqblcp77m7rc8x2v828si5570ga5q9dzyrzrj2";
authors = [
"Nathaniel McCallum <npmccallum@profian.com>"
];
dependencies = [
{
name = "ciborium-io";
packageId = "ciborium-io";
features = [ "alloc" ];
}
{
name = "ciborium-ll";
packageId = "ciborium-ll";
}
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
features = [ "alloc" "derive" ];
}
];
features = {
"default" = [ "std" ];
"std" = [ "ciborium-io/std" "serde/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"ciborium-io" = rec {
crateName = "ciborium-io";
version = "0.2.2";
edition = "2021";
sha256 = "0my7s5g24hvp1rs1zd1cxapz94inrvqpdf1rslrvxj8618gfmbq5";
libName = "ciborium_io";
authors = [
"Nathaniel McCallum <npmccallum@profian.com>"
];
features = {
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"ciborium-ll" = rec {
crateName = "ciborium-ll";
version = "0.2.2";
edition = "2021";
sha256 = "1n8g4j5rwkfs3rzfi6g1p7ngmz6m5yxsksryzf5k72ll7mjknrjp";
libName = "ciborium_ll";
authors = [
"Nathaniel McCallum <npmccallum@profian.com>"
];
dependencies = [
{
name = "ciborium-io";
packageId = "ciborium-io";
}
{
name = "half";
packageId = "half";
usesDefaultFeatures = false;
}
];
features = {
"std" = [ "alloc" "half/std" ];
};
};
"clap" = rec {
crateName = "clap";
version = "4.5.60";
edition = "2021";
crateBin = [];
sha256 = "02h3nzznssjgp815nnbzk0r62y2iw03kdli75c233kirld6z75r7";
dependencies = [
{
name = "clap_builder";
packageId = "clap_builder";
usesDefaultFeatures = false;
}
];
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 = [ "std" ];
};
"clap_builder" = rec {
crateName = "clap_builder";
version = "4.5.60";
edition = "2021";
sha256 = "0xk8mdizvmmn6w5ij5cwhy5pbgyac4w9pfvl6nqmjl7a5hql38i4";
dependencies = [
{
name = "anstyle";
packageId = "anstyle";
}
{
name = "clap_lex";
packageId = "clap_lex";
}
];
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 = [ "std" ];
};
"clap_lex" = rec {
crateName = "clap_lex";
version = "1.0.0";
edition = "2021";
sha256 = "0c8888qi1l9sayqlv666h8s0yxn2qc6jr88v1zagk43mpjjjx0is";
};
"combine" = rec {
crateName = "combine";
version = "4.6.7";
edition = "2018";
sha256 = "1z8rh8wp59gf8k23ar010phgs0wgf5i8cx4fg01gwcnzfn5k0nms";
authors = [
"Markus Westerlind <marwes91@gmail.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
optional = true;
}
{
name = "futures-core";
packageId = "futures-core";
rename = "futures-core-03";
optional = true;
usesDefaultFeatures = false;
}
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
optional = true;
}
{
name = "tokio";
packageId = "tokio";
rename = "tokio-dep";
optional = true;
usesDefaultFeatures = false;
}
{
name = "tokio-util";
packageId = "tokio-util";
optional = true;
usesDefaultFeatures = false;
features = [ "codec" ];
}
];
devDependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "tokio";
packageId = "tokio";
rename = "tokio-dep";
features = [ "fs" "macros" "rt" "rt-multi-thread" "io-util" ];
}
];
features = {
"bytes" = [ "dep:bytes" ];
"bytes_05" = [ "dep:bytes_05" ];
"default" = [ "std" ];
"futures-03" = [ "pin-project" "std" "futures-core-03" "futures-io-03" "pin-project-lite" ];
"futures-core-03" = [ "dep:futures-core-03" ];
"futures-io-03" = [ "dep:futures-io-03" ];
"pin-project" = [ "pin-project-lite" ];
"pin-project-lite" = [ "dep:pin-project-lite" ];
"regex" = [ "dep:regex" ];
"std" = [ "memchr/std" "bytes" "alloc" ];
"tokio" = [ "tokio-dep" "tokio-util/io" "futures-core-03" "pin-project-lite" ];
"tokio-02" = [ "pin-project" "std" "tokio-02-dep" "futures-core-03" "pin-project-lite" "bytes_05" ];
"tokio-02-dep" = [ "dep:tokio-02-dep" ];
"tokio-03" = [ "pin-project" "std" "tokio-03-dep" "futures-core-03" "pin-project-lite" ];
"tokio-03-dep" = [ "dep:tokio-03-dep" ];
"tokio-dep" = [ "dep:tokio-dep" ];
"tokio-util" = [ "dep:tokio-util" ];
};
resolvedDefaultFeatures = [ "alloc" "bytes" "futures-core-03" "pin-project-lite" "std" "tokio" "tokio-dep" "tokio-util" ];
};
"const-oid" = rec {
crateName = "const-oid";
version = "0.9.6";
edition = "2021";
sha256 = "1y0jnqaq7p2wvspnx7qj76m7hjcqpz73qzvr9l2p9n2s51vr6if2";
libName = "const_oid";
authors = [
"RustCrypto Developers"
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
};
};
"core-foundation-sys" = rec {
crateName = "core-foundation-sys";
version = "0.8.7";
edition = "2018";
sha256 = "12w8j73lazxmr1z0h98hf3z623kl8ms7g07jch7n4p8f9nwlhdkp";
libName = "core_foundation_sys";
authors = [
"The Servo Project Developers"
];
features = {
"default" = [ "link" ];
};
resolvedDefaultFeatures = [ "default" "link" ];
};
"cpufeatures" = rec {
crateName = "cpufeatures";
version = "0.2.17";
edition = "2018";
sha256 = "10023dnnaghhdl70xcds12fsx2b966sxbxjq5sxs49mvxqw5ivar";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (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));
}
];
};
"crc" = rec {
crateName = "crc";
version = "3.4.0";
edition = "2021";
sha256 = "03dsq5qsv86m35ikg84l80d00wnkjm8q4pjxgac0vaqjrnhs5f2y";
authors = [
"Rui Hu <code@mrhooray.com>"
"Akhil Velagapudi <4@4khil.com>"
];
dependencies = [
{
name = "crc-catalog";
packageId = "crc-catalog";
}
];
};
"crc-catalog" = rec {
crateName = "crc-catalog";
version = "2.4.0";
edition = "2018";
sha256 = "1xg7sz82w3nxp1jfn425fvn1clvbzb3zgblmxsyqpys0dckp9lqr";
libName = "crc_catalog";
authors = [
"Akhil Velagapudi <akhilvelagapudi@gmail.com>"
];
};
"criterion" = rec {
crateName = "criterion";
version = "0.5.1";
edition = "2018";
sha256 = "0bv9ipygam3z8kk6k771gh9zi0j0lb9ir0xi1pc075ljg80jvcgj";
authors = [
"Jorge Aparicio <japaricious@gmail.com>"
"Brook Heisler <brookheisler@gmail.com>"
];
dependencies = [
{
name = "anes";
packageId = "anes";
}
{
name = "cast";
packageId = "cast";
}
{
name = "ciborium";
packageId = "ciborium";
}
{
name = "clap";
packageId = "clap";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "criterion-plot";
packageId = "criterion-plot";
}
{
name = "is-terminal";
packageId = "is-terminal";
}
{
name = "itertools";
packageId = "itertools";
}
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "oorandom";
packageId = "oorandom";
}
{
name = "plotters";
packageId = "plotters";
optional = true;
usesDefaultFeatures = false;
features = [ "svg_backend" "area_series" "line_series" ];
}
{
name = "rayon";
packageId = "rayon";
optional = true;
}
{
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 = "tinytemplate";
packageId = "tinytemplate";
}
{
name = "walkdir";
packageId = "walkdir";
}
];
features = {
"async" = [ "futures" ];
"async-std" = [ "dep:async-std" ];
"async_futures" = [ "futures/executor" "async" ];
"async_smol" = [ "smol" "async" ];
"async_std" = [ "async-std" "async" ];
"async_tokio" = [ "tokio" "async" ];
"csv" = [ "dep:csv" ];
"csv_output" = [ "csv" ];
"default" = [ "rayon" "plotters" "cargo_bench_support" ];
"futures" = [ "dep:futures" ];
"plotters" = [ "dep:plotters" ];
"rayon" = [ "dep:rayon" ];
"smol" = [ "dep:smol" ];
"stable" = [ "csv_output" "html_reports" "async_futures" "async_smol" "async_tokio" "async_std" ];
"tokio" = [ "dep:tokio" ];
};
resolvedDefaultFeatures = [ "cargo_bench_support" "default" "html_reports" "plotters" "rayon" ];
};
"criterion-plot" = rec {
crateName = "criterion-plot";
version = "0.5.0";
edition = "2018";
sha256 = "1c866xkjqqhzg4cjvg01f8w6xc1j3j7s58rdksl52skq89iq4l3b";
libName = "criterion_plot";
authors = [
"Jorge Aparicio <japaricious@gmail.com>"
"Brook Heisler <brookheisler@gmail.com>"
];
dependencies = [
{
name = "cast";
packageId = "cast";
}
{
name = "itertools";
packageId = "itertools";
}
];
};
"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-queue" = rec {
crateName = "crossbeam-queue";
version = "0.3.12";
edition = "2021";
sha256 = "059igaxckccj6ndmg45d5yf7cm4ps46c18m21afq3pwiiz1bnn0g";
libName = "crossbeam_queue";
dependencies = [
{
name = "crossbeam-utils";
packageId = "crossbeam-utils";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"nightly" = [ "crossbeam-utils/nightly" ];
"std" = [ "alloc" "crossbeam-utils/std" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "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" = rec {
crateName = "crypto-common";
version = "0.1.7";
edition = "2018";
sha256 = "02nn2rhfy7kvdkdjl457q2z0mklcvj9h662xrq6dzhfialh2kj3q";
libName = "crypto_common";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array";
features = [ "more_lengths" ];
}
{
name = "typenum";
packageId = "typenum";
}
];
features = {
"getrandom" = [ "rand_core/getrandom" ];
"rand_core" = [ "dep:rand_core" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"darling" = 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";
}
{
name = "darling_macro";
packageId = "darling_macro";
}
];
features = {
"default" = [ "suggestions" ];
"diagnostics" = [ "darling_core/diagnostics" ];
"suggestions" = [ "darling_core/suggestions" ];
};
resolvedDefaultFeatures = [ "default" "suggestions" ];
};
"darling_core" = 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_macro" = 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";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
};
"deadpool" = rec {
crateName = "deadpool";
version = "0.10.0";
edition = "2018";
sha256 = "145lq79dlc4jn7jvlcf4lb105bs3z3jy6g7d15zv7iy1g04i117v";
authors = [
"Michael P. Jung <michael.jung@terreon.de>"
];
dependencies = [
{
name = "async-trait";
packageId = "async-trait";
optional = true;
}
{
name = "deadpool-runtime";
packageId = "deadpool-runtime";
}
{
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 = {
"async-trait" = [ "dep:async-trait" ];
"default" = [ "managed" "unmanaged" ];
"managed" = [ "async-trait" ];
"rt_async-std_1" = [ "deadpool-runtime/async-std_1" ];
"rt_tokio_1" = [ "deadpool-runtime/tokio_1" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "async-trait" "managed" "rt_tokio_1" ];
};
"deadpool-redis" = rec {
crateName = "deadpool-redis";
version = "0.14.0";
edition = "2018";
sha256 = "1zqzd36bl9jpq07k907rbc408h5w6dmli7ylyshhcgcr1qdkiwin";
libName = "deadpool_redis";
authors = [
"Michael P. Jung <michael.jung@terreon.de>"
"Subeom Choi <subumm1@gmail.com>"
];
dependencies = [
{
name = "deadpool";
packageId = "deadpool";
usesDefaultFeatures = false;
features = [ "managed" ];
}
{
name = "redis";
packageId = "redis";
usesDefaultFeatures = false;
features = [ "aio" ];
}
];
devDependencies = [
{
name = "redis";
packageId = "redis";
usesDefaultFeatures = false;
features = [ "tokio-comp" ];
}
];
features = {
"cluster" = [ "redis/cluster-async" ];
"default" = [ "rt_tokio_1" ];
"rt_async-std_1" = [ "deadpool/rt_async-std_1" "redis/async-std-comp" ];
"rt_tokio_1" = [ "deadpool/rt_tokio_1" "redis/tokio-comp" ];
"serde" = [ "deadpool/serde" "serde_1" ];
"serde_1" = [ "dep:serde_1" ];
};
resolvedDefaultFeatures = [ "default" "rt_tokio_1" ];
};
"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>"
];
dependencies = [
{
name = "tokio";
packageId = "tokio";
rename = "tokio_1";
optional = true;
features = [ "time" "rt" ];
}
];
features = {
"async-std_1" = [ "dep:async-std_1" ];
"tokio_1" = [ "dep:tokio_1" ];
};
resolvedDefaultFeatures = [ "tokio_1" ];
};
"der" = rec {
crateName = "der";
version = "0.7.10";
edition = "2021";
sha256 = "1jyxacyxdx6mxbkfw99jz59dzvcd9k17rq01a7xvn1dr6wl87hg7";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "const-oid";
packageId = "const-oid";
optional = true;
}
{
name = "pem-rfc7468";
packageId = "pem-rfc7468";
optional = true;
features = [ "alloc" ];
}
{
name = "zeroize";
packageId = "zeroize";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "zeroize?/alloc" ];
"arbitrary" = [ "dep:arbitrary" "const-oid?/arbitrary" "std" ];
"bytes" = [ "dep:bytes" "alloc" ];
"derive" = [ "dep:der_derive" ];
"flagset" = [ "dep:flagset" ];
"oid" = [ "dep:const-oid" ];
"pem" = [ "dep:pem-rfc7468" "alloc" "zeroize" ];
"std" = [ "alloc" ];
"time" = [ "dep:time" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "alloc" "oid" "pem" "std" "zeroize" ];
};
"deunicode" = rec {
crateName = "deunicode";
version = "1.6.2";
edition = "2021";
sha256 = "013biy7hhy59jcbry4dqn2pf4qhaw083ksn8xxiw373wjc37imdb";
authors = [
"Kornel Lesinski <kornel@geekhood.net>"
"Amit Chowdhury <amitc97@gmail.com>"
];
features = {
"default" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" ];
};
"digest" = rec {
crateName = "digest";
version = "0.10.7";
edition = "2018";
sha256 = "14p2n6ih29x81akj097lvz7wi9b6b9hvls0lwrv7b6xwyy0s5ncy";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "block-buffer";
packageId = "block-buffer";
optional = true;
}
{
name = "const-oid";
packageId = "const-oid";
optional = true;
}
{
name = "crypto-common";
packageId = "crypto-common";
}
{
name = "subtle";
packageId = "subtle";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"blobby" = [ "dep:blobby" ];
"block-buffer" = [ "dep:block-buffer" ];
"const-oid" = [ "dep:const-oid" ];
"core-api" = [ "block-buffer" ];
"default" = [ "core-api" ];
"dev" = [ "blobby" ];
"mac" = [ "subtle" ];
"oid" = [ "const-oid" ];
"rand_core" = [ "crypto-common/rand_core" ];
"std" = [ "alloc" "crypto-common/std" ];
"subtle" = [ "dep:subtle" ];
};
resolvedDefaultFeatures = [ "alloc" "block-buffer" "const-oid" "core-api" "default" "mac" "oid" "std" "subtle" ];
};
"displaydoc" = rec {
crateName = "displaydoc";
version = "0.2.5";
edition = "2021";
sha256 = "1q0alair462j21iiqwrr21iabkfnb13d6x5w95lkdg21q2xrqdlp";
procMacro = true;
authors = [
"Jane Lusby <jlusby@yaah.dev>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
features = {
"default" = [ "std" ];
};
};
"dotenvy" = rec {
crateName = "dotenvy";
version = "0.15.7";
edition = "2018";
crateBin = [];
sha256 = "16s3n973n5aqym02692i1npb079n5mb0fwql42ikmwn8wnrrbbqs";
authors = [
"Noemi Lapresta <noemi.lapresta@gmail.com>"
"Craig Hills <chills@gmail.com>"
"Mike Piccolo <mfpiccolo@gmail.com>"
"Alice Maz <alice@alicemaz.com>"
"Sean Griffin <sean@seantheprogrammer.com>"
"Adam Sharp <adam@sharplet.me>"
"Arpad Borsos <arpad.borsos@googlemail.com>"
"Allan Zhang <al@ayz.ai>"
];
features = {
"clap" = [ "dep:clap" ];
"cli" = [ "clap" ];
};
};
"dummy" = rec {
crateName = "dummy";
version = "0.8.0";
edition = "2021";
sha256 = "0rcca3v14bhz1hpydn6qzlxdj0bm434ghha2rimab6mf2d715b0w";
procMacro = true;
authors = [
"cksac <cs.cksac@gmail.com>"
];
dependencies = [
{
name = "darling";
packageId = "darling";
usesDefaultFeatures = false;
}
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
}
{
name = "quote";
packageId = "quote";
usesDefaultFeatures = false;
}
{
name = "syn";
packageId = "syn 2.0.117";
usesDefaultFeatures = false;
}
];
};
"either" = rec {
crateName = "either";
version = "1.15.0";
edition = "2021";
sha256 = "069p1fknsmzn9llaizh77kip0pqmcwpdsykv2x30xpjyija5gis8";
authors = [
"bluss"
];
dependencies = [
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" "derive" ];
}
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"use_std" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "serde" "std" "use_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" ];
};
"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" ];
};
"etcetera" = rec {
crateName = "etcetera";
version = "0.8.0";
edition = "2018";
sha256 = "0hxrsn75dirbjhwgkdkh0pnpqrnq17ypyhjpjaypgax1hd91nv8k";
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "home";
packageId = "home";
}
{
name = "windows-sys";
packageId = "windows-sys 0.48.0";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_UI_Shell" ];
}
];
};
"event-listener" = rec {
crateName = "event-listener";
version = "2.5.3";
edition = "2018";
sha256 = "1q4w3pndc518crld6zsqvvpy9lkzwahp2zgza9kbzmmqh9gif1h2";
libName = "event_listener";
authors = [
"Stjepan Glavina <stjepang@gmail.com>"
];
};
"fake" = rec {
crateName = "fake";
version = "2.10.0";
edition = "2021";
sha256 = "1dmhv8wgl7f5ppfg9nyz17hli4xww8ljyyyg3zq967bzmyj1nf9d";
authors = [
"cksac <cs.cksac@gmail.com>"
];
dependencies = [
{
name = "chrono";
packageId = "chrono";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "deunicode";
packageId = "deunicode";
}
{
name = "dummy";
packageId = "dummy";
optional = true;
}
{
name = "rand";
packageId = "rand 0.8.5";
}
{
name = "uuid";
packageId = "uuid";
optional = true;
features = [ "v1" "v3" "v4" "v5" ];
}
];
devDependencies = [
{
name = "chrono";
packageId = "chrono";
usesDefaultFeatures = false;
features = [ "clock" ];
}
];
features = {
"always-true-rng" = [ "rand_core" ];
"bigdecimal" = [ "bigdecimal-rs" "rust_decimal" ];
"bigdecimal-rs" = [ "dep:bigdecimal-rs" ];
"bson" = [ "dep:bson" ];
"bson_oid" = [ "bson" ];
"chrono" = [ "dep:chrono" ];
"chrono-tz" = [ "dep:chrono-tz" ];
"derive" = [ "dummy" ];
"dummy" = [ "dep:dummy" ];
"geo" = [ "geo-types" "num-traits" ];
"geo-types" = [ "dep:geo-types" ];
"glam" = [ "dep:glam" ];
"http" = [ "dep:http" "url-escape" ];
"maybe-non-empty-collections" = [ "always-true-rng" ];
"num-traits" = [ "dep:num-traits" ];
"rand_core" = [ "dep:rand_core" ];
"random_color" = [ "dep:random_color" ];
"rust_decimal" = [ "dep:rust_decimal" ];
"semver" = [ "dep:semver" ];
"serde_json" = [ "dep:serde_json" ];
"time" = [ "dep:time" ];
"ulid" = [ "dep:ulid" ];
"url" = [ "dep:url" ];
"url-escape" = [ "dep:url-escape" ];
"uuid" = [ "dep:uuid" ];
"zerocopy" = [ "dep:zerocopy" ];
};
resolvedDefaultFeatures = [ "chrono" "derive" "dummy" "uuid" ];
};
"fast_chemail" = rec {
crateName = "fast_chemail";
version = "0.9.6";
edition = "2015";
sha256 = "1r79x2i7bhk8y4nv7q245dlifxryszmby4k3psm2qk321p9kjnj9";
authors = [
"Jonas Me (https://gitlab.com/vulkano)"
];
dependencies = [
{
name = "ascii_utils";
packageId = "ascii_utils";
}
];
};
"fastrand" = rec {
crateName = "fastrand";
version = "2.3.0";
edition = "2018";
sha256 = "1ghiahsw1jd68df895cy5h3gzwk30hndidn3b682zmshpgmrx41p";
authors = [
"Stjepan Glavina <stjepang@gmail.com>"
];
features = {
"default" = [ "std" ];
"getrandom" = [ "dep:getrandom" ];
"js" = [ "std" "getrandom" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"find-msvc-tools" = rec {
crateName = "find-msvc-tools";
version = "0.1.9";
edition = "2018";
sha256 = "10nmi0qdskq6l7zwxw5g56xny7hb624iki1c39d907qmfh3vrbjv";
libName = "find_msvc_tools";
};
"flume" = rec {
crateName = "flume";
version = "0.11.1";
edition = "2018";
sha256 = "15ch0slxa8sqsi6c73a0ky6vdnh48q8cxjf7rksa3243m394s3ns";
authors = [
"Joshua Barretto <joshua.s.barretto@gmail.com>"
];
dependencies = [
{
name = "futures-core";
packageId = "futures-core";
optional = true;
usesDefaultFeatures = false;
}
{
name = "futures-sink";
packageId = "futures-sink";
optional = true;
usesDefaultFeatures = false;
}
{
name = "spin";
packageId = "spin";
rename = "spin1";
features = [ "mutex" ];
}
];
features = {
"async" = [ "futures-sink" "futures-core" ];
"default" = [ "async" "select" "eventual-fairness" ];
"eventual-fairness" = [ "select" "nanorand" ];
"futures-core" = [ "dep:futures-core" ];
"futures-sink" = [ "dep:futures-sink" ];
"nanorand" = [ "dep:nanorand" ];
};
resolvedDefaultFeatures = [ "async" "futures-core" "futures-sink" ];
};
"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" ];
};
};
"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" ];
};
"funty" = rec {
crateName = "funty";
version = "2.0.0";
edition = "2018";
sha256 = "177w048bm0046qlzvp33ag3ghqkqw4ncpzcm5lq36gxf2lla7mg6";
authors = [
"myrrlyn <self@myrrlyn.dev>"
];
features = {
"default" = [ "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" "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 = [ "default" "std" ];
};
"futures-intrusive" = rec {
crateName = "futures-intrusive";
version = "0.5.0";
edition = "2018";
sha256 = "0vwm08d1pli6bdaj0i7xhk3476qlx4pll6i0w03gzdnh7lh0r4qx";
libName = "futures_intrusive";
authors = [
"Matthias Einwag <matthias.einwag@live.com>"
];
dependencies = [
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "lock_api";
packageId = "lock_api";
}
{
name = "parking_lot";
packageId = "parking_lot";
optional = true;
}
];
features = {
"alloc" = [ "futures-core/alloc" ];
"default" = [ "std" ];
"parking_lot" = [ "dep:parking_lot" ];
"std" = [ "alloc" "parking_lot" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "parking_lot" "std" ];
};
"futures-io" = rec {
crateName = "futures-io";
version = "0.3.32";
edition = "2018";
sha256 = "063pf5m6vfmyxj74447x8kx9q8zj6m9daamj4hvf49yrg9fs7jyf";
libName = "futures_io";
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "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-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" "futures-io" "futures-macro" "futures-sink" "io" "memchr" "sink" "slab" "std" ];
};
"generic-array" = rec {
crateName = "generic-array";
version = "0.14.7";
edition = "2015";
sha256 = "16lyyrzrljfq424c3n8kfwkqihlimmsg5nhshbbp48np3yjrqr45";
libName = "generic_array";
authors = [
"Bartłomiej Kamiński <fizyk20@gmail.com>"
"Aaron Trent <novacrazy@gmail.com>"
];
dependencies = [
{
name = "typenum";
packageId = "typenum";
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check";
}
];
features = {
"serde" = [ "dep:serde" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "more_lengths" ];
};
"getrandom 0.2.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 = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (target."unix" or false);
}
{
name = "wasi";
packageId = "wasi";
usesDefaultFeatures = false;
target = { target, features }: ("wasi" == target."os" or null);
}
];
features = {
"compiler_builtins" = [ "dep:compiler_builtins" ];
"core" = [ "dep:core" ];
"js" = [ "wasm-bindgen" "js-sys" ];
"js-sys" = [ "dep:js-sys" ];
"rustc-dep-of-std" = [ "compiler_builtins" "core" "libc/rustc-dep-of-std" "wasi/rustc-dep-of-std" ];
"wasm-bindgen" = [ "dep:wasm-bindgen" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"getrandom 0.3.4" = rec {
crateName = "getrandom";
version = "0.3.4";
edition = "2021";
sha256 = "1zbpvpicry9lrbjmkd4msgj3ihff1q92i334chk7pzf46xffz7c9";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ((("linux" == target."os" or null) || ("android" == target."os" or null)) && (!((("linux" == target."os" or null) && ("" == target."env" or null)) || ("custom" == target."getrandom_backend" or null) || ("linux_raw" == target."getrandom_backend" or null) || ("rdrand" == target."getrandom_backend" or null) || ("rndr" == target."getrandom_backend" or null))));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("dragonfly" == target."os" or null) || ("freebsd" == target."os" or null) || ("hurd" == target."os" or null) || ("illumos" == target."os" or null) || ("cygwin" == target."os" or null) || (("horizon" == target."os" or null) && ("arm" == target."arch" or null)));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("haiku" == target."os" or null) || ("redox" == target."os" or null) || ("nto" == target."os" or null) || ("aix" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("ios" == target."os" or null) || ("visionos" == target."os" or null) || ("watchos" == target."os" or null) || ("tvos" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("macos" == target."os" or null) || ("openbsd" == target."os" or null) || ("vita" == target."os" or null) || ("emscripten" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("netbsd" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("solaris" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("vxworks" == target."os" or null);
}
{
name = "r-efi";
packageId = "r-efi";
usesDefaultFeatures = false;
target = { target, features }: (("uefi" == target."os" or null) && ("efi_rng" == target."getrandom_backend" or null));
}
{
name = "wasip2";
packageId = "wasip2";
usesDefaultFeatures = false;
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p2" == target."env" or null));
}
];
features = {
"wasm_js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"getrandom 0.4.1" = rec {
crateName = "getrandom";
version = "0.4.1";
edition = "2024";
sha256 = "1v7fm84f2jh6x7w3bd2ncl3sw29wnb0rhg7xya1pd30i02cg77hk";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ((("linux" == target."os" or null) || ("android" == target."os" or null)) && (!((("linux" == target."os" or null) && ("" == target."env" or null)) || ("custom" == target."getrandom_backend" or null) || ("linux_raw" == target."getrandom_backend" or null) || ("rdrand" == target."getrandom_backend" or null) || ("rndr" == target."getrandom_backend" or null))));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("dragonfly" == target."os" or null) || ("freebsd" == target."os" or null) || ("hurd" == target."os" or null) || ("illumos" == target."os" or null) || ("cygwin" == target."os" or null) || (("horizon" == target."os" or null) && ("arm" == target."arch" or null)));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("haiku" == target."os" or null) || ("redox" == target."os" or null) || ("nto" == target."os" or null) || ("aix" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("ios" == target."os" or null) || ("visionos" == target."os" or null) || ("watchos" == target."os" or null) || ("tvos" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (("macos" == target."os" or null) || ("openbsd" == target."os" or null) || ("vita" == target."os" or null) || ("emscripten" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("netbsd" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("solaris" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ("vxworks" == target."os" or null);
}
{
name = "r-efi";
packageId = "r-efi";
usesDefaultFeatures = false;
target = { target, features }: (("uefi" == target."os" or null) && ("efi_rng" == target."getrandom_backend" or null));
}
{
name = "wasip2";
packageId = "wasip2";
usesDefaultFeatures = false;
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p2" == target."env" or null));
}
{
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" ];
};
};
"glob" = rec {
crateName = "glob";
version = "0.3.3";
edition = "2015";
sha256 = "106jpd3syfzjfj2k70mwm0v436qbx96wig98m4q8x071yrq35hhc";
authors = [
"The Rust Project Developers"
];
};
"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" ];
};
};
"handlebars" = rec {
crateName = "handlebars";
version = "4.5.0";
edition = "2021";
crateBin = [];
sha256 = "09dj4rk6r9ngy1ki34mppcqq4pcnlhjd02yhnf724qpkkympp9ps";
authors = [
"Ning Sun <sunng@pm.me>"
];
dependencies = [
{
name = "log";
packageId = "log";
}
{
name = "pest";
packageId = "pest";
}
{
name = "pest_derive";
packageId = "pest_derive";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "thiserror";
packageId = "thiserror";
}
];
features = {
"dir_source" = [ "walkdir" ];
"heck" = [ "dep:heck" ];
"rhai" = [ "dep:rhai" ];
"rust-embed" = [ "dep:rust-embed" ];
"script_helper" = [ "rhai" ];
"string_helpers" = [ "heck" ];
"walkdir" = [ "dep:walkdir" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"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>"
];
dependencies = [
{
name = "ahash";
packageId = "ahash 0.8.12";
optional = true;
usesDefaultFeatures = false;
}
{
name = "allocator-api2";
packageId = "allocator-api2";
optional = true;
usesDefaultFeatures = false;
features = [ "alloc" ];
}
];
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" ];
};
resolvedDefaultFeatures = [ "ahash" "allocator-api2" "default" "inline-more" ];
};
"hashbrown 0.15.5" = rec {
crateName = "hashbrown";
version = "0.15.5";
edition = "2021";
sha256 = "189qaczmjxnikm9db748xyhiw04kpmhm9xj9k9hg0sgx7pjwyacj";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "foldhash";
packageId = "foldhash";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "dep:alloc" ];
"allocator-api2" = [ "dep:allocator-api2" ];
"core" = [ "dep:core" ];
"default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
"default-hasher" = [ "dep:foldhash" ];
"equivalent" = [ "dep:equivalent" ];
"nightly" = [ "bumpalo/allocator_api" ];
"rayon" = [ "dep:rayon" ];
"rustc-dep-of-std" = [ "nightly" "core" "alloc" "rustc-internal-api" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "default-hasher" ];
};
"hashbrown 0.16.1" = rec {
crateName = "hashbrown";
version = "0.16.1";
edition = "2021";
sha256 = "004i3njw38ji3bzdp9z178ba9x3k0c1pgy8x69pj7yfppv4iq7c4";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
features = {
"alloc" = [ "dep:alloc" ];
"allocator-api2" = [ "dep:allocator-api2" ];
"core" = [ "dep:core" ];
"default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
"default-hasher" = [ "dep:foldhash" ];
"equivalent" = [ "dep:equivalent" ];
"nightly" = [ "foldhash?/nightly" "bumpalo/allocator_api" ];
"rayon" = [ "dep:rayon" ];
"rustc-dep-of-std" = [ "nightly" "core" "alloc" "rustc-internal-api" ];
"serde" = [ "dep:serde_core" "dep:serde" ];
};
};
"hashlink" = rec {
crateName = "hashlink";
version = "0.8.4";
edition = "2018";
sha256 = "1xy8agkyp0llbqk9fcffc1xblayrrywlyrm2a7v93x8zygm4y2g8";
authors = [
"kyren <kerriganw@gmail.com>"
];
dependencies = [
{
name = "hashbrown";
packageId = "hashbrown 0.14.5";
}
];
features = {
"serde" = [ "dep:serde" ];
"serde_impl" = [ "serde" ];
};
};
"heck 0.4.1" = rec {
crateName = "heck";
version = "0.4.1";
edition = "2018";
sha256 = "1a7mqsnycv5z4z5vnv1k34548jzmc0ajic7c1j8jsaspnhw5ql4m";
authors = [
"Without Boats <woboats@gmail.com>"
];
dependencies = [
{
name = "unicode-segmentation";
packageId = "unicode-segmentation";
optional = true;
}
];
features = {
"unicode" = [ "unicode-segmentation" ];
"unicode-segmentation" = [ "dep:unicode-segmentation" ];
};
resolvedDefaultFeatures = [ "default" "unicode" "unicode-segmentation" ];
};
"heck 0.5.0" = rec {
crateName = "heck";
version = "0.5.0";
edition = "2021";
sha256 = "1sjmpsdl8czyh9ywl3qcsfsq9a307dg4ni2vnlwgnzzqhc4y0113";
};
"hermit-abi" = rec {
crateName = "hermit-abi";
version = "0.5.2";
edition = "2021";
sha256 = "1744vaqkczpwncfy960j2hxrbjl1q01csm84jpd9dajbdr2yy3zw";
libName = "hermit_abi";
authors = [
"Stefan Lankes"
];
features = {
"alloc" = [ "dep:alloc" ];
"core" = [ "dep:core" ];
"rustc-dep-of-std" = [ "core" "alloc" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"hex" = rec {
crateName = "hex";
version = "0.4.3";
edition = "2018";
sha256 = "0w1a4davm1lgzpamwnba907aysmlrnygbqmfis2mqjx5m552a93z";
authors = [
"KokaKiwi <kokakiwi@kokakiwi.net>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"hkdf" = rec {
crateName = "hkdf";
version = "0.12.4";
edition = "2018";
sha256 = "1xxxzcarz151p1b858yn5skmhyrvn8fs4ivx5km3i1kjmnr8wpvv";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "hmac";
packageId = "hmac";
}
];
features = {
"std" = [ "hmac/std" ];
};
};
"hmac" = rec {
crateName = "hmac";
version = "0.12.1";
edition = "2018";
sha256 = "0pmbr069sfg76z7wsssfk5ddcqd9ncp79fyz6zcm6yn115yc6jbc";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "digest";
packageId = "digest";
features = [ "mac" ];
}
];
devDependencies = [
{
name = "digest";
packageId = "digest";
features = [ "dev" ];
}
];
features = {
"std" = [ "digest/std" ];
};
resolvedDefaultFeatures = [ "reset" ];
};
"home" = rec {
crateName = "home";
version = "0.5.12";
edition = "2024";
sha256 = "13bjyzgx6q9srnfvl43dvmhn93qc8mh5w7cylk2g13sj3i3pyqnc";
authors = [
"Brian Anderson <andersrb@gmail.com>"
];
dependencies = [
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_UI_Shell" "Win32_System_Com" ];
}
];
};
"http" = rec {
crateName = "http";
version = "0.2.12";
edition = "2018";
sha256 = "1w81s4bcbmcj9bjp7mllm8jlz6b31wzvirz8bgpzbqkpwmbvn730";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "fnv";
packageId = "fnv";
}
{
name = "itoa";
packageId = "itoa";
}
];
};
"httparse" = rec {
crateName = "httparse";
version = "1.10.1";
edition = "2018";
sha256 = "11ycd554bw2dkgw0q61xsa7a4jn1wb1xbfacmf3dbwsikvkkvgvd";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"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.1.1";
edition = "2021";
sha256 = "0hsblchsdl64q21qwrs4hvc2672jrf466zivbj1bwyv606bn8ssc";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "potential_utf";
packageId = "potential_utf";
usesDefaultFeatures = false;
features = [ "zerovec" ];
}
{
name = "yoke";
packageId = "yoke";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerofrom";
packageId = "zerofrom";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerovec";
packageId = "zerovec";
usesDefaultFeatures = false;
features = [ "derive" "yoke" ];
}
];
features = {
"alloc" = [ "serde?/alloc" "zerovec/alloc" ];
"databake" = [ "dep:databake" "zerovec/databake" ];
"serde" = [ "dep:serde" "zerovec/serde" "potential_utf/serde" "alloc" ];
};
};
"icu_locale_core" = rec {
crateName = "icu_locale_core";
version = "2.1.1";
edition = "2021";
sha256 = "1djvdc2f5ylmp1ymzv4gcnmq1s4hqfim9nxlcm173lsd01hpifpd";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "litemap";
packageId = "litemap";
usesDefaultFeatures = false;
}
{
name = "tinystr";
packageId = "tinystr";
usesDefaultFeatures = false;
}
{
name = "writeable";
packageId = "writeable";
usesDefaultFeatures = false;
}
{
name = "zerovec";
packageId = "zerovec";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "litemap/alloc" "tinystr/alloc" "writeable/alloc" "serde?/alloc" ];
"databake" = [ "dep:databake" "alloc" ];
"serde" = [ "dep:serde" "tinystr/serde" ];
"zerovec" = [ "dep:zerovec" "tinystr/zerovec" ];
};
resolvedDefaultFeatures = [ "zerovec" ];
};
"icu_normalizer" = rec {
crateName = "icu_normalizer";
version = "2.1.1";
edition = "2021";
sha256 = "16dmn5596la2qm0r3vih0bzjfi0vx9a20yqjha6r1y3vnql8hv2z";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "icu_collections";
packageId = "icu_collections";
usesDefaultFeatures = false;
}
{
name = "icu_normalizer_data";
packageId = "icu_normalizer_data";
optional = true;
usesDefaultFeatures = false;
}
{
name = "icu_properties";
packageId = "icu_properties";
optional = true;
usesDefaultFeatures = false;
}
{
name = "icu_provider";
packageId = "icu_provider";
usesDefaultFeatures = false;
}
{
name = "smallvec";
packageId = "smallvec";
usesDefaultFeatures = false;
}
{
name = "zerovec";
packageId = "zerovec";
usesDefaultFeatures = false;
}
];
features = {
"compiled_data" = [ "dep:icu_normalizer_data" "icu_properties?/compiled_data" "icu_provider/baked" ];
"datagen" = [ "serde" "dep:databake" "icu_properties" "icu_collections/databake" "zerovec/databake" "icu_properties?/datagen" "icu_provider/export" ];
"default" = [ "compiled_data" "utf8_iter" "utf16_iter" ];
"icu_properties" = [ "dep:icu_properties" ];
"serde" = [ "dep:serde" "icu_collections/serde" "zerovec/serde" "icu_properties?/serde" "icu_provider/serde" ];
"utf16_iter" = [ "dep:utf16_iter" "dep:write16" ];
"utf8_iter" = [ "dep:utf8_iter" ];
};
resolvedDefaultFeatures = [ "compiled_data" ];
};
"icu_normalizer_data" = rec {
crateName = "icu_normalizer_data";
version = "2.1.1";
edition = "2021";
sha256 = "02jnzizg6q75m41l6c13xc7nkc5q8yr1b728dcgfhpzw076wrvbs";
authors = [
"The ICU4X Project Developers"
];
};
"icu_properties" = rec {
crateName = "icu_properties";
version = "2.1.2";
edition = "2021";
sha256 = "1v3lbmhhi7i6jgw51ikjb1p50qh5rb67grlkdnkc63l7zq1gq2q2";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "icu_collections";
packageId = "icu_collections";
usesDefaultFeatures = false;
}
{
name = "icu_locale_core";
packageId = "icu_locale_core";
usesDefaultFeatures = false;
features = [ "zerovec" ];
}
{
name = "icu_properties_data";
packageId = "icu_properties_data";
optional = true;
usesDefaultFeatures = false;
}
{
name = "icu_provider";
packageId = "icu_provider";
usesDefaultFeatures = false;
}
{
name = "zerotrie";
packageId = "zerotrie";
usesDefaultFeatures = false;
features = [ "yoke" "zerofrom" ];
}
{
name = "zerovec";
packageId = "zerovec";
usesDefaultFeatures = false;
features = [ "derive" "yoke" ];
}
];
features = {
"alloc" = [ "zerovec/alloc" "icu_collections/alloc" "serde?/alloc" ];
"compiled_data" = [ "dep:icu_properties_data" "icu_provider/baked" ];
"datagen" = [ "serde" "dep:databake" "zerovec/databake" "icu_collections/databake" "icu_locale_core/databake" "zerotrie/databake" "icu_provider/export" ];
"default" = [ "compiled_data" ];
"serde" = [ "dep:serde" "icu_locale_core/serde" "zerovec/serde" "icu_collections/serde" "icu_provider/serde" "zerotrie/serde" ];
"unicode_bidi" = [ "dep:unicode-bidi" ];
};
resolvedDefaultFeatures = [ "compiled_data" ];
};
"icu_properties_data" = rec {
crateName = "icu_properties_data";
version = "2.1.2";
edition = "2021";
sha256 = "1bvpkh939rgzrjfdb7hz47v4wijngk0snmcgrnpwc9fpz162jv31";
authors = [
"The ICU4X Project Developers"
];
};
"icu_provider" = rec {
crateName = "icu_provider";
version = "2.1.1";
edition = "2021";
sha256 = "0576b7dizgyhpfa74kacv86y4g1p7v5ffd6c56kf1q82rvq2r5l5";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "icu_locale_core";
packageId = "icu_locale_core";
usesDefaultFeatures = false;
}
{
name = "writeable";
packageId = "writeable";
optional = true;
usesDefaultFeatures = false;
}
{
name = "yoke";
packageId = "yoke";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerofrom";
packageId = "zerofrom";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerotrie";
packageId = "zerotrie";
optional = true;
usesDefaultFeatures = false;
}
{
name = "zerovec";
packageId = "zerovec";
usesDefaultFeatures = false;
features = [ "derive" ];
}
];
features = {
"alloc" = [ "icu_locale_core/alloc" "serde?/alloc" "yoke/alloc" "zerofrom/alloc" "zerovec/alloc" "zerotrie?/alloc" "dep:stable_deref_trait" "dep:writeable" ];
"baked" = [ "dep:zerotrie" "dep:writeable" ];
"deserialize_bincode_1" = [ "serde" "dep:bincode" "std" ];
"deserialize_json" = [ "serde" "dep:serde_json" ];
"deserialize_postcard_1" = [ "serde" "dep:postcard" ];
"export" = [ "serde" "dep:erased-serde" "dep:databake" "std" "sync" "dep:postcard" "zerovec/databake" ];
"logging" = [ "dep:log" ];
"serde" = [ "dep:serde" "yoke/serde" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "baked" ];
};
"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" "std" ];
};
"idna_adapter" = rec {
crateName = "idna_adapter";
version = "1.2.1";
edition = "2021";
sha256 = "0i0339pxig6mv786nkqcxnwqa87v4m94b2653f6k3aj0jmhfkjis";
authors = [
"The rust-url developers"
];
dependencies = [
{
name = "icu_normalizer";
packageId = "icu_normalizer";
usesDefaultFeatures = false;
}
{
name = "icu_properties";
packageId = "icu_properties";
usesDefaultFeatures = false;
}
];
features = {
"compiled_data" = [ "icu_normalizer/compiled_data" "icu_properties/compiled_data" ];
};
resolvedDefaultFeatures = [ "compiled_data" ];
};
"indexmap" = rec {
crateName = "indexmap";
version = "2.13.0";
edition = "2021";
sha256 = "05qh5c4h2hrnyypphxpwflk45syqbzvqsvvyxg43mp576w2ff53p";
dependencies = [
{
name = "equivalent";
packageId = "equivalent";
usesDefaultFeatures = false;
}
{
name = "hashbrown";
packageId = "hashbrown 0.16.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" ];
};
"is-terminal" = rec {
crateName = "is-terminal";
version = "0.4.17";
edition = "2018";
sha256 = "0ilfr9n31m0k6fsm3gvfrqaa62kbzkjqpwcd9mc46klfig1w2h1n";
libName = "is_terminal";
authors = [
"softprops <d.tangren@gmail.com>"
"Dan Gohman <dev@sunfishcode.online>"
];
dependencies = [
{
name = "hermit-abi";
packageId = "hermit-abi";
target = { target, features }: ("hermit" == target."os" or null);
}
{
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_Storage_FileSystem" "Win32_System_Console" ];
}
];
devDependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: ((target."unix" or false) || ("wasi" == target."os" or null));
}
];
};
"itertools" = 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" ];
};
"itoa" = rec {
crateName = "itoa";
version = "1.0.17";
edition = "2021";
sha256 = "1lh93xydrdn1g9x547bd05g0d3hra7pd1k4jfd2z1pl1h5hwdv4j";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"no-panic" = [ "dep:no-panic" ];
};
};
"js-sys" = rec {
crateName = "js-sys";
version = "0.3.87";
edition = "2021";
sha256 = "08gvld8jlhasnkrm719jczypwkdzggmj5k3daxccgbnsh4iqdw4k";
libName = "js_sys";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "once_cell";
packageId = "once_cell";
usesDefaultFeatures = false;
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "unsafe-eval" ];
"std" = [ "wasm-bindgen/std" ];
};
resolvedDefaultFeatures = [ "default" "std" "unsafe-eval" ];
};
"lazy_static" = rec {
crateName = "lazy_static";
version = "1.5.0";
edition = "2015";
sha256 = "1zk6dqqni0193xg6iijh7i3i44sryglwgvx20spdvwk3r6sbrlmv";
authors = [
"Marvin Löbel <loebel.marvin@gmail.com>"
];
dependencies = [
{
name = "spin";
packageId = "spin";
optional = true;
usesDefaultFeatures = false;
features = [ "once" ];
}
];
features = {
"spin" = [ "dep:spin" ];
"spin_no_std" = [ "spin" ];
};
resolvedDefaultFeatures = [ "spin" "spin_no_std" ];
};
"leb128fmt" = rec {
crateName = "leb128fmt";
version = "0.1.0";
edition = "2021";
sha256 = "1chxm1484a0bly6anh6bd7a99sn355ymlagnwj3yajafnpldkv89";
authors = [
"Bryant Luk <code@bryantluk.com>"
];
features = {
"default" = [ "std" ];
};
};
"libc" = rec {
crateName = "libc";
version = "0.2.182";
edition = "2021";
sha256 = "04k1w1mq9f4cxv520dbr5xw1i7xkbc9fcrvaggyjy25jdkdvl038";
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" "std" ];
};
"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.12";
edition = "2021";
sha256 = "05h6fb2y05h74zwaafmnf7gv3bxilzp7syqlfzw524w55kh9a2rx";
authors = [
"4lDO2 <4lDO2@protonmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "libc";
packageId = "libc";
}
{
name = "redox_syscall";
packageId = "redox_syscall 0.7.1";
optional = true;
}
];
features = {
"default" = [ "call" "std" "redox_syscall" ];
"ioslice" = [ "dep:ioslice" ];
"mkns" = [ "ioslice" ];
"redox_syscall" = [ "dep:redox_syscall" ];
};
resolvedDefaultFeatures = [ "call" "default" "redox_syscall" "std" ];
};
"libsqlite3-sys" = rec {
crateName = "libsqlite3-sys";
version = "0.27.0";
edition = "2021";
links = "sqlite3";
sha256 = "05pp60ncrmyjlxxjj187808jkvpxm06w5lvvdwwvxd2qrmnj4kng";
libName = "libsqlite3_sys";
authors = [
"The rusqlite developers"
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
optional = true;
}
{
name = "pkg-config";
packageId = "pkg-config";
optional = true;
}
{
name = "vcpkg";
packageId = "vcpkg";
optional = true;
}
];
features = {
"bindgen" = [ "dep:bindgen" ];
"buildtime_bindgen" = [ "bindgen" "pkg-config" "vcpkg" ];
"bundled" = [ "cc" "bundled_bindings" ];
"bundled-sqlcipher" = [ "bundled" ];
"bundled-sqlcipher-vendored-openssl" = [ "bundled-sqlcipher" "openssl-sys/vendored" ];
"bundled-windows" = [ "cc" "bundled_bindings" ];
"cc" = [ "dep:cc" ];
"default" = [ "min_sqlite_version_3_14_0" ];
"loadable_extension" = [ "prettyplease" "quote" "syn" ];
"min_sqlite_version_3_14_0" = [ "pkg-config" "vcpkg" ];
"openssl-sys" = [ "dep:openssl-sys" ];
"pkg-config" = [ "dep:pkg-config" ];
"prettyplease" = [ "dep:prettyplease" ];
"preupdate_hook" = [ "buildtime_bindgen" ];
"quote" = [ "dep:quote" ];
"session" = [ "preupdate_hook" "buildtime_bindgen" ];
"syn" = [ "dep:syn" ];
"vcpkg" = [ "dep:vcpkg" ];
};
resolvedDefaultFeatures = [ "bundled" "bundled_bindings" "cc" "pkg-config" "unlock_notify" "vcpkg" ];
};
"linux-raw-sys" = rec {
crateName = "linux-raw-sys";
version = "0.11.0";
edition = "2021";
sha256 = "0fghx0nn8nvbz5yzgizfcwd6ap2pislp68j8c1bwyr6sacxkq7fz";
libName = "linux_raw_sys";
authors = [
"Dan Gohman <dev@sunfishcode.online>"
];
features = {
"core" = [ "dep:core" ];
"default" = [ "std" "general" "errno" ];
"rustc-dep-of-std" = [ "core" "no_std" ];
};
resolvedDefaultFeatures = [ "auxvec" "elf" "errno" "general" "ioctl" "no_std" ];
};
"litemap" = rec {
crateName = "litemap";
version = "0.8.1";
edition = "2021";
sha256 = "0xsy8pfp9s802rsj1bq2ys2kbk1g36w5dr3gkfip7gphb5x60wv3";
authors = [
"The ICU4X Project Developers"
];
features = {
"databake" = [ "dep:databake" ];
"default" = [ "alloc" ];
"serde" = [ "dep:serde_core" "alloc" ];
"testing" = [ "alloc" ];
"yoke" = [ "dep:yoke" ];
};
};
"lock_api" = rec {
crateName = "lock_api";
version = "0.4.14";
edition = "2021";
sha256 = "0rg9mhx7vdpajfxvdjmgmlyrn20ligzqvn8ifmaz7dc79gkrjhr2";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "scopeguard";
packageId = "scopeguard";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "atomic_usize" ];
"owning_ref" = [ "dep:owning_ref" ];
"serde" = [ "dep:serde" ];
};
resolvedDefaultFeatures = [ "atomic_usize" "default" ];
};
"log" = rec {
crateName = "log";
version = "0.4.29";
edition = "2021";
sha256 = "15q8j9c8g5zpkcw0hnd6cf2z7fxqnvsjh3rw5mv5q10r83i34l2y";
authors = [
"The Rust Project Developers"
];
features = {
"kv_serde" = [ "kv_std" "value-bag/serde" "serde" ];
"kv_std" = [ "std" "kv" "value-bag/error" ];
"kv_sval" = [ "kv" "value-bag/sval" "sval" "sval_ref" ];
"kv_unstable" = [ "kv" "value-bag" ];
"kv_unstable_serde" = [ "kv_serde" "kv_unstable_std" ];
"kv_unstable_std" = [ "kv_std" "kv_unstable" ];
"kv_unstable_sval" = [ "kv_sval" "kv_unstable" ];
"serde" = [ "serde_core" ];
"serde_core" = [ "dep:serde_core" ];
"sval" = [ "dep:sval" ];
"sval_ref" = [ "dep:sval_ref" ];
"value-bag" = [ "dep:value-bag" ];
};
};
"md-5" = rec {
crateName = "md-5";
version = "0.10.6";
edition = "2018";
sha256 = "1kvq5rnpm4fzwmyv5nmnxygdhhb2369888a06gdc9pxyrzh7x7nq";
libName = "md5";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "digest";
packageId = "digest";
}
];
devDependencies = [
{
name = "digest";
packageId = "digest";
features = [ "dev" ];
}
];
features = {
"asm" = [ "md5-asm" ];
"default" = [ "std" ];
"md5-asm" = [ "dep:md5-asm" ];
"oid" = [ "digest/oid" ];
"std" = [ "digest/std" ];
};
};
"memchr" = rec {
crateName = "memchr";
version = "2.8.0";
edition = "2021";
sha256 = "0y9zzxcqxvdqg6wyag7vc3h0blhdn7hkq164bxyx2vph8zs5ijpq";
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" ];
};
"mime" = rec {
crateName = "mime";
version = "0.3.17";
edition = "2015";
sha256 = "16hkibgvb9klh0w0jk5crr5xv90l3wlf77ggymzjmvl1818vnxv8";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
};
"minimal-lexical" = rec {
crateName = "minimal-lexical";
version = "0.2.1";
edition = "2018";
sha256 = "16ppc5g84aijpri4jzv14rvcnslvlpphbszc7zzp6vfkddf4qdb8";
libName = "minimal_lexical";
authors = [
"Alex Huszagh <ahuszagh@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"mio" = rec {
crateName = "mio";
version = "1.1.1";
edition = "2021";
sha256 = "1z2phpalqbdgihrcjp8y09l3kgq6309jnhnr6h11l9s7mnqcm6x6";
authors = [
"Carl Lerche <me@carllerche.com>"
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: ("hermit" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
target = { target, features }: ("wasi" == target."os" or null);
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "wasi";
packageId = "wasi";
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" ];
};
"multer" = rec {
crateName = "multer";
version = "2.1.0";
edition = "2018";
sha256 = "1hjiphaypj3phqaj5igrzcia9xfmf4rr4ddigbh8zzb96k1bvb01";
authors = [
"Rousan Ali <hello@rousan.io>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
}
{
name = "encoding_rs";
packageId = "encoding_rs";
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
}
{
name = "http";
packageId = "http";
}
{
name = "httparse";
packageId = "httparse";
}
{
name = "log";
packageId = "log";
}
{
name = "memchr";
packageId = "memchr";
}
{
name = "mime";
packageId = "mime";
}
{
name = "spin";
packageId = "spin";
usesDefaultFeatures = false;
features = [ "spin_mutex" ];
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check";
}
];
features = {
"all" = [ "json" ];
"json" = [ "serde" "serde_json" ];
"serde" = [ "dep:serde" ];
"serde_json" = [ "dep:serde_json" ];
"tokio" = [ "dep:tokio" ];
"tokio-io" = [ "tokio" "tokio-util" ];
"tokio-util" = [ "dep:tokio-util" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"nom" = rec {
crateName = "nom";
version = "7.1.3";
edition = "2018";
sha256 = "0jha9901wxam390jcf5pfa0qqfrgh8li787jx2ip0yk5b8y9hwyj";
authors = [
"contact@geoffroycouprie.com"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "minimal-lexical";
packageId = "minimal-lexical";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" "memchr/std" "minimal-lexical/std" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"num-bigint-dig" = rec {
crateName = "num-bigint-dig";
version = "0.8.6";
edition = "2021";
sha256 = "1dxh3d8pzjc5k0kpy8gy2qhhhqs7zw8a7m564zl3ib8gcjkdsqg6";
libName = "num_bigint_dig";
authors = [
"dignifiedquire <dignifiedquire@gmail.com>"
"The Rust Project Developers"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
usesDefaultFeatures = false;
features = [ "spin_no_std" ];
}
{
name = "libm";
packageId = "libm";
}
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
features = [ "i128" ];
}
{
name = "num-iter";
packageId = "num-iter";
usesDefaultFeatures = false;
}
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
features = [ "i128" ];
}
{
name = "rand";
packageId = "rand 0.8.5";
optional = true;
usesDefaultFeatures = false;
}
{
name = "smallvec";
packageId = "smallvec";
usesDefaultFeatures = false;
}
{
name = "zeroize";
packageId = "zeroize";
optional = true;
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "rand";
packageId = "rand 0.8.5";
features = [ "small_rng" ];
}
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"default" = [ "std" "u64_digit" ];
"fuzz" = [ "arbitrary" "smallvec/arbitrary" ];
"prime" = [ "rand/std_rng" ];
"rand" = [ "dep:rand" ];
"serde" = [ "dep:serde" ];
"std" = [ "num-integer/std" "num-traits/std" "smallvec/write" "rand/std" "serde/std" ];
"zeroize" = [ "dep:zeroize" ];
};
resolvedDefaultFeatures = [ "i128" "prime" "rand" "u64_digit" "zeroize" ];
};
"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 = [ "i128" ];
};
"num-iter" = rec {
crateName = "num-iter";
version = "0.1.45";
edition = "2018";
sha256 = "1gzm7vc5g9qsjjl3bqk9rz1h6raxhygbrcpbfl04swlh0i506a8l";
libName = "num_iter";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
features = [ "i128" ];
}
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
features = [ "i128" ];
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg";
}
];
features = {
"default" = [ "std" ];
"std" = [ "num-integer/std" "num-traits/std" ];
};
};
"num-traits" = rec {
crateName = "num-traits";
version = "0.2.19";
edition = "2021";
sha256 = "0h984rhdkkqd4ny9cif7y2azl3xdfb7768hb9irhpsch4q3gq787";
libName = "num_traits";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "libm";
packageId = "libm";
optional = true;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg";
}
];
features = {
"default" = [ "std" ];
"libm" = [ "dep:libm" ];
};
resolvedDefaultFeatures = [ "default" "i128" "libm" "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));
}
];
};
"once_cell" = rec {
crateName = "once_cell";
version = "1.21.3";
edition = "2021";
sha256 = "0b9x77lb9f1j6nqgf5aka4s2qj0nly176bpbrv6f9iakk5ff3xa2";
authors = [
"Aleksey Kladov <aleksey.kladov@gmail.com>"
];
features = {
"alloc" = [ "race" ];
"atomic-polyfill" = [ "critical-section" ];
"critical-section" = [ "dep:critical-section" "portable-atomic" ];
"default" = [ "std" ];
"parking_lot" = [ "dep:parking_lot_core" ];
"portable-atomic" = [ "dep:portable-atomic" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "race" "std" ];
};
"oorandom" = rec {
crateName = "oorandom";
version = "11.1.5";
edition = "2018";
sha256 = "07mlf13z453fq01qff38big1lh83j8l6aaglf63ksqzzqxc0yyfn";
authors = [
"Simon Heath <icefox@dreamquest.io>"
];
};
"parking_lot" = 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";
}
];
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" = 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" ];
};
};
"parse-zoneinfo" = rec {
crateName = "parse-zoneinfo";
version = "0.3.1";
edition = "2021";
sha256 = "093cs8slbd6kyfi6h12isz0mnaayf5ha8szri1xrbqj4inqhaahz";
libName = "parse_zoneinfo";
dependencies = [
{
name = "regex";
packageId = "regex";
usesDefaultFeatures = false;
features = [ "std" "unicode-perl" ];
}
];
};
"paste" = rec {
crateName = "paste";
version = "1.0.15";
edition = "2018";
sha256 = "02pxffpdqkapy292harq6asfjvadgp1s005fip9ljfsn9fvxgh2p";
procMacro = true;
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
};
"pem-rfc7468" = rec {
crateName = "pem-rfc7468";
version = "0.7.0";
edition = "2021";
sha256 = "04l4852scl4zdva31c1z6jafbak0ni5pi0j38ml108zwzjdrrcw8";
libName = "pem_rfc7468";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "base64ct";
packageId = "base64ct";
}
];
features = {
"alloc" = [ "base64ct/alloc" ];
"std" = [ "alloc" "base64ct/std" ];
};
resolvedDefaultFeatures = [ "alloc" ];
};
"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" ];
};
"pest" = rec {
crateName = "pest";
version = "2.8.6";
edition = "2021";
sha256 = "0qm6kpqsbn2p6vkd7v4j3g7wsjby2ip6di1h6kx7vlq921h8r170";
authors = [
"DragoÈ™ Tiselice <dragostiselice@gmail.com>"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
optional = true;
}
{
name = "ucd-trie";
packageId = "ucd-trie";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "memchr" ];
"memchr" = [ "dep:memchr" ];
"miette-error" = [ "std" "pretty-print" "dep:miette" ];
"pretty-print" = [ "dep:serde" "dep:serde_json" ];
"std" = [ "ucd-trie/std" ];
};
resolvedDefaultFeatures = [ "default" "memchr" "std" ];
};
"pest_derive" = rec {
crateName = "pest_derive";
version = "2.8.6";
edition = "2021";
sha256 = "0xzysvcyfs0pkn2801rg811y83jx2rvpqnjxs47c3ri1xbqqdx0i";
procMacro = true;
authors = [
"DragoÈ™ Tiselice <dragostiselice@gmail.com>"
];
dependencies = [
{
name = "pest";
packageId = "pest";
usesDefaultFeatures = false;
}
{
name = "pest_generator";
packageId = "pest_generator";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"grammar-extras" = [ "pest_generator/grammar-extras" ];
"not-bootstrap-in-src" = [ "pest_generator/not-bootstrap-in-src" ];
"std" = [ "pest/std" "pest_generator/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"pest_generator" = rec {
crateName = "pest_generator";
version = "2.8.6";
edition = "2021";
sha256 = "0kzrcik2ww0qh84jlv8xqc0zmzgl3xy41vf1cfli1chkgdjc8h40";
authors = [
"DragoÈ™ Tiselice <dragostiselice@gmail.com>"
];
dependencies = [
{
name = "pest";
packageId = "pest";
usesDefaultFeatures = false;
}
{
name = "pest_meta";
packageId = "pest_meta";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
}
];
features = {
"default" = [ "std" ];
"grammar-extras" = [ "pest_meta/grammar-extras" ];
"not-bootstrap-in-src" = [ "pest_meta/not-bootstrap-in-src" ];
"std" = [ "pest/std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"pest_meta" = rec {
crateName = "pest_meta";
version = "2.8.6";
edition = "2021";
sha256 = "08126skq2lxysinp6v917niszhnnh6d6a9kg2i0a28b0sdlmr0c9";
authors = [
"DragoÈ™ Tiselice <dragostiselice@gmail.com>"
];
dependencies = [
{
name = "pest";
packageId = "pest";
}
];
buildDependencies = [
{
name = "sha2";
packageId = "sha2";
usesDefaultFeatures = false;
}
];
features = {
"not-bootstrap-in-src" = [ "dep:cargo" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"phf" = rec {
crateName = "phf";
version = "0.11.3";
edition = "2021";
sha256 = "0y6hxp1d48rx2434wgi5g8j1pr8s5jja29ha2b65435fh057imhz";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "phf_shared";
packageId = "phf_shared";
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" ];
};
};
"phf_codegen" = 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";
}
{
name = "phf_shared";
packageId = "phf_shared";
}
];
};
"phf_generator" = 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";
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand 0.8.5";
usesDefaultFeatures = false;
features = [ "small_rng" ];
}
];
features = {
"criterion" = [ "dep:criterion" ];
};
};
"phf_shared" = rec {
crateName = "phf_shared";
version = "0.11.3";
edition = "2021";
sha256 = "1rallyvh28jqd9i916gk5gk2igdmzlgvv5q0l3xbf3m6y8pbrsk7";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "siphasher";
packageId = "siphasher";
}
];
features = {
"default" = [ "std" ];
"uncased" = [ "dep:uncased" ];
"unicase" = [ "dep:unicase" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"pin-project-lite" = rec {
crateName = "pin-project-lite";
version = "0.2.16";
edition = "2018";
sha256 = "16wzc7z7dfkf9bmjin22f5282783f6mdksnr0nv0j5ym5f9gyg1v";
libName = "pin_project_lite";
};
"pkcs1" = rec {
crateName = "pkcs1";
version = "0.7.5";
edition = "2021";
sha256 = "0zz4mil3nchnxljdfs2k5ab1cjqn7kq5lqp62n9qfix01zqvkzy8";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "der";
packageId = "der";
features = [ "oid" ];
}
{
name = "pkcs8";
packageId = "pkcs8";
optional = true;
usesDefaultFeatures = false;
}
{
name = "spki";
packageId = "spki";
}
];
features = {
"alloc" = [ "der/alloc" "zeroize" "pkcs8?/alloc" ];
"pem" = [ "alloc" "der/pem" "pkcs8?/pem" ];
"pkcs8" = [ "dep:pkcs8" ];
"std" = [ "der/std" "alloc" ];
"zeroize" = [ "der/zeroize" ];
};
resolvedDefaultFeatures = [ "alloc" "pem" "pkcs8" "std" "zeroize" ];
};
"pkcs8" = rec {
crateName = "pkcs8";
version = "0.10.2";
edition = "2021";
sha256 = "1dx7w21gvn07azszgqd3ryjhyphsrjrmq5mmz1fbxkj5g0vv4l7r";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "der";
packageId = "der";
features = [ "oid" ];
}
{
name = "spki";
packageId = "spki";
}
];
features = {
"3des" = [ "encryption" "pkcs5/3des" ];
"alloc" = [ "der/alloc" "der/zeroize" "spki/alloc" ];
"des-insecure" = [ "encryption" "pkcs5/des-insecure" ];
"encryption" = [ "alloc" "pkcs5/alloc" "pkcs5/pbes2" "rand_core" ];
"getrandom" = [ "rand_core/getrandom" ];
"pem" = [ "alloc" "der/pem" "spki/pem" ];
"pkcs5" = [ "dep:pkcs5" ];
"rand_core" = [ "dep:rand_core" ];
"sha1-insecure" = [ "encryption" "pkcs5/sha1-insecure" ];
"std" = [ "alloc" "der/std" "spki/std" ];
"subtle" = [ "dep:subtle" ];
};
resolvedDefaultFeatures = [ "alloc" "pem" "std" ];
};
"pkg-config" = rec {
crateName = "pkg-config";
version = "0.3.32";
edition = "2018";
sha256 = "0k4h3gnzs94sjb2ix6jyksacs52cf1fanpwsmlhjnwrdnp8dppby";
libName = "pkg_config";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
};
"pleme-codegen" = rec {
crateName = "pleme-codegen";
version = "0.1.0";
edition = "2021";
src = lib.cleanSourceWith { filter = sourceFilter; src = ./.; };
procMacro = true;
libName = "pleme_codegen";
authors = [
"Pleme Development Team"
];
dependencies = [
{
name = "async-graphql";
packageId = "async-graphql";
features = [ "chrono" "uuid" ];
}
{
name = "async-trait";
packageId = "async-trait";
}
{
name = "chrono";
packageId = "chrono";
}
{
name = "chrono-tz";
packageId = "chrono-tz";
}
{
name = "deadpool-redis";
packageId = "deadpool-redis";
}
{
name = "heck";
packageId = "heck 0.4.1";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "rand";
packageId = "rand 0.8.5";
}
{
name = "redis";
packageId = "redis";
features = [ "tokio-comp" ];
}
{
name = "regex";
packageId = "regex";
}
{
name = "rust_decimal";
packageId = "rust_decimal";
features = [ "serde" ];
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "sqlx";
packageId = "sqlx";
features = [ "chrono" "postgres" "runtime-tokio-rustls" "uuid" ];
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "extra-traits" "full" ];
}
{
name = "thiserror";
packageId = "thiserror";
}
{
name = "tracing";
packageId = "tracing";
}
{
name = "uuid";
packageId = "uuid";
}
];
devDependencies = [
{
name = "chrono";
packageId = "chrono";
features = [ "serde" ];
}
{
name = "criterion";
packageId = "criterion";
features = [ "html_reports" ];
}
{
name = "deadpool-redis";
packageId = "deadpool-redis";
}
{
name = "fake";
packageId = "fake";
features = [ "chrono" "derive" "uuid" ];
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "proptest";
packageId = "proptest";
}
{
name = "quote";
packageId = "quote";
}
{
name = "rust_decimal";
packageId = "rust_decimal";
features = [ "serde" ];
}
{
name = "sqlx";
packageId = "sqlx";
features = [ "chrono" "json" "postgres" "runtime-tokio-rustls" "rust_decimal" "uuid" ];
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "extra-traits" "full" "visit" ];
}
{
name = "tempfile";
packageId = "tempfile";
}
{
name = "thiserror";
packageId = "thiserror";
}
{
name = "tokio";
packageId = "tokio";
features = [ "full" ];
}
{
name = "tokio-test";
packageId = "tokio-test";
}
{
name = "trybuild";
packageId = "trybuild";
}
{
name = "uuid";
packageId = "uuid";
features = [ "v4" ];
}
];
features = {
"default" = [ "brazilian" "graphql" "database" ];
};
resolvedDefaultFeatures = [ "brazilian" "database" "default" "graphql" "service" ];
};
"plotters" = rec {
crateName = "plotters";
version = "0.3.7";
edition = "2018";
sha256 = "0ixpy9svpmr2rkzkxvvdpysjjky4gw104d73n7pi2jbs7m06zsss";
authors = [
"Hao Hou <haohou302@gmail.com>"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits";
}
{
name = "plotters-backend";
packageId = "plotters-backend";
}
{
name = "plotters-svg";
packageId = "plotters-svg";
optional = true;
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
target = { target, features }: (("wasm32" == target."arch" or null) && (!("wasi" == target."os" or null)));
}
{
name = "web-sys";
packageId = "web-sys";
target = { target, features }: (("wasm32" == target."arch" or null) && (!("wasi" == target."os" or null)));
features = [ "Document" "DomRect" "Element" "HtmlElement" "Node" "Window" "HtmlCanvasElement" "CanvasRenderingContext2d" ];
}
];
features = {
"ab_glyph" = [ "dep:ab_glyph" "once_cell" ];
"all_elements" = [ "errorbar" "candlestick" "boxplot" "histogram" ];
"all_series" = [ "area_series" "line_series" "point_series" "surface_series" ];
"bitmap_backend" = [ "plotters-bitmap" ];
"bitmap_encoder" = [ "plotters-bitmap/image_encoder" ];
"bitmap_gif" = [ "plotters-bitmap/gif_backend" ];
"chrono" = [ "dep:chrono" ];
"datetime" = [ "chrono" ];
"default" = [ "bitmap_backend" "bitmap_encoder" "bitmap_gif" "svg_backend" "chrono" "ttf" "image" "deprecated_items" "all_series" "all_elements" "full_palette" "colormaps" ];
"evcxr" = [ "svg_backend" ];
"evcxr_bitmap" = [ "evcxr" "bitmap_backend" "plotters-svg/bitmap_encoder" ];
"font-kit" = [ "dep:font-kit" ];
"fontconfig-dlopen" = [ "font-kit/source-fontconfig-dlopen" ];
"image" = [ "dep:image" ];
"lazy_static" = [ "dep:lazy_static" ];
"once_cell" = [ "dep:once_cell" ];
"pathfinder_geometry" = [ "dep:pathfinder_geometry" ];
"plotters-bitmap" = [ "dep:plotters-bitmap" ];
"plotters-svg" = [ "dep:plotters-svg" ];
"svg_backend" = [ "plotters-svg" ];
"ttf" = [ "font-kit" "ttf-parser" "lazy_static" "pathfinder_geometry" ];
"ttf-parser" = [ "dep:ttf-parser" ];
};
resolvedDefaultFeatures = [ "area_series" "line_series" "plotters-svg" "svg_backend" ];
};
"plotters-backend" = rec {
crateName = "plotters-backend";
version = "0.3.7";
edition = "2018";
sha256 = "0ahpliim4hrrf7d4ispc2hwr7rzkn6d6nf7lyyrid2lm28yf2hnz";
libName = "plotters_backend";
authors = [
"Hao Hou <haohou302@gmail.com>"
];
};
"plotters-svg" = rec {
crateName = "plotters-svg";
version = "0.3.7";
edition = "2018";
sha256 = "0w56sxaa2crpasa1zj0bhxzihlapqfkncggavyngg0w86anf5fji";
libName = "plotters_svg";
authors = [
"Hao Hou <haohou302@gmail.com>"
];
dependencies = [
{
name = "plotters-backend";
packageId = "plotters-backend";
}
];
features = {
"bitmap_encoder" = [ "image" ];
"image" = [ "dep:image" ];
};
};
"potential_utf" = rec {
crateName = "potential_utf";
version = "0.1.4";
edition = "2021";
sha256 = "0xxg0pkfpq299wvwln409z4fk80rbv55phh3f1jhjajy5x1ljfdp";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "zerovec";
packageId = "zerovec";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde_core?/alloc" "writeable/alloc" "zerovec?/alloc" ];
"databake" = [ "dep:databake" ];
"default" = [ "alloc" ];
"serde" = [ "dep:serde_core" ];
"writeable" = [ "dep:writeable" ];
"zerovec" = [ "dep:zerovec" ];
};
resolvedDefaultFeatures = [ "zerovec" ];
};
"ppv-lite86" = rec {
crateName = "ppv-lite86";
version = "0.2.21";
edition = "2021";
sha256 = "1abxx6qz5qnd43br1dd9b2savpihzjza8gb4fbzdql1gxp2f7sl5";
libName = "ppv_lite86";
authors = [
"The CryptoCorrosion Contributors"
];
dependencies = [
{
name = "zerocopy";
packageId = "zerocopy";
features = [ "simd" ];
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "simd" "std" ];
};
"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" ];
};
};
"proc-macro-crate 1.3.1" = rec {
crateName = "proc-macro-crate";
version = "1.3.1";
edition = "2021";
sha256 = "069r1k56bvgk0f58dm5swlssfcp79im230affwk6d9ck20g04k3z";
libName = "proc_macro_crate";
authors = [
"Bastian Köcher <git@kchr.de>"
];
dependencies = [
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "toml_edit";
packageId = "toml_edit 0.19.15";
}
];
};
"proc-macro-crate 3.4.0" = rec {
crateName = "proc-macro-crate";
version = "3.4.0";
edition = "2021";
sha256 = "10v9qi51n4phn1lrj5r94kjq7yhci9jrkqnn6wpan05yjsgb3711";
libName = "proc_macro_crate";
authors = [
"Bastian Köcher <git@kchr.de>"
];
dependencies = [
{
name = "toml_edit";
packageId = "toml_edit 0.23.10+spec-1.0.0";
usesDefaultFeatures = false;
features = [ "parse" ];
}
];
};
"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" ];
};
"proptest" = rec {
crateName = "proptest";
version = "1.10.0";
edition = "2021";
sha256 = "0ch5r381al5z7089j47gkyybzbgygkgld5bzfg019vxcznrnqmip";
authors = [
"Jason Lingle"
];
dependencies = [
{
name = "bit-set";
packageId = "bit-set";
optional = true;
}
{
name = "bit-vec";
packageId = "bit-vec";
optional = true;
}
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand 0.9.2";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "rand_chacha";
packageId = "rand_chacha 0.9.0";
usesDefaultFeatures = false;
}
{
name = "rand_xorshift";
packageId = "rand_xorshift";
}
{
name = "regex-syntax";
packageId = "regex-syntax";
optional = true;
}
{
name = "rusty-fork";
packageId = "rusty-fork";
optional = true;
usesDefaultFeatures = false;
}
{
name = "tempfile";
packageId = "tempfile";
optional = true;
}
{
name = "unarray";
packageId = "unarray";
}
];
features = {
"attr-macro" = [ "proptest-macro" ];
"bit-set" = [ "dep:bit-set" "dep:bit-vec" ];
"default" = [ "std" "fork" "timeout" "bit-set" ];
"default-code-coverage" = [ "std" "fork" "timeout" "bit-set" ];
"fork" = [ "std" "rusty-fork" "tempfile" ];
"handle-panics" = [ "std" ];
"hardware-rng" = [ "x86" ];
"no_std" = [ "num-traits/libm" ];
"proptest-macro" = [ "dep:proptest-macro" ];
"regex-syntax" = [ "dep:regex-syntax" ];
"rusty-fork" = [ "dep:rusty-fork" ];
"std" = [ "rand/std" "rand/os_rng" "regex-syntax" "num-traits/std" ];
"tempfile" = [ "dep:tempfile" ];
"timeout" = [ "fork" "rusty-fork/timeout" ];
"x86" = [ "dep:x86" ];
};
resolvedDefaultFeatures = [ "bit-set" "default" "fork" "regex-syntax" "rusty-fork" "std" "tempfile" "timeout" ];
};
"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" ];
}
];
};
"quick-error" = rec {
crateName = "quick-error";
version = "1.2.3";
edition = "2015";
sha256 = "1q6za3v78hsspisc197bg3g7rpc989qycy8ypr8ap8igv10ikl51";
libName = "quick_error";
authors = [
"Paul Colomiets <paul@colomiets.name>"
"Colin Kiegel <kiegel@gmx.de>"
];
};
"quote" = rec {
crateName = "quote";
version = "1.0.44";
edition = "2021";
sha256 = "1r7c7hxl66vz3q9qizgjhy77pdrrypqgk4ghc7260xvvfb7ypci1";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "proc-macro" ];
"proc-macro" = [ "proc-macro2/proc-macro" ];
};
resolvedDefaultFeatures = [ "default" "proc-macro" ];
};
"r-efi" = rec {
crateName = "r-efi";
version = "5.3.0";
edition = "2018";
sha256 = "03sbfm3g7myvzyylff6qaxk4z6fy76yv860yy66jiswc2m6b7kb9";
libName = "r_efi";
features = {
"core" = [ "dep:core" ];
"examples" = [ "native" ];
"rustc-dep-of-std" = [ "core" ];
};
};
"radium" = rec {
crateName = "radium";
version = "0.7.0";
edition = "2018";
sha256 = "02cxfi3ky3c4yhyqx9axqwhyaca804ws46nn4gc1imbk94nzycyw";
authors = [
"Nika Layzell <nika@thelayzells.com>"
"myrrlyn <self@myrrlyn.dev>"
];
};
"rand 0.8.5" = rec {
crateName = "rand";
version = "0.8.5";
edition = "2018";
sha256 = "013l6931nn7gkc23jz5mm3qdhf93jjf0fg64nz2lp4i51qd8vbrl";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "libc";
packageId = "libc";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: (target."unix" or false);
}
{
name = "rand_chacha";
packageId = "rand_chacha 0.3.1";
optional = true;
usesDefaultFeatures = false;
}
{
name = "rand_core";
packageId = "rand_core 0.6.4";
}
];
features = {
"alloc" = [ "rand_core/alloc" ];
"default" = [ "std" "std_rng" ];
"getrandom" = [ "rand_core/getrandom" ];
"libc" = [ "dep:libc" ];
"log" = [ "dep:log" ];
"packed_simd" = [ "dep:packed_simd" ];
"rand_chacha" = [ "dep:rand_chacha" ];
"serde" = [ "dep:serde" ];
"serde1" = [ "serde" "rand_core/serde1" ];
"simd_support" = [ "packed_simd" ];
"std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ];
"std_rng" = [ "rand_chacha" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "getrandom" "libc" "rand_chacha" "small_rng" "std" "std_rng" ];
};
"rand 0.9.2" = rec {
crateName = "rand";
version = "0.9.2";
edition = "2021";
sha256 = "1lah73ainvrgl7brcxx0pwhpnqa3sm3qaj672034jz8i0q7pgckd";
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" ];
"log" = [ "dep:log" ];
"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" "os_rng" "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 = [ "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_xorshift" = rec {
crateName = "rand_xorshift";
version = "0.4.0";
edition = "2021";
sha256 = "0njsn25pis742gb6b89cpq7jp48v9n23a9fvks10yczwks8n4fai";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "rand_core";
packageId = "rand_core 0.9.5";
}
];
features = {
"serde" = [ "dep:serde" ];
};
};
"rayon" = rec {
crateName = "rayon";
version = "1.11.0";
edition = "2021";
sha256 = "13x5fxb7rn4j2yw0cr26n7782jkc7rjzmdkg42qxk3xz0p8033rn";
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" ];
};
};
"redis" = rec {
crateName = "redis";
version = "0.24.0";
edition = "2021";
sha256 = "1kc4mzvc6fmlh25l0j30hkk5gjb2daprvkv7ing4f6qxpv5xk065";
dependencies = [
{
name = "async-trait";
packageId = "async-trait";
optional = true;
}
{
name = "bytes";
packageId = "bytes";
optional = true;
}
{
name = "combine";
packageId = "combine";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "futures-util";
packageId = "futures-util";
optional = true;
usesDefaultFeatures = false;
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "percent-encoding";
packageId = "percent-encoding";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
optional = true;
}
{
name = "ryu";
packageId = "ryu";
}
{
name = "sha1_smol";
packageId = "sha1_smol";
optional = true;
}
{
name = "socket2";
packageId = "socket2 0.4.10";
optional = true;
usesDefaultFeatures = false;
}
{
name = "tokio";
packageId = "tokio";
optional = true;
features = [ "rt" "net" "time" ];
}
{
name = "tokio-util";
packageId = "tokio-util";
optional = true;
}
{
name = "url";
packageId = "url";
}
];
devDependencies = [
{
name = "socket2";
packageId = "socket2 0.4.10";
}
{
name = "tokio";
packageId = "tokio";
features = [ "rt" "macros" "rt-multi-thread" "time" ];
}
];
features = {
"ahash" = [ "dep:ahash" ];
"aio" = [ "bytes" "pin-project-lite" "futures-util" "futures-util/alloc" "futures-util/sink" "tokio/io-util" "tokio-util" "tokio-util/codec" "tokio/sync" "combine/tokio" "async-trait" ];
"arc-swap" = [ "dep:arc-swap" ];
"async-native-tls" = [ "dep:async-native-tls" ];
"async-std" = [ "dep:async-std" ];
"async-std-comp" = [ "aio" "async-std" ];
"async-std-native-tls-comp" = [ "async-std-comp" "async-native-tls" "tls-native-tls" ];
"async-std-rustls-comp" = [ "async-std-comp" "futures-rustls" "tls-rustls" ];
"async-std-tls-comp" = [ "async-std-native-tls-comp" ];
"async-trait" = [ "dep:async-trait" ];
"bytes" = [ "dep:bytes" ];
"cluster" = [ "crc16" "rand" ];
"cluster-async" = [ "cluster" "futures" "futures-util" "log" ];
"connection-manager" = [ "arc-swap" "futures" "aio" "tokio-retry" ];
"crc16" = [ "dep:crc16" ];
"default" = [ "acl" "streams" "geospatial" "script" "keep-alive" ];
"futures" = [ "dep:futures" ];
"futures-rustls" = [ "dep:futures-rustls" ];
"futures-util" = [ "dep:futures-util" ];
"json" = [ "serde" "serde/derive" "serde_json" ];
"keep-alive" = [ "socket2" ];
"log" = [ "dep:log" ];
"native-tls" = [ "dep:native-tls" ];
"pin-project-lite" = [ "dep:pin-project-lite" ];
"r2d2" = [ "dep:r2d2" ];
"rand" = [ "dep:rand" ];
"rustls" = [ "dep:rustls" ];
"rustls-native-certs" = [ "dep:rustls-native-certs" ];
"rustls-pemfile" = [ "dep:rustls-pemfile" ];
"rustls-webpki" = [ "dep:rustls-webpki" ];
"script" = [ "sha1_smol" ];
"sentinel" = [ "rand" ];
"serde" = [ "dep:serde" ];
"serde_json" = [ "dep:serde_json" ];
"sha1_smol" = [ "dep:sha1_smol" ];
"socket2" = [ "dep:socket2" ];
"tls" = [ "tls-native-tls" ];
"tls-native-tls" = [ "native-tls" ];
"tls-rustls" = [ "rustls" "rustls-native-certs" "rustls-webpki" "rustls-pemfile" ];
"tls-rustls-insecure" = [ "tls-rustls" "rustls/dangerous_configuration" ];
"tls-rustls-webpki-roots" = [ "tls-rustls" "webpki-roots" ];
"tokio" = [ "dep:tokio" ];
"tokio-comp" = [ "aio" "tokio" "tokio/net" ];
"tokio-native-tls" = [ "dep:tokio-native-tls" ];
"tokio-native-tls-comp" = [ "tokio-comp" "tls-native-tls" "tokio-native-tls" ];
"tokio-retry" = [ "dep:tokio-retry" ];
"tokio-rustls" = [ "dep:tokio-rustls" ];
"tokio-rustls-comp" = [ "tokio-comp" "tls-rustls" "tokio-rustls" ];
"tokio-util" = [ "dep:tokio-util" ];
"webpki-roots" = [ "dep:webpki-roots" ];
};
resolvedDefaultFeatures = [ "acl" "aio" "async-trait" "bytes" "default" "futures-util" "geospatial" "keep-alive" "pin-project-lite" "script" "sha1_smol" "socket2" "streams" "tokio" "tokio-comp" "tokio-util" ];
};
"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";
}
];
features = {
"core" = [ "dep:core" ];
"default" = [ "userspace" ];
"rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ];
};
resolvedDefaultFeatures = [ "default" "userspace" ];
};
"redox_syscall 0.7.1" = rec {
crateName = "redox_syscall";
version = "0.7.1";
edition = "2021";
sha256 = "0axziqgk7mg2cwmr03qq250z24gxhqn02cn29zi05p5d22k5m61m";
libName = "syscall";
authors = [
"Jeremy Soller <jackpot51@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
];
features = {
"core" = [ "dep:core" ];
"default" = [ "userspace" ];
"rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ];
};
resolvedDefaultFeatures = [ "default" "userspace" ];
};
"regex" = rec {
crateName = "regex";
version = "1.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-onepass" "hybrid" "meta" "nfa-backtrack" "nfa-pikevm" "nfa-thompson" "perf-inline" "perf-literal" "perf-literal-multisubstring" "perf-literal-substring" "std" "syntax" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" ];
};
"regex-syntax" = rec {
crateName = "regex-syntax";
version = "0.8.9";
edition = "2021";
sha256 = "0k0a47r1rcl794wj8a948niakbg081s5pp5nlgcbmmr2iy3qfs59";
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" ];
};
"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" "default" "dev_urandom_fallback" ];
};
"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" "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" ];
};
"rsa" = rec {
crateName = "rsa";
version = "0.9.10";
edition = "2021";
sha256 = "0bdikdwhcvl1gfh4637m5rdw3fgcl752aiygvzmwlgc8yl1kymxq";
authors = [
"RustCrypto Developers"
"dignifiedquire <dignifiedquire@gmail.com>"
];
dependencies = [
{
name = "const-oid";
packageId = "const-oid";
usesDefaultFeatures = false;
}
{
name = "digest";
packageId = "digest";
usesDefaultFeatures = false;
features = [ "alloc" "oid" ];
}
{
name = "num-bigint-dig";
packageId = "num-bigint-dig";
rename = "num-bigint";
usesDefaultFeatures = false;
features = [ "i128" "prime" "zeroize" ];
}
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
}
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
features = [ "libm" ];
}
{
name = "pkcs1";
packageId = "pkcs1";
usesDefaultFeatures = false;
features = [ "alloc" "pkcs8" ];
}
{
name = "pkcs8";
packageId = "pkcs8";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "rand_core";
packageId = "rand_core 0.6.4";
usesDefaultFeatures = false;
}
{
name = "signature";
packageId = "signature";
usesDefaultFeatures = false;
features = [ "alloc" "digest" "rand_core" ];
}
{
name = "spki";
packageId = "spki";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "subtle";
packageId = "subtle";
usesDefaultFeatures = false;
}
{
name = "zeroize";
packageId = "zeroize";
features = [ "alloc" ];
}
];
devDependencies = [
{
name = "rand_core";
packageId = "rand_core 0.6.4";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "pem" "u64_digit" ];
"getrandom" = [ "rand_core/getrandom" ];
"nightly" = [ "num-bigint/nightly" ];
"pem" = [ "pkcs1/pem" "pkcs8/pem" ];
"pkcs5" = [ "pkcs8/encryption" ];
"serde" = [ "dep:serde" "num-bigint/serde" ];
"sha1" = [ "dep:sha1" ];
"sha2" = [ "dep:sha2" ];
"std" = [ "digest/std" "pkcs1/std" "pkcs8/std" "rand_core/std" "signature/std" ];
"u64_digit" = [ "num-bigint/u64_digit" ];
};
resolvedDefaultFeatures = [ "default" "pem" "std" "u64_digit" ];
};
"rust_decimal" = rec {
crateName = "rust_decimal";
version = "1.40.0";
edition = "2021";
sha256 = "1c1yb8lms5aqzlaarwa0d7mn30s2h7x46djipiyginsjk38h7xv1";
authors = [
"Paul Mason <paul@form1.co.nz>"
];
dependencies = [
{
name = "arrayvec";
packageId = "arrayvec";
usesDefaultFeatures = false;
}
{
name = "borsh";
packageId = "borsh";
optional = true;
usesDefaultFeatures = false;
features = [ "derive" "unstable__schema" ];
}
{
name = "bytes";
packageId = "bytes";
optional = true;
usesDefaultFeatures = false;
}
{
name = "num-traits";
packageId = "num-traits";
usesDefaultFeatures = false;
features = [ "i128" ];
}
{
name = "rand";
packageId = "rand 0.8.5";
optional = true;
usesDefaultFeatures = false;
}
{
name = "rkyv";
packageId = "rkyv";
optional = true;
usesDefaultFeatures = false;
features = [ "size_32" "std" ];
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
}
{
name = "serde_json";
packageId = "serde_json";
optional = true;
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "bytes";
packageId = "bytes";
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand 0.8.5";
usesDefaultFeatures = false;
features = [ "getrandom" ];
}
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
];
features = {
"borsh" = [ "dep:borsh" "std" ];
"db-diesel-mysql" = [ "diesel/mysql_backend" "std" ];
"db-diesel-postgres" = [ "diesel/postgres_backend" "std" ];
"db-diesel2-mysql" = [ "db-diesel-mysql" ];
"db-diesel2-postgres" = [ "db-diesel-postgres" ];
"db-postgres" = [ "dep:bytes" "dep:postgres-types" "std" ];
"db-tokio-postgres" = [ "dep:bytes" "dep:postgres-types" "std" ];
"default" = [ "serde" "std" ];
"diesel" = [ "dep:diesel" ];
"macros" = [ "dep:rust_decimal_macros" ];
"maths-nopanic" = [ "maths" ];
"ndarray" = [ "dep:ndarray" ];
"proptest" = [ "dep:proptest" ];
"rand" = [ "dep:rand" ];
"rand-0_9" = [ "dep:rand-0_9" ];
"rkyv" = [ "dep:rkyv" ];
"rkyv-safe" = [ "rkyv/validation" ];
"rocket-traits" = [ "dep:rocket" "std" ];
"rust-fuzz" = [ "dep:arbitrary" ];
"ryu" = [ "dep:ryu" ];
"serde" = [ "dep:serde" ];
"serde-arbitrary-precision" = [ "serde-with-arbitrary-precision" ];
"serde-bincode" = [ "serde-str" ];
"serde-float" = [ "serde-with-float" ];
"serde-str" = [ "serde-with-str" ];
"serde-with-arbitrary-precision" = [ "serde" "serde_json/arbitrary_precision" "serde_json/std" "ryu" ];
"serde-with-float" = [ "serde" ];
"serde-with-str" = [ "serde" ];
"serde_json" = [ "dep:serde_json" ];
"std" = [ "arrayvec/std" "borsh?/std" "bytes?/std" "rand?/std" "rkyv?/std" "serde?/std" "serde_json?/std" ];
"tokio-pg" = [ "db-tokio-postgres" ];
"tokio-postgres" = [ "dep:tokio-postgres" ];
};
resolvedDefaultFeatures = [ "default" "maths" "serde" "std" ];
};
"rustix" = rec {
crateName = "rustix";
version = "1.1.3";
edition = "2021";
sha256 = "0d0z2zcw4rwzni1hm8snw8xdxwwrij336m31c4ghq66cghj9wv0l";
authors = [
"Dan Gohman <dev@sunfishcode.online>"
"Jakub Konka <kubkon@jakubkonka.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
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";
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";
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.21.12";
edition = "2021";
sha256 = "0gjdg2a9r81sdwkyw3n5yfbkrr6p9gyk3xr2kcsr3cs83x6s2miz";
dependencies = [
{
name = "ring";
packageId = "ring";
}
{
name = "rustls-webpki";
packageId = "rustls-webpki";
rename = "webpki";
features = [ "alloc" "std" ];
}
{
name = "sct";
packageId = "sct";
}
];
features = {
"default" = [ "logging" "tls12" ];
"log" = [ "dep:log" ];
"logging" = [ "log" ];
"read_buf" = [ "rustversion" ];
"rustversion" = [ "dep:rustversion" ];
};
resolvedDefaultFeatures = [ "dangerous_configuration" "tls12" ];
};
"rustls-pemfile" = rec {
crateName = "rustls-pemfile";
version = "1.0.4";
edition = "2018";
sha256 = "1324n5bcns0rnw6vywr5agff3rwfvzphi7rmbyzwnv6glkhclx0w";
libName = "rustls_pemfile";
dependencies = [
{
name = "base64";
packageId = "base64 0.21.7";
}
];
};
"rustls-webpki" = rec {
crateName = "rustls-webpki";
version = "0.101.7";
edition = "2021";
sha256 = "0rapfhpkqp75552i8r0y7f4vq7csb4k7gjjans0df73sxv8paqlb";
libName = "webpki";
dependencies = [
{
name = "ring";
packageId = "ring";
usesDefaultFeatures = false;
}
{
name = "untrusted";
packageId = "untrusted";
}
];
features = {
"alloc" = [ "ring/alloc" ];
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "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>"
];
};
"rusty-fork" = rec {
crateName = "rusty-fork";
version = "0.3.1";
edition = "2018";
sha256 = "1qkf9rvz2irb1wlbkrhrns8n9hnax48z1lgql5nqyr2fyagzfsyc";
libName = "rusty_fork";
authors = [
"Jason Lingle"
];
dependencies = [
{
name = "fnv";
packageId = "fnv";
}
{
name = "quick-error";
packageId = "quick-error";
}
{
name = "tempfile";
packageId = "tempfile";
}
{
name = "wait-timeout";
packageId = "wait-timeout";
optional = true;
}
];
features = {
"default" = [ "timeout" ];
"timeout" = [ "wait-timeout" ];
"wait-timeout" = [ "dep:wait-timeout" ];
};
resolvedDefaultFeatures = [ "timeout" "wait-timeout" ];
};
"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);
}
];
};
"scopeguard" = rec {
crateName = "scopeguard";
version = "1.2.0";
edition = "2015";
sha256 = "0jcz9sd47zlsgcnm1hdw0664krxwb5gczlif4qngj2aif8vky54l";
authors = [
"bluss"
];
features = {
"default" = [ "use_std" ];
};
};
"sct" = rec {
crateName = "sct";
version = "0.7.1";
edition = "2021";
sha256 = "056lmi2xkzdg1dbai6ha3n57s18cbip4pnmpdhyljli3m99n216s";
authors = [
"Joseph Birr-Pixton <jpixton@gmail.com>"
];
dependencies = [
{
name = "ring";
packageId = "ring";
}
{
name = "untrusted";
packageId = "untrusted";
}
];
};
"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" ];
};
"semver" = rec {
crateName = "semver";
version = "1.0.27";
edition = "2018";
sha256 = "1qmi3akfrnqc2hfkdgcxhld5bv961wbk8my3ascv5068mc5fnryp";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" ];
};
};
"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" "rc" "serde_derive" "std" ];
};
"serde_core" = rec {
crateName = "serde_core";
version = "1.0.228";
edition = "2021";
sha256 = "1bb7id2xwx8izq50098s5j2sqrrvk31jbbrjqygyan6ask3qbls1";
authors = [
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "serde_derive";
packageId = "serde_derive";
target = { target, features }: false;
}
];
devDependencies = [
{
name = "serde_derive";
packageId = "serde_derive";
}
];
features = {
"default" = [ "std" "result" ];
};
resolvedDefaultFeatures = [ "alloc" "rc" "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.149";
edition = "2021";
sha256 = "11jdx4vilzrjjd1dpgy67x5lgzr0laplz30dhv75lnf5ffa07z43";
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_spanned" = rec {
crateName = "serde_spanned";
version = "1.0.4";
edition = "2021";
sha256 = "0xkp0qdzams5sqwndbw3xrhf4c0bb5r46w2ywkp1aqsdb8ggkfzq";
dependencies = [
{
name = "serde_core";
packageId = "serde_core";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde_core?/alloc" ];
"default" = [ "std" "serde" ];
"serde" = [ "dep:serde_core" ];
"std" = [ "alloc" "serde_core?/std" ];
};
resolvedDefaultFeatures = [ "alloc" "serde" "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";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86" == target."arch" or null) || ("x86_64" == target."arch" or null));
}
{
name = "digest";
packageId = "digest";
}
];
devDependencies = [
{
name = "digest";
packageId = "digest";
features = [ "dev" ];
}
];
features = {
"asm" = [ "sha1-asm" ];
"default" = [ "std" ];
"oid" = [ "digest/oid" ];
"sha1-asm" = [ "dep:sha1-asm" ];
"std" = [ "digest/std" ];
};
};
"sha1_smol" = rec {
crateName = "sha1_smol";
version = "1.0.1";
edition = "2018";
sha256 = "0pbh2xjfnzgblws3hims0ib5bphv7r5rfdpizyh51vnzvnribymv";
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>"
];
features = {
"serde" = [ "dep:serde" ];
"std" = [ "alloc" ];
};
};
"sha2" = rec {
crateName = "sha2";
version = "0.10.9";
edition = "2018";
sha256 = "10xjj843v31ghsksd9sl9y12qfc48157j1xpb8v1ml39jy0psl57";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if";
}
{
name = "cpufeatures";
packageId = "cpufeatures";
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
}
{
name = "digest";
packageId = "digest";
}
];
devDependencies = [
{
name = "digest";
packageId = "digest";
features = [ "dev" ];
}
];
features = {
"asm" = [ "sha2-asm" ];
"asm-aarch64" = [ "asm" ];
"default" = [ "std" ];
"oid" = [ "digest/oid" ];
"sha2-asm" = [ "dep:sha2-asm" ];
"std" = [ "digest/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"shlex" = rec {
crateName = "shlex";
version = "1.3.0";
edition = "2015";
sha256 = "0r1y6bv26c1scpxvhg2cabimrmwgbp4p3wy6syj9n0c4s3q2znhg";
authors = [
"comex <comexk@gmail.com>"
"Fenhl <fenhl@fenhl.net>"
"Adrian Taylor <adetaylor@chromium.org>"
"Alex Touchet <alextouchet@outlook.com>"
"Daniel Parks <dp+git@oxidized.org>"
"Garrett Berg <googberg@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"signal-hook-registry" = rec {
crateName = "signal-hook-registry";
version = "1.4.8";
edition = "2015";
sha256 = "06vc7pmnki6lmxar3z31gkyg9cw7py5x9g7px70gy2hil75nkny4";
libName = "signal_hook_registry";
authors = [
"Michal 'vorner' Vaner <vorner@vorner.cz>"
"Masaki Hara <ackie.h.gmai@gmail.com>"
];
dependencies = [
{
name = "errno";
packageId = "errno";
}
{
name = "libc";
packageId = "libc";
}
];
};
"signature" = rec {
crateName = "signature";
version = "2.2.0";
edition = "2021";
sha256 = "1pi9hd5vqfr3q3k49k37z06p7gs5si0in32qia4mmr1dancr6m3p";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "digest";
packageId = "digest";
optional = true;
usesDefaultFeatures = false;
}
{
name = "rand_core";
packageId = "rand_core 0.6.4";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"derive" = [ "dep:derive" ];
"digest" = [ "dep:digest" ];
"rand_core" = [ "dep:rand_core" ];
"std" = [ "alloc" "rand_core?/std" ];
};
resolvedDefaultFeatures = [ "alloc" "digest" "rand_core" "std" ];
};
"simdutf8" = rec {
crateName = "simdutf8";
version = "0.1.5";
edition = "2018";
sha256 = "0vmpf7xaa0dnaikib5jlx6y4dxd3hxqz6l830qb079g7wcsgxag3";
authors = [
"Hans Kratz <hans@appfour.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"siphasher" = rec {
crateName = "siphasher";
version = "1.0.2";
edition = "2018";
sha256 = "13k7cfbpcm8qgj9p2n8dwg9skv9s0hxk5my30j5chy1p4l78bamj";
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 = [ "std" ];
};
"smallvec" = rec {
crateName = "smallvec";
version = "1.15.1";
edition = "2018";
sha256 = "00xxdxxpgyq5vjnpljvkmy99xij5rxgh913ii1v16kzynnivgcb7";
authors = [
"The Servo Project Developers"
];
features = {
"arbitrary" = [ "dep:arbitrary" ];
"bincode" = [ "dep:bincode" ];
"const_new" = [ "const_generics" ];
"drain_keep_rest" = [ "drain_filter" ];
"impl_bincode" = [ "bincode" "unty" ];
"malloc_size_of" = [ "dep:malloc_size_of" ];
"serde" = [ "dep:serde" ];
"unty" = [ "dep:unty" ];
};
resolvedDefaultFeatures = [ "const_generics" ];
};
"socket2 0.4.10" = rec {
crateName = "socket2";
version = "0.4.10";
edition = "2018";
sha256 = "03ack54dxhgfifzsj14k7qa3r5c9wqy3v6mqhlim99cc03y1cycz";
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 = "winapi";
packageId = "winapi";
target = { target, features }: (target."windows" or false);
features = [ "handleapi" "ws2ipdef" "ws2tcpip" ];
}
];
features = {
};
};
"socket2 0.6.2" = rec {
crateName = "socket2";
version = "0.6.2";
edition = "2021";
sha256 = "1q073zkvz96h216mfz6niqk2kjqrgqv2va6zj34qh84zv4xamx46";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "windows-sys";
packageId = "windows-sys 0.60.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" ];
}
];
features = {
};
resolvedDefaultFeatures = [ "all" ];
};
"spin" = rec {
crateName = "spin";
version = "0.9.8";
edition = "2015";
sha256 = "0rvam5r0p3a6qhc18scqpvpgb3ckzyqxpgdfyjnghh8ja7byi039";
authors = [
"Mathijs van de Nes <git@mathijs.vd-nes.nl>"
"John Ericson <git@JohnEricson.me>"
"Joshua Barretto <joshua.s.barretto@gmail.com>"
];
dependencies = [
{
name = "lock_api";
packageId = "lock_api";
rename = "lock_api_crate";
optional = true;
}
];
features = {
"barrier" = [ "mutex" ];
"default" = [ "lock_api" "mutex" "spin_mutex" "rwlock" "once" "lazy" "barrier" ];
"fair_mutex" = [ "mutex" ];
"lazy" = [ "once" ];
"lock_api" = [ "lock_api_crate" ];
"lock_api_crate" = [ "dep:lock_api_crate" ];
"portable-atomic" = [ "dep:portable-atomic" ];
"portable_atomic" = [ "portable-atomic" ];
"spin_mutex" = [ "mutex" ];
"ticket_mutex" = [ "mutex" ];
"use_ticket_mutex" = [ "mutex" "ticket_mutex" ];
};
resolvedDefaultFeatures = [ "barrier" "default" "lazy" "lock_api" "lock_api_crate" "mutex" "once" "rwlock" "spin_mutex" ];
};
"spki" = rec {
crateName = "spki";
version = "0.7.3";
edition = "2021";
sha256 = "17fj8k5fmx4w9mp27l970clrh5qa7r5sjdvbsln987xhb34dc7nr";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "base64ct";
packageId = "base64ct";
optional = true;
usesDefaultFeatures = false;
}
{
name = "der";
packageId = "der";
features = [ "oid" ];
}
];
features = {
"alloc" = [ "base64ct?/alloc" "der/alloc" ];
"arbitrary" = [ "std" "dep:arbitrary" "der/arbitrary" ];
"base64" = [ "dep:base64ct" ];
"fingerprint" = [ "sha2" ];
"pem" = [ "alloc" "der/pem" ];
"sha2" = [ "dep:sha2" ];
"std" = [ "der/std" "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "pem" "std" ];
};
"sqlformat" = rec {
crateName = "sqlformat";
version = "0.2.6";
edition = "2021";
sha256 = "14470h40gn0f6jw9xxzbpwh5qy1fgvkhkfz8xjyzgi0cvf9kmfkv";
authors = [
"Josh Holmer <jholmer.in@gmail.com>"
];
dependencies = [
{
name = "nom";
packageId = "nom";
}
{
name = "unicode_categories";
packageId = "unicode_categories";
}
];
};
"sqlx" = rec {
crateName = "sqlx";
version = "0.7.4";
edition = "2021";
sha256 = "1ahadprvyhjraq0c5712x3kdkp1gkwfm9nikrmcml2h03bzwr8n9";
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>"
"Austin Bonander <austin.bonander@gmail.com>"
"Chloe Ross <orangesnowfox@gmail.com>"
"Daniel Akhterov <akhterovd@gmail.com>"
];
dependencies = [
{
name = "sqlx-core";
packageId = "sqlx-core";
features = [ "offline" "migrate" ];
}
{
name = "sqlx-macros";
packageId = "sqlx-macros";
optional = true;
}
{
name = "sqlx-mysql";
packageId = "sqlx-mysql";
optional = true;
}
{
name = "sqlx-postgres";
packageId = "sqlx-postgres";
optional = true;
}
{
name = "sqlx-sqlite";
packageId = "sqlx-sqlite";
optional = true;
}
];
features = {
"_unstable-all-types" = [ "bigdecimal" "rust_decimal" "json" "time" "chrono" "ipnetwork" "mac_address" "uuid" "bit-vec" ];
"all-databases" = [ "mysql" "sqlite" "postgres" "any" ];
"any" = [ "sqlx-core/any" "sqlx-mysql?/any" "sqlx-postgres?/any" "sqlx-sqlite?/any" ];
"bigdecimal" = [ "sqlx-core/bigdecimal" "sqlx-macros?/bigdecimal" "sqlx-mysql?/bigdecimal" "sqlx-postgres?/bigdecimal" ];
"bit-vec" = [ "sqlx-core/bit-vec" "sqlx-macros?/bit-vec" "sqlx-postgres?/bit-vec" ];
"chrono" = [ "sqlx-core/chrono" "sqlx-macros?/chrono" "sqlx-mysql?/chrono" "sqlx-postgres?/chrono" "sqlx-sqlite?/chrono" ];
"default" = [ "any" "macros" "migrate" "json" ];
"ipnetwork" = [ "sqlx-core/ipnetwork" "sqlx-macros?/ipnetwork" "sqlx-postgres?/ipnetwork" ];
"json" = [ "sqlx-macros?/json" "sqlx-mysql?/json" "sqlx-postgres?/json" "sqlx-sqlite?/json" ];
"mac_address" = [ "sqlx-core/mac_address" "sqlx-macros?/mac_address" "sqlx-postgres?/mac_address" ];
"macros" = [ "sqlx-macros" ];
"migrate" = [ "sqlx-core/migrate" "sqlx-macros?/migrate" "sqlx-mysql?/migrate" "sqlx-postgres?/migrate" "sqlx-sqlite?/migrate" ];
"mysql" = [ "sqlx-mysql" "sqlx-macros?/mysql" ];
"postgres" = [ "sqlx-postgres" "sqlx-macros?/postgres" ];
"regexp" = [ "sqlx-sqlite?/regexp" ];
"runtime-async-std" = [ "_rt-async-std" "sqlx-core/_rt-async-std" "sqlx-macros?/_rt-async-std" ];
"runtime-async-std-native-tls" = [ "runtime-async-std" "tls-native-tls" ];
"runtime-async-std-rustls" = [ "runtime-async-std" "tls-rustls" ];
"runtime-tokio" = [ "_rt-tokio" "sqlx-core/_rt-tokio" "sqlx-macros?/_rt-tokio" ];
"runtime-tokio-native-tls" = [ "runtime-tokio" "tls-native-tls" ];
"runtime-tokio-rustls" = [ "runtime-tokio" "tls-rustls" ];
"rust_decimal" = [ "sqlx-core/rust_decimal" "sqlx-macros?/rust_decimal" "sqlx-mysql?/rust_decimal" "sqlx-postgres?/rust_decimal" ];
"sqlite" = [ "sqlx-sqlite" "sqlx-macros?/sqlite" ];
"sqlx-macros" = [ "dep:sqlx-macros" ];
"sqlx-mysql" = [ "dep:sqlx-mysql" ];
"sqlx-postgres" = [ "dep:sqlx-postgres" ];
"sqlx-sqlite" = [ "dep:sqlx-sqlite" ];
"time" = [ "sqlx-core/time" "sqlx-macros?/time" "sqlx-mysql?/time" "sqlx-postgres?/time" "sqlx-sqlite?/time" ];
"tls-native-tls" = [ "sqlx-core/_tls-native-tls" "sqlx-macros?/_tls-native-tls" ];
"tls-rustls" = [ "sqlx-core/_tls-rustls" "sqlx-macros?/_tls-rustls" ];
"uuid" = [ "sqlx-core/uuid" "sqlx-macros?/uuid" "sqlx-mysql?/uuid" "sqlx-postgres?/uuid" "sqlx-sqlite?/uuid" ];
};
resolvedDefaultFeatures = [ "_rt-tokio" "any" "chrono" "default" "json" "macros" "migrate" "postgres" "runtime-tokio" "runtime-tokio-rustls" "rust_decimal" "sqlx-macros" "sqlx-postgres" "tls-rustls" "uuid" ];
};
"sqlx-core" = rec {
crateName = "sqlx-core";
version = "0.7.4";
edition = "2021";
sha256 = "1xiyr35dq10sf7lq00291svcj9wbaaz1ihandjmrng9a6jlmkfi4";
libName = "sqlx_core";
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>"
"Austin Bonander <austin.bonander@gmail.com>"
"Chloe Ross <orangesnowfox@gmail.com>"
"Daniel Akhterov <akhterovd@gmail.com>"
];
dependencies = [
{
name = "ahash";
packageId = "ahash 0.8.12";
}
{
name = "atoi";
packageId = "atoi";
}
{
name = "byteorder";
packageId = "byteorder";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "chrono";
packageId = "chrono";
optional = true;
usesDefaultFeatures = false;
features = [ "clock" ];
}
{
name = "crc";
packageId = "crc";
optional = true;
}
{
name = "crossbeam-queue";
packageId = "crossbeam-queue";
}
{
name = "either";
packageId = "either";
}
{
name = "event-listener";
packageId = "event-listener";
}
{
name = "futures-channel";
packageId = "futures-channel";
usesDefaultFeatures = false;
features = [ "sink" "alloc" "std" ];
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-intrusive";
packageId = "futures-intrusive";
}
{
name = "futures-io";
packageId = "futures-io";
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "alloc" "sink" "io" ];
}
{
name = "hashlink";
packageId = "hashlink";
}
{
name = "hex";
packageId = "hex";
}
{
name = "indexmap";
packageId = "indexmap";
}
{
name = "log";
packageId = "log";
usesDefaultFeatures = false;
}
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "paste";
packageId = "paste";
}
{
name = "percent-encoding";
packageId = "percent-encoding";
}
{
name = "rust_decimal";
packageId = "rust_decimal";
optional = true;
}
{
name = "rustls";
packageId = "rustls";
optional = true;
usesDefaultFeatures = false;
features = [ "dangerous_configuration" "tls12" ];
}
{
name = "rustls-pemfile";
packageId = "rustls-pemfile";
optional = true;
}
{
name = "serde";
packageId = "serde";
optional = true;
features = [ "derive" "rc" ];
}
{
name = "serde_json";
packageId = "serde_json";
optional = true;
features = [ "raw_value" ];
}
{
name = "sha2";
packageId = "sha2";
optional = true;
usesDefaultFeatures = false;
}
{
name = "smallvec";
packageId = "smallvec";
}
{
name = "sqlformat";
packageId = "sqlformat";
}
{
name = "thiserror";
packageId = "thiserror";
}
{
name = "tokio";
packageId = "tokio";
optional = true;
usesDefaultFeatures = false;
features = [ "time" "net" "sync" "fs" "io-util" "rt" ];
}
{
name = "tokio-stream";
packageId = "tokio-stream";
optional = true;
features = [ "fs" ];
}
{
name = "tracing";
packageId = "tracing";
features = [ "log" ];
}
{
name = "url";
packageId = "url";
usesDefaultFeatures = false;
}
{
name = "uuid";
packageId = "uuid";
optional = true;
}
{
name = "webpki-roots";
packageId = "webpki-roots";
optional = true;
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "rt" ];
}
];
features = {
"_rt-async-std" = [ "async-std" "async-io" ];
"_rt-tokio" = [ "tokio" "tokio-stream" ];
"_tls-native-tls" = [ "native-tls" ];
"_tls-rustls" = [ "rustls" "rustls-pemfile" "webpki-roots" ];
"async-io" = [ "dep:async-io" ];
"async-std" = [ "dep:async-std" ];
"bigdecimal" = [ "dep:bigdecimal" ];
"bit-vec" = [ "dep:bit-vec" ];
"bstr" = [ "dep:bstr" ];
"chrono" = [ "dep:chrono" ];
"crc" = [ "dep:crc" ];
"digest" = [ "dep:digest" ];
"encoding_rs" = [ "dep:encoding_rs" ];
"ipnetwork" = [ "dep:ipnetwork" ];
"json" = [ "serde" "serde_json" ];
"mac_address" = [ "dep:mac_address" ];
"migrate" = [ "sha2" "crc" ];
"native-tls" = [ "dep:native-tls" ];
"num-bigint" = [ "dep:num-bigint" ];
"offline" = [ "serde" "either/serde" ];
"regex" = [ "dep:regex" ];
"rust_decimal" = [ "dep:rust_decimal" ];
"rustls" = [ "dep:rustls" ];
"rustls-pemfile" = [ "dep:rustls-pemfile" ];
"serde" = [ "dep:serde" ];
"serde_json" = [ "dep:serde_json" ];
"sha1" = [ "dep:sha1" ];
"sha2" = [ "dep:sha2" ];
"time" = [ "dep:time" ];
"tokio" = [ "dep:tokio" ];
"tokio-stream" = [ "dep:tokio-stream" ];
"uuid" = [ "dep:uuid" ];
"webpki-roots" = [ "dep:webpki-roots" ];
};
resolvedDefaultFeatures = [ "_rt-tokio" "_tls-rustls" "any" "chrono" "crc" "default" "json" "migrate" "offline" "rust_decimal" "rustls" "rustls-pemfile" "serde" "serde_json" "sha2" "tokio" "tokio-stream" "uuid" "webpki-roots" ];
};
"sqlx-macros" = rec {
crateName = "sqlx-macros";
version = "0.7.4";
edition = "2021";
sha256 = "09rih250868nfkax022y5dyk24a7qfw6scjy3sgalbzb8lihx92f";
procMacro = true;
libName = "sqlx_macros";
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>"
"Austin Bonander <austin.bonander@gmail.com>"
"Chloe Ross <orangesnowfox@gmail.com>"
"Daniel Akhterov <akhterovd@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
}
{
name = "quote";
packageId = "quote";
usesDefaultFeatures = false;
}
{
name = "sqlx-core";
packageId = "sqlx-core";
features = [ "any" ];
}
{
name = "sqlx-macros-core";
packageId = "sqlx-macros-core";
}
{
name = "syn";
packageId = "syn 1.0.109";
usesDefaultFeatures = false;
features = [ "parsing" "proc-macro" ];
}
];
features = {
"_rt-async-std" = [ "sqlx-macros-core/_rt-async-std" ];
"_rt-tokio" = [ "sqlx-macros-core/_rt-tokio" ];
"_tls-native-tls" = [ "sqlx-macros-core/_tls-native-tls" ];
"_tls-rustls" = [ "sqlx-macros-core/_tls-rustls" ];
"bigdecimal" = [ "sqlx-macros-core/bigdecimal" ];
"bit-vec" = [ "sqlx-macros-core/bit-vec" ];
"chrono" = [ "sqlx-macros-core/chrono" ];
"ipnetwork" = [ "sqlx-macros-core/ipnetwork" ];
"json" = [ "sqlx-macros-core/json" ];
"mac_address" = [ "sqlx-macros-core/mac_address" ];
"migrate" = [ "sqlx-macros-core/migrate" ];
"mysql" = [ "sqlx-macros-core/mysql" ];
"postgres" = [ "sqlx-macros-core/postgres" ];
"rust_decimal" = [ "sqlx-macros-core/rust_decimal" ];
"sqlite" = [ "sqlx-macros-core/sqlite" ];
"time" = [ "sqlx-macros-core/time" ];
"uuid" = [ "sqlx-macros-core/uuid" ];
};
resolvedDefaultFeatures = [ "_rt-tokio" "_tls-rustls" "chrono" "default" "json" "migrate" "postgres" "rust_decimal" "uuid" ];
};
"sqlx-macros-core" = rec {
crateName = "sqlx-macros-core";
version = "0.7.4";
edition = "2021";
sha256 = "1j7k0fw7n6pgabqnj6cbp8s3rmd3yvqr4chjj878cvd1m99yycsq";
libName = "sqlx_macros_core";
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>"
"Austin Bonander <austin.bonander@gmail.com>"
"Chloe Ross <orangesnowfox@gmail.com>"
"Daniel Akhterov <akhterovd@gmail.com>"
];
dependencies = [
{
name = "dotenvy";
packageId = "dotenvy";
usesDefaultFeatures = false;
}
{
name = "either";
packageId = "either";
}
{
name = "heck";
packageId = "heck 0.4.1";
features = [ "unicode" ];
}
{
name = "hex";
packageId = "hex";
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
usesDefaultFeatures = false;
}
{
name = "quote";
packageId = "quote";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "sha2";
packageId = "sha2";
}
{
name = "sqlx-core";
packageId = "sqlx-core";
features = [ "offline" ];
}
{
name = "sqlx-mysql";
packageId = "sqlx-mysql";
optional = true;
features = [ "offline" "migrate" ];
}
{
name = "sqlx-postgres";
packageId = "sqlx-postgres";
optional = true;
features = [ "offline" "migrate" ];
}
{
name = "sqlx-sqlite";
packageId = "sqlx-sqlite";
optional = true;
features = [ "offline" "migrate" ];
}
{
name = "syn";
packageId = "syn 1.0.109";
usesDefaultFeatures = false;
features = [ "full" "derive" "parsing" "printing" "clone-impls" ];
}
{
name = "tempfile";
packageId = "tempfile";
}
{
name = "tokio";
packageId = "tokio";
optional = true;
usesDefaultFeatures = false;
features = [ "time" "net" "sync" "fs" "io-util" "rt" ];
}
{
name = "url";
packageId = "url";
usesDefaultFeatures = false;
}
];
features = {
"_rt-async-std" = [ "async-std" "sqlx-core/_rt-async-std" ];
"_rt-tokio" = [ "tokio" "sqlx-core/_rt-tokio" ];
"_tls-native-tls" = [ "sqlx-core/_tls-native-tls" ];
"_tls-rustls" = [ "sqlx-core/_tls-rustls" ];
"async-std" = [ "dep:async-std" ];
"bigdecimal" = [ "sqlx-core/bigdecimal" "sqlx-mysql?/bigdecimal" "sqlx-postgres?/bigdecimal" ];
"bit-vec" = [ "sqlx-core/bit-vec" "sqlx-postgres?/bit-vec" ];
"chrono" = [ "sqlx-core/chrono" "sqlx-mysql?/chrono" "sqlx-postgres?/chrono" "sqlx-sqlite?/chrono" ];
"ipnetwork" = [ "sqlx-core/ipnetwork" "sqlx-postgres?/ipnetwork" ];
"json" = [ "sqlx-core/json" "sqlx-mysql?/json" "sqlx-sqlite?/json" ];
"mac_address" = [ "sqlx-core/mac_address" "sqlx-postgres?/mac_address" ];
"migrate" = [ "sqlx-core/migrate" ];
"mysql" = [ "sqlx-mysql" ];
"postgres" = [ "sqlx-postgres" ];
"rust_decimal" = [ "sqlx-core/rust_decimal" "sqlx-mysql?/rust_decimal" "sqlx-postgres?/rust_decimal" ];
"sqlite" = [ "sqlx-sqlite" ];
"sqlx-mysql" = [ "dep:sqlx-mysql" ];
"sqlx-postgres" = [ "dep:sqlx-postgres" ];
"sqlx-sqlite" = [ "dep:sqlx-sqlite" ];
"time" = [ "sqlx-core/time" "sqlx-mysql?/time" "sqlx-postgres?/time" "sqlx-sqlite?/time" ];
"tokio" = [ "dep:tokio" ];
"uuid" = [ "sqlx-core/uuid" "sqlx-mysql?/uuid" "sqlx-postgres?/uuid" "sqlx-sqlite?/uuid" ];
};
resolvedDefaultFeatures = [ "_rt-tokio" "_tls-rustls" "chrono" "default" "json" "migrate" "postgres" "rust_decimal" "sqlx-postgres" "tokio" "uuid" ];
};
"sqlx-mysql" = rec {
crateName = "sqlx-mysql";
version = "0.7.4";
edition = "2021";
sha256 = "066lxhb80xgb8r5m2yy3a7ydjvp0b6wsk9s7whwfa83d46817lqy";
libName = "sqlx_mysql";
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>"
"Austin Bonander <austin.bonander@gmail.com>"
"Chloe Ross <orangesnowfox@gmail.com>"
"Daniel Akhterov <akhterovd@gmail.com>"
];
dependencies = [
{
name = "atoi";
packageId = "atoi";
}
{
name = "base64";
packageId = "base64 0.21.7";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "bitflags";
packageId = "bitflags";
usesDefaultFeatures = false;
features = [ "serde" ];
}
{
name = "byteorder";
packageId = "byteorder";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "bytes";
packageId = "bytes";
}
{
name = "chrono";
packageId = "chrono";
optional = true;
usesDefaultFeatures = false;
}
{
name = "crc";
packageId = "crc";
}
{
name = "digest";
packageId = "digest";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "dotenvy";
packageId = "dotenvy";
}
{
name = "either";
packageId = "either";
}
{
name = "futures-channel";
packageId = "futures-channel";
usesDefaultFeatures = false;
features = [ "sink" "alloc" "std" ];
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-io";
packageId = "futures-io";
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "alloc" "sink" "io" ];
}
{
name = "generic-array";
packageId = "generic-array";
usesDefaultFeatures = false;
}
{
name = "hex";
packageId = "hex";
}
{
name = "hkdf";
packageId = "hkdf";
}
{
name = "hmac";
packageId = "hmac";
usesDefaultFeatures = false;
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "log";
packageId = "log";
}
{
name = "md-5";
packageId = "md-5";
usesDefaultFeatures = false;
}
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "percent-encoding";
packageId = "percent-encoding";
}
{
name = "rand";
packageId = "rand 0.8.5";
usesDefaultFeatures = false;
features = [ "std" "std_rng" ];
}
{
name = "rsa";
packageId = "rsa";
}
{
name = "rust_decimal";
packageId = "rust_decimal";
optional = true;
}
{
name = "serde";
packageId = "serde";
optional = true;
}
{
name = "sha1";
packageId = "sha1";
usesDefaultFeatures = false;
}
{
name = "sha2";
packageId = "sha2";
usesDefaultFeatures = false;
}
{
name = "smallvec";
packageId = "smallvec";
}
{
name = "sqlx-core";
packageId = "sqlx-core";
}
{
name = "stringprep";
packageId = "stringprep";
}
{
name = "thiserror";
packageId = "thiserror";
}
{
name = "tracing";
packageId = "tracing";
features = [ "log" ];
}
{
name = "uuid";
packageId = "uuid";
optional = true;
}
{
name = "whoami";
packageId = "whoami";
usesDefaultFeatures = false;
}
];
features = {
"any" = [ "sqlx-core/any" ];
"bigdecimal" = [ "dep:bigdecimal" ];
"chrono" = [ "dep:chrono" ];
"json" = [ "sqlx-core/json" "serde" ];
"migrate" = [ "sqlx-core/migrate" ];
"offline" = [ "sqlx-core/offline" "serde/derive" ];
"rust_decimal" = [ "dep:rust_decimal" ];
"serde" = [ "dep:serde" ];
"time" = [ "dep:time" ];
"uuid" = [ "dep:uuid" ];
};
resolvedDefaultFeatures = [ "any" "chrono" "json" "migrate" "offline" "rust_decimal" "serde" "uuid" ];
};
"sqlx-postgres" = rec {
crateName = "sqlx-postgres";
version = "0.7.4";
edition = "2021";
sha256 = "0zjp30wj4n2f25dnb32vsg6jfpa3gw6dmfd0i5pr4kw91fw4x0kw";
libName = "sqlx_postgres";
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>"
"Austin Bonander <austin.bonander@gmail.com>"
"Chloe Ross <orangesnowfox@gmail.com>"
"Daniel Akhterov <akhterovd@gmail.com>"
];
dependencies = [
{
name = "atoi";
packageId = "atoi";
}
{
name = "base64";
packageId = "base64 0.21.7";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "bitflags";
packageId = "bitflags";
usesDefaultFeatures = false;
}
{
name = "byteorder";
packageId = "byteorder";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "chrono";
packageId = "chrono";
optional = true;
usesDefaultFeatures = false;
}
{
name = "crc";
packageId = "crc";
}
{
name = "dotenvy";
packageId = "dotenvy";
usesDefaultFeatures = false;
}
{
name = "etcetera";
packageId = "etcetera";
target = { target, features }: ("windows" == target."os" or null);
}
{
name = "futures-channel";
packageId = "futures-channel";
usesDefaultFeatures = false;
features = [ "sink" "alloc" "std" ];
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-io";
packageId = "futures-io";
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "alloc" "sink" "io" ];
}
{
name = "hex";
packageId = "hex";
}
{
name = "hkdf";
packageId = "hkdf";
}
{
name = "hmac";
packageId = "hmac";
usesDefaultFeatures = false;
features = [ "reset" ];
}
{
name = "home";
packageId = "home";
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "log";
packageId = "log";
}
{
name = "md-5";
packageId = "md-5";
usesDefaultFeatures = false;
}
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "rand";
packageId = "rand 0.8.5";
usesDefaultFeatures = false;
features = [ "std" "std_rng" ];
}
{
name = "rust_decimal";
packageId = "rust_decimal";
optional = true;
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
features = [ "raw_value" ];
}
{
name = "sha2";
packageId = "sha2";
usesDefaultFeatures = false;
}
{
name = "smallvec";
packageId = "smallvec";
}
{
name = "sqlx-core";
packageId = "sqlx-core";
features = [ "json" ];
}
{
name = "stringprep";
packageId = "stringprep";
}
{
name = "thiserror";
packageId = "thiserror";
}
{
name = "tracing";
packageId = "tracing";
features = [ "log" ];
}
{
name = "uuid";
packageId = "uuid";
optional = true;
}
{
name = "whoami";
packageId = "whoami";
usesDefaultFeatures = false;
}
];
features = {
"any" = [ "sqlx-core/any" ];
"bigdecimal" = [ "dep:bigdecimal" "dep:num-bigint" ];
"bit-vec" = [ "dep:bit-vec" ];
"chrono" = [ "dep:chrono" ];
"ipnetwork" = [ "dep:ipnetwork" ];
"json" = [ "sqlx-core/json" ];
"mac_address" = [ "dep:mac_address" ];
"migrate" = [ "sqlx-core/migrate" ];
"offline" = [ "sqlx-core/offline" ];
"rust_decimal" = [ "dep:rust_decimal" "rust_decimal/maths" ];
"time" = [ "dep:time" ];
"uuid" = [ "dep:uuid" ];
};
resolvedDefaultFeatures = [ "any" "chrono" "json" "migrate" "offline" "rust_decimal" "uuid" ];
};
"sqlx-sqlite" = rec {
crateName = "sqlx-sqlite";
version = "0.7.4";
edition = "2021";
sha256 = "1ap0bb2hazbrdgd7mhnckdg9xcchx0k094di9gnhpnhlhh5fyi5j";
libName = "sqlx_sqlite";
authors = [
"Ryan Leckey <leckey.ryan@gmail.com>"
"Austin Bonander <austin.bonander@gmail.com>"
"Chloe Ross <orangesnowfox@gmail.com>"
"Daniel Akhterov <akhterovd@gmail.com>"
];
dependencies = [
{
name = "atoi";
packageId = "atoi";
}
{
name = "chrono";
packageId = "chrono";
optional = true;
usesDefaultFeatures = false;
}
{
name = "flume";
packageId = "flume";
usesDefaultFeatures = false;
features = [ "async" ];
}
{
name = "futures-channel";
packageId = "futures-channel";
usesDefaultFeatures = false;
features = [ "sink" "alloc" "std" ];
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-executor";
packageId = "futures-executor";
}
{
name = "futures-intrusive";
packageId = "futures-intrusive";
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "alloc" "sink" ];
}
{
name = "libsqlite3-sys";
packageId = "libsqlite3-sys";
usesDefaultFeatures = false;
features = [ "pkg-config" "vcpkg" "bundled" "unlock_notify" ];
}
{
name = "log";
packageId = "log";
}
{
name = "percent-encoding";
packageId = "percent-encoding";
}
{
name = "serde";
packageId = "serde";
optional = true;
features = [ "derive" ];
}
{
name = "sqlx-core";
packageId = "sqlx-core";
}
{
name = "tracing";
packageId = "tracing";
features = [ "log" ];
}
{
name = "url";
packageId = "url";
usesDefaultFeatures = false;
}
{
name = "urlencoding";
packageId = "urlencoding";
}
{
name = "uuid";
packageId = "uuid";
optional = true;
}
];
features = {
"any" = [ "sqlx-core/any" ];
"chrono" = [ "dep:chrono" ];
"json" = [ "sqlx-core/json" "serde" ];
"migrate" = [ "sqlx-core/migrate" ];
"offline" = [ "sqlx-core/offline" "serde" ];
"regexp" = [ "dep:regex" ];
"serde" = [ "dep:serde" ];
"time" = [ "dep:time" ];
"uuid" = [ "dep:uuid" ];
};
resolvedDefaultFeatures = [ "any" "chrono" "json" "migrate" "offline" "serde" "uuid" ];
};
"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 = {
};
};
"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>"
];
};
"strum" = rec {
crateName = "strum";
version = "0.25.0";
edition = "2018";
sha256 = "09g1q55ms8vax1z0mxlbva3vm8n2r1179kfvbccnkjcidzm58399";
authors = [
"Peter Glotfelty <peter.glotfelty@microsoft.com>"
];
dependencies = [
{
name = "strum_macros";
packageId = "strum_macros";
optional = true;
}
];
devDependencies = [
{
name = "strum_macros";
packageId = "strum_macros";
}
];
features = {
"default" = [ "std" ];
"derive" = [ "strum_macros" ];
"phf" = [ "dep:phf" ];
"strum_macros" = [ "dep:strum_macros" ];
};
resolvedDefaultFeatures = [ "default" "derive" "std" "strum_macros" ];
};
"strum_macros" = rec {
crateName = "strum_macros";
version = "0.25.3";
edition = "2018";
sha256 = "184y62g474zqb2f7n16x3ghvlyjbh50viw32p9w9l5lwmjlizp13";
procMacro = true;
authors = [
"Peter Glotfelty <peter.glotfelty@microsoft.com>"
];
dependencies = [
{
name = "heck";
packageId = "heck 0.4.1";
}
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "rustversion";
packageId = "rustversion";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "parsing" "extra-traits" ];
}
];
};
"subtle" = rec {
crateName = "subtle";
version = "2.6.1";
edition = "2018";
sha256 = "14ijxaymghbl1p0wql9cib5zlwiina7kall6w7g89csprkgbvhhk";
authors = [
"Isis Lovecruft <isis@patternsinthevoid.net>"
"Henry de Valence <hdevalence@hdevalence.ca>"
];
features = {
"default" = [ "std" "i128" ];
};
};
"syn 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" "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" ];
};
"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" ];
};
"tap" = rec {
crateName = "tap";
version = "1.0.1";
edition = "2015";
sha256 = "0sc3gl4nldqpvyhqi3bbd0l9k7fngrcl4zs47n314nqqk4bpx4sm";
authors = [
"Elliott Linder <elliott.darfink@gmail.com>"
"myrrlyn <self@myrrlyn.dev>"
];
};
"target-triple" = rec {
crateName = "target-triple";
version = "1.0.0";
edition = "2021";
sha256 = "0yvp9fn2854wzj8rnyi3xr5r8wc7rfag8b733rvs935pvy7g67jr";
libName = "target_triple";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
};
"tempfile" = rec {
crateName = "tempfile";
version = "3.25.0";
edition = "2021";
sha256 = "1wg5jnzbgpb1wmw396v31f0c70dvj5mpik7rk7fzdccmghgpjdh1";
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.1";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((target."unix" or false) || (target."windows" or false) || ("wasi" == target."os" or null));
}
{
name = "once_cell";
packageId = "once_cell";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "rustix";
packageId = "rustix";
target = { target, features }: ((target."unix" or false) || ("wasi" == target."os" or null));
features = [ "fs" ];
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
target = { target, features }: (target."windows" or false);
features = [ "Win32_Storage_FileSystem" "Win32_Foundation" ];
}
];
features = {
"default" = [ "getrandom" ];
"getrandom" = [ "dep:getrandom" ];
};
resolvedDefaultFeatures = [ "default" "getrandom" ];
};
"termcolor" = rec {
crateName = "termcolor";
version = "1.4.1";
edition = "2018";
sha256 = "0mappjh3fj3p2nmrg4y7qv94rchwi9mzmgmfflr8p2awdj7lyy86";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "winapi-util";
packageId = "winapi-util";
target = { target, features }: (target."windows" or false);
}
];
};
"thiserror" = rec {
crateName = "thiserror";
version = "1.0.69";
edition = "2021";
sha256 = "0lizjay08agcr5hs9yfzzj6axs53a2rgx070a1dsi3jpkcrzbamn";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "thiserror-impl";
packageId = "thiserror-impl";
}
];
};
"thiserror-impl" = 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";
}
];
};
"tinystr" = rec {
crateName = "tinystr";
version = "0.8.2";
edition = "2021";
sha256 = "0sa8z88axdsf088hgw5p4xcyi6g3w3sgbb6qdp81bph9bk2fkls2";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "zerovec";
packageId = "zerovec";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde_core?/alloc" "zerovec?/alloc" ];
"databake" = [ "dep:databake" ];
"default" = [ "alloc" ];
"serde" = [ "dep:serde_core" ];
"zerovec" = [ "dep:zerovec" ];
};
resolvedDefaultFeatures = [ "zerovec" ];
};
"tinytemplate" = rec {
crateName = "tinytemplate";
version = "1.2.1";
edition = "2015";
sha256 = "1g5n77cqkdh9hy75zdb01adxn45mkh9y40wdr7l68xpz35gnnkdy";
authors = [
"Brook Heisler <brookheisler@gmail.com>"
];
dependencies = [
{
name = "serde";
packageId = "serde";
}
{
name = "serde_json";
packageId = "serde_json";
}
];
};
"tinyvec" = rec {
crateName = "tinyvec";
version = "1.10.0";
edition = "2018";
sha256 = "1yhk0qdqyiaa4v2j9h8pzax5gxgwpz4da0lcphfil6g6pk1zv9dz";
authors = [
"Lokathor <zefria@gmail.com>"
];
dependencies = [
{
name = "tinyvec_macros";
packageId = "tinyvec_macros";
optional = true;
}
];
features = {
"alloc" = [ "tinyvec_macros" ];
"arbitrary" = [ "dep:arbitrary" ];
"borsh" = [ "dep:borsh" ];
"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" ];
"std" = [ "alloc" ];
"tinyvec_macros" = [ "dep:tinyvec_macros" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "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.49.0";
edition = "2021";
sha256 = "11ix3pl03s0bp71q3wddrbf8xr0cpn47d7fzr6m42r3kswy918kj";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes";
optional = true;
}
{
name = "libc";
packageId = "libc";
optional = true;
target = { target, features }: ((target."tokio_unstable" or false) && ("linux" == target."os" or null));
}
{
name = "libc";
packageId = "libc";
optional = true;
target = { target, features }: (target."unix" or false);
}
{
name = "mio";
packageId = "mio";
optional = true;
usesDefaultFeatures = false;
}
{
name = "mio";
packageId = "mio";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((target."tokio_unstable" or false) && ("linux" == target."os" or null));
features = [ "os-poll" "os-ext" ];
}
{
name = "parking_lot";
packageId = "parking_lot";
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.2";
optional = true;
target = { target, features }: (!(builtins.elem "wasm" target."family"));
features = [ "all" ];
}
{
name = "tokio-macros";
packageId = "tokio-macros";
optional = true;
}
{
name = "windows-sys";
packageId = "windows-sys 0.61.2";
optional = true;
target = { target, features }: (target."windows" or false);
}
];
devDependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
{
name = "socket2";
packageId = "socket2 0.6.2";
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" "test-util" "time" "tokio-macros" "windows-sys" ];
};
"tokio-macros" = rec {
crateName = "tokio-macros";
version = "2.6.0";
edition = "2021";
sha256 = "19czvgliginbzyhhfbmj77wazqn2y8g27y2nirfajdlm41bphh5g";
procMacro = true;
libName = "tokio_macros";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "full" ];
}
];
};
"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" "fs" "time" ];
};
"tokio-test" = rec {
crateName = "tokio-test";
version = "0.4.5";
edition = "2021";
sha256 = "0ig5dmv37xb6a2p9mj8crbkggbizs3qyi8wkfrrsz9qh19wj8v9z";
libName = "tokio_test";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "futures-core";
packageId = "futures-core";
}
{
name = "tokio";
packageId = "tokio";
features = [ "rt" "sync" "time" "test-util" ];
}
{
name = "tokio-stream";
packageId = "tokio-stream";
}
];
devDependencies = [
{
name = "tokio";
packageId = "tokio";
features = [ "full" ];
}
];
};
"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" = rec {
crateName = "toml";
version = "1.0.3+spec-1.1.0";
edition = "2021";
sha256 = "033cc36cl3w7mfq9xzgxnslz573j06idzb94vd3q70dd36plwqf7";
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";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "toml_datetime";
packageId = "toml_datetime 1.0.0+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.14";
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";
features = {
"serde" = [ "dep: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" "default" "std" ];
};
"toml_datetime 1.0.0+spec-1.1.0" = rec {
crateName = "toml_datetime";
version = "1.0.0+spec-1.1.0";
edition = "2021";
sha256 = "0gpiaddhignli6whj52ysjxwmmy82r8qxihckzss8y4md5f5bhij";
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 0.19.15" = rec {
crateName = "toml_edit";
version = "0.19.15";
edition = "2021";
sha256 = "08bl7rp5g6jwmfpad9s8jpw8wjrciadpnbaswgywpr9hv9qbfnqv";
authors = [
"Andronik Ordian <write@reusable.software>"
"Ed Page <eopage@gmail.com>"
];
dependencies = [
{
name = "indexmap";
packageId = "indexmap";
features = [ "std" ];
}
{
name = "toml_datetime";
packageId = "toml_datetime 0.6.11";
}
{
name = "winnow";
packageId = "winnow 0.5.40";
}
];
features = {
"perf" = [ "dep:kstring" ];
"serde" = [ "dep:serde" "toml_datetime/serde" "dep:serde_spanned" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"toml_edit 0.23.10+spec-1.0.0" = rec {
crateName = "toml_edit";
version = "0.23.10+spec-1.0.0";
edition = "2021";
sha256 = "0saj5c676j8a3sqaj9akkp09wambg8aflji4zblwwa70azvvkj44";
dependencies = [
{
name = "indexmap";
packageId = "indexmap";
features = [ "std" ];
}
{
name = "toml_datetime";
packageId = "toml_datetime 0.7.5+spec-1.1.0";
}
{
name = "toml_parser";
packageId = "toml_parser";
optional = true;
}
{
name = "winnow";
packageId = "winnow 0.7.14";
optional = true;
}
];
features = {
"debug" = [ "toml_parser?/debug" "dep:anstream" "dep:anstyle" "display" ];
"default" = [ "parse" "display" ];
"display" = [ "dep:toml_writer" ];
"parse" = [ "dep:toml_parser" "dep:winnow" ];
"serde" = [ "dep:serde_core" "toml_datetime/serde" "dep:serde_spanned" ];
};
resolvedDefaultFeatures = [ "parse" ];
};
"toml_parser" = rec {
crateName = "toml_parser";
version = "1.0.9+spec-1.1.0";
edition = "2021";
sha256 = "1i54qpvvcppy8ybdn9gssas81vfzq0kmgkcnxzhyf8w9w0al8bbh";
dependencies = [
{
name = "winnow";
packageId = "winnow 0.7.14";
usesDefaultFeatures = false;
}
];
features = {
"debug" = [ "std" "dep:anstream" "dep:anstyle" ];
"default" = [ "std" ];
"simd" = [ "winnow/simd" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"toml_writer" = rec {
crateName = "toml_writer";
version = "1.0.6+spec-1.1.0";
edition = "2021";
sha256 = "01r6x42d1p8p5kzfsi1fm4dakm3w53vi69f2ivyqpvi1xm5g25mb";
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"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;
}
];
features = {
"default" = [ "std" "valuable?/std" ];
"once_cell" = [ "dep:once_cell" ];
"std" = [ "once_cell" ];
"valuable" = [ "dep:valuable" ];
};
resolvedDefaultFeatures = [ "once_cell" "std" ];
};
"trybuild" = rec {
crateName = "trybuild";
version = "1.0.116";
edition = "2021";
sha256 = "0vk1fdfjcxzr2iy7ikg9qkw6j28hcwk0dr8k22aa5lqv37q3bij7";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "glob";
packageId = "glob";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "target-triple";
packageId = "target-triple";
}
{
name = "termcolor";
packageId = "termcolor";
}
{
name = "toml";
packageId = "toml";
}
];
features = {
"diff" = [ "dep:dissimilar" ];
};
};
"typenum" = rec {
crateName = "typenum";
version = "1.19.0";
edition = "2018";
sha256 = "1fw2mpbn2vmqan56j1b3fbpcdg80mz26fm53fs16bq5xcq84hban";
authors = [
"Paho Lurie-Gregg <paho@paholg.com>"
"Andre Bogus <bogusandre@gmail.com>"
];
features = {
"scale-info" = [ "dep:scale-info" ];
"scale_info" = [ "scale-info/derive" ];
};
};
"ucd-trie" = rec {
crateName = "ucd-trie";
version = "0.1.7";
edition = "2021";
sha256 = "0wc9p07sqwz320848i52nvyjvpsxkx3kv5bfbmm6s35809fdk5i8";
libName = "ucd_trie";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"unarray" = rec {
crateName = "unarray";
version = "0.1.4";
edition = "2018";
sha256 = "154smf048k84prsdgh09nkm2n0w0336v84jd4zikyn6v6jrqbspa";
};
"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-ident" = rec {
crateName = "unicode-ident";
version = "1.0.24";
edition = "2021";
sha256 = "0xfs8y1g7syl2iykji8zk5hgfi5jw819f5zsrbaxmlzwsly33r76";
libName = "unicode_ident";
authors = [
"David Tolnay <dtolnay@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.12.0";
edition = "2018";
sha256 = "14qla2jfx74yyb9ds3d2mpwpa4l4lzb9z57c6d2ba511458z5k7n";
libName = "unicode_segmentation";
authors = [
"kwantam <kwantam@gmail.com>"
"Manish Goregaokar <manishsmail@gmail.com>"
];
features = {
};
};
"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" ];
};
"unicode_categories" = rec {
crateName = "unicode_categories";
version = "0.1.1";
edition = "2015";
sha256 = "0kp1d7fryxxm7hqywbk88yb9d1avsam9sg76xh36k5qx2arj9v1r";
authors = [
"Sean Gillespie <sean@swgillespie.me>"
];
};
"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;
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
}
];
features = {
"default" = [ "std" ];
"serde" = [ "dep:serde" "dep:serde_derive" ];
"std" = [ "idna/std" "percent-encoding/std" "form_urlencoded/std" "serde?/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"urlencoding" = rec {
crateName = "urlencoding";
version = "2.1.3";
edition = "2021";
sha256 = "1nj99jp37k47n0hvaz5fvz7z6jd0sb4ppvfy3nphr1zbnyixpy6s";
authors = [
"Kornel <kornel@geekhood.net>"
"Bertram Truong <b@bertramtruong.com>"
];
};
"utf8_iter" = rec {
crateName = "utf8_iter";
version = "1.0.4";
edition = "2021";
sha256 = "1gmna9flnj8dbyd8ba17zigrp9c4c3zclngf5lnb5yvz1ri41hdn";
authors = [
"Henri Sivonen <hsivonen@hsivonen.fi>"
];
};
"uuid" = rec {
crateName = "uuid";
version = "1.21.0";
edition = "2021";
sha256 = "1nsxfd17gfkvl1jmwcy5lnq6z32b8kf19is04byl6b95an2k6wmn";
authors = [
"Ashley Mannix<ashleymannix@live.com.au>"
"Dylan DPC<dylan.dpc@gmail.com>"
"Hunar Roop Kahlon<hunar.roop@gmail.com>"
];
dependencies = [
{
name = "atomic";
packageId = "atomic";
optional = true;
usesDefaultFeatures = false;
}
{
name = "getrandom";
packageId = "getrandom 0.4.1";
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 = "md-5";
packageId = "md-5";
optional = true;
usesDefaultFeatures = false;
}
{
name = "serde_core";
packageId = "serde_core";
optional = true;
usesDefaultFeatures = false;
}
{
name = "sha1_smol";
packageId = "sha1_smol";
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)));
features = [ "msrv" ];
}
];
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 = [ "atomic" "default" "md5" "rng" "serde" "sha1" "std" "v1" "v3" "v4" "v5" ];
};
"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>"
];
};
"wait-timeout" = rec {
crateName = "wait-timeout";
version = "0.2.1";
edition = "2015";
crateBin = [];
sha256 = "04azqv9mnfxgvnc8j2wp362xraybakh2dy1nj22gj51rdl93pb09";
libName = "wait_timeout";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" or false);
}
];
};
"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);
}
];
};
"wasi" = 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" ];
};
"wasip2" = rec {
crateName = "wasip2";
version = "1.0.2+wasi-0.2.9";
edition = "2021";
sha256 = "1xdw7v08jpfjdg94sp4lbdgzwa587m5ifpz6fpdnkh02kwizj5wm";
dependencies = [
{
name = "wit-bindgen";
packageId = "wit-bindgen";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "dep:alloc" ];
"bitflags" = [ "wit-bindgen/bitflags" ];
"core" = [ "dep:core" ];
"default" = [ "std" "bitflags" ];
"rustc-dep-of-std" = [ "core" "alloc" "wit-bindgen/rustc-dep-of-std" ];
};
};
"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";
usesDefaultFeatures = false;
features = [ "async" ];
}
];
devDependencies = [
{
name = "wit-bindgen";
packageId = "wit-bindgen";
usesDefaultFeatures = false;
features = [ "async-spawn" ];
}
];
features = {
"http-compat" = [ "dep:bytes" "dep:http-body" "dep:http" "dep:thiserror" "wit-bindgen/async-spawn" ];
};
};
"wasite" = rec {
crateName = "wasite";
version = "0.1.0";
edition = "2018";
sha256 = "0nw5h9nmcl4fyf4j5d4mfdjfgvwi1cakpi349wc4zrr59wxxinmq";
};
"wasm-bindgen" = rec {
crateName = "wasm-bindgen";
version = "0.2.110";
edition = "2021";
sha256 = "0rjqqgb1salkknpxn33yqkpcdka0n6g075zhhjyr37baqv6l3qhx";
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" "msrv" "std" ];
};
"wasm-bindgen-macro" = rec {
crateName = "wasm-bindgen-macro";
version = "0.2.110";
edition = "2021";
sha256 = "0llaphxgmkgmvzbzzfp0w3gdx73pxlygzmfpwqyjx3q495kdybz1";
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.110";
edition = "2021";
sha256 = "02dk9yy1f1ri5h3zal8gqj0z9ns6znbf7h9l4d3c6njnbiwx2qqf";
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.110";
edition = "2021";
links = "wasm_bindgen";
sha256 = "0lybp5l8qmmqqsha47krj8c527jhia4j924zpzv73km54fncvyg9";
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" ];
};
};
"wasmparser" = rec {
crateName = "wasmparser";
version = "0.244.0";
edition = "2021";
sha256 = "1zi821hrlsxfhn39nqpmgzc0wk7ax3dv6vrs5cw6kb0v5v3hgf27";
authors = [
"Yury Delendik <ydelendik@mozilla.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
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.87";
edition = "2021";
sha256 = "1zxikgr6ykdn4k011mma040w33jihi56nfxgcbp71rrlh5qwbizj";
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" ];
"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 = [ "CanvasRenderingContext2d" "Document" "DomRect" "DomRectReadOnly" "Element" "EventTarget" "HtmlCanvasElement" "HtmlElement" "Node" "Window" "default" "std" ];
};
"webpki-roots" = rec {
crateName = "webpki-roots";
version = "0.25.4";
edition = "2018";
sha256 = "1qgqa615gc1cgklls4bkjp9jv9pvv3jnl82lc6wd7dkximywa82z";
libName = "webpki_roots";
};
"whoami" = rec {
crateName = "whoami";
version = "1.6.1";
edition = "2018";
sha256 = "0zg9sz669vhqyxysn4lymnianj29jxs2vl6k2lqcl0kp0yslsjjx";
dependencies = [
{
name = "libredox";
packageId = "libredox";
target = { target, features }: (("redox" == target."os" or null) && (!("wasm32" == target."arch" or null)));
}
{
name = "wasite";
packageId = "wasite";
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null));
}
];
features = {
"default" = [ "web" ];
"web" = [ "web-sys" ];
"web-sys" = [ "dep:web-sys" ];
};
};
"winapi" = rec {
crateName = "winapi";
version = "0.3.9";
edition = "2015";
sha256 = "06gl025x418lchw1wxj64ycr7gha83m44cjr5sarhynd9xkrm0sw";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
dependencies = [
{
name = "winapi-i686-pc-windows-gnu";
packageId = "winapi-i686-pc-windows-gnu";
target = { target, features }: (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 = [ "handleapi" "ws2ipdef" "ws2tcpip" ];
};
"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_UI" "Win32_UI_Shell" "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_System" "Win32_System_Threading" "default" ];
};
"windows-sys 0.60.2" = rec {
crateName = "windows-sys";
version = "0.60.2";
edition = "2021";
sha256 = "1jrbc615ihqnhjhxplr2kw7rasrskv9wj3lr80hgfd42sbj01xgj";
libName = "windows_sys";
authors = [
"Microsoft"
];
dependencies = [
{
name = "windows-targets";
packageId = "windows-targets 0.53.5";
usesDefaultFeatures = false;
}
];
features = {
"Wdk" = [ "Win32_Foundation" ];
"Wdk_Devices" = [ "Wdk" ];
"Wdk_Devices_Bluetooth" = [ "Wdk_Devices" ];
"Wdk_Devices_HumanInterfaceDevice" = [ "Wdk_Devices" ];
"Wdk_Foundation" = [ "Wdk" ];
"Wdk_Graphics" = [ "Wdk" ];
"Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
"Wdk_NetworkManagement" = [ "Wdk" ];
"Wdk_NetworkManagement_Ndis" = [ "Wdk_NetworkManagement" ];
"Wdk_NetworkManagement_WindowsFilteringPlatform" = [ "Wdk_NetworkManagement" ];
"Wdk_Storage" = [ "Wdk" ];
"Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
"Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
"Wdk_System" = [ "Wdk" ];
"Wdk_System_IO" = [ "Wdk_System" ];
"Wdk_System_Memory" = [ "Wdk_System" ];
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
"Wdk_System_Registry" = [ "Wdk_System" ];
"Wdk_System_SystemInformation" = [ "Wdk_System" ];
"Wdk_System_SystemServices" = [ "Wdk_System" ];
"Wdk_System_Threading" = [ "Wdk_System" ];
"Win32" = [ "Win32_Foundation" ];
"Win32_Data" = [ "Win32" ];
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
"Win32_Devices" = [ "Win32" ];
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
"Win32_Devices_Beep" = [ "Win32_Devices" ];
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
"Win32_Devices_Cdrom" = [ "Win32_Devices" ];
"Win32_Devices_Communication" = [ "Win32_Devices" ];
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
"Win32_Devices_Display" = [ "Win32_Devices" ];
"Win32_Devices_Dvd" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
"Win32_Devices_Fax" = [ "Win32_Devices" ];
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
"Win32_Devices_Nfc" = [ "Win32_Devices" ];
"Win32_Devices_Nfp" = [ "Win32_Devices" ];
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
"Win32_Devices_Properties" = [ "Win32_Devices" ];
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
"Win32_Devices_Usb" = [ "Win32_Devices" ];
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
"Win32_Foundation" = [ "Win32" ];
"Win32_Gaming" = [ "Win32" ];
"Win32_Globalization" = [ "Win32" ];
"Win32_Graphics" = [ "Win32" ];
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
"Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
"Win32_Management" = [ "Win32" ];
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
"Win32_Media" = [ "Win32" ];
"Win32_Media_Audio" = [ "Win32_Media" ];
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
"Win32_Media_Multimedia" = [ "Win32_Media" ];
"Win32_Media_Streaming" = [ "Win32_Media" ];
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
"Win32_NetworkManagement" = [ "Win32" ];
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
"Win32_Networking" = [ "Win32" ];
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
"Win32_Security" = [ "Win32" ];
"Win32_Security_AppLocker" = [ "Win32_Security" ];
"Win32_Security_Authentication" = [ "Win32_Security" ];
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
"Win32_Security_Authorization" = [ "Win32_Security" ];
"Win32_Security_Credentials" = [ "Win32_Security" ];
"Win32_Security_Cryptography" = [ "Win32_Security" ];
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
"Win32_Security_Isolation" = [ "Win32_Security" ];
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
"Win32_Security_WinTrust" = [ "Win32_Security" ];
"Win32_Security_WinWlx" = [ "Win32_Security" ];
"Win32_Storage" = [ "Win32" ];
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
"Win32_Storage_Compression" = [ "Win32_Storage" ];
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
"Win32_Storage_Jet" = [ "Win32_Storage" ];
"Win32_Storage_Nvme" = [ "Win32_Storage" ];
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
"Win32_Storage_Xps" = [ "Win32_Storage" ];
"Win32_System" = [ "Win32" ];
"Win32_System_AddressBook" = [ "Win32_System" ];
"Win32_System_Antimalware" = [ "Win32_System" ];
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
"Win32_System_ClrHosting" = [ "Win32_System" ];
"Win32_System_Com" = [ "Win32_System" ];
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
"Win32_System_ComponentServices" = [ "Win32_System" ];
"Win32_System_Console" = [ "Win32_System" ];
"Win32_System_CorrelationVector" = [ "Win32_System" ];
"Win32_System_DataExchange" = [ "Win32_System" ];
"Win32_System_DeploymentServices" = [ "Win32_System" ];
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
"Win32_System_Diagnostics" = [ "Win32_System" ];
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_TraceLogging" = [ "Win32_System_Diagnostics" ];
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
"Win32_System_Environment" = [ "Win32_System" ];
"Win32_System_ErrorReporting" = [ "Win32_System" ];
"Win32_System_EventCollector" = [ "Win32_System" ];
"Win32_System_EventLog" = [ "Win32_System" ];
"Win32_System_EventNotificationService" = [ "Win32_System" ];
"Win32_System_GroupPolicy" = [ "Win32_System" ];
"Win32_System_HostCompute" = [ "Win32_System" ];
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
"Win32_System_Hypervisor" = [ "Win32_System" ];
"Win32_System_IO" = [ "Win32_System" ];
"Win32_System_Iis" = [ "Win32_System" ];
"Win32_System_Ioctl" = [ "Win32_System" ];
"Win32_System_JobObjects" = [ "Win32_System" ];
"Win32_System_Js" = [ "Win32_System" ];
"Win32_System_Kernel" = [ "Win32_System" ];
"Win32_System_LibraryLoader" = [ "Win32_System" ];
"Win32_System_Mailslots" = [ "Win32_System" ];
"Win32_System_Mapi" = [ "Win32_System" ];
"Win32_System_Memory" = [ "Win32_System" ];
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
"Win32_System_MessageQueuing" = [ "Win32_System" ];
"Win32_System_MixedReality" = [ "Win32_System" ];
"Win32_System_Ole" = [ "Win32_System" ];
"Win32_System_PasswordManagement" = [ "Win32_System" ];
"Win32_System_Performance" = [ "Win32_System" ];
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
"Win32_System_Pipes" = [ "Win32_System" ];
"Win32_System_Power" = [ "Win32_System" ];
"Win32_System_ProcessStatus" = [ "Win32_System" ];
"Win32_System_Recovery" = [ "Win32_System" ];
"Win32_System_Registry" = [ "Win32_System" ];
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
"Win32_System_RemoteManagement" = [ "Win32_System" ];
"Win32_System_RestartManager" = [ "Win32_System" ];
"Win32_System_Restore" = [ "Win32_System" ];
"Win32_System_Rpc" = [ "Win32_System" ];
"Win32_System_Search" = [ "Win32_System" ];
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
"Win32_System_SecurityCenter" = [ "Win32_System" ];
"Win32_System_Services" = [ "Win32_System" ];
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
"Win32_System_Shutdown" = [ "Win32_System" ];
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
"Win32_System_SystemInformation" = [ "Win32_System" ];
"Win32_System_SystemServices" = [ "Win32_System" ];
"Win32_System_Threading" = [ "Win32_System" ];
"Win32_System_Time" = [ "Win32_System" ];
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
"Win32_System_Variant" = [ "Win32_System" ];
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
"Win32_System_Wmi" = [ "Win32_System" ];
"Win32_UI" = [ "Win32" ];
"Win32_UI_Accessibility" = [ "Win32_UI" ];
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
"Win32_UI_Controls" = [ "Win32_UI" ];
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
"Win32_UI_HiDpi" = [ "Win32_UI" ];
"Win32_UI_Input" = [ "Win32_UI" ];
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
"Win32_UI_Magnification" = [ "Win32_UI" ];
"Win32_UI_Shell" = [ "Win32_UI" ];
"Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
"Win32_UI_TabletPC" = [ "Win32_UI" ];
"Win32_UI_TextServices" = [ "Win32_UI" ];
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
"Win32_Web" = [ "Win32" ];
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
};
resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_Networking" "Win32_Networking_WinSock" "Win32_System" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
};
"windows-sys 0.61.2" = rec {
crateName = "windows-sys";
version = "0.61.2";
edition = "2021";
sha256 = "1z7k3y9b6b5h52kid57lvmvm05362zv1v8w0gc7xyv5xphlp44xf";
libName = "windows_sys";
dependencies = [
{
name = "windows-link";
packageId = "windows-link";
usesDefaultFeatures = false;
}
];
features = {
"Wdk" = [ "Win32_Foundation" ];
"Wdk_Devices" = [ "Wdk" ];
"Wdk_Devices_Bluetooth" = [ "Wdk_Devices" ];
"Wdk_Devices_HumanInterfaceDevice" = [ "Wdk_Devices" ];
"Wdk_Foundation" = [ "Wdk" ];
"Wdk_Graphics" = [ "Wdk" ];
"Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
"Wdk_NetworkManagement" = [ "Wdk" ];
"Wdk_NetworkManagement_Ndis" = [ "Wdk_NetworkManagement" ];
"Wdk_NetworkManagement_WindowsFilteringPlatform" = [ "Wdk_NetworkManagement" ];
"Wdk_Storage" = [ "Wdk" ];
"Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
"Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
"Wdk_System" = [ "Wdk" ];
"Wdk_System_IO" = [ "Wdk_System" ];
"Wdk_System_Memory" = [ "Wdk_System" ];
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
"Wdk_System_Registry" = [ "Wdk_System" ];
"Wdk_System_SystemInformation" = [ "Wdk_System" ];
"Wdk_System_SystemServices" = [ "Wdk_System" ];
"Wdk_System_Threading" = [ "Wdk_System" ];
"Win32" = [ "Win32_Foundation" ];
"Win32_Data" = [ "Win32" ];
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
"Win32_Devices" = [ "Win32" ];
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
"Win32_Devices_Beep" = [ "Win32_Devices" ];
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
"Win32_Devices_Cdrom" = [ "Win32_Devices" ];
"Win32_Devices_Communication" = [ "Win32_Devices" ];
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
"Win32_Devices_Display" = [ "Win32_Devices" ];
"Win32_Devices_Dvd" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
"Win32_Devices_Fax" = [ "Win32_Devices" ];
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
"Win32_Devices_Nfc" = [ "Win32_Devices" ];
"Win32_Devices_Nfp" = [ "Win32_Devices" ];
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
"Win32_Devices_Properties" = [ "Win32_Devices" ];
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
"Win32_Devices_Usb" = [ "Win32_Devices" ];
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
"Win32_Foundation" = [ "Win32" ];
"Win32_Gaming" = [ "Win32" ];
"Win32_Globalization" = [ "Win32" ];
"Win32_Graphics" = [ "Win32" ];
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
"Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
"Win32_Management" = [ "Win32" ];
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
"Win32_Media" = [ "Win32" ];
"Win32_Media_Audio" = [ "Win32_Media" ];
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
"Win32_Media_Multimedia" = [ "Win32_Media" ];
"Win32_Media_Streaming" = [ "Win32_Media" ];
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
"Win32_NetworkManagement" = [ "Win32" ];
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
"Win32_Networking" = [ "Win32" ];
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
"Win32_Security" = [ "Win32" ];
"Win32_Security_AppLocker" = [ "Win32_Security" ];
"Win32_Security_Authentication" = [ "Win32_Security" ];
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
"Win32_Security_Authorization" = [ "Win32_Security" ];
"Win32_Security_Credentials" = [ "Win32_Security" ];
"Win32_Security_Cryptography" = [ "Win32_Security" ];
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
"Win32_Security_Isolation" = [ "Win32_Security" ];
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
"Win32_Security_WinTrust" = [ "Win32_Security" ];
"Win32_Security_WinWlx" = [ "Win32_Security" ];
"Win32_Storage" = [ "Win32" ];
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
"Win32_Storage_Compression" = [ "Win32_Storage" ];
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
"Win32_Storage_Jet" = [ "Win32_Storage" ];
"Win32_Storage_Nvme" = [ "Win32_Storage" ];
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
"Win32_Storage_Xps" = [ "Win32_Storage" ];
"Win32_System" = [ "Win32" ];
"Win32_System_AddressBook" = [ "Win32_System" ];
"Win32_System_Antimalware" = [ "Win32_System" ];
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
"Win32_System_ClrHosting" = [ "Win32_System" ];
"Win32_System_Com" = [ "Win32_System" ];
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
"Win32_System_ComponentServices" = [ "Win32_System" ];
"Win32_System_Console" = [ "Win32_System" ];
"Win32_System_CorrelationVector" = [ "Win32_System" ];
"Win32_System_DataExchange" = [ "Win32_System" ];
"Win32_System_DeploymentServices" = [ "Win32_System" ];
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
"Win32_System_Diagnostics" = [ "Win32_System" ];
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
"Win32_System_Diagnostics_TraceLogging" = [ "Win32_System_Diagnostics" ];
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
"Win32_System_Environment" = [ "Win32_System" ];
"Win32_System_ErrorReporting" = [ "Win32_System" ];
"Win32_System_EventCollector" = [ "Win32_System" ];
"Win32_System_EventLog" = [ "Win32_System" ];
"Win32_System_EventNotificationService" = [ "Win32_System" ];
"Win32_System_GroupPolicy" = [ "Win32_System" ];
"Win32_System_HostCompute" = [ "Win32_System" ];
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
"Win32_System_Hypervisor" = [ "Win32_System" ];
"Win32_System_IO" = [ "Win32_System" ];
"Win32_System_Iis" = [ "Win32_System" ];
"Win32_System_Ioctl" = [ "Win32_System" ];
"Win32_System_JobObjects" = [ "Win32_System" ];
"Win32_System_Js" = [ "Win32_System" ];
"Win32_System_Kernel" = [ "Win32_System" ];
"Win32_System_LibraryLoader" = [ "Win32_System" ];
"Win32_System_Mailslots" = [ "Win32_System" ];
"Win32_System_Mapi" = [ "Win32_System" ];
"Win32_System_Memory" = [ "Win32_System" ];
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
"Win32_System_MessageQueuing" = [ "Win32_System" ];
"Win32_System_MixedReality" = [ "Win32_System" ];
"Win32_System_Ole" = [ "Win32_System" ];
"Win32_System_PasswordManagement" = [ "Win32_System" ];
"Win32_System_Performance" = [ "Win32_System" ];
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
"Win32_System_Pipes" = [ "Win32_System" ];
"Win32_System_Power" = [ "Win32_System" ];
"Win32_System_ProcessStatus" = [ "Win32_System" ];
"Win32_System_Recovery" = [ "Win32_System" ];
"Win32_System_Registry" = [ "Win32_System" ];
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
"Win32_System_RemoteManagement" = [ "Win32_System" ];
"Win32_System_RestartManager" = [ "Win32_System" ];
"Win32_System_Restore" = [ "Win32_System" ];
"Win32_System_Rpc" = [ "Win32_System" ];
"Win32_System_Search" = [ "Win32_System" ];
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
"Win32_System_SecurityCenter" = [ "Win32_System" ];
"Win32_System_Services" = [ "Win32_System" ];
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
"Win32_System_Shutdown" = [ "Win32_System" ];
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
"Win32_System_SystemInformation" = [ "Win32_System" ];
"Win32_System_SystemServices" = [ "Win32_System" ];
"Win32_System_Threading" = [ "Win32_System" ];
"Win32_System_Time" = [ "Win32_System" ];
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
"Win32_System_Variant" = [ "Win32_System" ];
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
"Win32_System_Wmi" = [ "Win32_System" ];
"Win32_UI" = [ "Win32" ];
"Win32_UI_Accessibility" = [ "Win32_UI" ];
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
"Win32_UI_Controls" = [ "Win32_UI" ];
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
"Win32_UI_HiDpi" = [ "Win32_UI" ];
"Win32_UI_Input" = [ "Win32_UI" ];
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
"Win32_UI_Magnification" = [ "Win32_UI" ];
"Win32_UI_Shell" = [ "Win32_UI" ];
"Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
"Win32_UI_TabletPC" = [ "Win32_UI" ];
"Win32_UI_TextServices" = [ "Win32_UI" ];
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
"Win32_Web" = [ "Win32" ];
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
};
resolvedDefaultFeatures = [ "Wdk" "Wdk_Foundation" "Wdk_Storage" "Wdk_Storage_FileSystem" "Wdk_System" "Wdk_System_IO" "Win32" "Win32_Foundation" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Com" "Win32_System_Console" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "Win32_System_IO" "Win32_System_Pipes" "Win32_System_SystemInformation" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_System_WindowsProgramming" "Win32_UI" "Win32_UI_Shell" "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.5.40" = rec {
crateName = "winnow";
version = "0.5.40";
edition = "2021";
sha256 = "0xk8maai7gyxda673mmw3pj1hdizy5fpi7287vaywykkk19sk4zm";
dependencies = [
{
name = "memchr";
packageId = "memchr";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"debug" = [ "dep:anstream" "dep:anstyle" "dep:is-terminal" "dep:terminal_size" ];
"default" = [ "std" ];
"simd" = [ "dep:memchr" ];
"std" = [ "alloc" "memchr?/std" ];
"unstable-doc" = [ "alloc" "std" "simd" "unstable-recover" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"winnow 0.7.14" = rec {
crateName = "winnow";
version = "0.7.14";
edition = "2021";
sha256 = "0a88ahjqhyn2ln1yplq2xsigm09kxqkdkkk2c2mfxkbzszln8lss";
dependencies = [
{
name = "memchr";
packageId = "memchr";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"debug" = [ "std" "dep:anstream" "dep:anstyle" "dep:is_terminal_polyfill" "dep:terminal_size" ];
"default" = [ "std" ];
"simd" = [ "dep:memchr" ];
"std" = [ "alloc" "memchr?/std" ];
"unstable-doc" = [ "alloc" "std" "simd" "unstable-recover" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"wit-bindgen" = 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-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";
}
{
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.2";
edition = "2021";
sha256 = "1fg08y97n6vk7l0rnjggw3xyrii6dcqg54wqaxldrlk98zdy1pcy";
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" ];
};
};
"yoke" = rec {
crateName = "yoke";
version = "0.8.1";
edition = "2021";
sha256 = "0m29dm0bf5iakxgma0bj6dbmc3b8qi9b1vaw9sa76kdqmz3fbmkj";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "stable_deref_trait";
packageId = "stable_deref_trait";
usesDefaultFeatures = false;
}
{
name = "yoke-derive";
packageId = "yoke-derive";
optional = true;
usesDefaultFeatures = false;
}
{
name = "zerofrom";
packageId = "zerofrom";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "stable_deref_trait/alloc" "zerofrom/alloc" ];
"default" = [ "alloc" "zerofrom" ];
"derive" = [ "dep:yoke-derive" "zerofrom/derive" ];
"zerofrom" = [ "dep:zerofrom" ];
};
resolvedDefaultFeatures = [ "derive" "zerofrom" ];
};
"yoke-derive" = rec {
crateName = "yoke-derive";
version = "0.8.1";
edition = "2021";
sha256 = "0pbyja133jnng4mrhimzdq4a0y26421g734ybgz8wsgbfhl0andn";
procMacro = true;
libName = "yoke_derive";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 2.0.117";
features = [ "fold" ];
}
{
name = "synstructure";
packageId = "synstructure";
}
];
};
"zerocopy" = rec {
crateName = "zerocopy";
version = "0.8.39";
edition = "2021";
sha256 = "0jmf1iqns5sq07k3dscsgyc706pycar67rrq4j9nrnzacgb3avfv";
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.39";
edition = "2021";
sha256 = "05z5yfq0mx3xdqadrgq5sd4d03nl82d9r0vp1qchaip9d4qws8j1";
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.6";
edition = "2021";
sha256 = "19dyky67zkjichsb7ykhv0aqws3q0jfvzww76l66c19y6gh45k2h";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "zerofrom-derive";
packageId = "zerofrom-derive";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "alloc" ];
"derive" = [ "dep:zerofrom-derive" ];
};
resolvedDefaultFeatures = [ "derive" ];
};
"zerofrom-derive" = rec {
crateName = "zerofrom-derive";
version = "0.1.6";
edition = "2021";
sha256 = "00l5niw7c1b0lf1vhvajpjmcnbdp2vn96jg4nmkhq2db0rp5s7np";
procMacro = true;
libName = "zerofrom_derive";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 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"
];
features = {
"default" = [ "alloc" ];
"derive" = [ "zeroize_derive" ];
"serde" = [ "dep:serde" ];
"std" = [ "alloc" ];
"zeroize_derive" = [ "dep:zeroize_derive" ];
};
resolvedDefaultFeatures = [ "alloc" "default" ];
};
"zerotrie" = rec {
crateName = "zerotrie";
version = "0.2.3";
edition = "2021";
sha256 = "0lbqznlqazmrwwzslw0ci7p3pqxykrbfhq29npj0gmb2amxc2n9a";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "displaydoc";
packageId = "displaydoc";
usesDefaultFeatures = false;
}
{
name = "yoke";
packageId = "yoke";
optional = true;
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "zerofrom";
packageId = "zerofrom";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"databake" = [ "dep:databake" "zerovec?/databake" ];
"litemap" = [ "dep:litemap" "alloc" ];
"serde" = [ "dep:serde_core" "dep:litemap" "alloc" "litemap/serde" "zerovec?/serde" ];
"yoke" = [ "dep:yoke" ];
"zerofrom" = [ "dep:zerofrom" ];
"zerovec" = [ "dep:zerovec" ];
};
resolvedDefaultFeatures = [ "yoke" "zerofrom" ];
};
"zerovec" = rec {
crateName = "zerovec";
version = "0.11.5";
edition = "2021";
sha256 = "00m0p47k2g9mkv505hky5xh3r6ps7v8qc0dy4pspg542jj972a3c";
authors = [
"The ICU4X Project Developers"
];
dependencies = [
{
name = "yoke";
packageId = "yoke";
optional = true;
usesDefaultFeatures = false;
}
{
name = "zerofrom";
packageId = "zerofrom";
usesDefaultFeatures = false;
}
{
name = "zerovec-derive";
packageId = "zerovec-derive";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde?/alloc" ];
"databake" = [ "dep:databake" ];
"derive" = [ "dep:zerovec-derive" ];
"hashmap" = [ "dep:twox-hash" "alloc" ];
"serde" = [ "dep:serde" ];
"yoke" = [ "dep:yoke" ];
};
resolvedDefaultFeatures = [ "derive" "yoke" ];
};
"zerovec-derive" = rec {
crateName = "zerovec-derive";
version = "0.11.2";
edition = "2021";
sha256 = "1wsig4h5j7a1scd5hrlnragnazjny9qjc44hancb6p6a76ay7p7a";
procMacro = true;
libName = "zerovec_derive";
authors = [
"Manish Goregaokar <manishsmail@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2";
}
{
name = "quote";
packageId = "quote";
}
{
name = "syn";
packageId = "syn 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" ];
};
};
};
#
# 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)
#
};
}