7263 lines
271 KiB
Nix
7263 lines
271 KiB
Nix
|
|
# This file was @generated by crate2nix 0.10.0 with the command:
|
|
# "generate"
|
|
# See https://github.com/kolloch/crate2nix for more info.
|
|
|
|
{ nixpkgs ? <nixpkgs>
|
|
, pkgs ? import nixpkgs { config = {}; }
|
|
, lib ? pkgs.lib
|
|
, stdenv ? pkgs.stdenv
|
|
, buildRustCrateForPkgs ? if buildRustCrate != null
|
|
then lib.warn "crate2nix: Passing `buildRustCrate` as argument to Cargo.nix is deprecated. If you don't customize `buildRustCrate`, replace `callPackage ./Cargo.nix {}` by `import ./Cargo.nix { inherit pkgs; }`, and if you need to customize `buildRustCrate`, use `buildRustCrateForPkgs` instead." (_: buildRustCrate)
|
|
else pkgs: pkgs.buildRustCrate
|
|
# Deprecated
|
|
, buildRustCrate ? null
|
|
# This is used as the `crateOverrides` argument for `buildRustCrate`.
|
|
, defaultCrateOverrides ? pkgs.defaultCrateOverrides
|
|
# The features to enable for the root_crate or the workspace_members.
|
|
, rootFeatures ? [ "default" ]
|
|
# If true, throw errors instead of issueing deprecation warnings.
|
|
, strictDeprecation ? false
|
|
# Used for conditional compilation based on CPU feature detection.
|
|
, targetFeatures ? []
|
|
# Whether to perform release builds: longer compile times, faster binaries.
|
|
, release ? true
|
|
# Additional crate2nix configuration if it exists.
|
|
, crateConfig
|
|
? if builtins.pathExists ./crate-config.nix
|
|
then pkgs.callPackage ./crate-config.nix {}
|
|
else {}
|
|
}:
|
|
|
|
rec {
|
|
#
|
|
# "public" attributes that we attempt to keep stable with new versions of crate2nix.
|
|
#
|
|
|
|
rootCrate = rec {
|
|
packageId = "dashboard";
|
|
|
|
# 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 = {
|
|
"dashboard" = rec {
|
|
packageId = "dashboard";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "dashboard";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
};
|
|
|
|
# A derivation that joins the outputs of all workspace members together.
|
|
allWorkspaceMembers = pkgs.symlinkJoin {
|
|
name = "all-workspace-members";
|
|
paths =
|
|
let members = builtins.attrValues workspaceMembers;
|
|
in builtins.map (m: m.build) members;
|
|
};
|
|
|
|
#
|
|
# "internal" ("private") attributes that may change in every new version of crate2nix.
|
|
#
|
|
|
|
internal = rec {
|
|
# Build and dependency information for crates.
|
|
# Many of the fields are passed one-to-one to buildRustCrate.
|
|
#
|
|
# Noteworthy:
|
|
# * `dependencies`/`buildDependencies`: similar to the corresponding fields for buildRustCrate.
|
|
# but with additional information which is used during dependency/feature resolution.
|
|
# * `resolvedDependencies`: the selected default features reported by cargo - only included for debugging.
|
|
# * `devDependencies` as of now not used by `buildRustCrate` but used to
|
|
# inject test dependencies into the build
|
|
|
|
crates = {
|
|
"addr2line" = rec {
|
|
crateName = "addr2line";
|
|
version = "0.20.0";
|
|
edition = "2018";
|
|
sha256 = "1qv590hm40lz2q77p7s3lghaa5gdbrxcvpiaj1gf1z34ikhpiypl";
|
|
dependencies = [
|
|
{
|
|
name = "gimli";
|
|
packageId = "gimli";
|
|
usesDefaultFeatures = false;
|
|
features = [ "read" ];
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"cpp_demangle" = [ "dep:cpp_demangle" ];
|
|
"default" = [ "rustc-demangle" "cpp_demangle" "std-object" "fallible-iterator" "smallvec" "memmap2" ];
|
|
"fallible-iterator" = [ "dep:fallible-iterator" ];
|
|
"memmap2" = [ "dep:memmap2" ];
|
|
"object" = [ "dep:object" ];
|
|
"rustc-demangle" = [ "dep:rustc-demangle" ];
|
|
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "gimli/rustc-dep-of-std" ];
|
|
"smallvec" = [ "dep:smallvec" ];
|
|
"std" = [ "gimli/std" ];
|
|
"std-object" = [ "std" "object" "object/std" "object/compression" "gimli/endian-reader" ];
|
|
};
|
|
};
|
|
"adler" = rec {
|
|
crateName = "adler";
|
|
version = "1.0.2";
|
|
edition = "2015";
|
|
sha256 = "1zim79cvzd5yrkzl3nyfx0avijwgk9fqv3yrscdy1cc79ih02qpj";
|
|
authors = [
|
|
"Jonas Schievink <jonasschievink@gmail.com>"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
};
|
|
};
|
|
"android-tzdata" = rec {
|
|
crateName = "android-tzdata";
|
|
version = "0.1.1";
|
|
edition = "2018";
|
|
sha256 = "1w7ynjxrfs97xg3qlcdns4kgfpwcdv824g611fq32cag4cdr96g9";
|
|
authors = [
|
|
"RumovZ"
|
|
];
|
|
|
|
};
|
|
"android_system_properties" = rec {
|
|
crateName = "android_system_properties";
|
|
version = "0.1.5";
|
|
edition = "2018";
|
|
sha256 = "04b3wrz12837j7mdczqd95b732gw5q7q66cv4yn4646lvccp57l1";
|
|
authors = [
|
|
"Nicolas Silva <nical@fastmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
|
|
};
|
|
"autocfg" = rec {
|
|
crateName = "autocfg";
|
|
version = "1.1.0";
|
|
edition = "2015";
|
|
sha256 = "1ylp3cb47ylzabimazvbz9ms6ap784zhb6syaz6c1jqpmcmq0s6l";
|
|
authors = [
|
|
"Josh Stone <cuviper@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"backtrace" = rec {
|
|
crateName = "backtrace";
|
|
version = "0.3.68";
|
|
edition = "2018";
|
|
sha256 = "04kyn691d8ykk0ib7692vk8hjbqqpbiaspwwfdhkdi29l26j06a3";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "addr2line";
|
|
packageId = "addr2line";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "miniz_oxide";
|
|
packageId = "miniz_oxide";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "object";
|
|
packageId = "object";
|
|
usesDefaultFeatures = false;
|
|
features = [ "read_core" "elf" "macho" "pe" "unaligned" "archive" ];
|
|
}
|
|
{
|
|
name = "rustc-demangle";
|
|
packageId = "rustc-demangle";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "cc";
|
|
packageId = "cc";
|
|
}
|
|
];
|
|
features = {
|
|
"cpp_demangle" = [ "dep:cpp_demangle" ];
|
|
"default" = [ "std" ];
|
|
"rustc-serialize" = [ "dep:rustc-serialize" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serialize-rustc" = [ "rustc-serialize" ];
|
|
"serialize-serde" = [ "serde" ];
|
|
"verify-winapi" = [ "winapi/dbghelp" "winapi/handleapi" "winapi/libloaderapi" "winapi/memoryapi" "winapi/minwindef" "winapi/processthreadsapi" "winapi/synchapi" "winapi/tlhelp32" "winapi/winbase" "winapi/winnt" ];
|
|
"winapi" = [ "dep:winapi" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"base64 0.13.1" = rec {
|
|
crateName = "base64";
|
|
version = "0.13.1";
|
|
edition = "2018";
|
|
sha256 = "1s494mqmzjb766fy1kqlccgfg2sdcjb6hzbvzqv2jw65fdi5h6wy";
|
|
authors = [
|
|
"Alice Maz <alice@alicemaz.com>"
|
|
"Marshall Pierce <marshall@mpierce.org>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"base64 0.21.2" = rec {
|
|
crateName = "base64";
|
|
version = "0.21.2";
|
|
edition = "2021";
|
|
sha256 = "0gfffgp4jmk517hymckk5jn393dqvw78312papf047y2qpv7hhb0";
|
|
authors = [
|
|
"Alice Maz <alice@alicemaz.com>"
|
|
"Marshall Pierce <marshall@mpierce.org>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"bitflags 1.3.2" = rec {
|
|
crateName = "bitflags";
|
|
version = "1.3.2";
|
|
edition = "2018";
|
|
sha256 = "12ki6w8gn1ldq7yz9y680llwk5gmrhrzszaa17g1sbrw2r2qvwxy";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"bitflags 2.3.3" = rec {
|
|
crateName = "bitflags";
|
|
version = "2.3.3";
|
|
edition = "2021";
|
|
sha256 = "0hifjw3191g3w5cwqqvbx8knrr3zchdwfc3rs6mn11p5si9yf2v3";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"bytemuck" = [ "dep:bytemuck" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"block-buffer" = rec {
|
|
crateName = "block-buffer";
|
|
version = "0.10.4";
|
|
edition = "2018";
|
|
sha256 = "0w9sa2ypmrsqqvc20nhwr75wbb5cjr4kkyhpjm1z1lv2kdicfy1h";
|
|
authors = [
|
|
"RustCrypto Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "generic-array";
|
|
packageId = "generic-array";
|
|
}
|
|
];
|
|
|
|
};
|
|
"bumpalo" = rec {
|
|
crateName = "bumpalo";
|
|
version = "3.13.0";
|
|
edition = "2021";
|
|
sha256 = "1h9zmxb9d14m2sx34daz88fsjw1lx7d5mhaqbldwqgl8xzdc7qm3";
|
|
authors = [
|
|
"Nick Fitzgerald <fitzgen@gmail.com>"
|
|
];
|
|
features = {
|
|
"allocator-api2" = [ "dep:allocator-api2" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"byteorder" = rec {
|
|
crateName = "byteorder";
|
|
version = "1.4.3";
|
|
edition = "2018";
|
|
sha256 = "0456lv9xi1a5bcm32arknf33ikv76p3fr9yzki4lb2897p2qkh8l";
|
|
authors = [
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"bytes" = rec {
|
|
crateName = "bytes";
|
|
version = "1.4.0";
|
|
edition = "2018";
|
|
sha256 = "1gkh3fk4fm9xv5znlib723h5md5sxsvbd5113sbxff6g1lmgvcl9";
|
|
authors = [
|
|
"Carl Lerche <me@carllerche.com>"
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"cc" = rec {
|
|
crateName = "cc";
|
|
version = "1.0.79";
|
|
edition = "2018";
|
|
crateBin = [];
|
|
sha256 = "07x93b8zbf3xc2dggdd460xlk1wg8lxm6yflwddxj8b15030klsh";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
features = {
|
|
"jobserver" = [ "dep:jobserver" ];
|
|
"parallel" = [ "jobserver" ];
|
|
};
|
|
};
|
|
"cfg-if" = rec {
|
|
crateName = "cfg-if";
|
|
version = "1.0.0";
|
|
edition = "2018";
|
|
sha256 = "1za0vb97n4brpzpv8lsbnzmq5r8f2b0cpqqr0sy8h5bn751xxwds";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
};
|
|
};
|
|
"chrono" = rec {
|
|
crateName = "chrono";
|
|
version = "0.4.26";
|
|
edition = "2021";
|
|
sha256 = "1icvzp2v88a5cwsygcnl1cf0jqzkncvrnmmxdmazca2v6mqpm0zc";
|
|
dependencies = [
|
|
{
|
|
name = "android-tzdata";
|
|
packageId = "android-tzdata";
|
|
target = { target, features }: (target."os" == "android");
|
|
}
|
|
{
|
|
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 }: ((target."arch" == "wasm32") && (!((target."os" == "emscripten") || (target."os" == "wasi"))));
|
|
}
|
|
{
|
|
name = "num-traits";
|
|
packageId = "num-traits";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "time";
|
|
packageId = "time";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
optional = true;
|
|
target = { target, features }: ((target."arch" == "wasm32") && (!((target."os" == "emscripten") || (target."os" == "wasi"))));
|
|
}
|
|
{
|
|
name = "winapi";
|
|
packageId = "winapi";
|
|
optional = true;
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "std" "minwinbase" "minwindef" "timezoneapi" "sysinfoapi" ];
|
|
}
|
|
];
|
|
features = {
|
|
"__internal_bench" = [ "criterion" ];
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"clock" = [ "std" "winapi" "iana-time-zone" ];
|
|
"criterion" = [ "dep:criterion" ];
|
|
"default" = [ "clock" "std" "oldtime" "wasmbind" ];
|
|
"iana-time-zone" = [ "dep:iana-time-zone" ];
|
|
"js-sys" = [ "dep:js-sys" ];
|
|
"oldtime" = [ "time" ];
|
|
"pure-rust-locales" = [ "dep:pure-rust-locales" ];
|
|
"rkyv" = [ "dep:rkyv" ];
|
|
"rustc-serialize" = [ "dep:rustc-serialize" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"time" = [ "dep:time" ];
|
|
"unstable-locales" = [ "pure-rust-locales" "alloc" ];
|
|
"wasm-bindgen" = [ "dep:wasm-bindgen" ];
|
|
"wasmbind" = [ "wasm-bindgen" "js-sys" ];
|
|
"winapi" = [ "dep:winapi" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "clock" "default" "iana-time-zone" "js-sys" "oldtime" "serde" "std" "time" "wasm-bindgen" "wasmbind" "winapi" ];
|
|
};
|
|
"core-foundation" = rec {
|
|
crateName = "core-foundation";
|
|
version = "0.9.3";
|
|
edition = "2015";
|
|
sha256 = "0ii1ihpjb30fk38gdikm5wqlkmyr8k46fh4k2r8sagz5dng7ljhr";
|
|
authors = [
|
|
"The Servo Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "core-foundation-sys";
|
|
packageId = "core-foundation-sys";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
features = {
|
|
"chrono" = [ "dep:chrono" ];
|
|
"mac_os_10_7_support" = [ "core-foundation-sys/mac_os_10_7_support" ];
|
|
"mac_os_10_8_features" = [ "core-foundation-sys/mac_os_10_8_features" ];
|
|
"uuid" = [ "dep:uuid" ];
|
|
"with-chrono" = [ "chrono" ];
|
|
"with-uuid" = [ "uuid" ];
|
|
};
|
|
};
|
|
"core-foundation-sys" = rec {
|
|
crateName = "core-foundation-sys";
|
|
version = "0.8.4";
|
|
edition = "2015";
|
|
sha256 = "1yhf471qj6snnm2mcswai47vsbc9w30y4abmdp4crb4av87sb5p4";
|
|
authors = [
|
|
"The Servo Project Developers"
|
|
];
|
|
features = {
|
|
};
|
|
};
|
|
"cpufeatures" = rec {
|
|
crateName = "cpufeatures";
|
|
version = "0.2.9";
|
|
edition = "2018";
|
|
sha256 = "1wg1vmsx3gd30xkc7h7r6nfx7njx063hqjimgyrb0qj17bzpcyx1";
|
|
authors = [
|
|
"RustCrypto Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (stdenv.hostPlatform.config == "aarch64-linux-android");
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: ((target."arch" == "aarch64") && (target."os" == "linux"));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: ((target."arch" == "aarch64") && (target."vendor" == "apple"));
|
|
}
|
|
];
|
|
|
|
};
|
|
"crypto-common" = rec {
|
|
crateName = "crypto-common";
|
|
version = "0.1.6";
|
|
edition = "2018";
|
|
sha256 = "1cvby95a6xg7kxdz5ln3rl9xh66nz66w46mm3g56ri1z5x815yqv";
|
|
authors = [
|
|
"RustCrypto Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "generic-array";
|
|
packageId = "generic-array";
|
|
features = [ "more_lengths" ];
|
|
}
|
|
{
|
|
name = "typenum";
|
|
packageId = "typenum";
|
|
}
|
|
];
|
|
features = {
|
|
"getrandom" = [ "rand_core/getrandom" ];
|
|
"rand_core" = [ "dep:rand_core" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"dashboard" = rec {
|
|
crateName = "dashboard";
|
|
version = "0.1.0";
|
|
edition = "2018";
|
|
crateBin = [
|
|
{ name = "dashboard"; path = "src/main.rs"; }
|
|
];
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./.; };
|
|
dependencies = [
|
|
{
|
|
name = "chrono";
|
|
packageId = "chrono";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "fluent";
|
|
packageId = "fluent";
|
|
}
|
|
{
|
|
name = "fluent-ergonomics";
|
|
packageId = "fluent-ergonomics";
|
|
}
|
|
{
|
|
name = "futures";
|
|
packageId = "futures";
|
|
}
|
|
{
|
|
name = "geo-types";
|
|
packageId = "geo-types";
|
|
}
|
|
{
|
|
name = "horrorshow";
|
|
packageId = "horrorshow";
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http";
|
|
}
|
|
{
|
|
name = "international-fixed-calendar";
|
|
packageId = "international-fixed-calendar";
|
|
}
|
|
{
|
|
name = "lazy_static";
|
|
packageId = "lazy_static";
|
|
}
|
|
{
|
|
name = "memorycache";
|
|
packageId = "memorycache";
|
|
}
|
|
{
|
|
name = "reqwest";
|
|
packageId = "reqwest";
|
|
features = [ "json" ];
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
}
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "full" ];
|
|
}
|
|
{
|
|
name = "unic-langid";
|
|
packageId = "unic-langid";
|
|
}
|
|
{
|
|
name = "warp";
|
|
packageId = "warp";
|
|
}
|
|
];
|
|
|
|
};
|
|
"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 = "crypto-common";
|
|
packageId = "crypto-common";
|
|
}
|
|
];
|
|
features = {
|
|
"blobby" = [ "dep:blobby" ];
|
|
"block-buffer" = [ "dep:block-buffer" ];
|
|
"const-oid" = [ "dep:const-oid" ];
|
|
"core-api" = [ "block-buffer" ];
|
|
"default" = [ "core-api" ];
|
|
"dev" = [ "blobby" ];
|
|
"mac" = [ "subtle" ];
|
|
"oid" = [ "const-oid" ];
|
|
"rand_core" = [ "crypto-common/rand_core" ];
|
|
"std" = [ "alloc" "crypto-common/std" ];
|
|
"subtle" = [ "dep:subtle" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "block-buffer" "core-api" "default" "std" ];
|
|
};
|
|
"displaydoc" = rec {
|
|
crateName = "displaydoc";
|
|
version = "0.2.4";
|
|
edition = "2018";
|
|
sha256 = "0p8pyg10csc782qlwx3znr6qx46ni96m1qh597kmyrf6s3s8axa8";
|
|
procMacro = true;
|
|
authors = [
|
|
"Jane Lusby <jlusby@yaah.dev>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
};
|
|
"encoding_rs" = rec {
|
|
crateName = "encoding_rs";
|
|
version = "0.8.32";
|
|
edition = "2018";
|
|
sha256 = "155kf4mxq7h0mmh0jwx21mpxw7h405pp9jlanmq36h45xvs326h7";
|
|
authors = [
|
|
"Henri Sivonen <hsivonen@hsivonen.fi>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "alloc" ];
|
|
"fast-legacy-encode" = [ "fast-hangul-encode" "fast-hanja-encode" "fast-kanji-encode" "fast-gb-hanzi-encode" "fast-big5-hanzi-encode" ];
|
|
"packed_simd" = [ "dep:packed_simd" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"simd-accel" = [ "packed_simd" "packed_simd/into_bits" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" ];
|
|
};
|
|
"errno" = rec {
|
|
crateName = "errno";
|
|
version = "0.3.1";
|
|
edition = "2018";
|
|
sha256 = "0fp7qy6fwagrnmi45msqnl01vksqwdb2qbbv60n9cz7rf0xfrksb";
|
|
authors = [
|
|
"Chris Wong <lambda.fairy@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "errno-dragonfly";
|
|
packageId = "errno-dragonfly";
|
|
target = { target, features }: (target."os" == "dragonfly");
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (target."os" == "hermit");
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (target."os" == "wasi");
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Foundation" "Win32_System_Diagnostics_Debug" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
};
|
|
"errno-dragonfly" = rec {
|
|
crateName = "errno-dragonfly";
|
|
version = "0.1.2";
|
|
edition = "2018";
|
|
sha256 = "1grrmcm6q8512hkq5yzch3yv8wafflc2apbmsaabiyk44yqz2s5a";
|
|
authors = [
|
|
"Michael Neumann <mneumann@ntecs.de>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "cc";
|
|
packageId = "cc";
|
|
}
|
|
];
|
|
|
|
};
|
|
"fastrand" = rec {
|
|
crateName = "fastrand";
|
|
version = "2.0.0";
|
|
edition = "2018";
|
|
sha256 = "0r17m5p8ym5pa1f6cp8rix78ggclg6llnw5hxg168cr56wcdr6b9";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"getrandom" = [ "dep:getrandom" ];
|
|
"js" = [ "std" "getrandom" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"fluent" = rec {
|
|
crateName = "fluent";
|
|
version = "0.16.0";
|
|
edition = "2018";
|
|
sha256 = "19s7z0gw95qdsp9hhc00xcy11nwhnx93kknjmdvdnna435w97xk1";
|
|
authors = [
|
|
"Zibi Braniecki <gandalf@mozilla.com>"
|
|
"Staś Małolepszy <stas@mozilla.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "fluent-bundle";
|
|
packageId = "fluent-bundle";
|
|
}
|
|
{
|
|
name = "unic-langid";
|
|
packageId = "unic-langid";
|
|
}
|
|
];
|
|
features = {
|
|
"fluent-pseudo" = [ "dep:fluent-pseudo" ];
|
|
};
|
|
};
|
|
"fluent-bundle" = rec {
|
|
crateName = "fluent-bundle";
|
|
version = "0.15.2";
|
|
edition = "2018";
|
|
sha256 = "1zbzm13rfz7fay7bps7jd4j1pdnlxmdzzfymyq2iawf9vq0wchp2";
|
|
authors = [
|
|
"Zibi Braniecki <gandalf@mozilla.com>"
|
|
"Staś Małolepszy <stas@mozilla.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "fluent-langneg";
|
|
packageId = "fluent-langneg";
|
|
}
|
|
{
|
|
name = "fluent-syntax";
|
|
packageId = "fluent-syntax";
|
|
}
|
|
{
|
|
name = "intl-memoizer";
|
|
packageId = "intl-memoizer";
|
|
}
|
|
{
|
|
name = "intl_pluralrules";
|
|
packageId = "intl_pluralrules";
|
|
}
|
|
{
|
|
name = "rustc-hash";
|
|
packageId = "rustc-hash";
|
|
}
|
|
{
|
|
name = "self_cell";
|
|
packageId = "self_cell";
|
|
}
|
|
{
|
|
name = "smallvec";
|
|
packageId = "smallvec";
|
|
}
|
|
{
|
|
name = "unic-langid";
|
|
packageId = "unic-langid";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "unic-langid";
|
|
packageId = "unic-langid";
|
|
features = [ "macros" ];
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"fluent-ergonomics" = rec {
|
|
crateName = "fluent-ergonomics";
|
|
version = "0.2.0";
|
|
edition = "2018";
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ../fluent-ergonomics; };
|
|
authors = [
|
|
"Savanni D'Gerinel <savanni@luminescent-dreams.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "fluent";
|
|
packageId = "fluent";
|
|
}
|
|
{
|
|
name = "fluent-syntax";
|
|
packageId = "fluent-syntax";
|
|
}
|
|
{
|
|
name = "unic-langid";
|
|
packageId = "unic-langid";
|
|
}
|
|
];
|
|
|
|
};
|
|
"fluent-langneg" = rec {
|
|
crateName = "fluent-langneg";
|
|
version = "0.13.0";
|
|
edition = "2018";
|
|
sha256 = "152yxplc11vmxkslvmaqak9x86xnavnhdqyhrh38ym37jscd0jic";
|
|
authors = [
|
|
"Zibi Braniecki <gandalf@mozilla.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "unic-langid";
|
|
packageId = "unic-langid";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "unic-langid";
|
|
packageId = "unic-langid";
|
|
features = [ "macros" ];
|
|
}
|
|
];
|
|
features = {
|
|
"cldr" = [ "unic-langid/likelysubtags" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"fluent-syntax" = rec {
|
|
crateName = "fluent-syntax";
|
|
version = "0.11.0";
|
|
edition = "2018";
|
|
crateBin = [];
|
|
sha256 = "0y6ac7z7sbv51nsa6km5z8rkjj4nvqk91vlghq1ck5c3cjbyvay0";
|
|
authors = [
|
|
"Zibi Braniecki <gandalf@mozilla.com>"
|
|
"Staś Małolepszy <stas@mozilla.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror";
|
|
}
|
|
];
|
|
features = {
|
|
"json" = [ "serde" "serde_json" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde_json" = [ "dep:serde_json" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"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" ];
|
|
};
|
|
"foreign-types" = rec {
|
|
crateName = "foreign-types";
|
|
version = "0.3.2";
|
|
edition = "2015";
|
|
sha256 = "1cgk0vyd7r45cj769jym4a6s7vwshvd0z4bqrb92q1fwibmkkwzn";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "foreign-types-shared";
|
|
packageId = "foreign-types-shared";
|
|
}
|
|
];
|
|
|
|
};
|
|
"foreign-types-shared" = rec {
|
|
crateName = "foreign-types-shared";
|
|
version = "0.1.1";
|
|
edition = "2015";
|
|
sha256 = "0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"form_urlencoded" = rec {
|
|
crateName = "form_urlencoded";
|
|
version = "1.2.0";
|
|
edition = "2018";
|
|
sha256 = "0ljn0kz23nr9yf3432k656k178nh4jqryfji9b0jw343dz7w2ax6";
|
|
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" ];
|
|
};
|
|
"futures" = rec {
|
|
crateName = "futures";
|
|
version = "0.3.28";
|
|
edition = "2018";
|
|
sha256 = "0h7c1xvxk751c7xlnph6fh3rb77z4lig4qif7f8q79db2az2ld13";
|
|
dependencies = [
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
usesDefaultFeatures = false;
|
|
features = [ "sink" ];
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-executor";
|
|
packageId = "futures-executor";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-io";
|
|
packageId = "futures-io";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-sink";
|
|
packageId = "futures-sink";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-task";
|
|
packageId = "futures-task";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
features = [ "sink" ];
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "futures-core/alloc" "futures-task/alloc" "futures-sink/alloc" "futures-channel/alloc" "futures-util/alloc" ];
|
|
"async-await" = [ "futures-util/async-await" "futures-util/async-await-macro" ];
|
|
"bilock" = [ "futures-util/bilock" ];
|
|
"compat" = [ "std" "futures-util/compat" ];
|
|
"default" = [ "std" "async-await" "executor" ];
|
|
"executor" = [ "std" "futures-executor/std" ];
|
|
"futures-executor" = [ "dep:futures-executor" ];
|
|
"io-compat" = [ "compat" "futures-util/io-compat" ];
|
|
"std" = [ "alloc" "futures-core/std" "futures-task/std" "futures-io/std" "futures-sink/std" "futures-util/std" "futures-util/io" "futures-util/channel" ];
|
|
"thread-pool" = [ "executor" "futures-executor/thread-pool" ];
|
|
"unstable" = [ "futures-core/unstable" "futures-task/unstable" "futures-channel/unstable" "futures-io/unstable" "futures-util/unstable" ];
|
|
"write-all-vectored" = [ "futures-util/write-all-vectored" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "async-await" "default" "executor" "futures-executor" "std" ];
|
|
};
|
|
"futures-channel" = rec {
|
|
crateName = "futures-channel";
|
|
version = "0.3.28";
|
|
edition = "2018";
|
|
sha256 = "1wmm9wm5zjigxz61qkscmxp7c30zp08dy63spjz5pch9gva1hmcm";
|
|
dependencies = [
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-sink";
|
|
packageId = "futures-sink";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "futures-core/alloc" ];
|
|
"default" = [ "std" ];
|
|
"futures-sink" = [ "dep:futures-sink" ];
|
|
"sink" = [ "futures-sink" ];
|
|
"std" = [ "alloc" "futures-core/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "futures-sink" "sink" "std" ];
|
|
};
|
|
"futures-core" = rec {
|
|
crateName = "futures-core";
|
|
version = "0.3.28";
|
|
edition = "2018";
|
|
sha256 = "137fdxy5amg9zkpa1kqnj7bnha6b94fmddz59w973x96gqxmijjb";
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"portable-atomic" = [ "dep:portable-atomic" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"futures-executor" = rec {
|
|
crateName = "futures-executor";
|
|
version = "0.3.28";
|
|
edition = "2018";
|
|
sha256 = "1q468di96knnla72xdvswic1ir2qkrf5czsdigc5n4l86a1fxv6c";
|
|
dependencies = [
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-task";
|
|
packageId = "futures-task";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"num_cpus" = [ "dep:num_cpus" ];
|
|
"std" = [ "futures-core/std" "futures-task/std" "futures-util/std" ];
|
|
"thread-pool" = [ "std" "num_cpus" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"futures-io" = rec {
|
|
crateName = "futures-io";
|
|
version = "0.3.28";
|
|
edition = "2018";
|
|
sha256 = "0r4rhkdhq1my4fahlhz59barqa511bylq813w3w4gvbidq4p9zsg";
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"futures-macro" = rec {
|
|
crateName = "futures-macro";
|
|
version = "0.3.28";
|
|
edition = "2018";
|
|
sha256 = "0wpfsqxwqk5k569xl0jzz4zxy85x695mndf7y9jn66q6jid59jl9";
|
|
procMacro = true;
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"futures-sink" = rec {
|
|
crateName = "futures-sink";
|
|
version = "0.3.28";
|
|
edition = "2018";
|
|
sha256 = "0vkv4frf4c6gm1ag9imjz8d0xvpnn22lkylsls0rffx147zf8fzl";
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"futures-task" = rec {
|
|
crateName = "futures-task";
|
|
version = "0.3.28";
|
|
edition = "2018";
|
|
sha256 = "0ravgihyarbplj32zp60asirfnaalw2wfsa0afhnl3kcpqrd3lvn";
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "std" ];
|
|
};
|
|
"futures-util" = rec {
|
|
crateName = "futures-util";
|
|
version = "0.3.28";
|
|
edition = "2018";
|
|
sha256 = "0cwmls9369w6q6hwlbm10q0plr6hmg8w28fpqvv4rmbjnx01xc16";
|
|
dependencies = [
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-io";
|
|
packageId = "futures-io";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "futures-macro";
|
|
packageId = "futures-macro";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-sink";
|
|
packageId = "futures-sink";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-task";
|
|
packageId = "futures-task";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "pin-utils";
|
|
packageId = "pin-utils";
|
|
}
|
|
{
|
|
name = "slab";
|
|
packageId = "slab";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "futures-core/alloc" "futures-task/alloc" ];
|
|
"async-await-macro" = [ "async-await" "futures-macro" ];
|
|
"channel" = [ "std" "futures-channel" ];
|
|
"compat" = [ "std" "futures_01" ];
|
|
"default" = [ "std" "async-await" "async-await-macro" ];
|
|
"futures-channel" = [ "dep:futures-channel" ];
|
|
"futures-io" = [ "dep:futures-io" ];
|
|
"futures-macro" = [ "dep:futures-macro" ];
|
|
"futures-sink" = [ "dep:futures-sink" ];
|
|
"futures_01" = [ "dep:futures_01" ];
|
|
"io" = [ "std" "futures-io" "memchr" ];
|
|
"io-compat" = [ "io" "compat" "tokio-io" ];
|
|
"memchr" = [ "dep:memchr" ];
|
|
"portable-atomic" = [ "futures-core/portable-atomic" ];
|
|
"sink" = [ "futures-sink" ];
|
|
"slab" = [ "dep:slab" ];
|
|
"std" = [ "alloc" "futures-core/std" "futures-task/std" "slab" ];
|
|
"tokio-io" = [ "dep:tokio-io" ];
|
|
"unstable" = [ "futures-core/unstable" "futures-task/unstable" ];
|
|
"write-all-vectored" = [ "io" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "async-await" "async-await-macro" "channel" "futures-channel" "futures-io" "futures-macro" "futures-sink" "io" "memchr" "sink" "slab" "std" ];
|
|
};
|
|
"generic-array" = rec {
|
|
crateName = "generic-array";
|
|
version = "0.14.7";
|
|
edition = "2015";
|
|
sha256 = "16lyyrzrljfq424c3n8kfwkqihlimmsg5nhshbbp48np3yjrqr45";
|
|
libName = "generic_array";
|
|
authors = [
|
|
"Bartłomiej Kamiński <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" ];
|
|
};
|
|
"geo-types" = rec {
|
|
crateName = "geo-types";
|
|
version = "0.1.0";
|
|
edition = "2018";
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ../geo-types; };
|
|
|
|
};
|
|
"getrandom" = rec {
|
|
crateName = "getrandom";
|
|
version = "0.2.10";
|
|
edition = "2018";
|
|
sha256 = "09zlimhhskzf7cmgcszix05wyz2i6fcpvh711cv1klsxl6r3chdy";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "wasi";
|
|
packageId = "wasi 0.11.0+wasi-snapshot-preview1";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target."os" == "wasi");
|
|
}
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"js" = [ "wasm-bindgen" "js-sys" ];
|
|
"js-sys" = [ "dep:js-sys" ];
|
|
"rustc-dep-of-std" = [ "compiler_builtins" "core" "libc/rustc-dep-of-std" "wasi/rustc-dep-of-std" ];
|
|
"wasm-bindgen" = [ "dep:wasm-bindgen" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"gimli" = rec {
|
|
crateName = "gimli";
|
|
version = "0.27.3";
|
|
edition = "2018";
|
|
sha256 = "0bpdnkyzi3vp2r0wglwrncbk451zhp46mdl83f6xj4gsmy20kj5n";
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "read" "write" "std" "fallible-iterator" "endian-reader" ];
|
|
"endian-reader" = [ "read" "stable_deref_trait" ];
|
|
"fallible-iterator" = [ "dep:fallible-iterator" ];
|
|
"indexmap" = [ "dep:indexmap" ];
|
|
"read" = [ "read-core" ];
|
|
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" ];
|
|
"stable_deref_trait" = [ "dep:stable_deref_trait" ];
|
|
"std" = [ "fallible-iterator/std" "stable_deref_trait/std" ];
|
|
"write" = [ "indexmap" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "read" "read-core" ];
|
|
};
|
|
"h2" = rec {
|
|
crateName = "h2";
|
|
version = "0.3.20";
|
|
edition = "2018";
|
|
sha256 = "0j8hq2hb1l6fjg4nlnbzpvb3q1sqzr2v0n1hlzmci6dgxf8q9v4p";
|
|
authors = [
|
|
"Carl Lerche <me@carllerche.com>"
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "fnv";
|
|
packageId = "fnv";
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-sink";
|
|
packageId = "futures-sink";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http";
|
|
}
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "slab";
|
|
packageId = "slab";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "io-util" ];
|
|
}
|
|
{
|
|
name = "tokio-util";
|
|
packageId = "tokio-util";
|
|
features = [ "codec" ];
|
|
}
|
|
{
|
|
name = "tracing";
|
|
packageId = "tracing";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "rt-multi-thread" "macros" "sync" "net" ];
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
};
|
|
"hashbrown" = rec {
|
|
crateName = "hashbrown";
|
|
version = "0.12.3";
|
|
edition = "2021";
|
|
sha256 = "1268ka4750pyg2pbgsr43f0289l5zah4arir2k4igx5a8c6fg7la";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
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 = [ "raw" ];
|
|
};
|
|
"headers" = rec {
|
|
crateName = "headers";
|
|
version = "0.3.8";
|
|
edition = "2015";
|
|
sha256 = "11258p6q2md68sfhmqrgrx23vjiapqcbxffh1hz223awivdp5qzk";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "base64";
|
|
packageId = "base64 0.13.1";
|
|
}
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 1.3.2";
|
|
}
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "headers-core";
|
|
packageId = "headers-core";
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http";
|
|
}
|
|
{
|
|
name = "httpdate";
|
|
packageId = "httpdate";
|
|
}
|
|
{
|
|
name = "mime";
|
|
packageId = "mime";
|
|
}
|
|
{
|
|
name = "sha1";
|
|
packageId = "sha1";
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
};
|
|
"headers-core" = rec {
|
|
crateName = "headers-core";
|
|
version = "0.2.0";
|
|
edition = "2015";
|
|
sha256 = "0ab469xfpd411mc3dhmjhmzrhqikzyj8a17jn5bkj9zfpy0n9xp7";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "http";
|
|
packageId = "http";
|
|
}
|
|
];
|
|
|
|
};
|
|
"hermit-abi" = rec {
|
|
crateName = "hermit-abi";
|
|
version = "0.3.2";
|
|
edition = "2021";
|
|
sha256 = "12v66gy77sqrgmjlx01w9p054nvz4mnhbd6xaazkxnddrp448ca4";
|
|
authors = [
|
|
"Stefan Lankes"
|
|
];
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins/rustc-dep-of-std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"horrorshow" = rec {
|
|
crateName = "horrorshow";
|
|
version = "0.8.4";
|
|
edition = "2018";
|
|
sha256 = "185yb8mzxiivqfm1v1nll5k797v9yrxi3jzpahd0n5a032cgnwc3";
|
|
authors = [
|
|
"Steven Allen <steven@stebalien.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "ops" "std" "alloc" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "ops" "std" ];
|
|
};
|
|
"http" = rec {
|
|
crateName = "http";
|
|
version = "0.2.9";
|
|
edition = "2018";
|
|
sha256 = "10j4jjpngaymxjvi92hllr2y6acr09pq61cvzxd44qzvkb4zyvmx";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
"Carl Lerche <me@carllerche.com>"
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "fnv";
|
|
packageId = "fnv";
|
|
}
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
}
|
|
];
|
|
|
|
};
|
|
"http-body" = rec {
|
|
crateName = "http-body";
|
|
version = "0.4.5";
|
|
edition = "2018";
|
|
sha256 = "1l967qwwlvhp198xdrnc0p5d7jwfcp6q2lm510j6zqw4s4b8zwym";
|
|
authors = [
|
|
"Carl Lerche <me@carllerche.com>"
|
|
"Lucio Franco <luciofranco14@gmail.com>"
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http";
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
];
|
|
|
|
};
|
|
"httparse" = rec {
|
|
crateName = "httparse";
|
|
version = "1.8.0";
|
|
edition = "2018";
|
|
sha256 = "010rrfahm1jss3p022fqf3j3jmm72vhn4iqhykahb9ynpaag75yq";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"httpdate" = rec {
|
|
crateName = "httpdate";
|
|
version = "1.0.2";
|
|
edition = "2018";
|
|
sha256 = "08bln7b1ibdw26gl8h4dr6rlybvlkyhlha309xbh9ghxh9nf78f4";
|
|
authors = [
|
|
"Pyfisch <pyfisch@posteo.org>"
|
|
];
|
|
|
|
};
|
|
"hyper" = rec {
|
|
crateName = "hyper";
|
|
version = "0.14.27";
|
|
edition = "2018";
|
|
sha256 = "0s2l74p3harvjgb0bvaxlxgxq71vpfrzv0cqz2p9w8d8akbczcgz";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "h2";
|
|
packageId = "h2";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http";
|
|
}
|
|
{
|
|
name = "http-body";
|
|
packageId = "http-body";
|
|
}
|
|
{
|
|
name = "httparse";
|
|
packageId = "httparse";
|
|
}
|
|
{
|
|
name = "httpdate";
|
|
packageId = "httpdate";
|
|
}
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "socket2";
|
|
packageId = "socket2";
|
|
optional = true;
|
|
features = [ "all" ];
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "sync" ];
|
|
}
|
|
{
|
|
name = "tower-service";
|
|
packageId = "tower-service";
|
|
}
|
|
{
|
|
name = "tracing";
|
|
packageId = "tracing";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "want";
|
|
packageId = "want";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" ];
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "fs" "macros" "io-std" "io-util" "rt" "rt-multi-thread" "sync" "time" "test-util" ];
|
|
}
|
|
];
|
|
features = {
|
|
"ffi" = [ "libc" ];
|
|
"full" = [ "client" "http1" "http2" "server" "stream" "runtime" ];
|
|
"h2" = [ "dep:h2" ];
|
|
"http2" = [ "h2" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"runtime" = [ "tcp" "tokio/rt" "tokio/time" ];
|
|
"socket2" = [ "dep:socket2" ];
|
|
"tcp" = [ "socket2" "tokio/net" "tokio/rt" "tokio/time" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "client" "default" "h2" "http1" "http2" "runtime" "server" "socket2" "stream" "tcp" ];
|
|
};
|
|
"hyper-tls" = rec {
|
|
crateName = "hyper-tls";
|
|
version = "0.5.0";
|
|
edition = "2018";
|
|
sha256 = "01crgy13102iagakf6q4mb75dprzr7ps1gj0l5hxm1cvm7gks66n";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "hyper";
|
|
packageId = "hyper";
|
|
usesDefaultFeatures = false;
|
|
features = [ "tcp" "client" ];
|
|
}
|
|
{
|
|
name = "native-tls";
|
|
packageId = "native-tls";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
}
|
|
{
|
|
name = "tokio-native-tls";
|
|
packageId = "tokio-native-tls";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "hyper";
|
|
packageId = "hyper";
|
|
usesDefaultFeatures = false;
|
|
features = [ "http1" ];
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "io-std" "macros" "io-util" ];
|
|
}
|
|
];
|
|
features = {
|
|
"vendored" = [ "native-tls/vendored" ];
|
|
};
|
|
};
|
|
"iana-time-zone" = rec {
|
|
crateName = "iana-time-zone";
|
|
version = "0.1.57";
|
|
edition = "2018";
|
|
sha256 = "04yn5npa008fqd2y6qd3y3bmyqjpd4fyiwq6sa5v7lj2b215pb9g";
|
|
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 }: (target."os" == "android");
|
|
}
|
|
{
|
|
name = "core-foundation-sys";
|
|
packageId = "core-foundation-sys";
|
|
target = { target, features }: ((target."os" == "macos") || (target."os" == "ios"));
|
|
}
|
|
{
|
|
name = "iana-time-zone-haiku";
|
|
packageId = "iana-time-zone-haiku";
|
|
target = { target, features }: (target."os" == "haiku");
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
target = { target, features }: (target."arch" == "wasm32");
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
target = { target, features }: (target."arch" == "wasm32");
|
|
}
|
|
{
|
|
name = "windows";
|
|
packageId = "windows";
|
|
target = { target, features }: (target."os" == "windows");
|
|
features = [ "Globalization" ];
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "fallback" ];
|
|
};
|
|
"iana-time-zone-haiku" = rec {
|
|
crateName = "iana-time-zone-haiku";
|
|
version = "0.1.2";
|
|
edition = "2018";
|
|
sha256 = "17r6jmj31chn7xs9698r122mapq85mfnv98bb4pg6spm0si2f67k";
|
|
authors = [
|
|
"René Kijewski <crates.io@k6i.de>"
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "cc";
|
|
packageId = "cc";
|
|
}
|
|
];
|
|
|
|
};
|
|
"idna" = rec {
|
|
crateName = "idna";
|
|
version = "0.4.0";
|
|
edition = "2018";
|
|
sha256 = "0z4i1dhqk83bbv230pp1c31dqdlnscvqxvc85n40ihgvgfqdc83x";
|
|
authors = [
|
|
"The rust-url developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "unicode-bidi";
|
|
packageId = "unicode-bidi";
|
|
usesDefaultFeatures = false;
|
|
features = [ "hardcoded-data" ];
|
|
}
|
|
{
|
|
name = "unicode-normalization";
|
|
packageId = "unicode-normalization";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "alloc" "unicode-bidi/std" "unicode-normalization/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"indexmap" = rec {
|
|
crateName = "indexmap";
|
|
version = "1.9.3";
|
|
edition = "2021";
|
|
sha256 = "16dxmy7yvk51wvnih3a3im6fp5lmx0wx76i03n06wyak6cwhw1xx";
|
|
dependencies = [
|
|
{
|
|
name = "hashbrown";
|
|
packageId = "hashbrown";
|
|
usesDefaultFeatures = false;
|
|
features = [ "raw" ];
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "autocfg";
|
|
packageId = "autocfg";
|
|
}
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"quickcheck" = [ "dep:quickcheck" ];
|
|
"rayon" = [ "dep:rayon" ];
|
|
"rustc-rayon" = [ "dep:rustc-rayon" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde-1" = [ "serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"international-fixed-calendar" = rec {
|
|
crateName = "international-fixed-calendar";
|
|
version = "0.1.0";
|
|
edition = "2018";
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ../ifc; };
|
|
authors = [
|
|
"Savanni D'Gerinel <savanni@luminescent-dreams.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "chrono";
|
|
packageId = "chrono";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror";
|
|
}
|
|
];
|
|
|
|
};
|
|
"intl-memoizer" = rec {
|
|
crateName = "intl-memoizer";
|
|
version = "0.5.1";
|
|
edition = "2018";
|
|
sha256 = "0vx6cji8ifw77zrgipwmvy1i3v43dcm58hwjxpb1h29i98z46463";
|
|
authors = [
|
|
"Zibi Braniecki <gandalf@mozilla.com>"
|
|
"Manish Goregaokar <manishsmail@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "type-map";
|
|
packageId = "type-map";
|
|
}
|
|
{
|
|
name = "unic-langid";
|
|
packageId = "unic-langid";
|
|
}
|
|
];
|
|
|
|
};
|
|
"intl_pluralrules" = rec {
|
|
crateName = "intl_pluralrules";
|
|
version = "7.0.2";
|
|
edition = "2018";
|
|
sha256 = "0wprd3h6h8nfj62d8xk71h178q7zfn3srxm787w4sawsqavsg3h7";
|
|
authors = [
|
|
"Kekoa Riggin <kekoariggin@gmail.com>"
|
|
"Zibi Braniecki <zbraniecki@mozilla.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "unic-langid";
|
|
packageId = "unic-langid";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "unic-langid";
|
|
packageId = "unic-langid";
|
|
features = [ "macros" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"ipnet" = rec {
|
|
crateName = "ipnet";
|
|
version = "2.8.0";
|
|
edition = "2018";
|
|
sha256 = "1rhlmw1cpgpba6414m05d2s0xbiblkmkmzjfjfc4a3sgswy9mci8";
|
|
authors = [
|
|
"Kris Price <kris@krisprice.nz>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"json" = [ "serde" "schemars" ];
|
|
"schemars" = [ "dep:schemars" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"itoa" = rec {
|
|
crateName = "itoa";
|
|
version = "1.0.9";
|
|
edition = "2018";
|
|
sha256 = "0f6cpb4yqzhkrhhg6kqsw3wnmmhdnnffi6r2xzy248gzi2v0l5dg";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
features = {
|
|
"no-panic" = [ "dep:no-panic" ];
|
|
};
|
|
};
|
|
"js-sys" = rec {
|
|
crateName = "js-sys";
|
|
version = "0.3.64";
|
|
edition = "2018";
|
|
sha256 = "0nlkiwpm8dyqcf1xyc6qmrankcgdd3fpzc0qyfq2sw3z97z9bwf5";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
];
|
|
|
|
};
|
|
"lazy_static" = rec {
|
|
crateName = "lazy_static";
|
|
version = "1.4.0";
|
|
edition = "2015";
|
|
sha256 = "0in6ikhw8mgl33wjv6q6xfrb5b9jr16q8ygjy803fay4zcisvaz2";
|
|
authors = [
|
|
"Marvin Löbel <loebel.marvin@gmail.com>"
|
|
];
|
|
features = {
|
|
"spin" = [ "dep:spin" ];
|
|
"spin_no_std" = [ "spin" ];
|
|
};
|
|
};
|
|
"libc" = rec {
|
|
crateName = "libc";
|
|
version = "0.2.147";
|
|
edition = "2015";
|
|
sha256 = "1cwv2lkzk3p5lby79fm42qhsh29lvbqwayhjjkq1s746xaq8yrml";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"rustc-dep-of-std" = [ "align" "rustc-std-workspace-core" ];
|
|
"rustc-std-workspace-core" = [ "dep:rustc-std-workspace-core" ];
|
|
"use_std" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "extra_traits" "std" ];
|
|
};
|
|
"linux-raw-sys" = rec {
|
|
crateName = "linux-raw-sys";
|
|
version = "0.4.3";
|
|
edition = "2021";
|
|
sha256 = "1w6kxhk91ncwjfrggd1xxkifc8ym69nvvqwk9h29zjqjrb921z09";
|
|
authors = [
|
|
"Dan Gohman <dev@sunfishcode.online>"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" "general" "errno" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" "no_std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "errno" "general" "ioctl" "no_std" ];
|
|
};
|
|
"lock_api" = rec {
|
|
crateName = "lock_api";
|
|
version = "0.4.10";
|
|
edition = "2018";
|
|
sha256 = "05nd9nzxqidg24d1k8y5vlc8lz9gscpskrikycib46qbl8brgk61";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "scopeguard";
|
|
packageId = "scopeguard";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "autocfg";
|
|
packageId = "autocfg";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "atomic_usize" ];
|
|
"owning_ref" = [ "dep:owning_ref" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "atomic_usize" "default" ];
|
|
};
|
|
"log" = rec {
|
|
crateName = "log";
|
|
version = "0.4.19";
|
|
edition = "2015";
|
|
sha256 = "1d0442jg89rc56lyrj6vaz74i5bqvvwfzqw2cx21l9qg9kg4qsmh";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"kv_unstable" = [ "value-bag" ];
|
|
"kv_unstable_serde" = [ "kv_unstable_std" "value-bag/serde" "serde" ];
|
|
"kv_unstable_std" = [ "std" "kv_unstable" "value-bag/error" ];
|
|
"kv_unstable_sval" = [ "kv_unstable" "value-bag/sval" "sval" "sval_ref" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"sval" = [ "dep:sval" ];
|
|
"sval_ref" = [ "dep:sval_ref" ];
|
|
"value-bag" = [ "dep:value-bag" ];
|
|
};
|
|
};
|
|
"memchr" = rec {
|
|
crateName = "memchr";
|
|
version = "2.5.0";
|
|
edition = "2018";
|
|
sha256 = "0vanfk5mzs1g1syqnj03q8n0syggnhn55dq535h2wxr7rwpfbzrd";
|
|
authors = [
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
"bluss"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
"use_std" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"memorycache" = rec {
|
|
crateName = "memorycache";
|
|
version = "0.1.0";
|
|
edition = "2018";
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ../memory_cache; };
|
|
dependencies = [
|
|
{
|
|
name = "chrono";
|
|
packageId = "chrono";
|
|
}
|
|
{
|
|
name = "futures";
|
|
packageId = "futures";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
}
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"mime" = rec {
|
|
crateName = "mime";
|
|
version = "0.3.17";
|
|
edition = "2015";
|
|
sha256 = "16hkibgvb9klh0w0jk5crr5xv90l3wlf77ggymzjmvl1818vnxv8";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
|
|
};
|
|
"mime_guess" = rec {
|
|
crateName = "mime_guess";
|
|
version = "2.0.4";
|
|
edition = "2015";
|
|
sha256 = "1vs28rxnbfwil6f48hh58lfcx90klcvg68gxdc60spwa4cy2d4j1";
|
|
authors = [
|
|
"Austin Bonander <austin.bonander@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "mime";
|
|
packageId = "mime";
|
|
}
|
|
{
|
|
name = "unicase";
|
|
packageId = "unicase";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "unicase";
|
|
packageId = "unicase";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "rev-mappings" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "rev-mappings" ];
|
|
};
|
|
"miniz_oxide" = rec {
|
|
crateName = "miniz_oxide";
|
|
version = "0.7.1";
|
|
edition = "2018";
|
|
sha256 = "1ivl3rbbdm53bzscrd01g60l46lz5krl270487d8lhjvwl5hx0g7";
|
|
authors = [
|
|
"Frommi <daniil.liferenko@gmail.com>"
|
|
"oyvindln <oyvindln@users.noreply.github.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "adler";
|
|
packageId = "adler";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "with-alloc" ];
|
|
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "adler/rustc-dep-of-std" ];
|
|
"simd" = [ "simd-adler32" ];
|
|
"simd-adler32" = [ "dep:simd-adler32" ];
|
|
};
|
|
};
|
|
"mio" = rec {
|
|
crateName = "mio";
|
|
version = "0.8.8";
|
|
edition = "2018";
|
|
sha256 = "1lhrdgcmcy8f0qy1n7357q0aprfkm5gld5mjcrp209pwsdf7cylj";
|
|
authors = [
|
|
"Carl Lerche <me@carllerche.com>"
|
|
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (target."os" == "wasi");
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "wasi";
|
|
packageId = "wasi 0.11.0+wasi-snapshot-preview1";
|
|
target = { target, features }: (target."os" == "wasi");
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_Storage_FileSystem" "Win32_System_IO" "Win32_System_WindowsProgramming" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "log" ];
|
|
"log" = [ "dep:log" ];
|
|
"os-ext" = [ "os-poll" "windows-sys/Win32_System_Pipes" "windows-sys/Win32_Security" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "net" "os-ext" "os-poll" ];
|
|
};
|
|
"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" ];
|
|
};
|
|
"native-tls" = rec {
|
|
crateName = "native-tls";
|
|
version = "0.2.11";
|
|
edition = "2015";
|
|
sha256 = "0bmrlg0fmzxaycjpkgkchi93av07v2yf9k33gc12ca9gqdrn28h7";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "lazy_static";
|
|
packageId = "lazy_static";
|
|
target = { target, features }: ((target."os" == "macos") || (target."os" == "ios"));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: ((target."os" == "macos") || (target."os" == "ios"));
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
target = { target, features }: (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios")));
|
|
}
|
|
{
|
|
name = "openssl";
|
|
packageId = "openssl";
|
|
target = { target, features }: (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios")));
|
|
}
|
|
{
|
|
name = "openssl-probe";
|
|
packageId = "openssl-probe";
|
|
target = { target, features }: (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios")));
|
|
}
|
|
{
|
|
name = "openssl-sys";
|
|
packageId = "openssl-sys";
|
|
target = { target, features }: (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios")));
|
|
}
|
|
{
|
|
name = "schannel";
|
|
packageId = "schannel";
|
|
target = { target, features }: (target."os" == "windows");
|
|
}
|
|
{
|
|
name = "security-framework";
|
|
packageId = "security-framework";
|
|
target = { target, features }: ((target."os" == "macos") || (target."os" == "ios"));
|
|
}
|
|
{
|
|
name = "security-framework-sys";
|
|
packageId = "security-framework-sys";
|
|
target = { target, features }: ((target."os" == "macos") || (target."os" == "ios"));
|
|
}
|
|
{
|
|
name = "tempfile";
|
|
packageId = "tempfile";
|
|
target = { target, features }: ((target."os" == "macos") || (target."os" == "ios"));
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "tempfile";
|
|
packageId = "tempfile";
|
|
}
|
|
];
|
|
features = {
|
|
"alpn" = [ "security-framework/alpn" ];
|
|
"vendored" = [ "openssl/vendored" ];
|
|
};
|
|
};
|
|
"num-traits" = rec {
|
|
crateName = "num-traits";
|
|
version = "0.2.16";
|
|
edition = "2018";
|
|
sha256 = "1hp6x4gayrib34y14gpcfx60hbqsmh7i8whjrbzy5rrvfayhl2zk";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "autocfg";
|
|
packageId = "autocfg";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"libm" = [ "dep:libm" ];
|
|
};
|
|
};
|
|
"num_cpus" = rec {
|
|
crateName = "num_cpus";
|
|
version = "1.16.0";
|
|
edition = "2015";
|
|
sha256 = "0hra6ihpnh06dvfvz9ipscys0xfqa9ca9hzp384d5m02ssvgqqa1";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "hermit-abi";
|
|
packageId = "hermit-abi";
|
|
target = { target, features }: (target."os" == "hermit");
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (!(target."windows" or false));
|
|
}
|
|
];
|
|
|
|
};
|
|
"object" = rec {
|
|
crateName = "object";
|
|
version = "0.31.1";
|
|
edition = "2018";
|
|
sha256 = "1lb670wallm2i6rzrx2hz1afya4bfjzz6n9zhfw52l1bkxyndnlb";
|
|
dependencies = [
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"all" = [ "read" "write" "std" "compression" "wasm" ];
|
|
"alloc" = [ "dep:alloc" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"compression" = [ "flate2" "ruzstd" "std" ];
|
|
"core" = [ "dep:core" ];
|
|
"crc32fast" = [ "dep:crc32fast" ];
|
|
"default" = [ "read" "compression" ];
|
|
"doc" = [ "read_core" "write_std" "std" "compression" "archive" "coff" "elf" "macho" "pe" "wasm" "xcoff" ];
|
|
"flate2" = [ "dep:flate2" ];
|
|
"hashbrown" = [ "dep:hashbrown" ];
|
|
"indexmap" = [ "dep:indexmap" ];
|
|
"pe" = [ "coff" ];
|
|
"read" = [ "read_core" "archive" "coff" "elf" "macho" "pe" "xcoff" "unaligned" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" "alloc" "memchr/rustc-dep-of-std" ];
|
|
"ruzstd" = [ "dep:ruzstd" ];
|
|
"std" = [ "memchr/std" ];
|
|
"unstable-all" = [ "all" "unstable" ];
|
|
"wasm" = [ "wasmparser" ];
|
|
"wasmparser" = [ "dep:wasmparser" ];
|
|
"write" = [ "write_std" "coff" "elf" "macho" "pe" "xcoff" ];
|
|
"write_core" = [ "crc32fast" "indexmap" "hashbrown" ];
|
|
"write_std" = [ "write_core" "std" "indexmap/std" "crc32fast/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "archive" "coff" "elf" "macho" "pe" "read_core" "unaligned" ];
|
|
};
|
|
"once_cell" = rec {
|
|
crateName = "once_cell";
|
|
version = "1.18.0";
|
|
edition = "2021";
|
|
sha256 = "0vapcd5ambwck95wyz3ymlim35jirgnqn9a0qmi19msymv95v2yx";
|
|
authors = [
|
|
"Aleksey Kladov <aleksey.kladov@gmail.com>"
|
|
];
|
|
features = {
|
|
"alloc" = [ "race" ];
|
|
"atomic-polyfill" = [ "critical-section" ];
|
|
"critical-section" = [ "dep:critical-section" "dep:atomic-polyfill" ];
|
|
"default" = [ "std" ];
|
|
"parking_lot" = [ "dep:parking_lot_core" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "race" "std" ];
|
|
};
|
|
"openssl" = rec {
|
|
crateName = "openssl";
|
|
version = "0.10.55";
|
|
edition = "2018";
|
|
sha256 = "0gbhq3fvln61md9kvzjfinvzykkrbzq4yrg4p5g1ql23pi9g2p9l";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 1.3.2";
|
|
}
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "foreign-types";
|
|
packageId = "foreign-types";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
{
|
|
name = "openssl-macros";
|
|
packageId = "openssl-macros";
|
|
}
|
|
{
|
|
name = "openssl-sys";
|
|
packageId = "openssl-sys";
|
|
rename = "ffi";
|
|
}
|
|
];
|
|
features = {
|
|
"bindgen" = [ "ffi/bindgen" ];
|
|
"unstable_boringssl" = [ "ffi/unstable_boringssl" ];
|
|
"vendored" = [ "ffi/vendored" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"openssl-macros" = rec {
|
|
crateName = "openssl-macros";
|
|
version = "0.1.1";
|
|
edition = "2018";
|
|
sha256 = "173xxvfc63rr5ybwqwylsir0vq6xsj4kxiv4hmg4c3vscdmncj59";
|
|
procMacro = true;
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"openssl-probe" = rec {
|
|
crateName = "openssl-probe";
|
|
version = "0.1.5";
|
|
edition = "2015";
|
|
sha256 = "1kq18qm48rvkwgcggfkqq6pm948190czqc94d6bm2sir5hq1l0gz";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
|
|
};
|
|
"openssl-sys" = rec {
|
|
crateName = "openssl-sys";
|
|
version = "0.9.90";
|
|
edition = "2018";
|
|
sha256 = "19h4h5x5lkifhm7kib1xq1mnarhf0b5crbpw23npqfjzwjq36i9p";
|
|
build = "build/main.rs";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "cc";
|
|
packageId = "cc";
|
|
}
|
|
{
|
|
name = "pkg-config";
|
|
packageId = "pkg-config";
|
|
}
|
|
{
|
|
name = "vcpkg";
|
|
packageId = "vcpkg";
|
|
target = {target, features}: (target."env" == "msvc");
|
|
}
|
|
];
|
|
features = {
|
|
"bindgen" = [ "dep:bindgen" ];
|
|
"bssl-sys" = [ "dep:bssl-sys" ];
|
|
"openssl-src" = [ "dep:openssl-src" ];
|
|
"unstable_boringssl" = [ "bssl-sys" ];
|
|
"vendored" = [ "openssl-src" ];
|
|
};
|
|
};
|
|
"parking_lot" = rec {
|
|
crateName = "parking_lot";
|
|
version = "0.12.1";
|
|
edition = "2018";
|
|
sha256 = "13r2xk7mnxfc5g0g6dkdxqdqad99j7s7z8zhzz4npw5r0g0v4hip";
|
|
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.8";
|
|
edition = "2018";
|
|
sha256 = "0ixlak319bpzldq20yvyfqk0y1vi736zxbw101jvzjp7by30rw4k";
|
|
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";
|
|
target = { target, features }: (target."os" == "redox");
|
|
}
|
|
{
|
|
name = "smallvec";
|
|
packageId = "smallvec";
|
|
}
|
|
{
|
|
name = "windows-targets";
|
|
packageId = "windows-targets";
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
];
|
|
features = {
|
|
"backtrace" = [ "dep:backtrace" ];
|
|
"deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ];
|
|
"petgraph" = [ "dep:petgraph" ];
|
|
"thread-id" = [ "dep:thread-id" ];
|
|
};
|
|
};
|
|
"percent-encoding" = rec {
|
|
crateName = "percent-encoding";
|
|
version = "2.3.0";
|
|
edition = "2018";
|
|
sha256 = "152slflmparkh27hprw62sph8rv77wckzhwl2dhqk6bf563lfalv";
|
|
authors = [
|
|
"The rust-url developers"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"pin-project" = rec {
|
|
crateName = "pin-project";
|
|
version = "1.1.2";
|
|
edition = "2018";
|
|
sha256 = "0hl83z8p0rq4jld71avk9154vv6zicapz0qdrd28j2mi9nyd42h3";
|
|
dependencies = [
|
|
{
|
|
name = "pin-project-internal";
|
|
packageId = "pin-project-internal";
|
|
}
|
|
];
|
|
|
|
};
|
|
"pin-project-internal" = rec {
|
|
crateName = "pin-project-internal";
|
|
version = "1.1.2";
|
|
edition = "2018";
|
|
sha256 = "173d7wxb4qaijwddsx6g0fn7d3hq5i0db61kn5qw8kp9rhp0fbpc";
|
|
procMacro = true;
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn";
|
|
features = [ "full" "visit-mut" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"pin-project-lite" = rec {
|
|
crateName = "pin-project-lite";
|
|
version = "0.2.10";
|
|
edition = "2018";
|
|
sha256 = "0mwx9wpkzsammdsygb73lil8ba3yap30b9b2r3q5y7lj059d4h2c";
|
|
|
|
};
|
|
"pin-utils" = rec {
|
|
crateName = "pin-utils";
|
|
version = "0.1.0";
|
|
edition = "2018";
|
|
sha256 = "117ir7vslsl2z1a7qzhws4pd01cg2d3338c47swjyvqv2n60v1wb";
|
|
authors = [
|
|
"Josef Brandl <mail@josefbrandl.de>"
|
|
];
|
|
|
|
};
|
|
"pkg-config" = rec {
|
|
crateName = "pkg-config";
|
|
version = "0.3.27";
|
|
edition = "2015";
|
|
sha256 = "0r39ryh1magcq4cz5g9x88jllsnxnhcqr753islvyk4jp9h2h1r6";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
|
|
};
|
|
"ppv-lite86" = rec {
|
|
crateName = "ppv-lite86";
|
|
version = "0.2.17";
|
|
edition = "2018";
|
|
sha256 = "1pp6g52aw970adv3x2310n7glqnji96z0a9wiamzw89ibf0ayh2v";
|
|
authors = [
|
|
"The CryptoCorrosion Contributors"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "simd" "std" ];
|
|
};
|
|
"proc-macro2" = rec {
|
|
crateName = "proc-macro2";
|
|
version = "1.0.66";
|
|
edition = "2021";
|
|
sha256 = "1ngawak3lh5p63k5x2wk37qy65q1yylk1phwhbmb5pcv7zdk3yqq";
|
|
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" ];
|
|
};
|
|
"quote" = rec {
|
|
crateName = "quote";
|
|
version = "1.0.32";
|
|
edition = "2018";
|
|
sha256 = "0rarx33n4sp7ihsiasrjip5qxh01f5sn80daxc6m885pryfb7wsh";
|
|
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" ];
|
|
};
|
|
"rand" = rec {
|
|
crateName = "rand";
|
|
version = "0.8.5";
|
|
edition = "2018";
|
|
sha256 = "013l6931nn7gkc23jz5mm3qdhf93jjf0fg64nz2lp4i51qd8vbrl";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
"The Rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "rand_chacha";
|
|
packageId = "rand_chacha";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "rand_core";
|
|
packageId = "rand_core";
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "rand_core/alloc" ];
|
|
"default" = [ "std" "std_rng" ];
|
|
"getrandom" = [ "rand_core/getrandom" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"log" = [ "dep:log" ];
|
|
"packed_simd" = [ "dep:packed_simd" ];
|
|
"rand_chacha" = [ "dep:rand_chacha" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde1" = [ "serde" "rand_core/serde1" ];
|
|
"simd_support" = [ "packed_simd" ];
|
|
"std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ];
|
|
"std_rng" = [ "rand_chacha" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "getrandom" "libc" "rand_chacha" "std" "std_rng" ];
|
|
};
|
|
"rand_chacha" = rec {
|
|
crateName = "rand_chacha";
|
|
version = "0.3.1";
|
|
edition = "2018";
|
|
sha256 = "123x2adin558xbhvqb8w4f6syjsdkmqff8cxwhmjacpsl1ihmhg6";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
"The Rust Project Developers"
|
|
"The CryptoCorrosion Contributors"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "ppv-lite86";
|
|
packageId = "ppv-lite86";
|
|
usesDefaultFeatures = false;
|
|
features = [ "simd" ];
|
|
}
|
|
{
|
|
name = "rand_core";
|
|
packageId = "rand_core";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde1" = [ "serde" ];
|
|
"std" = [ "ppv-lite86/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"rand_core" = rec {
|
|
crateName = "rand_core";
|
|
version = "0.6.4";
|
|
edition = "2018";
|
|
sha256 = "0b4j2v4cb5krak1pv6kakv4sz6xcwbrmy2zckc32hsigbrwy82zc";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
"The Rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "getrandom";
|
|
packageId = "getrandom";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"getrandom" = [ "dep:getrandom" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde1" = [ "serde" ];
|
|
"std" = [ "alloc" "getrandom" "getrandom/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ];
|
|
};
|
|
"redox_syscall" = rec {
|
|
crateName = "redox_syscall";
|
|
version = "0.3.5";
|
|
edition = "2018";
|
|
sha256 = "0acgiy2lc1m2vr8cr33l5s7k9wzby8dybyab1a9p753hcbr68xjn";
|
|
libName = "syscall";
|
|
authors = [
|
|
"Jeremy Soller <jackpot51@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 1.3.2";
|
|
}
|
|
];
|
|
features = {
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ];
|
|
};
|
|
};
|
|
"reqwest" = rec {
|
|
crateName = "reqwest";
|
|
version = "0.11.18";
|
|
edition = "2018";
|
|
sha256 = "0m8w3hmp8hqlyiq1dx0k415c1b7s27s2a4pqmxfgh53w9fhj9s6d";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "base64";
|
|
packageId = "base64 0.21.2";
|
|
}
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "encoding_rs";
|
|
packageId = "encoding_rs";
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "h2";
|
|
packageId = "h2";
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http";
|
|
}
|
|
{
|
|
name = "http-body";
|
|
packageId = "http-body";
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
}
|
|
{
|
|
name = "hyper";
|
|
packageId = "hyper";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
features = [ "tcp" "http1" "http2" "client" "runtime" ];
|
|
}
|
|
{
|
|
name = "hyper-tls";
|
|
packageId = "hyper-tls";
|
|
optional = true;
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
}
|
|
{
|
|
name = "ipnet";
|
|
packageId = "ipnet";
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
target = { target, features }: (target."arch" == "wasm32");
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
}
|
|
{
|
|
name = "mime";
|
|
packageId = "mime";
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
}
|
|
{
|
|
name = "native-tls";
|
|
packageId = "native-tls";
|
|
rename = "native-tls-crate";
|
|
optional = true;
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
}
|
|
{
|
|
name = "percent-encoding";
|
|
packageId = "percent-encoding";
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
target = { target, features }: (target."arch" == "wasm32");
|
|
}
|
|
{
|
|
name = "serde_urlencoded";
|
|
packageId = "serde_urlencoded";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
features = [ "net" "time" ];
|
|
}
|
|
{
|
|
name = "tokio-native-tls";
|
|
packageId = "tokio-native-tls";
|
|
optional = true;
|
|
target = { target, features }: (!(target."arch" == "wasm32"));
|
|
}
|
|
{
|
|
name = "tower-service";
|
|
packageId = "tower-service";
|
|
}
|
|
{
|
|
name = "url";
|
|
packageId = "url";
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
target = { target, features }: (target."arch" == "wasm32");
|
|
}
|
|
{
|
|
name = "wasm-bindgen-futures";
|
|
packageId = "wasm-bindgen-futures";
|
|
target = { target, features }: (target."arch" == "wasm32");
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
target = { target, features }: (target."arch" == "wasm32");
|
|
features = [ "AbortController" "AbortSignal" "Headers" "Request" "RequestInit" "RequestMode" "Response" "Window" "FormData" "Blob" "BlobPropertyBag" "ServiceWorkerGlobalScope" "RequestCredentials" "File" "ReadableStream" ];
|
|
}
|
|
{
|
|
name = "winreg";
|
|
packageId = "winreg";
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "hyper";
|
|
packageId = "hyper";
|
|
usesDefaultFeatures = false;
|
|
target = {target, features}: (!(target."arch" == "wasm32"));
|
|
features = [ "tcp" "stream" "http1" "http2" "client" "server" "runtime" ];
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
target = {target, features}: (!(target."arch" == "wasm32"));
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
usesDefaultFeatures = false;
|
|
target = {target, features}: (!(target."arch" == "wasm32"));
|
|
features = [ "macros" "rt-multi-thread" ];
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
target = {target, features}: (target."arch" == "wasm32");
|
|
features = [ "serde-serialize" ];
|
|
}
|
|
];
|
|
features = {
|
|
"__rustls" = [ "hyper-rustls" "tokio-rustls" "rustls" "__tls" "rustls-pemfile" ];
|
|
"async-compression" = [ "dep:async-compression" ];
|
|
"blocking" = [ "futures-util/io" "tokio/rt-multi-thread" "tokio/sync" ];
|
|
"brotli" = [ "async-compression" "async-compression/brotli" "tokio-util" ];
|
|
"cookie_crate" = [ "dep:cookie_crate" ];
|
|
"cookie_store" = [ "dep:cookie_store" ];
|
|
"cookies" = [ "cookie_crate" "cookie_store" ];
|
|
"default" = [ "default-tls" ];
|
|
"default-tls" = [ "hyper-tls" "native-tls-crate" "__tls" "tokio-native-tls" ];
|
|
"deflate" = [ "async-compression" "async-compression/zlib" "tokio-util" ];
|
|
"futures-channel" = [ "dep:futures-channel" ];
|
|
"gzip" = [ "async-compression" "async-compression/gzip" "tokio-util" ];
|
|
"h3" = [ "dep:h3" ];
|
|
"h3-quinn" = [ "dep:h3-quinn" ];
|
|
"http3" = [ "rustls-tls" "h3" "h3-quinn" "quinn" "futures-channel" ];
|
|
"hyper-rustls" = [ "dep:hyper-rustls" ];
|
|
"hyper-tls" = [ "dep:hyper-tls" ];
|
|
"json" = [ "serde_json" ];
|
|
"mime_guess" = [ "dep:mime_guess" ];
|
|
"multipart" = [ "mime_guess" ];
|
|
"native-tls" = [ "default-tls" ];
|
|
"native-tls-alpn" = [ "native-tls" "native-tls-crate/alpn" ];
|
|
"native-tls-crate" = [ "dep:native-tls-crate" ];
|
|
"native-tls-vendored" = [ "native-tls" "native-tls-crate/vendored" ];
|
|
"quinn" = [ "dep:quinn" ];
|
|
"rustls" = [ "dep:rustls" ];
|
|
"rustls-native-certs" = [ "dep:rustls-native-certs" ];
|
|
"rustls-pemfile" = [ "dep:rustls-pemfile" ];
|
|
"rustls-tls" = [ "rustls-tls-webpki-roots" ];
|
|
"rustls-tls-manual-roots" = [ "__rustls" ];
|
|
"rustls-tls-native-roots" = [ "rustls-native-certs" "__rustls" ];
|
|
"rustls-tls-webpki-roots" = [ "webpki-roots" "__rustls" ];
|
|
"serde_json" = [ "dep:serde_json" ];
|
|
"socks" = [ "tokio-socks" ];
|
|
"stream" = [ "tokio/fs" "tokio-util" "wasm-streams" ];
|
|
"tokio-native-tls" = [ "dep:tokio-native-tls" ];
|
|
"tokio-rustls" = [ "dep:tokio-rustls" ];
|
|
"tokio-socks" = [ "dep:tokio-socks" ];
|
|
"tokio-util" = [ "dep:tokio-util" ];
|
|
"trust-dns" = [ "trust-dns-resolver" ];
|
|
"trust-dns-resolver" = [ "dep:trust-dns-resolver" ];
|
|
"wasm-streams" = [ "dep:wasm-streams" ];
|
|
"webpki-roots" = [ "dep:webpki-roots" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "__tls" "default" "default-tls" "hyper-tls" "json" "native-tls-crate" "serde_json" "tokio-native-tls" ];
|
|
};
|
|
"rustc-demangle" = rec {
|
|
crateName = "rustc-demangle";
|
|
version = "0.1.23";
|
|
edition = "2015";
|
|
sha256 = "0xnbk2bmyzshacjm2g1kd4zzv2y2az14bw3sjccq5qkpmsfvn9nn";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
};
|
|
};
|
|
"rustc-hash" = rec {
|
|
crateName = "rustc-hash";
|
|
version = "1.1.0";
|
|
edition = "2015";
|
|
sha256 = "1qkc5khrmv5pqi5l5ca9p5nl5hs742cagrndhbrlk3dhlrx3zm08";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"rustix" = rec {
|
|
crateName = "rustix";
|
|
version = "0.38.4";
|
|
edition = "2021";
|
|
sha256 = "1rfngxmm0wz2nszypp4a91b0jv6cbb2nvg4l51cl9ml8x8c2k5ha";
|
|
authors = [
|
|
"Dan Gohman <dev@sunfishcode.online>"
|
|
"Jakub Konka <kubkon@jakubkonka.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 2.3.3";
|
|
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)) && (target."os" == "linux") && (target."endian" == "little") && ((target."arch" == "arm") || ((target."arch" == "aarch64") && (target."pointer_width" == "64")) || (target."arch" == "riscv64") || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "powerpc64")) || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "mips")) || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "mips64")) || (target."arch" == "x86") || ((target."arch" == "x86_64") && (target."pointer_width" == "64"))));
|
|
}
|
|
{
|
|
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) || (!((target."os" == "linux") && (target."endian" == "little") && ((target."arch" == "arm") || ((target."arch" == "aarch64") && (target."pointer_width" == "64")) || (target."arch" == "riscv64") || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "powerpc64")) || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "mips")) || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "mips64")) || (target."arch" == "x86") || ((target."arch" == "x86_64") && (target."pointer_width" == "64")))))));
|
|
}
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
optional = true;
|
|
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && (target."os" == "linux") && (target."endian" == "little") && ((target."arch" == "arm") || ((target."arch" == "aarch64") && (target."pointer_width" == "64")) || (target."arch" == "riscv64") || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "powerpc64")) || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "mips")) || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "mips64")) || (target."arch" == "x86") || ((target."arch" == "x86_64") && (target."pointer_width" == "64"))));
|
|
features = [ "extra_traits" ];
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!((target."os" == "linux") && (target."endian" == "little") && ((target."arch" == "arm") || ((target."arch" == "aarch64") && (target."pointer_width" == "64")) || (target."arch" == "riscv64") || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "powerpc64")) || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "mips")) || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "mips64")) || (target."arch" == "x86") || ((target."arch" == "x86_64") && (target."pointer_width" == "64")))))));
|
|
features = [ "extra_traits" ];
|
|
}
|
|
{
|
|
name = "linux-raw-sys";
|
|
packageId = "linux-raw-sys";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (((target."os" == "android") || (target."os" == "linux")) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!((target."os" == "linux") && (target."endian" == "little") && ((target."arch" == "arm") || ((target."arch" == "aarch64") && (target."pointer_width" == "64")) || (target."arch" == "riscv64") || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "powerpc64")) || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "mips")) || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "mips64")) || (target."arch" == "x86") || ((target."arch" == "x86_64") && (target."pointer_width" == "64")))))));
|
|
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)) && (target."os" == "linux") && (target."endian" == "little") && ((target."arch" == "arm") || ((target."arch" == "aarch64") && (target."pointer_width" == "64")) || (target."arch" == "riscv64") || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "powerpc64")) || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "mips")) || ((target."rustix_use_experimental_asm" or false) && (target."arch" == "mips64")) || (target."arch" == "x86") || ((target."arch" == "x86_64") && (target."pointer_width" == "64"))));
|
|
features = [ "general" "errno" "ioctl" "no_std" ];
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_NetworkManagement_IpHelper" "Win32_System_Threading" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
features = {
|
|
"all-apis" = [ "event" "fs" "io_uring" "mm" "net" "param" "pipe" "process" "procfs" "pty" "rand" "runtime" "system" "stdio" "termios" "thread" "time" ];
|
|
"alloc" = [ "dep:alloc" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" "use-libc-auxv" ];
|
|
"io_uring" = [ "fs" "net" "linux-raw-sys/io_uring" ];
|
|
"itoa" = [ "dep:itoa" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"libc_errno" = [ "dep:libc_errno" ];
|
|
"linux_latest" = [ "linux_4_11" ];
|
|
"net" = [ "linux-raw-sys/net" "linux-raw-sys/netlink" "linux-raw-sys/if_ether" ];
|
|
"once_cell" = [ "dep:once_cell" ];
|
|
"param" = [ "fs" ];
|
|
"process" = [ "linux-raw-sys/prctl" ];
|
|
"procfs" = [ "once_cell" "itoa" "fs" ];
|
|
"pty" = [ "itoa" "fs" ];
|
|
"runtime" = [ "linux-raw-sys/prctl" ];
|
|
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" ];
|
|
"std" = [ "bitflags/std" ];
|
|
"system" = [ "linux-raw-sys/system" ];
|
|
"thread" = [ "linux-raw-sys/prctl" ];
|
|
"use-libc" = [ "libc_errno" "libc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "fs" "std" "use-libc-auxv" ];
|
|
};
|
|
"rustls-pemfile" = rec {
|
|
crateName = "rustls-pemfile";
|
|
version = "1.0.3";
|
|
edition = "2018";
|
|
sha256 = "1cplx6hgkr32nq31p3613b2sj7csrrq3zp6znx9vc1qx9c4qff9d";
|
|
dependencies = [
|
|
{
|
|
name = "base64";
|
|
packageId = "base64 0.21.2";
|
|
}
|
|
];
|
|
|
|
};
|
|
"ryu" = rec {
|
|
crateName = "ryu";
|
|
version = "1.0.15";
|
|
edition = "2018";
|
|
sha256 = "0hfphpn1xnpzxwj8qg916ga1lyc33lc03lnf1gb3wwpglj6wrm0s";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
features = {
|
|
"no-panic" = [ "dep:no-panic" ];
|
|
};
|
|
};
|
|
"schannel" = rec {
|
|
crateName = "schannel";
|
|
version = "0.1.22";
|
|
edition = "2018";
|
|
sha256 = "126zy5jb95fc5hvzyjwiq6lc81r08rdcn6affn00ispp9jzk6dqc";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
"Steffen Butzer <steffen.butzer@outlook.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
features = [ "Win32_Foundation" "Win32_Security_Cryptography" "Win32_Security_Authentication_Identity" "Win32_Security_Credentials" "Win32_System_Memory" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
features = [ "Win32_System_SystemInformation" "Win32_System_Time" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"scoped-tls" = rec {
|
|
crateName = "scoped-tls";
|
|
version = "1.0.1";
|
|
edition = "2015";
|
|
sha256 = "15524h04mafihcvfpgxd8f4bgc3k95aclz8grjkg9a0rxcvn9kz1";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
|
|
};
|
|
"scopeguard" = rec {
|
|
crateName = "scopeguard";
|
|
version = "1.2.0";
|
|
edition = "2015";
|
|
sha256 = "0jcz9sd47zlsgcnm1hdw0664krxwb5gczlif4qngj2aif8vky54l";
|
|
authors = [
|
|
"bluss"
|
|
];
|
|
features = {
|
|
"default" = [ "use_std" ];
|
|
};
|
|
};
|
|
"security-framework" = rec {
|
|
crateName = "security-framework";
|
|
version = "2.9.2";
|
|
edition = "2021";
|
|
sha256 = "1pplxk15s5yxvi2m1sz5xfmjibp96cscdcl432w9jzbk0frlzdh5";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
"Kornel <kornel@geekhood.net>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 1.3.2";
|
|
}
|
|
{
|
|
name = "core-foundation";
|
|
packageId = "core-foundation";
|
|
}
|
|
{
|
|
name = "core-foundation-sys";
|
|
packageId = "core-foundation-sys";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "security-framework-sys";
|
|
packageId = "security-framework-sys";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"OSX_10_10" = [ "OSX_10_9" "security-framework-sys/OSX_10_10" ];
|
|
"OSX_10_11" = [ "OSX_10_10" "security-framework-sys/OSX_10_11" ];
|
|
"OSX_10_12" = [ "OSX_10_11" "security-framework-sys/OSX_10_12" ];
|
|
"OSX_10_13" = [ "OSX_10_12" "security-framework-sys/OSX_10_13" "alpn" "session-tickets" "serial-number-bigint" ];
|
|
"OSX_10_14" = [ "OSX_10_13" "security-framework-sys/OSX_10_14" ];
|
|
"OSX_10_15" = [ "OSX_10_14" "security-framework-sys/OSX_10_15" ];
|
|
"OSX_10_9" = [ "security-framework-sys/OSX_10_9" ];
|
|
"default" = [ "OSX_10_9" ];
|
|
"log" = [ "dep:log" ];
|
|
"serial-number-bigint" = [ "dep:num-bigint" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "OSX_10_9" "default" ];
|
|
};
|
|
"security-framework-sys" = rec {
|
|
crateName = "security-framework-sys";
|
|
version = "2.9.1";
|
|
edition = "2021";
|
|
sha256 = "0yhciwlsy9dh0ps1gw3197kvyqx1bvc4knrhiznhid6kax196cp9";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
"Kornel <kornel@geekhood.net>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "core-foundation-sys";
|
|
packageId = "core-foundation-sys";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
features = {
|
|
"OSX_10_10" = [ "OSX_10_9" ];
|
|
"OSX_10_11" = [ "OSX_10_10" ];
|
|
"OSX_10_12" = [ "OSX_10_11" ];
|
|
"OSX_10_13" = [ "OSX_10_12" ];
|
|
"OSX_10_14" = [ "OSX_10_13" ];
|
|
"OSX_10_15" = [ "OSX_10_14" ];
|
|
"default" = [ "OSX_10_9" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "OSX_10_9" "default" ];
|
|
};
|
|
"self_cell" = rec {
|
|
crateName = "self_cell";
|
|
version = "0.10.2";
|
|
edition = "2018";
|
|
sha256 = "1by8h3axgpbiph5nbq80z6a41hd4cqlqc66hgnngs57y42j6by8y";
|
|
authors = [
|
|
"Lukas Bergdoll <lukas.bergdoll@gmail.com>"
|
|
];
|
|
features = {
|
|
"old_rust" = [ "rustversion" ];
|
|
"rustversion" = [ "dep:rustversion" ];
|
|
};
|
|
};
|
|
"serde" = rec {
|
|
crateName = "serde";
|
|
version = "1.0.177";
|
|
edition = "2015";
|
|
sha256 = "02jn1kfmy8hmcfpvvy9wbm2mipsjkl0m12ya345jxy3bm8b2bfk3";
|
|
authors = [
|
|
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
optional = true;
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"derive" = [ "serde_derive" ];
|
|
"serde_derive" = [ "dep:serde_derive" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "derive" "serde_derive" "std" ];
|
|
};
|
|
"serde_derive" = rec {
|
|
crateName = "serde_derive";
|
|
version = "1.0.177";
|
|
edition = "2015";
|
|
sha256 = "1lvgph51y9pxibmjcbvpk6dys3kwwv5vzinyzq4j3mrkg3z9f5s0";
|
|
procMacro = true;
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
target = { target, features }: (!((target."arch" == "x86_64") && (target."os" == "linux") && (target."env" == "gnu")));
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
target = { target, features }: (!((target."arch" == "x86_64") && (target."os" == "linux") && (target."env" == "gnu")));
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn";
|
|
target = { target, features }: (!((target."arch" == "x86_64") && (target."os" == "linux") && (target."env" == "gnu")));
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"serde_json" = rec {
|
|
crateName = "serde_json";
|
|
version = "1.0.104";
|
|
edition = "2021";
|
|
sha256 = "0v4pdqhgi29w4dgagpv5xn5i1ziji1x84c9af9dsr3h7y72ncq07";
|
|
authors = [
|
|
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
}
|
|
{
|
|
name = "ryu";
|
|
packageId = "ryu";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "serde/alloc" ];
|
|
"default" = [ "std" ];
|
|
"indexmap" = [ "dep:indexmap" ];
|
|
"preserve_order" = [ "indexmap" "std" ];
|
|
"std" = [ "serde/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"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.5";
|
|
edition = "2018";
|
|
sha256 = "18zb80sxn31kxdpl1ly6w17hkrvyf08zbxnpy8ckb6f3h3f96hph";
|
|
authors = [
|
|
"RustCrypto Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "cpufeatures";
|
|
packageId = "cpufeatures";
|
|
target = { target, features }: ((target."arch" == "aarch64") || (target."arch" == "x86") || (target."arch" == "x86_64"));
|
|
}
|
|
{
|
|
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" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"signal-hook-registry" = rec {
|
|
crateName = "signal-hook-registry";
|
|
version = "1.4.1";
|
|
edition = "2015";
|
|
sha256 = "18crkkw5k82bvcx088xlf5g4n3772m24qhzgfan80nda7d3rn8nq";
|
|
authors = [
|
|
"Michal 'vorner' Vaner <vorner@vorner.cz>"
|
|
"Masaki Hara <ackie.h.gmai@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
|
|
};
|
|
"slab" = rec {
|
|
crateName = "slab";
|
|
version = "0.4.8";
|
|
edition = "2018";
|
|
sha256 = "0bgwxig8gkqp6gz8rvrpdj6qwa10karnsxwx7wsj5ay8kcf3aa35";
|
|
authors = [
|
|
"Carl Lerche <me@carllerche.com>"
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "autocfg";
|
|
packageId = "autocfg";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"smallvec" = rec {
|
|
crateName = "smallvec";
|
|
version = "1.11.0";
|
|
edition = "2018";
|
|
sha256 = "1y9g8jcsizjbsiilgplrnavy8pd3cliy40pqgrq9zpczwkp4zfv2";
|
|
authors = [
|
|
"The Servo Project Developers"
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"const_new" = [ "const_generics" ];
|
|
"drain_keep_rest" = [ "drain_filter" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
};
|
|
"socket2" = rec {
|
|
crateName = "socket2";
|
|
version = "0.4.9";
|
|
edition = "2018";
|
|
sha256 = "0qnn1r41jqj20m0a2nzzjgzndlmpg5maiyjchccaypfqxq8sk934";
|
|
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 = {
|
|
};
|
|
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>"
|
|
];
|
|
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 = [ "mutex" "spin_mutex" ];
|
|
};
|
|
"syn" = rec {
|
|
crateName = "syn";
|
|
version = "2.0.27";
|
|
edition = "2021";
|
|
sha256 = "1q25pa0d0i66dnq5b9c1vbr3bm4nlmkayzb5ijf5n9d88hznf3xn";
|
|
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" "visit" "visit-mut" ];
|
|
};
|
|
"tempfile" = rec {
|
|
crateName = "tempfile";
|
|
version = "3.7.0";
|
|
edition = "2018";
|
|
sha256 = "1649gc0f4qfbqfj6qhikqhpdr160bdjdfbiqlqw50blbwx70k1jl";
|
|
authors = [
|
|
"Steven Allen <steven@stebalien.com>"
|
|
"The Rust Project Developers"
|
|
"Ashley Mannix <ashleymannix@live.com.au>"
|
|
"Jason White <me@jasonwhite.io>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "fastrand";
|
|
packageId = "fastrand";
|
|
}
|
|
{
|
|
name = "redox_syscall";
|
|
packageId = "redox_syscall";
|
|
target = { target, features }: (target."os" == "redox");
|
|
}
|
|
{
|
|
name = "rustix";
|
|
packageId = "rustix";
|
|
target = { target, features }: ((target."unix" or false) || (target."os" == "wasi"));
|
|
features = [ "fs" ];
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Storage_FileSystem" "Win32_Foundation" ];
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
};
|
|
"thiserror" = rec {
|
|
crateName = "thiserror";
|
|
version = "1.0.44";
|
|
edition = "2021";
|
|
sha256 = "143zzmardcq447va2pw09iq9rajvr48v340riljghf84iah40431";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "thiserror-impl";
|
|
packageId = "thiserror-impl";
|
|
}
|
|
];
|
|
|
|
};
|
|
"thiserror-impl" = rec {
|
|
crateName = "thiserror-impl";
|
|
version = "1.0.44";
|
|
edition = "2021";
|
|
sha256 = "15nwh6qfwxlwimgij1p6ajb377p4rlvvc6sx7amiz11h959rh089";
|
|
procMacro = true;
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn";
|
|
}
|
|
];
|
|
|
|
};
|
|
"time" = rec {
|
|
crateName = "time";
|
|
version = "0.1.45";
|
|
edition = "2015";
|
|
sha256 = "0nl0pzv9yf56djy8y5dx25nka5pr2q1ivlandb3d24pksgx7ly8v";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "wasi";
|
|
packageId = "wasi 0.10.0+wasi-snapshot-preview1";
|
|
target = { target, features }: (target."os" == "wasi");
|
|
}
|
|
{
|
|
name = "winapi";
|
|
packageId = "winapi";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "std" "minwinbase" "minwindef" "ntdef" "profileapi" "sysinfoapi" "timezoneapi" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "winapi";
|
|
packageId = "winapi";
|
|
features = [ "std" "processthreadsapi" "winbase" ];
|
|
}
|
|
];
|
|
features = {
|
|
"rustc-serialize" = [ "dep:rustc-serialize" ];
|
|
};
|
|
};
|
|
"tinystr" = rec {
|
|
crateName = "tinystr";
|
|
version = "0.7.1";
|
|
edition = "2021";
|
|
sha256 = "1vx5jy0pirx79xnibyb5ka13jlh4r2c8wivvw0aix4vfhnvgbhvs";
|
|
authors = [
|
|
"The ICU4X Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "displaydoc";
|
|
packageId = "displaydoc";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"databake" = [ "dep:databake" ];
|
|
"default" = [ "alloc" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"zerovec" = [ "dep:zerovec" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" ];
|
|
};
|
|
"tinyvec" = rec {
|
|
crateName = "tinyvec";
|
|
version = "1.6.0";
|
|
edition = "2018";
|
|
sha256 = "0l6bl2h62a5m44jdnpn7lmj14rd44via8180i7121fvm73mmrk47";
|
|
authors = [
|
|
"Lokathor <zefria@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "tinyvec_macros";
|
|
packageId = "tinyvec_macros";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "tinyvec_macros" ];
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"real_blackbox" = [ "criterion/real_blackbox" ];
|
|
"rustc_1_55" = [ "rustc_1_40" ];
|
|
"rustc_1_57" = [ "rustc_1_55" ];
|
|
"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.29.1";
|
|
edition = "2021";
|
|
sha256 = "1nm4yhhirdczb7pz1raff0jmw8r91x0zxifjp4rmi78rfpzjca2k";
|
|
authors = [
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "backtrace";
|
|
packageId = "backtrace";
|
|
target = { target, features }: (target."tokio_taskdump" or false);
|
|
}
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
optional = true;
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "mio";
|
|
packageId = "mio";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "num_cpus";
|
|
packageId = "num_cpus";
|
|
optional = true;
|
|
}
|
|
{
|
|
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";
|
|
optional = true;
|
|
target = { target, features }: (!((target."arch" == "wasm32") || (target."arch" == "wasm64")));
|
|
features = [ "all" ];
|
|
}
|
|
{
|
|
name = "tokio-macros";
|
|
packageId = "tokio-macros";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
optional = true;
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "autocfg";
|
|
packageId = "autocfg";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = {target, features}: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "socket2";
|
|
packageId = "socket2";
|
|
target = {target, features}: (!((target."arch" == "wasm32") || (target."arch" == "wasm64")));
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
target = {target, features}: (target."windows" or false);
|
|
features = [ "Win32_Foundation" "Win32_Security_Authorization" ];
|
|
}
|
|
];
|
|
features = {
|
|
"bytes" = [ "dep:bytes" ];
|
|
"full" = [ "fs" "io-util" "io-std" "macros" "net" "parking_lot" "process" "rt" "rt-multi-thread" "signal" "sync" "time" ];
|
|
"io-util" = [ "bytes" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"macros" = [ "tokio-macros" ];
|
|
"mio" = [ "dep:mio" ];
|
|
"net" = [ "libc" "mio/os-poll" "mio/os-ext" "mio/net" "socket2" "windows-sys/Win32_Foundation" "windows-sys/Win32_Security" "windows-sys/Win32_Storage_FileSystem" "windows-sys/Win32_System_Pipes" "windows-sys/Win32_System_SystemServices" ];
|
|
"num_cpus" = [ "dep:num_cpus" ];
|
|
"parking_lot" = [ "dep:parking_lot" ];
|
|
"process" = [ "bytes" "libc" "mio/os-poll" "mio/os-ext" "mio/net" "signal-hook-registry" "windows-sys/Win32_Foundation" "windows-sys/Win32_System_Threading" "windows-sys/Win32_System_WindowsProgramming" ];
|
|
"rt-multi-thread" = [ "num_cpus" "rt" ];
|
|
"signal" = [ "libc" "mio/os-poll" "mio/net" "mio/os-ext" "signal-hook-registry" "windows-sys/Win32_Foundation" "windows-sys/Win32_System_Console" ];
|
|
"signal-hook-registry" = [ "dep:signal-hook-registry" ];
|
|
"socket2" = [ "dep:socket2" ];
|
|
"test-util" = [ "rt" "sync" "time" ];
|
|
"tokio-macros" = [ "dep:tokio-macros" ];
|
|
"tracing" = [ "dep:tracing" ];
|
|
"windows-sys" = [ "dep:windows-sys" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "bytes" "default" "fs" "full" "io-std" "io-util" "libc" "macros" "mio" "net" "num_cpus" "parking_lot" "process" "rt" "rt-multi-thread" "signal" "signal-hook-registry" "socket2" "sync" "time" "tokio-macros" "windows-sys" ];
|
|
};
|
|
"tokio-macros" = rec {
|
|
crateName = "tokio-macros";
|
|
version = "2.1.0";
|
|
edition = "2018";
|
|
sha256 = "0pk7y9dfanab886iaqwcbri39jkw33kgl7y07v0kg1pp8prdq2v3";
|
|
procMacro = true;
|
|
authors = [
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"tokio-native-tls" = rec {
|
|
crateName = "tokio-native-tls";
|
|
version = "0.3.1";
|
|
edition = "2018";
|
|
sha256 = "1wkfg6zn85zckmv4im7mv20ca6b1vmlib5xwz9p7g19wjfmpdbmv";
|
|
authors = [
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "native-tls";
|
|
packageId = "native-tls";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "macros" "rt" "rt-multi-thread" "io-util" "net" ];
|
|
}
|
|
];
|
|
features = {
|
|
"vendored" = [ "native-tls/vendored" ];
|
|
};
|
|
};
|
|
"tokio-stream" = rec {
|
|
crateName = "tokio-stream";
|
|
version = "0.1.14";
|
|
edition = "2021";
|
|
sha256 = "0hi8hcwavh5sdi1ivc9qc4yvyr32f153c212dpd7sb366y6rhz1r";
|
|
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" "time" ];
|
|
};
|
|
"tokio-tungstenite" = rec {
|
|
crateName = "tokio-tungstenite";
|
|
version = "0.18.0";
|
|
edition = "2018";
|
|
sha256 = "1z8bxhq6d1ndh4x914wwk72l93ha1sl0jmnb6knvqiqi869rqcal";
|
|
authors = [
|
|
"Daniel Abramov <dabramov@snapview.de>"
|
|
"Alexey Galakhov <agalakhov@snapview.de>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
features = [ "sink" "std" ];
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
usesDefaultFeatures = false;
|
|
features = [ "io-util" ];
|
|
}
|
|
{
|
|
name = "tungstenite";
|
|
packageId = "tungstenite";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
usesDefaultFeatures = false;
|
|
features = [ "io-std" "macros" "net" "rt-multi-thread" "time" ];
|
|
}
|
|
];
|
|
features = {
|
|
"__rustls-tls" = [ "rustls" "tokio-rustls" "stream" "tungstenite/__rustls-tls" "webpki" "handshake" ];
|
|
"connect" = [ "stream" "tokio/net" "handshake" ];
|
|
"default" = [ "connect" "handshake" ];
|
|
"handshake" = [ "tungstenite/handshake" ];
|
|
"native-tls" = [ "native-tls-crate" "tokio-native-tls" "stream" "tungstenite/native-tls" "handshake" ];
|
|
"native-tls-crate" = [ "dep:native-tls-crate" ];
|
|
"native-tls-vendored" = [ "native-tls" "native-tls-crate/vendored" "tungstenite/native-tls-vendored" ];
|
|
"rustls" = [ "dep:rustls" ];
|
|
"rustls-native-certs" = [ "dep:rustls-native-certs" ];
|
|
"rustls-tls-native-roots" = [ "__rustls-tls" "rustls-native-certs" ];
|
|
"rustls-tls-webpki-roots" = [ "__rustls-tls" "webpki-roots" ];
|
|
"tokio-native-tls" = [ "dep:tokio-native-tls" ];
|
|
"tokio-rustls" = [ "dep:tokio-rustls" ];
|
|
"webpki" = [ "dep:webpki" ];
|
|
"webpki-roots" = [ "dep:webpki-roots" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "connect" "default" "handshake" "stream" ];
|
|
};
|
|
"tokio-util" = rec {
|
|
crateName = "tokio-util";
|
|
version = "0.7.8";
|
|
edition = "2021";
|
|
sha256 = "0zfvblvskaj65rianw6agz9hnbdbsfgf5fkw4srwik3yr31fhvw0";
|
|
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" ];
|
|
}
|
|
{
|
|
name = "tracing";
|
|
packageId = "tracing";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
features = {
|
|
"__docs_rs" = [ "futures-util" ];
|
|
"codec" = [ "tracing" ];
|
|
"compat" = [ "futures-io" ];
|
|
"full" = [ "codec" "compat" "io-util" "time" "net" "rt" ];
|
|
"futures-io" = [ "dep:futures-io" ];
|
|
"futures-util" = [ "dep:futures-util" ];
|
|
"hashbrown" = [ "dep:hashbrown" ];
|
|
"io-util" = [ "io" "tokio/rt" "tokio/io-util" ];
|
|
"net" = [ "tokio/net" ];
|
|
"rt" = [ "tokio/rt" "tokio/sync" "futures-util" "hashbrown" ];
|
|
"slab" = [ "dep:slab" ];
|
|
"time" = [ "tokio/time" "slab" ];
|
|
"tracing" = [ "dep:tracing" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "codec" "default" "io" "tracing" ];
|
|
};
|
|
"tower-service" = rec {
|
|
crateName = "tower-service";
|
|
version = "0.3.2";
|
|
edition = "2018";
|
|
sha256 = "0lmfzmmvid2yp2l36mbavhmqgsvzqf7r2wiwz73ml4xmwaf1rg5n";
|
|
authors = [
|
|
"Tower Maintainers <team@tower-rs.com>"
|
|
];
|
|
|
|
};
|
|
"tracing" = rec {
|
|
crateName = "tracing";
|
|
version = "0.1.37";
|
|
edition = "2018";
|
|
sha256 = "1f2fylc79xmbh7v53kak6qyw27njbx227rd64kb4bga8ilxc7s4c";
|
|
authors = [
|
|
"Eliza Weisman <eliza@buoyant.io>"
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
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 = [ "log" "std" ];
|
|
};
|
|
"tracing-core" = rec {
|
|
crateName = "tracing-core";
|
|
version = "0.1.31";
|
|
edition = "2018";
|
|
sha256 = "16pp28izw9c41m7c55qsghlz07r9ark8lzd3x6ig3xhxg89vhm89";
|
|
authors = [
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" "valuable/std" ];
|
|
"once_cell" = [ "dep:once_cell" ];
|
|
"std" = [ "once_cell" ];
|
|
"valuable" = [ "dep:valuable" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "once_cell" "std" ];
|
|
};
|
|
"try-lock" = rec {
|
|
crateName = "try-lock";
|
|
version = "0.2.4";
|
|
edition = "2015";
|
|
sha256 = "1vc15paa4zi06ixsxihwbvfn24d708nsyg1ncgqwcrn42byyqa1m";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
|
|
};
|
|
"tungstenite" = rec {
|
|
crateName = "tungstenite";
|
|
version = "0.18.0";
|
|
edition = "2018";
|
|
sha256 = "1207jv8ciklgnqwjhxc1c1xhplrfab231191apyz0k6d56vnmvih";
|
|
authors = [
|
|
"Alexey Galakhov"
|
|
"Daniel Abramov"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "base64";
|
|
packageId = "base64 0.13.1";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "byteorder";
|
|
packageId = "byteorder";
|
|
}
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "httparse";
|
|
packageId = "httparse";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
}
|
|
{
|
|
name = "rand";
|
|
packageId = "rand";
|
|
}
|
|
{
|
|
name = "sha1";
|
|
packageId = "sha1";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror";
|
|
}
|
|
{
|
|
name = "url";
|
|
packageId = "url";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "utf-8";
|
|
packageId = "utf-8";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "rand";
|
|
packageId = "rand";
|
|
}
|
|
];
|
|
features = {
|
|
"__rustls-tls" = [ "rustls" "webpki" ];
|
|
"base64" = [ "dep:base64" ];
|
|
"default" = [ "handshake" ];
|
|
"handshake" = [ "base64" "http" "httparse" "sha1" "url" ];
|
|
"http" = [ "dep:http" ];
|
|
"httparse" = [ "dep:httparse" ];
|
|
"native-tls" = [ "native-tls-crate" ];
|
|
"native-tls-crate" = [ "dep:native-tls-crate" ];
|
|
"native-tls-vendored" = [ "native-tls" "native-tls-crate/vendored" ];
|
|
"rustls" = [ "dep:rustls" ];
|
|
"rustls-native-certs" = [ "dep:rustls-native-certs" ];
|
|
"rustls-tls-native-roots" = [ "__rustls-tls" "rustls-native-certs" ];
|
|
"rustls-tls-webpki-roots" = [ "__rustls-tls" "webpki-roots" ];
|
|
"sha1" = [ "dep:sha1" ];
|
|
"url" = [ "dep:url" ];
|
|
"webpki" = [ "dep:webpki" ];
|
|
"webpki-roots" = [ "dep:webpki-roots" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "base64" "handshake" "http" "httparse" "sha1" "url" ];
|
|
};
|
|
"type-map" = rec {
|
|
crateName = "type-map";
|
|
version = "0.4.0";
|
|
edition = "2018";
|
|
sha256 = "0ilsqq7pcl3k9ggxv2x5fbxxfd6x7ljsndrhc38jmjwnbr63dlxn";
|
|
authors = [
|
|
"Jacob Brown <kardeiz@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "rustc-hash";
|
|
packageId = "rustc-hash";
|
|
}
|
|
];
|
|
|
|
};
|
|
"typenum" = rec {
|
|
crateName = "typenum";
|
|
version = "1.16.0";
|
|
edition = "2018";
|
|
sha256 = "1fhb9iaqyjn4dzn2vl86kxjhp4xpw5gynczlnqzf4x6rjgpn2ya9";
|
|
build = "build/main.rs";
|
|
authors = [
|
|
"Paho Lurie-Gregg <paho@paholg.com>"
|
|
"Andre Bogus <bogusandre@gmail.com>"
|
|
];
|
|
features = {
|
|
"scale-info" = [ "dep:scale-info" ];
|
|
"scale_info" = [ "scale-info/derive" ];
|
|
};
|
|
};
|
|
"unic-langid" = rec {
|
|
crateName = "unic-langid";
|
|
version = "0.9.1";
|
|
edition = "2018";
|
|
sha256 = "0byg9pqm4vywfx82lcw080sphbgj5z8niq0gz384zd4x4gbrm3rr";
|
|
authors = [
|
|
"Zibi Braniecki <gandalf@mozilla.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "unic-langid-impl";
|
|
packageId = "unic-langid-impl";
|
|
}
|
|
];
|
|
features = {
|
|
"likelysubtags" = [ "unic-langid-impl/likelysubtags" ];
|
|
"macros" = [ "unic-langid-macros" ];
|
|
"serde" = [ "unic-langid-impl/serde" ];
|
|
"unic-langid-macros" = [ "dep:unic-langid-macros" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"unic-langid-impl" = rec {
|
|
crateName = "unic-langid-impl";
|
|
version = "0.9.1";
|
|
edition = "2018";
|
|
crateBin = [];
|
|
sha256 = "1zrm390npybzrclbrj6il1l3yqd0i4zgvlypamdm95l75cpzsnz3";
|
|
authors = [
|
|
"Zibi Braniecki <gandalf@mozilla.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "tinystr";
|
|
packageId = "tinystr";
|
|
}
|
|
];
|
|
features = {
|
|
"binary" = [ "serde" "serde_json" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde_json" = [ "dep:serde_json" ];
|
|
};
|
|
};
|
|
"unicase" = rec {
|
|
crateName = "unicase";
|
|
version = "2.6.0";
|
|
edition = "2015";
|
|
sha256 = "1xmlbink4ycgxrkjspp0mf7pghcx4m7vxq7fpfm04ikr2zk7pwsh";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "version_check";
|
|
packageId = "version_check";
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
};
|
|
"unicode-bidi" = rec {
|
|
crateName = "unicode-bidi";
|
|
version = "0.3.13";
|
|
edition = "2018";
|
|
sha256 = "0q0l7rdkiq54pan7a4ama39dgynaf1mnjj1nddrq1w1zayjqp24j";
|
|
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" ];
|
|
"with_serde" = [ "serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "hardcoded-data" "std" ];
|
|
};
|
|
"unicode-ident" = rec {
|
|
crateName = "unicode-ident";
|
|
version = "1.0.11";
|
|
edition = "2018";
|
|
sha256 = "0g7wmn39nl9yzhjwn9ihacd22ymli8r4nlc2xf3idaas8ypbl6ih";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"unicode-normalization" = rec {
|
|
crateName = "unicode-normalization";
|
|
version = "0.1.22";
|
|
edition = "2018";
|
|
sha256 = "08d95g7b1irc578b2iyhzv4xhsa4pfvwsqxcl9lbcpabzkq16msw";
|
|
authors = [
|
|
"kwantam <kwantam@gmail.com>"
|
|
"Manish Goregaokar <manishsmail@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "tinyvec";
|
|
packageId = "tinyvec";
|
|
features = [ "alloc" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"url" = rec {
|
|
crateName = "url";
|
|
version = "2.4.0";
|
|
edition = "2018";
|
|
sha256 = "1jw89ack5ldvajpzsvhq9sy12y2xqa2x0cbin62hl80r3s1zggsh";
|
|
authors = [
|
|
"The rust-url developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "form_urlencoded";
|
|
packageId = "form_urlencoded";
|
|
}
|
|
{
|
|
name = "idna";
|
|
packageId = "idna";
|
|
}
|
|
{
|
|
name = "percent-encoding";
|
|
packageId = "percent-encoding";
|
|
}
|
|
];
|
|
features = {
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"utf-8" = rec {
|
|
crateName = "utf-8";
|
|
version = "0.7.6";
|
|
edition = "2015";
|
|
sha256 = "1a9ns3fvgird0snjkd3wbdhwd3zdpc2h5gpyybrfr6ra5pkqxk09";
|
|
libName = "utf8";
|
|
authors = [
|
|
"Simon Sapin <simon.sapin@exyr.org>"
|
|
];
|
|
|
|
};
|
|
"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.4";
|
|
edition = "2015";
|
|
sha256 = "0gs8grwdlgh0xq660d7wr80x14vxbizmd8dbp29p2pdncx8lp1s9";
|
|
authors = [
|
|
"Sergio Benitez <sb@sergio.bz>"
|
|
];
|
|
|
|
};
|
|
"want" = rec {
|
|
crateName = "want";
|
|
version = "0.3.1";
|
|
edition = "2018";
|
|
sha256 = "03hbfrnvqqdchb5kgxyavb9jabwza0dmh2vw5kg0dq8rxl57d9xz";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "try-lock";
|
|
packageId = "try-lock";
|
|
}
|
|
];
|
|
|
|
};
|
|
"warp" = rec {
|
|
crateName = "warp";
|
|
version = "0.3.5";
|
|
edition = "2018";
|
|
sha256 = "0s8zirqy2cbj8a4k8ixc4r6zhm5dj5j3fzmhz3vqf4nzf3siwhxs";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
features = [ "sink" ];
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
features = [ "sink" ];
|
|
}
|
|
{
|
|
name = "headers";
|
|
packageId = "headers";
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http";
|
|
}
|
|
{
|
|
name = "hyper";
|
|
packageId = "hyper";
|
|
features = [ "stream" "server" "http1" "http2" "tcp" "client" ];
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
}
|
|
{
|
|
name = "mime";
|
|
packageId = "mime";
|
|
}
|
|
{
|
|
name = "mime_guess";
|
|
packageId = "mime_guess";
|
|
}
|
|
{
|
|
name = "multer";
|
|
packageId = "multer";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "percent-encoding";
|
|
packageId = "percent-encoding";
|
|
}
|
|
{
|
|
name = "pin-project";
|
|
packageId = "pin-project";
|
|
}
|
|
{
|
|
name = "rustls-pemfile";
|
|
packageId = "rustls-pemfile";
|
|
}
|
|
{
|
|
name = "scoped-tls";
|
|
packageId = "scoped-tls";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
}
|
|
{
|
|
name = "serde_urlencoded";
|
|
packageId = "serde_urlencoded";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "fs" "sync" "time" ];
|
|
}
|
|
{
|
|
name = "tokio-stream";
|
|
packageId = "tokio-stream";
|
|
}
|
|
{
|
|
name = "tokio-tungstenite";
|
|
packageId = "tokio-tungstenite";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "tokio-util";
|
|
packageId = "tokio-util";
|
|
features = [ "io" ];
|
|
}
|
|
{
|
|
name = "tower-service";
|
|
packageId = "tower-service";
|
|
}
|
|
{
|
|
name = "tracing";
|
|
packageId = "tracing";
|
|
usesDefaultFeatures = false;
|
|
features = [ "log" "std" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "macros" "rt-multi-thread" ];
|
|
}
|
|
{
|
|
name = "tokio-stream";
|
|
packageId = "tokio-stream";
|
|
features = [ "net" ];
|
|
}
|
|
];
|
|
features = {
|
|
"async-compression" = [ "dep:async-compression" ];
|
|
"compression" = [ "compression-brotli" "compression-gzip" ];
|
|
"compression-brotli" = [ "async-compression/brotli" ];
|
|
"compression-gzip" = [ "async-compression/deflate" "async-compression/gzip" ];
|
|
"default" = [ "multipart" "websocket" ];
|
|
"multer" = [ "dep:multer" ];
|
|
"multipart" = [ "multer" ];
|
|
"tls" = [ "tokio-rustls" ];
|
|
"tokio-rustls" = [ "dep:tokio-rustls" ];
|
|
"tokio-tungstenite" = [ "dep:tokio-tungstenite" ];
|
|
"websocket" = [ "tokio-tungstenite" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "multer" "multipart" "tokio-tungstenite" "websocket" ];
|
|
};
|
|
"wasi 0.10.0+wasi-snapshot-preview1" = rec {
|
|
crateName = "wasi";
|
|
version = "0.10.0+wasi-snapshot-preview1";
|
|
edition = "2018";
|
|
sha256 = "07y3l8mzfzzz4cj09c8y90yak4hpsi9g7pllyzpr6xvwrabka50s";
|
|
authors = [
|
|
"The Cranelift Project Developers"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ];
|
|
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"wasi 0.11.0+wasi-snapshot-preview1" = rec {
|
|
crateName = "wasi";
|
|
version = "0.11.0+wasi-snapshot-preview1";
|
|
edition = "2018";
|
|
sha256 = "08z4hxwkpdpalxjps1ai9y7ihin26y9f476i53dv98v45gkqg3cw";
|
|
authors = [
|
|
"The Cranelift Project Developers"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ];
|
|
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"wasm-bindgen" = rec {
|
|
crateName = "wasm-bindgen";
|
|
version = "0.2.87";
|
|
edition = "2018";
|
|
sha256 = "0hm3k42gcnrps2jh339h186scx1radqy1w7v1zwb333dncmaf1kp";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "wasm-bindgen-macro";
|
|
packageId = "wasm-bindgen-macro";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "spans" "std" ];
|
|
"enable-interning" = [ "std" ];
|
|
"gg-alloc" = [ "wasm-bindgen-test/gg-alloc" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde-serialize" = [ "serde" "serde_json" "std" ];
|
|
"serde_json" = [ "dep:serde_json" ];
|
|
"spans" = [ "wasm-bindgen-macro/spans" ];
|
|
"strict-macro" = [ "wasm-bindgen-macro/strict-macro" ];
|
|
"xxx_debug_only_print_generated_code" = [ "wasm-bindgen-macro/xxx_debug_only_print_generated_code" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "spans" "std" ];
|
|
};
|
|
"wasm-bindgen-backend" = rec {
|
|
crateName = "wasm-bindgen-backend";
|
|
version = "0.2.87";
|
|
edition = "2018";
|
|
sha256 = "1gcsh3bjxhw3cirmin45107pcsnn0ymhkxg6bxg65s8hqp9vdwjy";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bumpalo";
|
|
packageId = "bumpalo";
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn";
|
|
features = [ "full" ];
|
|
}
|
|
{
|
|
name = "wasm-bindgen-shared";
|
|
packageId = "wasm-bindgen-shared";
|
|
}
|
|
];
|
|
features = {
|
|
"extra-traits" = [ "syn/extra-traits" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "spans" ];
|
|
};
|
|
"wasm-bindgen-futures" = rec {
|
|
crateName = "wasm-bindgen-futures";
|
|
version = "0.4.37";
|
|
edition = "2018";
|
|
sha256 = "00zagjk39g4jjjnvfh35s7w6s0p6sy88i5c7y421z7vga4hvqbf0";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
target = { target, features }: (builtins.elem "atomics" targetFeatures);
|
|
features = [ "MessageEvent" "Worker" ];
|
|
}
|
|
];
|
|
features = {
|
|
"futures-core" = [ "dep:futures-core" ];
|
|
"futures-core-03-stream" = [ "futures-core" ];
|
|
};
|
|
};
|
|
"wasm-bindgen-macro" = rec {
|
|
crateName = "wasm-bindgen-macro";
|
|
version = "0.2.87";
|
|
edition = "2018";
|
|
sha256 = "07cg0b6zkcxa1yg1n10h62paid59s9zr8yss214bv8w2b7jrbr6y";
|
|
procMacro = true;
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "wasm-bindgen-macro-support";
|
|
packageId = "wasm-bindgen-macro-support";
|
|
}
|
|
];
|
|
features = {
|
|
"spans" = [ "wasm-bindgen-macro-support/spans" ];
|
|
"strict-macro" = [ "wasm-bindgen-macro-support/strict-macro" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "spans" ];
|
|
};
|
|
"wasm-bindgen-macro-support" = rec {
|
|
crateName = "wasm-bindgen-macro-support";
|
|
version = "0.2.87";
|
|
edition = "2018";
|
|
sha256 = "0yqc46pr6mlgb9bsnfdnd50qvsqnrz8g5243fnaz0rb7lhc1ns2l";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn";
|
|
features = [ "visit" "full" ];
|
|
}
|
|
{
|
|
name = "wasm-bindgen-backend";
|
|
packageId = "wasm-bindgen-backend";
|
|
}
|
|
{
|
|
name = "wasm-bindgen-shared";
|
|
packageId = "wasm-bindgen-shared";
|
|
}
|
|
];
|
|
features = {
|
|
"extra-traits" = [ "syn/extra-traits" ];
|
|
"spans" = [ "wasm-bindgen-backend/spans" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "spans" ];
|
|
};
|
|
"wasm-bindgen-shared" = rec {
|
|
crateName = "wasm-bindgen-shared";
|
|
version = "0.2.87";
|
|
edition = "2018";
|
|
sha256 = "18bmjwvfyhvlq49nzw6mgiyx4ys350vps4cmx5gvzckh91dd0sna";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
|
|
};
|
|
"web-sys" = rec {
|
|
crateName = "web-sys";
|
|
version = "0.3.64";
|
|
edition = "2018";
|
|
sha256 = "16r4fww3l99kxhb66hka3kxkmhhgzhnqkzdf0ay6l2i2ikpwp1cv";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
];
|
|
features = {
|
|
"AbortSignal" = [ "EventTarget" ];
|
|
"AnalyserNode" = [ "AudioNode" "EventTarget" ];
|
|
"Animation" = [ "EventTarget" ];
|
|
"AnimationEvent" = [ "Event" ];
|
|
"AnimationPlaybackEvent" = [ "Event" ];
|
|
"Attr" = [ "EventTarget" "Node" ];
|
|
"AudioBufferSourceNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
|
|
"AudioContext" = [ "BaseAudioContext" "EventTarget" ];
|
|
"AudioDestinationNode" = [ "AudioNode" "EventTarget" ];
|
|
"AudioNode" = [ "EventTarget" ];
|
|
"AudioProcessingEvent" = [ "Event" ];
|
|
"AudioScheduledSourceNode" = [ "AudioNode" "EventTarget" ];
|
|
"AudioStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
|
|
"AudioTrackList" = [ "EventTarget" ];
|
|
"AudioWorklet" = [ "Worklet" ];
|
|
"AudioWorkletGlobalScope" = [ "WorkletGlobalScope" ];
|
|
"AudioWorkletNode" = [ "AudioNode" "EventTarget" ];
|
|
"AuthenticatorAssertionResponse" = [ "AuthenticatorResponse" ];
|
|
"AuthenticatorAttestationResponse" = [ "AuthenticatorResponse" ];
|
|
"BaseAudioContext" = [ "EventTarget" ];
|
|
"BatteryManager" = [ "EventTarget" ];
|
|
"BeforeUnloadEvent" = [ "Event" ];
|
|
"BiquadFilterNode" = [ "AudioNode" "EventTarget" ];
|
|
"BlobEvent" = [ "Event" ];
|
|
"Bluetooth" = [ "EventTarget" ];
|
|
"BluetoothAdvertisingEvent" = [ "Event" ];
|
|
"BluetoothDevice" = [ "EventTarget" ];
|
|
"BluetoothPermissionResult" = [ "EventTarget" "PermissionStatus" ];
|
|
"BluetoothRemoteGattCharacteristic" = [ "EventTarget" ];
|
|
"BluetoothRemoteGattService" = [ "EventTarget" ];
|
|
"BroadcastChannel" = [ "EventTarget" ];
|
|
"CanvasCaptureMediaStream" = [ "EventTarget" "MediaStream" ];
|
|
"CanvasCaptureMediaStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
|
|
"CdataSection" = [ "CharacterData" "EventTarget" "Node" "Text" ];
|
|
"ChannelMergerNode" = [ "AudioNode" "EventTarget" ];
|
|
"ChannelSplitterNode" = [ "AudioNode" "EventTarget" ];
|
|
"CharacterData" = [ "EventTarget" "Node" ];
|
|
"ChromeWorker" = [ "EventTarget" "Worker" ];
|
|
"Clipboard" = [ "EventTarget" ];
|
|
"ClipboardEvent" = [ "Event" ];
|
|
"CloseEvent" = [ "Event" ];
|
|
"Comment" = [ "CharacterData" "EventTarget" "Node" ];
|
|
"CompositionEvent" = [ "Event" "UiEvent" ];
|
|
"ConstantSourceNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
|
|
"ConvolverNode" = [ "AudioNode" "EventTarget" ];
|
|
"CssAnimation" = [ "Animation" "EventTarget" ];
|
|
"CssConditionRule" = [ "CssGroupingRule" "CssRule" ];
|
|
"CssCounterStyleRule" = [ "CssRule" ];
|
|
"CssFontFaceRule" = [ "CssRule" ];
|
|
"CssFontFeatureValuesRule" = [ "CssRule" ];
|
|
"CssGroupingRule" = [ "CssRule" ];
|
|
"CssImportRule" = [ "CssRule" ];
|
|
"CssKeyframeRule" = [ "CssRule" ];
|
|
"CssKeyframesRule" = [ "CssRule" ];
|
|
"CssMediaRule" = [ "CssConditionRule" "CssGroupingRule" "CssRule" ];
|
|
"CssNamespaceRule" = [ "CssRule" ];
|
|
"CssPageRule" = [ "CssRule" ];
|
|
"CssStyleRule" = [ "CssRule" ];
|
|
"CssStyleSheet" = [ "StyleSheet" ];
|
|
"CssSupportsRule" = [ "CssConditionRule" "CssGroupingRule" "CssRule" ];
|
|
"CssTransition" = [ "Animation" "EventTarget" ];
|
|
"CustomEvent" = [ "Event" ];
|
|
"DedicatedWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
|
|
"DelayNode" = [ "AudioNode" "EventTarget" ];
|
|
"DeviceLightEvent" = [ "Event" ];
|
|
"DeviceMotionEvent" = [ "Event" ];
|
|
"DeviceOrientationEvent" = [ "Event" ];
|
|
"DeviceProximityEvent" = [ "Event" ];
|
|
"Document" = [ "EventTarget" "Node" ];
|
|
"DocumentFragment" = [ "EventTarget" "Node" ];
|
|
"DocumentTimeline" = [ "AnimationTimeline" ];
|
|
"DocumentType" = [ "EventTarget" "Node" ];
|
|
"DomMatrix" = [ "DomMatrixReadOnly" ];
|
|
"DomPoint" = [ "DomPointReadOnly" ];
|
|
"DomRect" = [ "DomRectReadOnly" ];
|
|
"DomRequest" = [ "EventTarget" ];
|
|
"DragEvent" = [ "Event" "MouseEvent" "UiEvent" ];
|
|
"DynamicsCompressorNode" = [ "AudioNode" "EventTarget" ];
|
|
"Element" = [ "EventTarget" "Node" ];
|
|
"ErrorEvent" = [ "Event" ];
|
|
"EventSource" = [ "EventTarget" ];
|
|
"ExtendableEvent" = [ "Event" ];
|
|
"ExtendableMessageEvent" = [ "Event" "ExtendableEvent" ];
|
|
"FetchEvent" = [ "Event" "ExtendableEvent" ];
|
|
"FetchObserver" = [ "EventTarget" ];
|
|
"File" = [ "Blob" ];
|
|
"FileReader" = [ "EventTarget" ];
|
|
"FileSystemDirectoryEntry" = [ "FileSystemEntry" ];
|
|
"FileSystemDirectoryHandle" = [ "FileSystemHandle" ];
|
|
"FileSystemFileEntry" = [ "FileSystemEntry" ];
|
|
"FileSystemFileHandle" = [ "FileSystemHandle" ];
|
|
"FileSystemWritableFileStream" = [ "WritableStream" ];
|
|
"FocusEvent" = [ "Event" "UiEvent" ];
|
|
"FontFaceSet" = [ "EventTarget" ];
|
|
"FontFaceSetLoadEvent" = [ "Event" ];
|
|
"GainNode" = [ "AudioNode" "EventTarget" ];
|
|
"GamepadAxisMoveEvent" = [ "Event" "GamepadEvent" ];
|
|
"GamepadButtonEvent" = [ "Event" "GamepadEvent" ];
|
|
"GamepadEvent" = [ "Event" ];
|
|
"GpuDevice" = [ "EventTarget" ];
|
|
"GpuInternalError" = [ "GpuError" ];
|
|
"GpuOutOfMemoryError" = [ "GpuError" ];
|
|
"GpuUncapturedErrorEvent" = [ "Event" ];
|
|
"GpuValidationError" = [ "GpuError" ];
|
|
"HashChangeEvent" = [ "Event" ];
|
|
"Hid" = [ "EventTarget" ];
|
|
"HidConnectionEvent" = [ "Event" ];
|
|
"HidDevice" = [ "EventTarget" ];
|
|
"HidInputReportEvent" = [ "Event" ];
|
|
"HtmlAnchorElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlAreaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlAudioElement" = [ "Element" "EventTarget" "HtmlElement" "HtmlMediaElement" "Node" ];
|
|
"HtmlBaseElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlBodyElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlBrElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlButtonElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlCanvasElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDataElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDataListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDetailsElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDialogElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDirectoryElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDivElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDocument" = [ "Document" "EventTarget" "Node" ];
|
|
"HtmlElement" = [ "Element" "EventTarget" "Node" ];
|
|
"HtmlEmbedElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlFieldSetElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlFontElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlFormControlsCollection" = [ "HtmlCollection" ];
|
|
"HtmlFormElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlFrameElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlFrameSetElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlHeadElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlHeadingElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlHrElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlHtmlElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlIFrameElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlImageElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlInputElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlLabelElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlLegendElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlLiElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlLinkElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlMapElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlMediaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlMenuElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlMenuItemElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlMetaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlMeterElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlModElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlOListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlObjectElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlOptGroupElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlOptionElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlOptionsCollection" = [ "HtmlCollection" ];
|
|
"HtmlOutputElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlParagraphElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlParamElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlPictureElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlPreElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlProgressElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlQuoteElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlScriptElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlSelectElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlSlotElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlSourceElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlSpanElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlStyleElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTableCaptionElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTableCellElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTableColElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTableElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTableRowElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTableSectionElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTemplateElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTextAreaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTimeElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTitleElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTrackElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlUListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlUnknownElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlVideoElement" = [ "Element" "EventTarget" "HtmlElement" "HtmlMediaElement" "Node" ];
|
|
"IdbCursorWithValue" = [ "IdbCursor" ];
|
|
"IdbDatabase" = [ "EventTarget" ];
|
|
"IdbFileHandle" = [ "EventTarget" ];
|
|
"IdbFileRequest" = [ "DomRequest" "EventTarget" ];
|
|
"IdbLocaleAwareKeyRange" = [ "IdbKeyRange" ];
|
|
"IdbMutableFile" = [ "EventTarget" ];
|
|
"IdbOpenDbRequest" = [ "EventTarget" "IdbRequest" ];
|
|
"IdbRequest" = [ "EventTarget" ];
|
|
"IdbTransaction" = [ "EventTarget" ];
|
|
"IdbVersionChangeEvent" = [ "Event" ];
|
|
"IirFilterNode" = [ "AudioNode" "EventTarget" ];
|
|
"ImageCaptureErrorEvent" = [ "Event" ];
|
|
"ImageTrack" = [ "EventTarget" ];
|
|
"InputEvent" = [ "Event" "UiEvent" ];
|
|
"KeyboardEvent" = [ "Event" "UiEvent" ];
|
|
"KeyframeEffect" = [ "AnimationEffect" ];
|
|
"LocalMediaStream" = [ "EventTarget" "MediaStream" ];
|
|
"MediaDevices" = [ "EventTarget" ];
|
|
"MediaElementAudioSourceNode" = [ "AudioNode" "EventTarget" ];
|
|
"MediaEncryptedEvent" = [ "Event" ];
|
|
"MediaKeyError" = [ "Event" ];
|
|
"MediaKeyMessageEvent" = [ "Event" ];
|
|
"MediaKeySession" = [ "EventTarget" ];
|
|
"MediaQueryList" = [ "EventTarget" ];
|
|
"MediaQueryListEvent" = [ "Event" ];
|
|
"MediaRecorder" = [ "EventTarget" ];
|
|
"MediaRecorderErrorEvent" = [ "Event" ];
|
|
"MediaSource" = [ "EventTarget" ];
|
|
"MediaStream" = [ "EventTarget" ];
|
|
"MediaStreamAudioDestinationNode" = [ "AudioNode" "EventTarget" ];
|
|
"MediaStreamAudioSourceNode" = [ "AudioNode" "EventTarget" ];
|
|
"MediaStreamEvent" = [ "Event" ];
|
|
"MediaStreamTrack" = [ "EventTarget" ];
|
|
"MediaStreamTrackEvent" = [ "Event" ];
|
|
"MediaStreamTrackGenerator" = [ "EventTarget" "MediaStreamTrack" ];
|
|
"MessageEvent" = [ "Event" ];
|
|
"MessagePort" = [ "EventTarget" ];
|
|
"MidiAccess" = [ "EventTarget" ];
|
|
"MidiConnectionEvent" = [ "Event" ];
|
|
"MidiInput" = [ "EventTarget" "MidiPort" ];
|
|
"MidiMessageEvent" = [ "Event" ];
|
|
"MidiOutput" = [ "EventTarget" "MidiPort" ];
|
|
"MidiPort" = [ "EventTarget" ];
|
|
"MouseEvent" = [ "Event" "UiEvent" ];
|
|
"MouseScrollEvent" = [ "Event" "MouseEvent" "UiEvent" ];
|
|
"MutationEvent" = [ "Event" ];
|
|
"NetworkInformation" = [ "EventTarget" ];
|
|
"Node" = [ "EventTarget" ];
|
|
"Notification" = [ "EventTarget" ];
|
|
"NotificationEvent" = [ "Event" "ExtendableEvent" ];
|
|
"OfflineAudioCompletionEvent" = [ "Event" ];
|
|
"OfflineAudioContext" = [ "BaseAudioContext" "EventTarget" ];
|
|
"OfflineResourceList" = [ "EventTarget" ];
|
|
"OffscreenCanvas" = [ "EventTarget" ];
|
|
"OscillatorNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
|
|
"PageTransitionEvent" = [ "Event" ];
|
|
"PaintWorkletGlobalScope" = [ "WorkletGlobalScope" ];
|
|
"PannerNode" = [ "AudioNode" "EventTarget" ];
|
|
"PaymentMethodChangeEvent" = [ "Event" "PaymentRequestUpdateEvent" ];
|
|
"PaymentRequestUpdateEvent" = [ "Event" ];
|
|
"Performance" = [ "EventTarget" ];
|
|
"PerformanceMark" = [ "PerformanceEntry" ];
|
|
"PerformanceMeasure" = [ "PerformanceEntry" ];
|
|
"PerformanceNavigationTiming" = [ "PerformanceEntry" "PerformanceResourceTiming" ];
|
|
"PerformanceResourceTiming" = [ "PerformanceEntry" ];
|
|
"PermissionStatus" = [ "EventTarget" ];
|
|
"PointerEvent" = [ "Event" "MouseEvent" "UiEvent" ];
|
|
"PopStateEvent" = [ "Event" ];
|
|
"PopupBlockedEvent" = [ "Event" ];
|
|
"PresentationAvailability" = [ "EventTarget" ];
|
|
"PresentationConnection" = [ "EventTarget" ];
|
|
"PresentationConnectionAvailableEvent" = [ "Event" ];
|
|
"PresentationConnectionCloseEvent" = [ "Event" ];
|
|
"PresentationConnectionList" = [ "EventTarget" ];
|
|
"PresentationRequest" = [ "EventTarget" ];
|
|
"ProcessingInstruction" = [ "CharacterData" "EventTarget" "Node" ];
|
|
"ProgressEvent" = [ "Event" ];
|
|
"PromiseRejectionEvent" = [ "Event" ];
|
|
"PublicKeyCredential" = [ "Credential" ];
|
|
"PushEvent" = [ "Event" "ExtendableEvent" ];
|
|
"RadioNodeList" = [ "NodeList" ];
|
|
"RtcDataChannel" = [ "EventTarget" ];
|
|
"RtcDataChannelEvent" = [ "Event" ];
|
|
"RtcPeerConnection" = [ "EventTarget" ];
|
|
"RtcPeerConnectionIceEvent" = [ "Event" ];
|
|
"RtcTrackEvent" = [ "Event" ];
|
|
"RtcdtmfSender" = [ "EventTarget" ];
|
|
"RtcdtmfToneChangeEvent" = [ "Event" ];
|
|
"Screen" = [ "EventTarget" ];
|
|
"ScreenOrientation" = [ "EventTarget" ];
|
|
"ScriptProcessorNode" = [ "AudioNode" "EventTarget" ];
|
|
"ScrollAreaEvent" = [ "Event" "UiEvent" ];
|
|
"SecurityPolicyViolationEvent" = [ "Event" ];
|
|
"Serial" = [ "EventTarget" ];
|
|
"SerialPort" = [ "EventTarget" ];
|
|
"ServiceWorker" = [ "EventTarget" ];
|
|
"ServiceWorkerContainer" = [ "EventTarget" ];
|
|
"ServiceWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
|
|
"ServiceWorkerRegistration" = [ "EventTarget" ];
|
|
"ShadowRoot" = [ "DocumentFragment" "EventTarget" "Node" ];
|
|
"SharedWorker" = [ "EventTarget" ];
|
|
"SharedWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
|
|
"SourceBuffer" = [ "EventTarget" ];
|
|
"SourceBufferList" = [ "EventTarget" ];
|
|
"SpeechRecognition" = [ "EventTarget" ];
|
|
"SpeechRecognitionError" = [ "Event" ];
|
|
"SpeechRecognitionEvent" = [ "Event" ];
|
|
"SpeechSynthesis" = [ "EventTarget" ];
|
|
"SpeechSynthesisErrorEvent" = [ "Event" "SpeechSynthesisEvent" ];
|
|
"SpeechSynthesisEvent" = [ "Event" ];
|
|
"SpeechSynthesisUtterance" = [ "EventTarget" ];
|
|
"StereoPannerNode" = [ "AudioNode" "EventTarget" ];
|
|
"StorageEvent" = [ "Event" ];
|
|
"SubmitEvent" = [ "Event" ];
|
|
"SvgAnimateElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
|
|
"SvgAnimateMotionElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
|
|
"SvgAnimateTransformElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
|
|
"SvgAnimationElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgCircleElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgClipPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgComponentTransferFunctionElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgDefsElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgDescElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgElement" = [ "Element" "EventTarget" "Node" ];
|
|
"SvgEllipseElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgFilterElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgForeignObjectElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgGeometryElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgGraphicsElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgImageElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgLineElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgLinearGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGradientElement" ];
|
|
"SvgMarkerElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgMaskElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgMetadataElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgPathSegArcAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegArcRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegClosePath" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoCubicAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoCubicRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoCubicSmoothAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoCubicSmoothRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoQuadraticAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoQuadraticRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoQuadraticSmoothAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoQuadraticSmoothRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegLinetoAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegLinetoHorizontalAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegLinetoHorizontalRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegLinetoRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegLinetoVerticalAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegLinetoVerticalRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegMovetoAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegMovetoRel" = [ "SvgPathSeg" ];
|
|
"SvgPatternElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgPolygonElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgPolylineElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgRadialGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGradientElement" ];
|
|
"SvgRectElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgScriptElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgSetElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
|
|
"SvgStopElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgStyleElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgSwitchElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgSymbolElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgTextContentElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgTextElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" "SvgTextPositioningElement" ];
|
|
"SvgTextPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" ];
|
|
"SvgTextPositioningElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" ];
|
|
"SvgTitleElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgUseElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgViewElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgaElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgfeBlendElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeColorMatrixElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeComponentTransferElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeCompositeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeConvolveMatrixElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeDiffuseLightingElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeDisplacementMapElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeDistantLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeDropShadowElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeFloodElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeFuncAElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
|
|
"SvgfeFuncBElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
|
|
"SvgfeFuncGElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
|
|
"SvgfeFuncRElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
|
|
"SvgfeGaussianBlurElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeImageElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeMergeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeMergeNodeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeMorphologyElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeOffsetElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfePointLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeSpecularLightingElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeSpotLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeTileElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeTurbulenceElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvggElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgmPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgsvgElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgtSpanElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" "SvgTextPositioningElement" ];
|
|
"TcpServerSocket" = [ "EventTarget" ];
|
|
"TcpServerSocketEvent" = [ "Event" ];
|
|
"TcpSocket" = [ "EventTarget" ];
|
|
"TcpSocketErrorEvent" = [ "Event" ];
|
|
"TcpSocketEvent" = [ "Event" ];
|
|
"Text" = [ "CharacterData" "EventTarget" "Node" ];
|
|
"TextTrack" = [ "EventTarget" ];
|
|
"TextTrackCue" = [ "EventTarget" ];
|
|
"TextTrackList" = [ "EventTarget" ];
|
|
"TimeEvent" = [ "Event" ];
|
|
"TouchEvent" = [ "Event" "UiEvent" ];
|
|
"TrackEvent" = [ "Event" ];
|
|
"TransitionEvent" = [ "Event" ];
|
|
"UiEvent" = [ "Event" ];
|
|
"Usb" = [ "EventTarget" ];
|
|
"UsbConnectionEvent" = [ "Event" ];
|
|
"UsbPermissionResult" = [ "EventTarget" "PermissionStatus" ];
|
|
"UserProximityEvent" = [ "Event" ];
|
|
"ValueEvent" = [ "Event" ];
|
|
"VideoStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
|
|
"VideoTrackList" = [ "EventTarget" ];
|
|
"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" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "AbortController" "AbortSignal" "Blob" "BlobPropertyBag" "Event" "EventTarget" "File" "FormData" "Headers" "MessageEvent" "ReadableStream" "Request" "RequestCredentials" "RequestInit" "RequestMode" "Response" "ServiceWorkerGlobalScope" "Window" "Worker" "WorkerGlobalScope" ];
|
|
};
|
|
"winapi" = rec {
|
|
crateName = "winapi";
|
|
version = "0.3.9";
|
|
edition = "2015";
|
|
sha256 = "06gl025x418lchw1wxj64ycr7gha83m44cjr5sarhynd9xkrm0sw";
|
|
authors = [
|
|
"Peter Atashian <retep998@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "winapi-i686-pc-windows-gnu";
|
|
packageId = "winapi-i686-pc-windows-gnu";
|
|
target = { target, features }: (stdenv.hostPlatform.config == "i686-pc-windows-gnu");
|
|
}
|
|
{
|
|
name = "winapi-x86_64-pc-windows-gnu";
|
|
packageId = "winapi-x86_64-pc-windows-gnu";
|
|
target = { target, features }: (stdenv.hostPlatform.config == "x86_64-pc-windows-gnu");
|
|
}
|
|
];
|
|
features = {
|
|
"debug" = [ "impl-debug" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "handleapi" "impl-debug" "impl-default" "minwinbase" "minwindef" "ntdef" "profileapi" "std" "sysinfoapi" "timezoneapi" "winerror" "winnt" "winreg" "ws2ipdef" "ws2tcpip" ];
|
|
};
|
|
"winapi-i686-pc-windows-gnu" = rec {
|
|
crateName = "winapi-i686-pc-windows-gnu";
|
|
version = "0.4.0";
|
|
edition = "2015";
|
|
sha256 = "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc";
|
|
authors = [
|
|
"Peter Atashian <retep998@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"winapi-x86_64-pc-windows-gnu" = rec {
|
|
crateName = "winapi-x86_64-pc-windows-gnu";
|
|
version = "0.4.0";
|
|
edition = "2015";
|
|
sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki";
|
|
authors = [
|
|
"Peter Atashian <retep998@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"windows" = rec {
|
|
crateName = "windows";
|
|
version = "0.48.0";
|
|
edition = "2018";
|
|
sha256 = "03vh89ilnxdxdh0n9np4ns4m10fvm93h3b0cc05ipg3qq1mqi1p6";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "windows-targets";
|
|
packageId = "windows-targets";
|
|
}
|
|
];
|
|
features = {
|
|
"AI_MachineLearning" = [ "AI" ];
|
|
"ApplicationModel_Activation" = [ "ApplicationModel" ];
|
|
"ApplicationModel_AppExtensions" = [ "ApplicationModel" ];
|
|
"ApplicationModel_AppService" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Appointments" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Appointments_AppointmentsProvider" = [ "ApplicationModel_Appointments" ];
|
|
"ApplicationModel_Appointments_DataProvider" = [ "ApplicationModel_Appointments" ];
|
|
"ApplicationModel_Background" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Calls" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Calls_Background" = [ "ApplicationModel_Calls" ];
|
|
"ApplicationModel_Calls_Provider" = [ "ApplicationModel_Calls" ];
|
|
"ApplicationModel_Chat" = [ "ApplicationModel" ];
|
|
"ApplicationModel_CommunicationBlocking" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Contacts" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Contacts_DataProvider" = [ "ApplicationModel_Contacts" ];
|
|
"ApplicationModel_Contacts_Provider" = [ "ApplicationModel_Contacts" ];
|
|
"ApplicationModel_ConversationalAgent" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Core" = [ "ApplicationModel" ];
|
|
"ApplicationModel_DataTransfer" = [ "ApplicationModel" ];
|
|
"ApplicationModel_DataTransfer_DragDrop" = [ "ApplicationModel_DataTransfer" ];
|
|
"ApplicationModel_DataTransfer_DragDrop_Core" = [ "ApplicationModel_DataTransfer_DragDrop" ];
|
|
"ApplicationModel_DataTransfer_ShareTarget" = [ "ApplicationModel_DataTransfer" ];
|
|
"ApplicationModel_Email" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Email_DataProvider" = [ "ApplicationModel_Email" ];
|
|
"ApplicationModel_ExtendedExecution" = [ "ApplicationModel" ];
|
|
"ApplicationModel_ExtendedExecution_Foreground" = [ "ApplicationModel_ExtendedExecution" ];
|
|
"ApplicationModel_Holographic" = [ "ApplicationModel" ];
|
|
"ApplicationModel_LockScreen" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Payments" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Payments_Provider" = [ "ApplicationModel_Payments" ];
|
|
"ApplicationModel_Preview" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Preview_Holographic" = [ "ApplicationModel_Preview" ];
|
|
"ApplicationModel_Preview_InkWorkspace" = [ "ApplicationModel_Preview" ];
|
|
"ApplicationModel_Preview_Notes" = [ "ApplicationModel_Preview" ];
|
|
"ApplicationModel_Resources" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Resources_Core" = [ "ApplicationModel_Resources" ];
|
|
"ApplicationModel_Resources_Management" = [ "ApplicationModel_Resources" ];
|
|
"ApplicationModel_Search" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Search_Core" = [ "ApplicationModel_Search" ];
|
|
"ApplicationModel_Store" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Store_LicenseManagement" = [ "ApplicationModel_Store" ];
|
|
"ApplicationModel_Store_Preview" = [ "ApplicationModel_Store" ];
|
|
"ApplicationModel_Store_Preview_InstallControl" = [ "ApplicationModel_Store_Preview" ];
|
|
"ApplicationModel_UserActivities" = [ "ApplicationModel" ];
|
|
"ApplicationModel_UserActivities_Core" = [ "ApplicationModel_UserActivities" ];
|
|
"ApplicationModel_UserDataAccounts" = [ "ApplicationModel" ];
|
|
"ApplicationModel_UserDataAccounts_Provider" = [ "ApplicationModel_UserDataAccounts" ];
|
|
"ApplicationModel_UserDataAccounts_SystemAccess" = [ "ApplicationModel_UserDataAccounts" ];
|
|
"ApplicationModel_UserDataTasks" = [ "ApplicationModel" ];
|
|
"ApplicationModel_UserDataTasks_DataProvider" = [ "ApplicationModel_UserDataTasks" ];
|
|
"ApplicationModel_VoiceCommands" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Wallet" = [ "ApplicationModel" ];
|
|
"ApplicationModel_Wallet_System" = [ "ApplicationModel_Wallet" ];
|
|
"Data_Html" = [ "Data" ];
|
|
"Data_Json" = [ "Data" ];
|
|
"Data_Pdf" = [ "Data" ];
|
|
"Data_Text" = [ "Data" ];
|
|
"Data_Xml" = [ "Data" ];
|
|
"Data_Xml_Dom" = [ "Data_Xml" ];
|
|
"Data_Xml_Xsl" = [ "Data_Xml" ];
|
|
"Devices_Adc" = [ "Devices" ];
|
|
"Devices_Adc_Provider" = [ "Devices_Adc" ];
|
|
"Devices_Background" = [ "Devices" ];
|
|
"Devices_Bluetooth" = [ "Devices" ];
|
|
"Devices_Bluetooth_Advertisement" = [ "Devices_Bluetooth" ];
|
|
"Devices_Bluetooth_Background" = [ "Devices_Bluetooth" ];
|
|
"Devices_Bluetooth_GenericAttributeProfile" = [ "Devices_Bluetooth" ];
|
|
"Devices_Bluetooth_Rfcomm" = [ "Devices_Bluetooth" ];
|
|
"Devices_Custom" = [ "Devices" ];
|
|
"Devices_Display" = [ "Devices" ];
|
|
"Devices_Display_Core" = [ "Devices_Display" ];
|
|
"Devices_Enumeration" = [ "Devices" ];
|
|
"Devices_Enumeration_Pnp" = [ "Devices_Enumeration" ];
|
|
"Devices_Geolocation" = [ "Devices" ];
|
|
"Devices_Geolocation_Geofencing" = [ "Devices_Geolocation" ];
|
|
"Devices_Geolocation_Provider" = [ "Devices_Geolocation" ];
|
|
"Devices_Gpio" = [ "Devices" ];
|
|
"Devices_Gpio_Provider" = [ "Devices_Gpio" ];
|
|
"Devices_Haptics" = [ "Devices" ];
|
|
"Devices_HumanInterfaceDevice" = [ "Devices" ];
|
|
"Devices_I2c" = [ "Devices" ];
|
|
"Devices_I2c_Provider" = [ "Devices_I2c" ];
|
|
"Devices_Input" = [ "Devices" ];
|
|
"Devices_Input_Preview" = [ "Devices_Input" ];
|
|
"Devices_Lights" = [ "Devices" ];
|
|
"Devices_Lights_Effects" = [ "Devices_Lights" ];
|
|
"Devices_Midi" = [ "Devices" ];
|
|
"Devices_PointOfService" = [ "Devices" ];
|
|
"Devices_PointOfService_Provider" = [ "Devices_PointOfService" ];
|
|
"Devices_Portable" = [ "Devices" ];
|
|
"Devices_Power" = [ "Devices" ];
|
|
"Devices_Printers" = [ "Devices" ];
|
|
"Devices_Printers_Extensions" = [ "Devices_Printers" ];
|
|
"Devices_Pwm" = [ "Devices" ];
|
|
"Devices_Pwm_Provider" = [ "Devices_Pwm" ];
|
|
"Devices_Radios" = [ "Devices" ];
|
|
"Devices_Scanners" = [ "Devices" ];
|
|
"Devices_Sensors" = [ "Devices" ];
|
|
"Devices_Sensors_Custom" = [ "Devices_Sensors" ];
|
|
"Devices_SerialCommunication" = [ "Devices" ];
|
|
"Devices_SmartCards" = [ "Devices" ];
|
|
"Devices_Sms" = [ "Devices" ];
|
|
"Devices_Spi" = [ "Devices" ];
|
|
"Devices_Spi_Provider" = [ "Devices_Spi" ];
|
|
"Devices_Usb" = [ "Devices" ];
|
|
"Devices_WiFi" = [ "Devices" ];
|
|
"Devices_WiFiDirect" = [ "Devices" ];
|
|
"Devices_WiFiDirect_Services" = [ "Devices_WiFiDirect" ];
|
|
"Embedded_DeviceLockdown" = [ "Embedded" ];
|
|
"Foundation_Collections" = [ "Foundation" ];
|
|
"Foundation_Diagnostics" = [ "Foundation" ];
|
|
"Foundation_Metadata" = [ "Foundation" ];
|
|
"Foundation_Numerics" = [ "Foundation" ];
|
|
"Gaming_Input" = [ "Gaming" ];
|
|
"Gaming_Input_Custom" = [ "Gaming_Input" ];
|
|
"Gaming_Input_ForceFeedback" = [ "Gaming_Input" ];
|
|
"Gaming_Input_Preview" = [ "Gaming_Input" ];
|
|
"Gaming_Preview" = [ "Gaming" ];
|
|
"Gaming_Preview_GamesEnumeration" = [ "Gaming_Preview" ];
|
|
"Gaming_UI" = [ "Gaming" ];
|
|
"Gaming_XboxLive" = [ "Gaming" ];
|
|
"Gaming_XboxLive_Storage" = [ "Gaming_XboxLive" ];
|
|
"Globalization_Collation" = [ "Globalization" ];
|
|
"Globalization_DateTimeFormatting" = [ "Globalization" ];
|
|
"Globalization_Fonts" = [ "Globalization" ];
|
|
"Globalization_NumberFormatting" = [ "Globalization" ];
|
|
"Globalization_PhoneNumberFormatting" = [ "Globalization" ];
|
|
"Graphics_Capture" = [ "Graphics" ];
|
|
"Graphics_DirectX" = [ "Graphics" ];
|
|
"Graphics_DirectX_Direct3D11" = [ "Graphics_DirectX" ];
|
|
"Graphics_Display" = [ "Graphics" ];
|
|
"Graphics_Display_Core" = [ "Graphics_Display" ];
|
|
"Graphics_Effects" = [ "Graphics" ];
|
|
"Graphics_Holographic" = [ "Graphics" ];
|
|
"Graphics_Imaging" = [ "Graphics" ];
|
|
"Graphics_Printing" = [ "Graphics" ];
|
|
"Graphics_Printing3D" = [ "Graphics" ];
|
|
"Graphics_Printing_OptionDetails" = [ "Graphics_Printing" ];
|
|
"Graphics_Printing_PrintSupport" = [ "Graphics_Printing" ];
|
|
"Graphics_Printing_PrintTicket" = [ "Graphics_Printing" ];
|
|
"Graphics_Printing_Workflow" = [ "Graphics_Printing" ];
|
|
"Management_Core" = [ "Management" ];
|
|
"Management_Deployment" = [ "Management" ];
|
|
"Management_Deployment_Preview" = [ "Management_Deployment" ];
|
|
"Management_Policies" = [ "Management" ];
|
|
"Management_Update" = [ "Management" ];
|
|
"Management_Workplace" = [ "Management" ];
|
|
"Media_AppBroadcasting" = [ "Media" ];
|
|
"Media_AppRecording" = [ "Media" ];
|
|
"Media_Audio" = [ "Media" ];
|
|
"Media_Capture" = [ "Media" ];
|
|
"Media_Capture_Core" = [ "Media_Capture" ];
|
|
"Media_Capture_Frames" = [ "Media_Capture" ];
|
|
"Media_Casting" = [ "Media" ];
|
|
"Media_ClosedCaptioning" = [ "Media" ];
|
|
"Media_ContentRestrictions" = [ "Media" ];
|
|
"Media_Control" = [ "Media" ];
|
|
"Media_Core" = [ "Media" ];
|
|
"Media_Core_Preview" = [ "Media_Core" ];
|
|
"Media_Devices" = [ "Media" ];
|
|
"Media_Devices_Core" = [ "Media_Devices" ];
|
|
"Media_DialProtocol" = [ "Media" ];
|
|
"Media_Editing" = [ "Media" ];
|
|
"Media_Effects" = [ "Media" ];
|
|
"Media_FaceAnalysis" = [ "Media" ];
|
|
"Media_Import" = [ "Media" ];
|
|
"Media_MediaProperties" = [ "Media" ];
|
|
"Media_Miracast" = [ "Media" ];
|
|
"Media_Ocr" = [ "Media" ];
|
|
"Media_PlayTo" = [ "Media" ];
|
|
"Media_Playback" = [ "Media" ];
|
|
"Media_Playlists" = [ "Media" ];
|
|
"Media_Protection" = [ "Media" ];
|
|
"Media_Protection_PlayReady" = [ "Media_Protection" ];
|
|
"Media_Render" = [ "Media" ];
|
|
"Media_SpeechRecognition" = [ "Media" ];
|
|
"Media_SpeechSynthesis" = [ "Media" ];
|
|
"Media_Streaming" = [ "Media" ];
|
|
"Media_Streaming_Adaptive" = [ "Media_Streaming" ];
|
|
"Media_Transcoding" = [ "Media" ];
|
|
"Networking_BackgroundTransfer" = [ "Networking" ];
|
|
"Networking_Connectivity" = [ "Networking" ];
|
|
"Networking_NetworkOperators" = [ "Networking" ];
|
|
"Networking_Proximity" = [ "Networking" ];
|
|
"Networking_PushNotifications" = [ "Networking" ];
|
|
"Networking_ServiceDiscovery" = [ "Networking" ];
|
|
"Networking_ServiceDiscovery_Dnssd" = [ "Networking_ServiceDiscovery" ];
|
|
"Networking_Sockets" = [ "Networking" ];
|
|
"Networking_Vpn" = [ "Networking" ];
|
|
"Networking_XboxLive" = [ "Networking" ];
|
|
"Perception_Automation" = [ "Perception" ];
|
|
"Perception_Automation_Core" = [ "Perception_Automation" ];
|
|
"Perception_People" = [ "Perception" ];
|
|
"Perception_Spatial" = [ "Perception" ];
|
|
"Perception_Spatial_Preview" = [ "Perception_Spatial" ];
|
|
"Perception_Spatial_Surfaces" = [ "Perception_Spatial" ];
|
|
"Phone_ApplicationModel" = [ "Phone" ];
|
|
"Phone_Devices" = [ "Phone" ];
|
|
"Phone_Devices_Notification" = [ "Phone_Devices" ];
|
|
"Phone_Devices_Power" = [ "Phone_Devices" ];
|
|
"Phone_Management" = [ "Phone" ];
|
|
"Phone_Management_Deployment" = [ "Phone_Management" ];
|
|
"Phone_Media" = [ "Phone" ];
|
|
"Phone_Media_Devices" = [ "Phone_Media" ];
|
|
"Phone_Notification" = [ "Phone" ];
|
|
"Phone_Notification_Management" = [ "Phone_Notification" ];
|
|
"Phone_PersonalInformation" = [ "Phone" ];
|
|
"Phone_PersonalInformation_Provisioning" = [ "Phone_PersonalInformation" ];
|
|
"Phone_Speech" = [ "Phone" ];
|
|
"Phone_Speech_Recognition" = [ "Phone_Speech" ];
|
|
"Phone_StartScreen" = [ "Phone" ];
|
|
"Phone_System" = [ "Phone" ];
|
|
"Phone_System_Power" = [ "Phone_System" ];
|
|
"Phone_System_Profile" = [ "Phone_System" ];
|
|
"Phone_System_UserProfile" = [ "Phone_System" ];
|
|
"Phone_System_UserProfile_GameServices" = [ "Phone_System_UserProfile" ];
|
|
"Phone_System_UserProfile_GameServices_Core" = [ "Phone_System_UserProfile_GameServices" ];
|
|
"Phone_UI" = [ "Phone" ];
|
|
"Phone_UI_Input" = [ "Phone_UI" ];
|
|
"Security_Authentication" = [ "Security" ];
|
|
"Security_Authentication_Identity" = [ "Security_Authentication" ];
|
|
"Security_Authentication_Identity_Core" = [ "Security_Authentication_Identity" ];
|
|
"Security_Authentication_OnlineId" = [ "Security_Authentication" ];
|
|
"Security_Authentication_Web" = [ "Security_Authentication" ];
|
|
"Security_Authentication_Web_Core" = [ "Security_Authentication_Web" ];
|
|
"Security_Authentication_Web_Provider" = [ "Security_Authentication_Web" ];
|
|
"Security_Authorization" = [ "Security" ];
|
|
"Security_Authorization_AppCapabilityAccess" = [ "Security_Authorization" ];
|
|
"Security_Credentials" = [ "Security" ];
|
|
"Security_Credentials_UI" = [ "Security_Credentials" ];
|
|
"Security_Cryptography" = [ "Security" ];
|
|
"Security_Cryptography_Certificates" = [ "Security_Cryptography" ];
|
|
"Security_Cryptography_Core" = [ "Security_Cryptography" ];
|
|
"Security_Cryptography_DataProtection" = [ "Security_Cryptography" ];
|
|
"Security_DataProtection" = [ "Security" ];
|
|
"Security_EnterpriseData" = [ "Security" ];
|
|
"Security_ExchangeActiveSyncProvisioning" = [ "Security" ];
|
|
"Security_Isolation" = [ "Security" ];
|
|
"Services_Maps" = [ "Services" ];
|
|
"Services_Maps_Guidance" = [ "Services_Maps" ];
|
|
"Services_Maps_LocalSearch" = [ "Services_Maps" ];
|
|
"Services_Maps_OfflineMaps" = [ "Services_Maps" ];
|
|
"Services_Store" = [ "Services" ];
|
|
"Services_TargetedContent" = [ "Services" ];
|
|
"Storage_AccessCache" = [ "Storage" ];
|
|
"Storage_BulkAccess" = [ "Storage" ];
|
|
"Storage_Compression" = [ "Storage" ];
|
|
"Storage_FileProperties" = [ "Storage" ];
|
|
"Storage_Pickers" = [ "Storage" ];
|
|
"Storage_Pickers_Provider" = [ "Storage_Pickers" ];
|
|
"Storage_Provider" = [ "Storage" ];
|
|
"Storage_Search" = [ "Storage" ];
|
|
"Storage_Streams" = [ "Storage" ];
|
|
"System_Diagnostics" = [ "System" ];
|
|
"System_Diagnostics_DevicePortal" = [ "System_Diagnostics" ];
|
|
"System_Diagnostics_Telemetry" = [ "System_Diagnostics" ];
|
|
"System_Diagnostics_TraceReporting" = [ "System_Diagnostics" ];
|
|
"System_Display" = [ "System" ];
|
|
"System_Implementation" = [ "System" ];
|
|
"System_Implementation_FileExplorer" = [ "System_Implementation" ];
|
|
"System_Inventory" = [ "System" ];
|
|
"System_Power" = [ "System" ];
|
|
"System_Profile" = [ "System" ];
|
|
"System_Profile_SystemManufacturers" = [ "System_Profile" ];
|
|
"System_RemoteDesktop" = [ "System" ];
|
|
"System_RemoteDesktop_Input" = [ "System_RemoteDesktop" ];
|
|
"System_RemoteSystems" = [ "System" ];
|
|
"System_Threading" = [ "System" ];
|
|
"System_Threading_Core" = [ "System_Threading" ];
|
|
"System_Update" = [ "System" ];
|
|
"System_UserProfile" = [ "System" ];
|
|
"UI_Accessibility" = [ "UI" ];
|
|
"UI_ApplicationSettings" = [ "UI" ];
|
|
"UI_Composition" = [ "UI" ];
|
|
"UI_Composition_Core" = [ "UI_Composition" ];
|
|
"UI_Composition_Desktop" = [ "UI_Composition" ];
|
|
"UI_Composition_Diagnostics" = [ "UI_Composition" ];
|
|
"UI_Composition_Effects" = [ "UI_Composition" ];
|
|
"UI_Composition_Interactions" = [ "UI_Composition" ];
|
|
"UI_Composition_Scenes" = [ "UI_Composition" ];
|
|
"UI_Core" = [ "UI" ];
|
|
"UI_Core_AnimationMetrics" = [ "UI_Core" ];
|
|
"UI_Core_Preview" = [ "UI_Core" ];
|
|
"UI_Input" = [ "UI" ];
|
|
"UI_Input_Core" = [ "UI_Input" ];
|
|
"UI_Input_Inking" = [ "UI_Input" ];
|
|
"UI_Input_Inking_Analysis" = [ "UI_Input_Inking" ];
|
|
"UI_Input_Inking_Core" = [ "UI_Input_Inking" ];
|
|
"UI_Input_Inking_Preview" = [ "UI_Input_Inking" ];
|
|
"UI_Input_Preview" = [ "UI_Input" ];
|
|
"UI_Input_Preview_Injection" = [ "UI_Input_Preview" ];
|
|
"UI_Input_Spatial" = [ "UI_Input" ];
|
|
"UI_Notifications" = [ "UI" ];
|
|
"UI_Notifications_Management" = [ "UI_Notifications" ];
|
|
"UI_Popups" = [ "UI" ];
|
|
"UI_Shell" = [ "UI" ];
|
|
"UI_StartScreen" = [ "UI" ];
|
|
"UI_Text" = [ "UI" ];
|
|
"UI_Text_Core" = [ "UI_Text" ];
|
|
"UI_UIAutomation" = [ "UI" ];
|
|
"UI_UIAutomation_Core" = [ "UI_UIAutomation" ];
|
|
"UI_ViewManagement" = [ "UI" ];
|
|
"UI_ViewManagement_Core" = [ "UI_ViewManagement" ];
|
|
"UI_WebUI" = [ "UI" ];
|
|
"UI_WebUI_Core" = [ "UI_WebUI" ];
|
|
"UI_WindowManagement" = [ "UI" ];
|
|
"UI_WindowManagement_Preview" = [ "UI_WindowManagement" ];
|
|
"Wdk_System" = [ "Wdk" ];
|
|
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
|
|
"Web_AtomPub" = [ "Web" ];
|
|
"Web_Http" = [ "Web" ];
|
|
"Web_Http_Diagnostics" = [ "Web_Http" ];
|
|
"Web_Http_Filters" = [ "Web_Http" ];
|
|
"Web_Http_Headers" = [ "Web_Http" ];
|
|
"Web_Syndication" = [ "Web" ];
|
|
"Web_UI" = [ "Web" ];
|
|
"Web_UI_Interop" = [ "Web_UI" ];
|
|
"Win32_AI" = [ "Win32" ];
|
|
"Win32_AI_MachineLearning" = [ "Win32_AI" ];
|
|
"Win32_AI_MachineLearning_DirectML" = [ "Win32_AI_MachineLearning" ];
|
|
"Win32_AI_MachineLearning_WinML" = [ "Win32_AI_MachineLearning" ];
|
|
"Win32_Data" = [ "Win32" ];
|
|
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
|
|
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
|
|
"Win32_Data_Xml" = [ "Win32_Data" ];
|
|
"Win32_Data_Xml_MsXml" = [ "Win32_Data_Xml" ];
|
|
"Win32_Data_Xml_XmlLite" = [ "Win32_Data_Xml" ];
|
|
"Win32_Devices" = [ "Win32" ];
|
|
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
|
|
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Communication" = [ "Win32_Devices" ];
|
|
"Win32_Devices_DeviceAccess" = [ "Win32_Devices" ];
|
|
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
|
|
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Display" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
|
|
"Win32_Devices_Fax" = [ "Win32_Devices" ];
|
|
"Win32_Devices_FunctionDiscovery" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Geolocation" = [ "Win32_Devices" ];
|
|
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
|
|
"Win32_Devices_ImageAcquisition" = [ "Win32_Devices" ];
|
|
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Properties" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
|
|
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Usb" = [ "Win32_Devices" ];
|
|
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
|
|
"Win32_Foundation" = [ "Win32" ];
|
|
"Win32_Gaming" = [ "Win32" ];
|
|
"Win32_Globalization" = [ "Win32" ];
|
|
"Win32_Graphics" = [ "Win32" ];
|
|
"Win32_Graphics_CompositionSwapchain" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_DXCore" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Direct2D" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Direct2D_Common" = [ "Win32_Graphics_Direct2D" ];
|
|
"Win32_Graphics_Direct3D" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Direct3D10" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Direct3D11" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Direct3D11on12" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Direct3D12" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Direct3D9" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Direct3D9on12" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Direct3D_Dxc" = [ "Win32_Graphics_Direct3D" ];
|
|
"Win32_Graphics_Direct3D_Fxc" = [ "Win32_Graphics_Direct3D" ];
|
|
"Win32_Graphics_DirectComposition" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_DirectDraw" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_DirectManipulation" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_DirectWrite" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Dxgi" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Dxgi_Common" = [ "Win32_Graphics_Dxgi" ];
|
|
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Imaging" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Imaging_D2D" = [ "Win32_Graphics_Imaging" ];
|
|
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
|
|
"Win32_Management" = [ "Win32" ];
|
|
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
|
|
"Win32_Media" = [ "Win32" ];
|
|
"Win32_Media_Audio" = [ "Win32_Media" ];
|
|
"Win32_Media_Audio_Apo" = [ "Win32_Media_Audio" ];
|
|
"Win32_Media_Audio_DirectMusic" = [ "Win32_Media_Audio" ];
|
|
"Win32_Media_Audio_DirectSound" = [ "Win32_Media_Audio" ];
|
|
"Win32_Media_Audio_Endpoints" = [ "Win32_Media_Audio" ];
|
|
"Win32_Media_Audio_XAudio2" = [ "Win32_Media_Audio" ];
|
|
"Win32_Media_DeviceManager" = [ "Win32_Media" ];
|
|
"Win32_Media_DirectShow" = [ "Win32_Media" ];
|
|
"Win32_Media_DirectShow_Tv" = [ "Win32_Media_DirectShow" ];
|
|
"Win32_Media_DirectShow_Xml" = [ "Win32_Media_DirectShow" ];
|
|
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
|
|
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
|
|
"Win32_Media_LibrarySharingServices" = [ "Win32_Media" ];
|
|
"Win32_Media_MediaFoundation" = [ "Win32_Media" ];
|
|
"Win32_Media_MediaPlayer" = [ "Win32_Media" ];
|
|
"Win32_Media_Multimedia" = [ "Win32_Media" ];
|
|
"Win32_Media_PictureAcquisition" = [ "Win32_Media" ];
|
|
"Win32_Media_Speech" = [ "Win32_Media" ];
|
|
"Win32_Media_Streaming" = [ "Win32_Media" ];
|
|
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
|
|
"Win32_NetworkManagement" = [ "Win32" ];
|
|
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_MobileBroadband" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetworkPolicyServer" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsConnectNow" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
|
|
"Win32_Networking" = [ "Win32" ];
|
|
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
|
|
"Win32_Networking_BackgroundIntelligentTransferService" = [ "Win32_Networking" ];
|
|
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
|
|
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
|
|
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
|
|
"Win32_Networking_NetworkListManager" = [ "Win32_Networking" ];
|
|
"Win32_Networking_RemoteDifferentialCompression" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
|
|
"Win32_Security" = [ "Win32" ];
|
|
"Win32_Security_AppLocker" = [ "Win32_Security" ];
|
|
"Win32_Security_Authentication" = [ "Win32_Security" ];
|
|
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
|
|
"Win32_Security_Authentication_Identity_Provider" = [ "Win32_Security_Authentication_Identity" ];
|
|
"Win32_Security_Authorization" = [ "Win32_Security" ];
|
|
"Win32_Security_Authorization_UI" = [ "Win32_Security_Authorization" ];
|
|
"Win32_Security_ConfigurationSnapin" = [ "Win32_Security" ];
|
|
"Win32_Security_Credentials" = [ "Win32_Security" ];
|
|
"Win32_Security_Cryptography" = [ "Win32_Security" ];
|
|
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
|
|
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
|
|
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
|
|
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
|
|
"Win32_Security_Isolation" = [ "Win32_Security" ];
|
|
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
|
|
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
|
|
"Win32_Security_Tpm" = [ "Win32_Security" ];
|
|
"Win32_Security_WinTrust" = [ "Win32_Security" ];
|
|
"Win32_Security_WinWlx" = [ "Win32_Security" ];
|
|
"Win32_Storage" = [ "Win32" ];
|
|
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
|
|
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Compression" = [ "Win32_Storage" ];
|
|
"Win32_Storage_DataDeduplication" = [ "Win32_Storage" ];
|
|
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_EnhancedStorage" = [ "Win32_Storage" ];
|
|
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
|
|
"Win32_Storage_FileServerResourceManager" = [ "Win32_Storage" ];
|
|
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
|
|
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
|
|
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
|
|
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Jet" = [ "Win32_Storage" ];
|
|
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
|
|
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
|
|
"Win32_Storage_Packaging_Opc" = [ "Win32_Storage_Packaging" ];
|
|
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
|
|
"Win32_Storage_VirtualDiskService" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Vss" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Xps" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Xps_Printing" = [ "Win32_Storage_Xps" ];
|
|
"Win32_System" = [ "Win32" ];
|
|
"Win32_System_AddressBook" = [ "Win32_System" ];
|
|
"Win32_System_Antimalware" = [ "Win32_System" ];
|
|
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
|
|
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
|
|
"Win32_System_AssessmentTool" = [ "Win32_System" ];
|
|
"Win32_System_ClrHosting" = [ "Win32_System" ];
|
|
"Win32_System_Com" = [ "Win32_System" ];
|
|
"Win32_System_Com_CallObj" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_ChannelCredentials" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_Events" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_UI" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
|
|
"Win32_System_ComponentServices" = [ "Win32_System" ];
|
|
"Win32_System_Console" = [ "Win32_System" ];
|
|
"Win32_System_Contacts" = [ "Win32_System" ];
|
|
"Win32_System_CorrelationVector" = [ "Win32_System" ];
|
|
"Win32_System_DataExchange" = [ "Win32_System" ];
|
|
"Win32_System_DeploymentServices" = [ "Win32_System" ];
|
|
"Win32_System_DesktopSharing" = [ "Win32_System" ];
|
|
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
|
|
"Win32_System_Diagnostics" = [ "Win32_System" ];
|
|
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_ClrProfiling" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_Debug_ActiveScript" = [ "Win32_System_Diagnostics_Debug" ];
|
|
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
|
|
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
|
|
"Win32_System_Environment" = [ "Win32_System" ];
|
|
"Win32_System_ErrorReporting" = [ "Win32_System" ];
|
|
"Win32_System_EventCollector" = [ "Win32_System" ];
|
|
"Win32_System_EventLog" = [ "Win32_System" ];
|
|
"Win32_System_EventNotificationService" = [ "Win32_System" ];
|
|
"Win32_System_GroupPolicy" = [ "Win32_System" ];
|
|
"Win32_System_HostCompute" = [ "Win32_System" ];
|
|
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
|
|
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
|
|
"Win32_System_Hypervisor" = [ "Win32_System" ];
|
|
"Win32_System_IO" = [ "Win32_System" ];
|
|
"Win32_System_Iis" = [ "Win32_System" ];
|
|
"Win32_System_Ioctl" = [ "Win32_System" ];
|
|
"Win32_System_JobObjects" = [ "Win32_System" ];
|
|
"Win32_System_Js" = [ "Win32_System" ];
|
|
"Win32_System_Kernel" = [ "Win32_System" ];
|
|
"Win32_System_LibraryLoader" = [ "Win32_System" ];
|
|
"Win32_System_Mailslots" = [ "Win32_System" ];
|
|
"Win32_System_Mapi" = [ "Win32_System" ];
|
|
"Win32_System_Memory" = [ "Win32_System" ];
|
|
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
|
|
"Win32_System_MessageQueuing" = [ "Win32_System" ];
|
|
"Win32_System_MixedReality" = [ "Win32_System" ];
|
|
"Win32_System_Mmc" = [ "Win32_System" ];
|
|
"Win32_System_Ole" = [ "Win32_System" ];
|
|
"Win32_System_ParentalControls" = [ "Win32_System" ];
|
|
"Win32_System_PasswordManagement" = [ "Win32_System" ];
|
|
"Win32_System_Performance" = [ "Win32_System" ];
|
|
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
|
|
"Win32_System_Pipes" = [ "Win32_System" ];
|
|
"Win32_System_Power" = [ "Win32_System" ];
|
|
"Win32_System_ProcessStatus" = [ "Win32_System" ];
|
|
"Win32_System_RealTimeCommunications" = [ "Win32_System" ];
|
|
"Win32_System_Recovery" = [ "Win32_System" ];
|
|
"Win32_System_Registry" = [ "Win32_System" ];
|
|
"Win32_System_RemoteAssistance" = [ "Win32_System" ];
|
|
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
|
|
"Win32_System_RemoteManagement" = [ "Win32_System" ];
|
|
"Win32_System_RestartManager" = [ "Win32_System" ];
|
|
"Win32_System_Restore" = [ "Win32_System" ];
|
|
"Win32_System_Rpc" = [ "Win32_System" ];
|
|
"Win32_System_Search" = [ "Win32_System" ];
|
|
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
|
|
"Win32_System_SecurityCenter" = [ "Win32_System" ];
|
|
"Win32_System_ServerBackup" = [ "Win32_System" ];
|
|
"Win32_System_Services" = [ "Win32_System" ];
|
|
"Win32_System_SettingsManagementInfrastructure" = [ "Win32_System" ];
|
|
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
|
|
"Win32_System_Shutdown" = [ "Win32_System" ];
|
|
"Win32_System_SideShow" = [ "Win32_System" ];
|
|
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
|
|
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
|
|
"Win32_System_SystemInformation" = [ "Win32_System" ];
|
|
"Win32_System_SystemServices" = [ "Win32_System" ];
|
|
"Win32_System_TaskScheduler" = [ "Win32_System" ];
|
|
"Win32_System_Threading" = [ "Win32_System" ];
|
|
"Win32_System_Time" = [ "Win32_System" ];
|
|
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
|
|
"Win32_System_TransactionServer" = [ "Win32_System" ];
|
|
"Win32_System_UpdateAgent" = [ "Win32_System" ];
|
|
"Win32_System_UpdateAssessment" = [ "Win32_System" ];
|
|
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
|
|
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
|
|
"Win32_System_WinRT" = [ "Win32_System" ];
|
|
"Win32_System_WinRT_AllJoyn" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_Composition" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_CoreInputView" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_Direct3D11" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_Display" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_Graphics" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_Graphics_Capture" = [ "Win32_System_WinRT_Graphics" ];
|
|
"Win32_System_WinRT_Graphics_Direct2D" = [ "Win32_System_WinRT_Graphics" ];
|
|
"Win32_System_WinRT_Graphics_Imaging" = [ "Win32_System_WinRT_Graphics" ];
|
|
"Win32_System_WinRT_Holographic" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_Isolation" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_ML" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_Media" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_Metadata" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_Pdf" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_Printing" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_Shell" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WinRT_Storage" = [ "Win32_System_WinRT" ];
|
|
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
|
|
"Win32_System_WindowsSync" = [ "Win32_System" ];
|
|
"Win32_System_Wmi" = [ "Win32_System" ];
|
|
"Win32_UI" = [ "Win32" ];
|
|
"Win32_UI_Accessibility" = [ "Win32_UI" ];
|
|
"Win32_UI_Animation" = [ "Win32_UI" ];
|
|
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
|
|
"Win32_UI_Controls" = [ "Win32_UI" ];
|
|
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
|
|
"Win32_UI_Controls_RichEdit" = [ "Win32_UI_Controls" ];
|
|
"Win32_UI_HiDpi" = [ "Win32_UI" ];
|
|
"Win32_UI_Input" = [ "Win32_UI" ];
|
|
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Ink" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Radial" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
|
|
"Win32_UI_LegacyWindowsEnvironmentFeatures" = [ "Win32_UI" ];
|
|
"Win32_UI_Magnification" = [ "Win32_UI" ];
|
|
"Win32_UI_Notifications" = [ "Win32_UI" ];
|
|
"Win32_UI_Ribbon" = [ "Win32_UI" ];
|
|
"Win32_UI_Shell" = [ "Win32_UI" ];
|
|
"Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
|
|
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
|
|
"Win32_UI_TabletPC" = [ "Win32_UI" ];
|
|
"Win32_UI_TextServices" = [ "Win32_UI" ];
|
|
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
|
|
"Win32_UI_Wpf" = [ "Win32_UI" ];
|
|
"Win32_Web" = [ "Win32" ];
|
|
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
|
|
"implement" = [ "windows-implement" "windows-interface" ];
|
|
"windows-implement" = [ "dep:windows-implement" ];
|
|
"windows-interface" = [ "dep:windows-interface" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "Globalization" "default" ];
|
|
};
|
|
"windows-sys" = rec {
|
|
crateName = "windows-sys";
|
|
version = "0.48.0";
|
|
edition = "2018";
|
|
sha256 = "1aan23v5gs7gya1lc46hqn9mdh8yph3fhxmhxlw36pn6pqc28zb7";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "windows-targets";
|
|
packageId = "windows-targets";
|
|
}
|
|
];
|
|
features = {
|
|
"Wdk_System" = [ "Wdk" ];
|
|
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
|
|
"Win32_Data" = [ "Win32" ];
|
|
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
|
|
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
|
|
"Win32_Data_Xml" = [ "Win32_Data" ];
|
|
"Win32_Data_Xml_MsXml" = [ "Win32_Data_Xml" ];
|
|
"Win32_Data_Xml_XmlLite" = [ "Win32_Data_Xml" ];
|
|
"Win32_Devices" = [ "Win32" ];
|
|
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
|
|
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Communication" = [ "Win32_Devices" ];
|
|
"Win32_Devices_DeviceAccess" = [ "Win32_Devices" ];
|
|
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
|
|
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Display" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
|
|
"Win32_Devices_Fax" = [ "Win32_Devices" ];
|
|
"Win32_Devices_FunctionDiscovery" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Geolocation" = [ "Win32_Devices" ];
|
|
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
|
|
"Win32_Devices_ImageAcquisition" = [ "Win32_Devices" ];
|
|
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Properties" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
|
|
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Usb" = [ "Win32_Devices" ];
|
|
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
|
|
"Win32_Foundation" = [ "Win32" ];
|
|
"Win32_Gaming" = [ "Win32" ];
|
|
"Win32_Globalization" = [ "Win32" ];
|
|
"Win32_Graphics" = [ "Win32" ];
|
|
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
|
|
"Win32_Management" = [ "Win32" ];
|
|
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
|
|
"Win32_Media" = [ "Win32" ];
|
|
"Win32_Media_Audio" = [ "Win32_Media" ];
|
|
"Win32_Media_Audio_Apo" = [ "Win32_Media_Audio" ];
|
|
"Win32_Media_Audio_DirectMusic" = [ "Win32_Media_Audio" ];
|
|
"Win32_Media_Audio_Endpoints" = [ "Win32_Media_Audio" ];
|
|
"Win32_Media_Audio_XAudio2" = [ "Win32_Media_Audio" ];
|
|
"Win32_Media_DeviceManager" = [ "Win32_Media" ];
|
|
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
|
|
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
|
|
"Win32_Media_LibrarySharingServices" = [ "Win32_Media" ];
|
|
"Win32_Media_MediaPlayer" = [ "Win32_Media" ];
|
|
"Win32_Media_Multimedia" = [ "Win32_Media" ];
|
|
"Win32_Media_Speech" = [ "Win32_Media" ];
|
|
"Win32_Media_Streaming" = [ "Win32_Media" ];
|
|
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
|
|
"Win32_NetworkManagement" = [ "Win32" ];
|
|
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_MobileBroadband" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetworkPolicyServer" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsConnectNow" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
|
|
"Win32_Networking" = [ "Win32" ];
|
|
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
|
|
"Win32_Networking_BackgroundIntelligentTransferService" = [ "Win32_Networking" ];
|
|
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
|
|
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
|
|
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
|
|
"Win32_Networking_NetworkListManager" = [ "Win32_Networking" ];
|
|
"Win32_Networking_RemoteDifferentialCompression" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
|
|
"Win32_Security" = [ "Win32" ];
|
|
"Win32_Security_AppLocker" = [ "Win32_Security" ];
|
|
"Win32_Security_Authentication" = [ "Win32_Security" ];
|
|
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
|
|
"Win32_Security_Authentication_Identity_Provider" = [ "Win32_Security_Authentication_Identity" ];
|
|
"Win32_Security_Authorization" = [ "Win32_Security" ];
|
|
"Win32_Security_Authorization_UI" = [ "Win32_Security_Authorization" ];
|
|
"Win32_Security_ConfigurationSnapin" = [ "Win32_Security" ];
|
|
"Win32_Security_Credentials" = [ "Win32_Security" ];
|
|
"Win32_Security_Cryptography" = [ "Win32_Security" ];
|
|
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
|
|
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
|
|
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
|
|
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
|
|
"Win32_Security_Isolation" = [ "Win32_Security" ];
|
|
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
|
|
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
|
|
"Win32_Security_Tpm" = [ "Win32_Security" ];
|
|
"Win32_Security_WinTrust" = [ "Win32_Security" ];
|
|
"Win32_Security_WinWlx" = [ "Win32_Security" ];
|
|
"Win32_Storage" = [ "Win32" ];
|
|
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
|
|
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Compression" = [ "Win32_Storage" ];
|
|
"Win32_Storage_DataDeduplication" = [ "Win32_Storage" ];
|
|
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_EnhancedStorage" = [ "Win32_Storage" ];
|
|
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
|
|
"Win32_Storage_FileServerResourceManager" = [ "Win32_Storage" ];
|
|
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
|
|
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
|
|
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
|
|
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Jet" = [ "Win32_Storage" ];
|
|
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
|
|
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
|
|
"Win32_Storage_Packaging_Opc" = [ "Win32_Storage_Packaging" ];
|
|
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
|
|
"Win32_Storage_VirtualDiskService" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Vss" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Xps" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Xps_Printing" = [ "Win32_Storage_Xps" ];
|
|
"Win32_System" = [ "Win32" ];
|
|
"Win32_System_AddressBook" = [ "Win32_System" ];
|
|
"Win32_System_Antimalware" = [ "Win32_System" ];
|
|
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
|
|
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
|
|
"Win32_System_AssessmentTool" = [ "Win32_System" ];
|
|
"Win32_System_ClrHosting" = [ "Win32_System" ];
|
|
"Win32_System_Com" = [ "Win32_System" ];
|
|
"Win32_System_Com_CallObj" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_ChannelCredentials" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_Events" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_UI" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
|
|
"Win32_System_ComponentServices" = [ "Win32_System" ];
|
|
"Win32_System_Console" = [ "Win32_System" ];
|
|
"Win32_System_Contacts" = [ "Win32_System" ];
|
|
"Win32_System_CorrelationVector" = [ "Win32_System" ];
|
|
"Win32_System_DataExchange" = [ "Win32_System" ];
|
|
"Win32_System_DeploymentServices" = [ "Win32_System" ];
|
|
"Win32_System_DesktopSharing" = [ "Win32_System" ];
|
|
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
|
|
"Win32_System_Diagnostics" = [ "Win32_System" ];
|
|
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_ClrProfiling" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_Debug_ActiveScript" = [ "Win32_System_Diagnostics_Debug" ];
|
|
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
|
|
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
|
|
"Win32_System_Environment" = [ "Win32_System" ];
|
|
"Win32_System_ErrorReporting" = [ "Win32_System" ];
|
|
"Win32_System_EventCollector" = [ "Win32_System" ];
|
|
"Win32_System_EventLog" = [ "Win32_System" ];
|
|
"Win32_System_EventNotificationService" = [ "Win32_System" ];
|
|
"Win32_System_GroupPolicy" = [ "Win32_System" ];
|
|
"Win32_System_HostCompute" = [ "Win32_System" ];
|
|
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
|
|
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
|
|
"Win32_System_Hypervisor" = [ "Win32_System" ];
|
|
"Win32_System_IO" = [ "Win32_System" ];
|
|
"Win32_System_Iis" = [ "Win32_System" ];
|
|
"Win32_System_Ioctl" = [ "Win32_System" ];
|
|
"Win32_System_JobObjects" = [ "Win32_System" ];
|
|
"Win32_System_Js" = [ "Win32_System" ];
|
|
"Win32_System_Kernel" = [ "Win32_System" ];
|
|
"Win32_System_LibraryLoader" = [ "Win32_System" ];
|
|
"Win32_System_Mailslots" = [ "Win32_System" ];
|
|
"Win32_System_Mapi" = [ "Win32_System" ];
|
|
"Win32_System_Memory" = [ "Win32_System" ];
|
|
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
|
|
"Win32_System_MessageQueuing" = [ "Win32_System" ];
|
|
"Win32_System_MixedReality" = [ "Win32_System" ];
|
|
"Win32_System_Mmc" = [ "Win32_System" ];
|
|
"Win32_System_Ole" = [ "Win32_System" ];
|
|
"Win32_System_ParentalControls" = [ "Win32_System" ];
|
|
"Win32_System_PasswordManagement" = [ "Win32_System" ];
|
|
"Win32_System_Performance" = [ "Win32_System" ];
|
|
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
|
|
"Win32_System_Pipes" = [ "Win32_System" ];
|
|
"Win32_System_Power" = [ "Win32_System" ];
|
|
"Win32_System_ProcessStatus" = [ "Win32_System" ];
|
|
"Win32_System_RealTimeCommunications" = [ "Win32_System" ];
|
|
"Win32_System_Recovery" = [ "Win32_System" ];
|
|
"Win32_System_Registry" = [ "Win32_System" ];
|
|
"Win32_System_RemoteAssistance" = [ "Win32_System" ];
|
|
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
|
|
"Win32_System_RemoteManagement" = [ "Win32_System" ];
|
|
"Win32_System_RestartManager" = [ "Win32_System" ];
|
|
"Win32_System_Restore" = [ "Win32_System" ];
|
|
"Win32_System_Rpc" = [ "Win32_System" ];
|
|
"Win32_System_Search" = [ "Win32_System" ];
|
|
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
|
|
"Win32_System_SecurityCenter" = [ "Win32_System" ];
|
|
"Win32_System_ServerBackup" = [ "Win32_System" ];
|
|
"Win32_System_Services" = [ "Win32_System" ];
|
|
"Win32_System_SettingsManagementInfrastructure" = [ "Win32_System" ];
|
|
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
|
|
"Win32_System_Shutdown" = [ "Win32_System" ];
|
|
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
|
|
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
|
|
"Win32_System_SystemInformation" = [ "Win32_System" ];
|
|
"Win32_System_SystemServices" = [ "Win32_System" ];
|
|
"Win32_System_TaskScheduler" = [ "Win32_System" ];
|
|
"Win32_System_Threading" = [ "Win32_System" ];
|
|
"Win32_System_Time" = [ "Win32_System" ];
|
|
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
|
|
"Win32_System_UpdateAgent" = [ "Win32_System" ];
|
|
"Win32_System_UpdateAssessment" = [ "Win32_System" ];
|
|
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
|
|
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
|
|
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
|
|
"Win32_System_WindowsSync" = [ "Win32_System" ];
|
|
"Win32_System_Wmi" = [ "Win32_System" ];
|
|
"Win32_UI" = [ "Win32" ];
|
|
"Win32_UI_Accessibility" = [ "Win32_UI" ];
|
|
"Win32_UI_Animation" = [ "Win32_UI" ];
|
|
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
|
|
"Win32_UI_Controls" = [ "Win32_UI" ];
|
|
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
|
|
"Win32_UI_Controls_RichEdit" = [ "Win32_UI_Controls" ];
|
|
"Win32_UI_HiDpi" = [ "Win32_UI" ];
|
|
"Win32_UI_Input" = [ "Win32_UI" ];
|
|
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Ink" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Radial" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
|
|
"Win32_UI_LegacyWindowsEnvironmentFeatures" = [ "Win32_UI" ];
|
|
"Win32_UI_Magnification" = [ "Win32_UI" ];
|
|
"Win32_UI_Notifications" = [ "Win32_UI" ];
|
|
"Win32_UI_Ribbon" = [ "Win32_UI" ];
|
|
"Win32_UI_Shell" = [ "Win32_UI" ];
|
|
"Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
|
|
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
|
|
"Win32_UI_TabletPC" = [ "Win32_UI" ];
|
|
"Win32_UI_TextServices" = [ "Win32_UI" ];
|
|
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
|
|
"Win32_UI_Wpf" = [ "Win32_UI" ];
|
|
"Win32_Web" = [ "Win32" ];
|
|
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_NetworkManagement" "Win32_NetworkManagement_IpHelper" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Security_Authentication" "Win32_Security_Authentication_Identity" "Win32_Security_Credentials" "Win32_Security_Cryptography" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Console" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "Win32_System_IO" "Win32_System_Memory" "Win32_System_Pipes" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
|
|
};
|
|
"windows-targets" = rec {
|
|
crateName = "windows-targets";
|
|
version = "0.48.1";
|
|
edition = "2018";
|
|
sha256 = "0pz9ad4mpp06h80hkmzlib78b5r9db7isycy1gr9j17pj1sb3m05";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "windows_aarch64_gnullvm";
|
|
packageId = "windows_aarch64_gnullvm";
|
|
target = { target, features }: (stdenv.hostPlatform.config == "aarch64-pc-windows-gnullvm");
|
|
}
|
|
{
|
|
name = "windows_aarch64_msvc";
|
|
packageId = "windows_aarch64_msvc";
|
|
target = { target, features }: ((target."arch" == "aarch64") && (target."env" == "msvc") && (!(target."windows_raw_dylib" or false)));
|
|
}
|
|
{
|
|
name = "windows_i686_gnu";
|
|
packageId = "windows_i686_gnu";
|
|
target = { target, features }: ((target."arch" == "x86") && (target."env" == "gnu") && (!(target."windows_raw_dylib" or false)));
|
|
}
|
|
{
|
|
name = "windows_i686_msvc";
|
|
packageId = "windows_i686_msvc";
|
|
target = { target, features }: ((target."arch" == "x86") && (target."env" == "msvc") && (!(target."windows_raw_dylib" or false)));
|
|
}
|
|
{
|
|
name = "windows_x86_64_gnu";
|
|
packageId = "windows_x86_64_gnu";
|
|
target = { target, features }: ((target."arch" == "x86_64") && (target."env" == "gnu") && (!(target."abi" == "llvm")) && (!(target."windows_raw_dylib" or false)));
|
|
}
|
|
{
|
|
name = "windows_x86_64_gnullvm";
|
|
packageId = "windows_x86_64_gnullvm";
|
|
target = { target, features }: (stdenv.hostPlatform.config == "x86_64-pc-windows-gnullvm");
|
|
}
|
|
{
|
|
name = "windows_x86_64_msvc";
|
|
packageId = "windows_x86_64_msvc";
|
|
target = { target, features }: ((target."arch" == "x86_64") && (target."env" == "msvc") && (!(target."windows_raw_dylib" or false)));
|
|
}
|
|
];
|
|
|
|
};
|
|
"windows_aarch64_gnullvm" = rec {
|
|
crateName = "windows_aarch64_gnullvm";
|
|
version = "0.48.0";
|
|
edition = "2018";
|
|
sha256 = "1g71yxi61c410pwzq05ld7si4p9hyx6lf5fkw21sinvr3cp5gbli";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_aarch64_msvc" = rec {
|
|
crateName = "windows_aarch64_msvc";
|
|
version = "0.48.0";
|
|
edition = "2018";
|
|
sha256 = "1wvwipchhywcjaw73h998vzachf668fpqccbhrxzrz5xszh2gvxj";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_i686_gnu" = rec {
|
|
crateName = "windows_i686_gnu";
|
|
version = "0.48.0";
|
|
edition = "2018";
|
|
sha256 = "0hd2v9kp8fss0rzl83wzhw0s5z8q1b4875m6s1phv0yvlxi1jak2";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_i686_msvc" = rec {
|
|
crateName = "windows_i686_msvc";
|
|
version = "0.48.0";
|
|
edition = "2018";
|
|
sha256 = "004fkyqv3if178xx9ksqc4qqv8sz8n72mpczsr2vy8ffckiwchj5";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_x86_64_gnu" = rec {
|
|
crateName = "windows_x86_64_gnu";
|
|
version = "0.48.0";
|
|
edition = "2018";
|
|
sha256 = "1cblz5m6a8q6ha09bz4lz233dnq5sw2hpra06k9cna3n3xk8laya";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_x86_64_gnullvm" = rec {
|
|
crateName = "windows_x86_64_gnullvm";
|
|
version = "0.48.0";
|
|
edition = "2018";
|
|
sha256 = "0lxryz3ysx0145bf3i38jkr7f9nxiym8p3syklp8f20yyk0xp5kq";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_x86_64_msvc" = rec {
|
|
crateName = "windows_x86_64_msvc";
|
|
version = "0.48.0";
|
|
edition = "2018";
|
|
sha256 = "12ipr1knzj2rwjygyllfi5mkd0ihnbi3r61gag5n2jgyk5bmyl8s";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"winreg" = rec {
|
|
crateName = "winreg";
|
|
version = "0.10.1";
|
|
edition = "2015";
|
|
sha256 = "17c6h02z88ijjba02bnxi5k94q5cz490nf3njh9yypf8fbig9l40";
|
|
authors = [
|
|
"Igor Shaula <gentoo90@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "winapi";
|
|
packageId = "winapi";
|
|
features = [ "impl-default" "impl-debug" "minwindef" "minwinbase" "timezoneapi" "winerror" "winnt" "winreg" "handleapi" ];
|
|
}
|
|
];
|
|
features = {
|
|
"chrono" = [ "dep:chrono" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serialization-serde" = [ "transactions" "serde" ];
|
|
"transactions" = [ "winapi/ktmw32" ];
|
|
};
|
|
};
|
|
};
|
|
|
|
#
|
|
# crate2nix/default.nix (excerpt start)
|
|
#
|
|
|
|
/* Target (platform) data for conditional dependencies.
|
|
This corresponds roughly to what buildRustCrate is setting.
|
|
*/
|
|
defaultTarget = {
|
|
unix = true;
|
|
windows = false;
|
|
fuchsia = true;
|
|
test = false;
|
|
|
|
# This doesn't appear to be officially documented anywhere yet.
|
|
# See https://github.com/rust-lang-nursery/rust-forge/issues/101.
|
|
os =
|
|
if stdenv.hostPlatform.isDarwin
|
|
then "macos"
|
|
else stdenv.hostPlatform.parsed.kernel.name;
|
|
arch = stdenv.hostPlatform.parsed.cpu.name;
|
|
family = "unix";
|
|
env = "gnu";
|
|
endian =
|
|
if stdenv.hostPlatform.parsed.cpu.significantByte.name == "littleEndian"
|
|
then "little" else "big";
|
|
pointer_width = toString stdenv.hostPlatform.parsed.cpu.bits;
|
|
vendor = stdenv.hostPlatform.parsed.vendor.name;
|
|
debug_assertions = false;
|
|
};
|
|
|
|
/* Filters common temp files and build files. */
|
|
# TODO(pkolloch): Substitute with gitignore filter
|
|
sourceFilter = name: type:
|
|
let
|
|
baseName = builtins.baseNameOf (builtins.toString name);
|
|
in
|
|
! (
|
|
# Filter out git
|
|
baseName == ".gitignore"
|
|
|| (type == "directory" && baseName == ".git")
|
|
|
|
# Filter out build results
|
|
|| (
|
|
type == "directory" && (
|
|
baseName == "target"
|
|
|| baseName == "_site"
|
|
|| baseName == ".sass-cache"
|
|
|| baseName == ".jekyll-metadata"
|
|
|| baseName == "build-artifacts"
|
|
)
|
|
)
|
|
|
|
# Filter out nix-build result symlinks
|
|
|| (
|
|
type == "symlink" && lib.hasPrefix "result" baseName
|
|
)
|
|
|
|
# Filter out IDE config
|
|
|| (
|
|
type == "directory" && (
|
|
baseName == ".idea" || baseName == ".vscode"
|
|
)
|
|
) || lib.hasSuffix ".iml" baseName
|
|
|
|
# Filter out nix build files
|
|
|| baseName == "Cargo.nix"
|
|
|
|
# Filter out editor backup / swap files.
|
|
|| lib.hasSuffix "~" baseName
|
|
|| builtins.match "^\\.sw[a-z]$$" baseName != null
|
|
|| builtins.match "^\\..*\\.sw[a-z]$$" baseName != null
|
|
|| lib.hasSuffix ".tmp" baseName
|
|
|| lib.hasSuffix ".bak" baseName
|
|
|| baseName == "tests.nix"
|
|
);
|
|
|
|
/* Returns a crate which depends on successful test execution
|
|
of crate given as the second argument.
|
|
|
|
testCrateFlags: list of flags to pass to the test exectuable
|
|
testInputs: list of packages that should be available during test execution
|
|
*/
|
|
crateWithTest = { crate, testCrate, testCrateFlags, testInputs, testPreRun, testPostRun }:
|
|
assert builtins.typeOf testCrateFlags == "list";
|
|
assert builtins.typeOf testInputs == "list";
|
|
assert builtins.typeOf testPreRun == "string";
|
|
assert builtins.typeOf testPostRun == "string";
|
|
let
|
|
# override the `crate` so that it will build and execute tests instead of
|
|
# building the actual lib and bin targets We just have to pass `--test`
|
|
# to rustc and it will do the right thing. We execute the tests and copy
|
|
# their log and the test executables to $out for later inspection.
|
|
test =
|
|
let
|
|
drv = testCrate.override
|
|
(
|
|
_: {
|
|
buildTests = true;
|
|
}
|
|
);
|
|
# If the user hasn't set any pre/post commands, we don't want to
|
|
# insert empty lines. This means that any existing users of crate2nix
|
|
# don't get a spurious rebuild unless they set these explicitly.
|
|
testCommand = pkgs.lib.concatStringsSep "\n"
|
|
(pkgs.lib.filter (s: s != "") [
|
|
testPreRun
|
|
"$f $testCrateFlags 2>&1 | tee -a $out"
|
|
testPostRun
|
|
]);
|
|
in
|
|
pkgs.runCommand "run-tests-${testCrate.name}"
|
|
{
|
|
inherit testCrateFlags;
|
|
buildInputs = testInputs;
|
|
} ''
|
|
set -ex
|
|
|
|
export RUST_BACKTRACE=1
|
|
|
|
# recreate a file hierarchy as when running tests with cargo
|
|
|
|
# the source for test data
|
|
${pkgs.xorg.lndir}/bin/lndir ${crate.src}
|
|
|
|
# build outputs
|
|
testRoot=target/debug
|
|
mkdir -p $testRoot
|
|
|
|
# executables of the crate
|
|
# we copy to prevent std::env::current_exe() to resolve to a store location
|
|
for i in ${crate}/bin/*; do
|
|
cp "$i" "$testRoot"
|
|
done
|
|
chmod +w -R .
|
|
|
|
# test harness executables are suffixed with a hash, like cargo does
|
|
# this allows to prevent name collision with the main
|
|
# executables of the crate
|
|
hash=$(basename $out)
|
|
for file in ${drv}/tests/*; do
|
|
f=$testRoot/$(basename $file)-$hash
|
|
cp $file $f
|
|
${testCommand}
|
|
done
|
|
'';
|
|
in
|
|
pkgs.runCommand "${crate.name}-linked"
|
|
{
|
|
inherit (crate) outputs crateName;
|
|
passthru = (crate.passthru or { }) // {
|
|
inherit test;
|
|
};
|
|
} ''
|
|
echo tested by ${test}
|
|
${lib.concatMapStringsSep "\n" (output: "ln -s ${crate.${output}} ${"$"}${output}") crate.outputs}
|
|
'';
|
|
|
|
/* A restricted overridable version of builtRustCratesWithFeatures. */
|
|
buildRustCrateWithFeatures =
|
|
{ packageId
|
|
, features ? rootFeatures
|
|
, crateOverrides ? defaultCrateOverrides
|
|
, buildRustCrateForPkgsFunc ? null
|
|
, runTests ? false
|
|
, testCrateFlags ? [ ]
|
|
, testInputs ? [ ]
|
|
# Any command to run immediatelly before a test is executed.
|
|
, testPreRun ? ""
|
|
# Any command run immediatelly after a test is executed.
|
|
, testPostRun ? ""
|
|
}:
|
|
lib.makeOverridable
|
|
(
|
|
{ features
|
|
, crateOverrides
|
|
, runTests
|
|
, testCrateFlags
|
|
, testInputs
|
|
, testPreRun
|
|
, testPostRun
|
|
}:
|
|
let
|
|
buildRustCrateForPkgsFuncOverriden =
|
|
if buildRustCrateForPkgsFunc != null
|
|
then buildRustCrateForPkgsFunc
|
|
else
|
|
(
|
|
if crateOverrides == pkgs.defaultCrateOverrides
|
|
then buildRustCrateForPkgs
|
|
else
|
|
pkgs: (buildRustCrateForPkgs pkgs).override {
|
|
defaultCrateOverrides = crateOverrides;
|
|
}
|
|
);
|
|
builtRustCrates = builtRustCratesWithFeatures {
|
|
inherit packageId features;
|
|
buildRustCrateForPkgsFunc = buildRustCrateForPkgsFuncOverriden;
|
|
runTests = false;
|
|
};
|
|
builtTestRustCrates = builtRustCratesWithFeatures {
|
|
inherit packageId features;
|
|
buildRustCrateForPkgsFunc = buildRustCrateForPkgsFuncOverriden;
|
|
runTests = true;
|
|
};
|
|
drv = builtRustCrates.crates.${packageId};
|
|
testDrv = builtTestRustCrates.crates.${packageId};
|
|
derivation =
|
|
if runTests then
|
|
crateWithTest
|
|
{
|
|
crate = drv;
|
|
testCrate = testDrv;
|
|
inherit testCrateFlags testInputs testPreRun testPostRun;
|
|
}
|
|
else drv;
|
|
in
|
|
derivation
|
|
)
|
|
{ inherit features crateOverrides runTests testCrateFlags testInputs testPreRun testPostRun; };
|
|
|
|
/* Returns an attr set with packageId mapped to the result of buildRustCrateForPkgsFunc
|
|
for the corresponding crate.
|
|
*/
|
|
builtRustCratesWithFeatures =
|
|
{ packageId
|
|
, features
|
|
, crateConfigs ? crates
|
|
, buildRustCrateForPkgsFunc
|
|
, runTests
|
|
, target ? defaultTarget
|
|
} @ args:
|
|
assert (builtins.isAttrs crateConfigs);
|
|
assert (builtins.isString packageId);
|
|
assert (builtins.isList features);
|
|
assert (builtins.isAttrs target);
|
|
assert (builtins.isBool runTests);
|
|
let
|
|
rootPackageId = packageId;
|
|
mergedFeatures = mergePackageFeatures
|
|
(
|
|
args // {
|
|
inherit rootPackageId;
|
|
target = target // { 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;
|
|
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 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 target;
|
|
buildByPackageId = depPackageId:
|
|
self.build.crates.${depPackageId};
|
|
dependencies = crateConfig.buildDependencies or [ ];
|
|
};
|
|
filterEnabledDependenciesForThis = dependencies: filterEnabledDependencies {
|
|
inherit dependencies features target;
|
|
};
|
|
dependenciesWithRenames =
|
|
lib.filter (d: d ? "rename")
|
|
(
|
|
filterEnabledDependenciesForThis
|
|
(
|
|
(crateConfig.buildDependencies or [ ])
|
|
++ (crateConfig.dependencies or [ ])
|
|
++ devDependencies
|
|
)
|
|
);
|
|
# Crate renames have the form:
|
|
#
|
|
# {
|
|
# crate_name = [
|
|
# { version = "1.2.3"; rename = "crate_name01"; }
|
|
# ];
|
|
# # ...
|
|
# }
|
|
crateRenames =
|
|
let
|
|
grouped =
|
|
lib.groupBy
|
|
(dependency: dependency.name)
|
|
dependenciesWithRenames;
|
|
versionAndRename = dep:
|
|
let
|
|
package = crateConfigs."${dep.packageId}";
|
|
in
|
|
{ inherit (dep) rename; version = package.version; };
|
|
in
|
|
lib.mapAttrs (name: choices: builtins.map versionAndRename choices) grouped;
|
|
in
|
|
buildRustCrateForPkgsFunc pkgs
|
|
(
|
|
crateConfig // {
|
|
src = crateConfig.src or (
|
|
pkgs.fetchurl rec {
|
|
name = "${crateConfig.crateName}-${crateConfig.version}.tar.gz";
|
|
# https://www.pietroalbini.org/blog/downloading-crates-io/
|
|
# Not rate-limited, CDN URL.
|
|
url = "https://static.crates.io/crates/${crateConfig.crateName}/${crateConfig.crateName}-${crateConfig.version}.crate";
|
|
sha256 =
|
|
assert (lib.assertMsg (crateConfig ? sha256) "Missing sha256 for ${name}");
|
|
crateConfig.sha256;
|
|
}
|
|
);
|
|
extraRustcOpts = lib.lists.optional (targetFeatures != [ ]) "-C target-feature=${lib.concatMapStringsSep "," (x: "+${x}") targetFeatures}";
|
|
inherit features dependencies buildDependencies crateRenames release;
|
|
}
|
|
);
|
|
in
|
|
builtByPackageIdByPkgs;
|
|
|
|
/* Returns the actual derivations for the given dependencies. */
|
|
dependencyDerivations =
|
|
{ buildByPackageId
|
|
, features
|
|
, dependencies
|
|
, target
|
|
}:
|
|
assert (builtins.isList features);
|
|
assert (builtins.isList dependencies);
|
|
assert (builtins.isAttrs target);
|
|
let
|
|
enabledDependencies = filterEnabledDependencies {
|
|
inherit dependencies features target;
|
|
};
|
|
depDerivation = dependency: buildByPackageId dependency.packageId;
|
|
in
|
|
map depDerivation enabledDependencies;
|
|
|
|
/* Returns a sanitized version of val with all values substituted that cannot
|
|
be serialized as JSON.
|
|
*/
|
|
sanitizeForJson = val:
|
|
if builtins.isAttrs val
|
|
then lib.mapAttrs (n: v: sanitizeForJson v) val
|
|
else if builtins.isList val
|
|
then builtins.map sanitizeForJson val
|
|
else if builtins.isFunction val
|
|
then "function"
|
|
else val;
|
|
|
|
/* Returns various tools to debug a crate. */
|
|
debugCrate = { packageId, target ? defaultTarget }:
|
|
assert (builtins.isString packageId);
|
|
let
|
|
debug = rec {
|
|
# The built tree as passed to buildRustCrate.
|
|
buildTree = buildRustCrateWithFeatures {
|
|
buildRustCrateForPkgsFunc = _: lib.id;
|
|
inherit packageId;
|
|
};
|
|
sanitizedBuildTree = sanitizeForJson buildTree;
|
|
dependencyTree = sanitizeForJson
|
|
(
|
|
buildRustCrateWithFeatures {
|
|
buildRustCrateForPkgsFunc = _: crate: {
|
|
"01_crateName" = crate.crateName or false;
|
|
"02_features" = crate.features or [ ];
|
|
"03_dependencies" = crate.dependencies or [ ];
|
|
};
|
|
inherit packageId;
|
|
}
|
|
);
|
|
mergedPackageFeatures = mergePackageFeatures {
|
|
features = rootFeatures;
|
|
inherit packageId target;
|
|
};
|
|
diffedDefaultPackageFeatures = diffDefaultPackageFeatures {
|
|
inherit packageId target;
|
|
};
|
|
};
|
|
in
|
|
{ internal = debug; };
|
|
|
|
/* Returns differences between cargo default features and crate2nix default
|
|
features.
|
|
|
|
This is useful for verifying the feature resolution in crate2nix.
|
|
*/
|
|
diffDefaultPackageFeatures =
|
|
{ crateConfigs ? crates
|
|
, packageId
|
|
, target
|
|
}:
|
|
assert (builtins.isAttrs crateConfigs);
|
|
let
|
|
prefixValues = prefix: lib.mapAttrs (n: v: { "${prefix}" = v; });
|
|
mergedFeatures =
|
|
prefixValues
|
|
"crate2nix"
|
|
(mergePackageFeatures { inherit crateConfigs packageId target; features = [ "default" ]; });
|
|
configs = prefixValues "cargo" crateConfigs;
|
|
combined = lib.foldAttrs (a: b: a // b) { } [ mergedFeatures configs ];
|
|
onlyInCargo =
|
|
builtins.attrNames
|
|
(lib.filterAttrs (n: v: !(v ? "crate2nix") && (v ? "cargo")) combined);
|
|
onlyInCrate2Nix =
|
|
builtins.attrNames
|
|
(lib.filterAttrs (n: v: (v ? "crate2nix") && !(v ? "cargo")) combined);
|
|
differentFeatures = lib.filterAttrs
|
|
(
|
|
n: v:
|
|
(v ? "crate2nix")
|
|
&& (v ? "cargo")
|
|
&& (v.crate2nix.features or [ ]) != (v."cargo".resolved_default_features or [ ])
|
|
)
|
|
combined;
|
|
in
|
|
builtins.toJSON {
|
|
inherit onlyInCargo onlyInCrate2Nix differentFeatures;
|
|
};
|
|
|
|
/* Returns an attrset mapping packageId to the list of enabled features.
|
|
|
|
If multiple paths to a dependency enable different features, the
|
|
corresponding feature sets are merged. Features in rust are additive.
|
|
*/
|
|
mergePackageFeatures =
|
|
{ crateConfigs ? crates
|
|
, packageId
|
|
, rootPackageId ? packageId
|
|
, features ? rootFeatures
|
|
, dependencyPath ? [ crates.${packageId}.crateName ]
|
|
, featuresByPackageId ? { }
|
|
, target
|
|
# Adds devDependencies to the crate with rootPackageId.
|
|
, runTests ? false
|
|
, ...
|
|
} @ args:
|
|
assert (builtins.isAttrs crateConfigs);
|
|
assert (builtins.isString packageId);
|
|
assert (builtins.isString rootPackageId);
|
|
assert (builtins.isList features);
|
|
assert (builtins.isList dependencyPath);
|
|
assert (builtins.isAttrs featuresByPackageId);
|
|
assert (builtins.isAttrs target);
|
|
assert (builtins.isBool runTests);
|
|
let
|
|
crateConfig = crateConfigs."${packageId}" or (builtins.throw "Package not found: ${packageId}");
|
|
expandedFeatures = expandFeatures (crateConfig.features or { }) features;
|
|
enabledFeatures = enableFeatures (crateConfig.dependencies or [ ]) expandedFeatures;
|
|
depWithResolvedFeatures = dependency:
|
|
let
|
|
packageId = dependency.packageId;
|
|
features = dependencyFeatures enabledFeatures dependency;
|
|
in
|
|
{ inherit packageId features; };
|
|
resolveDependencies = cache: path: dependencies:
|
|
assert (builtins.isAttrs cache);
|
|
assert (builtins.isList dependencies);
|
|
let
|
|
enabledDependencies = filterEnabledDependencies {
|
|
inherit dependencies target;
|
|
features = enabledFeatures;
|
|
};
|
|
directDependencies = map depWithResolvedFeatures enabledDependencies;
|
|
foldOverCache = op: lib.foldl op cache directDependencies;
|
|
in
|
|
foldOverCache
|
|
(
|
|
cache: { packageId, features }:
|
|
let
|
|
cacheFeatures = cache.${packageId} or [ ];
|
|
combinedFeatures = sortedUnique (cacheFeatures ++ features);
|
|
in
|
|
if cache ? ${packageId} && cache.${packageId} == combinedFeatures
|
|
then cache
|
|
else
|
|
mergePackageFeatures {
|
|
features = combinedFeatures;
|
|
featuresByPackageId = cache;
|
|
inherit crateConfigs packageId target runTests rootPackageId;
|
|
}
|
|
);
|
|
cacheWithSelf =
|
|
let
|
|
cacheFeatures = featuresByPackageId.${packageId} or [ ];
|
|
combinedFeatures = sortedUnique (cacheFeatures ++ enabledFeatures);
|
|
in
|
|
featuresByPackageId // {
|
|
"${packageId}" = combinedFeatures;
|
|
};
|
|
cacheWithDependencies =
|
|
resolveDependencies cacheWithSelf "dep"
|
|
(
|
|
crateConfig.dependencies or [ ]
|
|
++ lib.optionals
|
|
(runTests && packageId == rootPackageId)
|
|
(crateConfig.devDependencies or [ ])
|
|
);
|
|
cacheWithAll =
|
|
resolveDependencies
|
|
cacheWithDependencies "build"
|
|
(crateConfig.buildDependencies or [ ]);
|
|
in
|
|
cacheWithAll;
|
|
|
|
/* Returns the enabled dependencies given the enabled features. */
|
|
filterEnabledDependencies = { dependencies, features, target }:
|
|
assert (builtins.isList dependencies);
|
|
assert (builtins.isList features);
|
|
assert (builtins.isAttrs target);
|
|
|
|
lib.filter
|
|
(
|
|
dep:
|
|
let
|
|
targetFunc = dep.target or (features: true);
|
|
in
|
|
targetFunc { inherit features target; }
|
|
&& (
|
|
!(dep.optional or false)
|
|
|| builtins.any (doesFeatureEnableDependency dep) features
|
|
)
|
|
)
|
|
dependencies;
|
|
|
|
/* Returns whether the given feature should enable the given dependency. */
|
|
doesFeatureEnableDependency = { name, rename ? null, ... }: feature:
|
|
let
|
|
prefix = "${name}/";
|
|
len = builtins.stringLength prefix;
|
|
startsWithPrefix = builtins.substring 0 len feature == prefix;
|
|
in
|
|
(rename == null && feature == name)
|
|
|| (rename != null && rename == feature)
|
|
|| startsWithPrefix;
|
|
|
|
/* Returns the expanded features for the given inputFeatures by applying the
|
|
rules in featureMap.
|
|
|
|
featureMap is an attribute set which maps feature names to lists of further
|
|
feature names to enable in case this feature is selected.
|
|
*/
|
|
expandFeatures = featureMap: inputFeatures:
|
|
assert (builtins.isAttrs featureMap);
|
|
assert (builtins.isList inputFeatures);
|
|
let
|
|
expandFeature = feature:
|
|
assert (builtins.isString feature);
|
|
[ feature ] ++ (expandFeatures featureMap (featureMap."${feature}" or [ ]));
|
|
outFeatures = lib.concatMap expandFeature inputFeatures;
|
|
in
|
|
sortedUnique outFeatures;
|
|
|
|
/* This function adds optional dependencies as features if they are enabled
|
|
indirectly by dependency features. This function mimics Cargo's behavior
|
|
described in a note at:
|
|
https://doc.rust-lang.org/nightly/cargo/reference/features.html#dependency-features
|
|
*/
|
|
enableFeatures = dependencies: features:
|
|
assert (builtins.isList features);
|
|
assert (builtins.isList dependencies);
|
|
let
|
|
additionalFeatures = lib.concatMap
|
|
(
|
|
dependency:
|
|
assert (builtins.isAttrs dependency);
|
|
let
|
|
enabled = builtins.any (doesFeatureEnableDependency dependency) features;
|
|
in
|
|
if (dependency.optional or false) && enabled then [ dependency.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
|
|
dependencyPrefix = (dependency.rename or dependency.name) + "/";
|
|
dependencyFeatures =
|
|
builtins.filter (f: lib.hasPrefix dependencyPrefix f) features;
|
|
in
|
|
builtins.map (lib.removePrefix dependencyPrefix) 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)
|
|
#
|
|
};
|
|
}
|
|
|