2023-04-27 14:07:28 +00:00
|
|
|
|
|
|
|
# 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 = "kifu-wasm";
|
|
|
|
|
|
|
|
# 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 = {
|
|
|
|
"kifu-wasm" = rec {
|
|
|
|
packageId = "kifu-wasm";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "kifu-wasm";
|
|
|
|
};
|
|
|
|
|
|
|
|
# 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 = {
|
|
|
|
"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>"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"bumpalo" = rec {
|
|
|
|
crateName = "bumpalo";
|
|
|
|
version = "3.12.0";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "0damxqdgqqzp3zyfwvbrg5hzx39kqgxnxl3yyq3kk4ald0jiw9hd";
|
|
|
|
authors = [
|
|
|
|
"Nick Fitzgerald <fitzgen@gmail.com>"
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
|
|
};
|
|
|
|
"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.24";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0fv7idr8c7vdb0xi32w45a7pafnyzk7m0bknfggj5pva0qcmjg2f";
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "iana-time-zone";
|
|
|
|
packageId = "iana-time-zone";
|
|
|
|
optional = true;
|
|
|
|
target = { target, features }: (target."unix" or false);
|
|
|
|
features = [ "fallback" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "js-sys";
|
|
|
|
packageId = "js-sys";
|
|
|
|
optional = true;
|
|
|
|
target = { target, features }: ((target."arch" == "wasm32") && (!((target."os" == "emscripten") || (target."os" == "wasi"))));
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "num-integer";
|
|
|
|
packageId = "num-integer";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "num-traits";
|
|
|
|
packageId = "num-traits";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
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" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
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" "iana-time-zone" "js-sys" "std" "wasm-bindgen" "wasmbind" "winapi" ];
|
|
|
|
};
|
|
|
|
"codespan-reporting" = rec {
|
|
|
|
crateName = "codespan-reporting";
|
|
|
|
version = "0.11.1";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0vkfay0aqk73d33kh79k1kqxx06ka22894xhqi89crnc6c6jff1m";
|
|
|
|
authors = [
|
|
|
|
"Brendan Zabarauskas <bjzaba@yahoo.com.au>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "termcolor";
|
|
|
|
packageId = "termcolor";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "unicode-width";
|
|
|
|
packageId = "unicode-width";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"serde" = [ "dep:serde" ];
|
|
|
|
"serialization" = [ "serde" "serde/rc" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
"core-foundation-sys" = rec {
|
|
|
|
crateName = "core-foundation-sys";
|
|
|
|
version = "0.8.4";
|
|
|
|
edition = "2015";
|
|
|
|
sha256 = "1yhf471qj6snnm2mcswai47vsbc9w30y4abmdp4crb4av87sb5p4";
|
|
|
|
authors = [
|
|
|
|
"The Servo Project Developers"
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
};
|
|
|
|
};
|
|
|
|
"cxx" = rec {
|
|
|
|
crateName = "cxx";
|
|
|
|
version = "1.0.94";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "14zbar3nqjppw6y2a29k9cshi0m3j36dr97qdcqirzn3i5iin7zn";
|
|
|
|
authors = [
|
|
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "cxxbridge-macro";
|
|
|
|
packageId = "cxxbridge-macro";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "link-cplusplus";
|
|
|
|
packageId = "link-cplusplus";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
buildDependencies = [
|
|
|
|
{
|
|
|
|
name = "cc";
|
|
|
|
packageId = "cc";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "cxxbridge-flags";
|
|
|
|
packageId = "cxxbridge-flags";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"c++14" = [ "cxxbridge-flags/c++14" ];
|
|
|
|
"c++17" = [ "cxxbridge-flags/c++17" ];
|
|
|
|
"c++20" = [ "cxxbridge-flags/c++20" ];
|
|
|
|
"default" = [ "std" "cxxbridge-flags/default" ];
|
|
|
|
"std" = [ "alloc" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
|
|
};
|
|
|
|
"cxx-build" = rec {
|
|
|
|
crateName = "cxx-build";
|
|
|
|
version = "1.0.94";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0yx0wnmc5hz2lfkp3b30chmh4z42bnp4lncgnfpg4bcnx04fgkhj";
|
|
|
|
authors = [
|
|
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "cc";
|
|
|
|
packageId = "cc";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "codespan-reporting";
|
|
|
|
packageId = "codespan-reporting";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "once_cell";
|
|
|
|
packageId = "once_cell";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "proc-macro2";
|
|
|
|
packageId = "proc-macro2";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
features = [ "span-locations" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "quote";
|
|
|
|
packageId = "quote";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "scratch";
|
|
|
|
packageId = "scratch";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "syn";
|
|
|
|
packageId = "syn 2.0.15";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
features = [ "parsing" "printing" "clone-impls" "full" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"parallel" = [ "cc/parallel" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
"cxxbridge-flags" = rec {
|
|
|
|
crateName = "cxxbridge-flags";
|
|
|
|
version = "1.0.94";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1fzpqw12j8maki4m19fxrnf6xi2n988q9fgv799qq1p4wwm1fi3r";
|
|
|
|
authors = [
|
|
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
|
|
};
|
|
|
|
"cxxbridge-macro" = rec {
|
|
|
|
crateName = "cxxbridge-macro";
|
|
|
|
version = "1.0.94";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1iavmbfq7c31jg20x62pk6n0ldpkd43xw99yi61gcsr2cj14hi93";
|
|
|
|
procMacro = true;
|
|
|
|
authors = [
|
|
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "proc-macro2";
|
|
|
|
packageId = "proc-macro2";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "quote";
|
|
|
|
packageId = "quote";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "syn";
|
|
|
|
packageId = "syn 2.0.15";
|
|
|
|
features = [ "full" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"clang-ast" = [ "dep:clang-ast" ];
|
|
|
|
"experimental-enum-variants-from-header" = [ "clang-ast" "flate2" "memmap" "serde" "serde_json" ];
|
|
|
|
"flate2" = [ "dep:flate2" ];
|
|
|
|
"memmap" = [ "dep:memmap" ];
|
|
|
|
"serde" = [ "dep:serde" ];
|
|
|
|
"serde_json" = [ "dep:serde_json" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
"iana-time-zone" = rec {
|
|
|
|
crateName = "iana-time-zone";
|
|
|
|
version = "0.1.56";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0z7ky37i5f5djwv7mlkgnjny885v1dm4b9bydqqh9pmp2iqws8h7";
|
|
|
|
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.1";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1jix9qrqxclj9r4wkg7d3fr987d77vdg3qy2c5hl4ry19wlaw0q7";
|
|
|
|
authors = [
|
|
|
|
"René Kijewski <crates.io@k6i.de>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "cxx";
|
|
|
|
packageId = "cxx";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
buildDependencies = [
|
|
|
|
{
|
|
|
|
name = "cxx-build";
|
|
|
|
packageId = "cxx-build";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"itoa" = rec {
|
|
|
|
crateName = "itoa";
|
|
|
|
version = "1.0.6";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "19jc2sa3wvdc29zhgbwf3bayikq4rq18n20dbyg9ahd4hbsxjfj5";
|
|
|
|
authors = [
|
|
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"no-panic" = [ "dep:no-panic" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
"js-sys" = rec {
|
|
|
|
crateName = "js-sys";
|
|
|
|
version = "0.3.61";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0c075apyc5fxp2sbgr87qcvq53pcjxmp05l47lzlhpn5a0hxwpa4";
|
|
|
|
authors = [
|
|
|
|
"The wasm-bindgen Developers"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "wasm-bindgen";
|
|
|
|
packageId = "wasm-bindgen";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"kifu-core" = rec {
|
|
|
|
crateName = "kifu-core";
|
|
|
|
version = "0.1.0";
|
|
|
|
edition = "2021";
|
2023-05-03 20:20:47 +00:00
|
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ../kifu-core; };
|
2023-04-27 14:07:28 +00:00
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "serde";
|
|
|
|
packageId = "serde";
|
|
|
|
features = [ "derive" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "tokio";
|
|
|
|
packageId = "tokio";
|
|
|
|
features = [ "sync" "io-util" "macros" "rt" "time" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "typeshare";
|
|
|
|
packageId = "typeshare";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"kifu-wasm" = rec {
|
|
|
|
crateName = "kifu-wasm";
|
|
|
|
version = "0.1.0";
|
|
|
|
edition = "2021";
|
|
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./.; };type = [ "cdylib" ];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "kifu-core";
|
|
|
|
packageId = "kifu-core";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "wasm-bindgen";
|
|
|
|
packageId = "wasm-bindgen";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "wasm-bindgen-futures";
|
|
|
|
packageId = "wasm-bindgen-futures";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"libc" = rec {
|
|
|
|
crateName = "libc";
|
|
|
|
version = "0.2.142";
|
|
|
|
edition = "2015";
|
|
|
|
sha256 = "05skrzy55wl60n5y4syjkgql5g2626mf30hrsnkgyq2bypppp63a";
|
|
|
|
authors = [
|
|
|
|
"The Rust Project Developers"
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"default" = [ "std" ];
|
|
|
|
"rustc-dep-of-std" = [ "align" "rustc-std-workspace-core" ];
|
|
|
|
"rustc-std-workspace-core" = [ "dep:rustc-std-workspace-core" ];
|
|
|
|
"use_std" = [ "std" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
|
|
};
|
|
|
|
"link-cplusplus" = rec {
|
|
|
|
crateName = "link-cplusplus";
|
|
|
|
version = "1.0.8";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1x84vvg7gn94x9zrvd67602h3ricmhlv19cpl2alzhqkqz4hglpc";
|
|
|
|
authors = [
|
|
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
|
|
];
|
|
|
|
buildDependencies = [
|
|
|
|
{
|
|
|
|
name = "cc";
|
|
|
|
packageId = "cc";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"libcxx" = [ "libc++" ];
|
|
|
|
"libstdcxx" = [ "libstdc++" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
|
|
};
|
|
|
|
"log" = rec {
|
|
|
|
crateName = "log";
|
|
|
|
version = "0.4.17";
|
|
|
|
edition = "2015";
|
|
|
|
sha256 = "0biqlaaw1lsr8bpnmbcc0fvgjj34yy79ghqzyi0ali7vgil2xcdb";
|
|
|
|
authors = [
|
|
|
|
"The Rust Project Developers"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "cfg-if";
|
|
|
|
packageId = "cfg-if";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
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" ];
|
|
|
|
"serde" = [ "dep:serde" ];
|
|
|
|
"sval" = [ "dep:sval" ];
|
|
|
|
"value-bag" = [ "dep:value-bag" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
"num-integer" = rec {
|
|
|
|
crateName = "num-integer";
|
|
|
|
version = "0.1.45";
|
|
|
|
edition = "2015";
|
|
|
|
sha256 = "1ncwavvwdmsqzxnn65phv6c6nn72pnv9xhpmjd6a429mzf4k6p92";
|
|
|
|
authors = [
|
|
|
|
"The Rust Project Developers"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "num-traits";
|
|
|
|
packageId = "num-traits";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
buildDependencies = [
|
|
|
|
{
|
|
|
|
name = "autocfg";
|
|
|
|
packageId = "autocfg";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"default" = [ "std" ];
|
|
|
|
"i128" = [ "num-traits/i128" ];
|
|
|
|
"std" = [ "num-traits/std" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
"num-traits" = rec {
|
|
|
|
crateName = "num-traits";
|
|
|
|
version = "0.2.15";
|
|
|
|
edition = "2015";
|
|
|
|
sha256 = "1kfdqqw2ndz0wx2j75v9nbjx7d3mh3150zs4p5595y02rwsdx3jp";
|
|
|
|
authors = [
|
|
|
|
"The Rust Project Developers"
|
|
|
|
];
|
|
|
|
buildDependencies = [
|
|
|
|
{
|
|
|
|
name = "autocfg";
|
|
|
|
packageId = "autocfg";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"default" = [ "std" ];
|
|
|
|
"libm" = [ "dep:libm" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
"once_cell" = rec {
|
|
|
|
crateName = "once_cell";
|
|
|
|
version = "1.17.1";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "1lrsy9c5ikf2iwxr4iwgd3rlq9mg8alh0np1g8abnvp1k4151rdp";
|
|
|
|
authors = [
|
|
|
|
"Aleksey Kladov <aleksey.kladov@gmail.com>"
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"alloc" = [ "race" ];
|
|
|
|
"atomic-polyfill" = [ "critical-section" ];
|
|
|
|
"atomic_polyfill" = [ "dep:atomic_polyfill" ];
|
|
|
|
"critical-section" = [ "critical_section" "atomic_polyfill" ];
|
|
|
|
"critical_section" = [ "dep:critical_section" ];
|
|
|
|
"default" = [ "std" ];
|
|
|
|
"parking_lot" = [ "parking_lot_core" ];
|
|
|
|
"parking_lot_core" = [ "dep:parking_lot_core" ];
|
|
|
|
"std" = [ "alloc" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "alloc" "default" "race" "std" ];
|
|
|
|
};
|
|
|
|
"pin-project-lite" = rec {
|
|
|
|
crateName = "pin-project-lite";
|
|
|
|
version = "0.2.9";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "05n1z851l356hpgqadw4ar64mjanaxq1qlwqsf2k05ziq8xax9z0";
|
|
|
|
|
|
|
|
};
|
|
|
|
"proc-macro2" = rec {
|
|
|
|
crateName = "proc-macro2";
|
|
|
|
version = "1.0.56";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0ddlk2c7s9c0fhmf8cd0wikayicv9xrm9ck9vzgg9w86rnqbsqrb";
|
|
|
|
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" "span-locations" ];
|
|
|
|
};
|
|
|
|
"quote" = rec {
|
|
|
|
crateName = "quote";
|
|
|
|
version = "1.0.26";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1z521piwggwzs0rj4wjx4ma6af1g6f1h5dkp382y5akqyx5sy924";
|
|
|
|
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" ];
|
|
|
|
};
|
|
|
|
"ryu" = rec {
|
|
|
|
crateName = "ryu";
|
|
|
|
version = "1.0.13";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0hchlxvjmsz51l06c7r8zwj45pm8bhc3x3czcih27rkx8v03j4zr";
|
|
|
|
authors = [
|
|
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"no-panic" = [ "dep:no-panic" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
"scratch" = rec {
|
|
|
|
crateName = "scratch";
|
|
|
|
version = "1.0.5";
|
|
|
|
edition = "2015";
|
|
|
|
sha256 = "1hchqnh9ggsrisyaaasfqa0r484r75xh2lw87w6fcnz9bh1xp4hp";
|
|
|
|
authors = [
|
|
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"serde" = rec {
|
|
|
|
crateName = "serde";
|
|
|
|
version = "1.0.160";
|
|
|
|
edition = "2015";
|
|
|
|
sha256 = "0v11q6pjdjivw24cv98zv9dkdx50d6h9748lgvdbrqxwr1q3fbxv";
|
|
|
|
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.160";
|
|
|
|
edition = "2015";
|
|
|
|
sha256 = "1pvpiml328jhsz5h3pdc7x7wcyaagab6l5hb2q07wjfqcdy0j6i9";
|
|
|
|
procMacro = true;
|
|
|
|
authors = [
|
|
|
|
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
|
|
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "proc-macro2";
|
|
|
|
packageId = "proc-macro2";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "quote";
|
|
|
|
packageId = "quote";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "syn";
|
|
|
|
packageId = "syn 2.0.15";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
|
|
};
|
|
|
|
"serde_json" = rec {
|
|
|
|
crateName = "serde_json";
|
|
|
|
version = "1.0.96";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1waj3qwpa610vmksnzcmkll6vaw7nf7v3ckj4v0wlfs0a153jz85";
|
|
|
|
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" ];
|
|
|
|
};
|
|
|
|
"syn 1.0.109" = rec {
|
|
|
|
crateName = "syn";
|
|
|
|
version = "1.0.109";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0ds2if4600bd59wsv7jjgfkayfzy3hnazs394kz6zdkmna8l3dkj";
|
|
|
|
authors = [
|
|
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "proc-macro2";
|
|
|
|
packageId = "proc-macro2";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "quote";
|
|
|
|
packageId = "quote";
|
|
|
|
optional = true;
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "unicode-ident";
|
|
|
|
packageId = "unicode-ident";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
|
|
|
|
"printing" = [ "quote" ];
|
|
|
|
"proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ];
|
|
|
|
"quote" = [ "dep:quote" ];
|
|
|
|
"test" = [ "syn-test-suite/all-features" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "full" "parsing" "printing" "proc-macro" "quote" "visit" ];
|
|
|
|
};
|
|
|
|
"syn 2.0.15" = rec {
|
|
|
|
crateName = "syn";
|
|
|
|
version = "2.0.15";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "08n8c235bj7f86a5jg561s5zjfijdn8jw6ih2im7xxb0iczcykx3";
|
|
|
|
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" ];
|
|
|
|
};
|
|
|
|
"termcolor" = rec {
|
|
|
|
crateName = "termcolor";
|
|
|
|
version = "1.2.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1dmrbsljxpfng905qkaxljlwjhv8h0i3969cbiv5rb7y8a4wymdy";
|
|
|
|
authors = [
|
|
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "winapi-util";
|
|
|
|
packageId = "winapi-util";
|
|
|
|
target = { target, features }: (target."windows" or false);
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"tokio" = rec {
|
|
|
|
crateName = "tokio";
|
|
|
|
version = "1.27.0";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "00f07c752xjcq983c06xs692c39gg6fv5abqi54izqfbxsj4gpnh";
|
|
|
|
authors = [
|
|
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "bytes";
|
|
|
|
packageId = "bytes";
|
|
|
|
optional = true;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "pin-project-lite";
|
|
|
|
packageId = "pin-project-lite";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "tokio-macros";
|
|
|
|
packageId = "tokio-macros";
|
|
|
|
optional = true;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows-sys";
|
|
|
|
packageId = "windows-sys";
|
|
|
|
target = { target, features }: (target."docsrs" or false);
|
|
|
|
features = [ "Win32_Foundation" "Win32_Security_Authorization" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows-sys";
|
|
|
|
packageId = "windows-sys";
|
|
|
|
optional = true;
|
|
|
|
target = { target, features }: (target."windows" or false);
|
|
|
|
}
|
|
|
|
];
|
|
|
|
buildDependencies = [
|
|
|
|
{
|
|
|
|
name = "autocfg";
|
|
|
|
packageId = "autocfg";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"bytes" = [ "dep:bytes" ];
|
|
|
|
"full" = [ "fs" "io-util" "io-std" "macros" "net" "parking_lot" "process" "rt" "rt-multi-thread" "signal" "sync" "time" ];
|
|
|
|
"io-util" = [ "bytes" ];
|
|
|
|
"libc" = [ "dep:libc" ];
|
|
|
|
"macros" = [ "tokio-macros" ];
|
|
|
|
"mio" = [ "dep:mio" ];
|
|
|
|
"net" = [ "libc" "mio/os-poll" "mio/os-ext" "mio/net" "socket2" "windows-sys/Win32_Foundation" "windows-sys/Win32_Security" "windows-sys/Win32_Storage_FileSystem" "windows-sys/Win32_System_Pipes" "windows-sys/Win32_System_SystemServices" ];
|
|
|
|
"num_cpus" = [ "dep:num_cpus" ];
|
|
|
|
"parking_lot" = [ "dep:parking_lot" ];
|
|
|
|
"process" = [ "bytes" "libc" "mio/os-poll" "mio/os-ext" "mio/net" "signal-hook-registry" "windows-sys/Win32_Foundation" "windows-sys/Win32_System_Threading" "windows-sys/Win32_System_WindowsProgramming" ];
|
|
|
|
"rt-multi-thread" = [ "num_cpus" "rt" ];
|
|
|
|
"signal" = [ "libc" "mio/os-poll" "mio/net" "mio/os-ext" "signal-hook-registry" "windows-sys/Win32_Foundation" "windows-sys/Win32_System_Console" ];
|
|
|
|
"signal-hook-registry" = [ "dep:signal-hook-registry" ];
|
|
|
|
"socket2" = [ "dep:socket2" ];
|
|
|
|
"test-util" = [ "rt" "sync" "time" ];
|
|
|
|
"tokio-macros" = [ "dep:tokio-macros" ];
|
|
|
|
"tracing" = [ "dep:tracing" ];
|
|
|
|
"windows-sys" = [ "dep:windows-sys" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "bytes" "default" "io-util" "macros" "rt" "sync" "time" "tokio-macros" ];
|
|
|
|
};
|
|
|
|
"tokio-macros" = rec {
|
|
|
|
crateName = "tokio-macros";
|
|
|
|
version = "2.0.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1kni17i1sbyz8rvn83g48z4058z8ckcb7lgfvpbfk1brr2yp79b1";
|
|
|
|
procMacro = true;
|
|
|
|
authors = [
|
|
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "proc-macro2";
|
|
|
|
packageId = "proc-macro2";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "quote";
|
|
|
|
packageId = "quote";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "syn";
|
|
|
|
packageId = "syn 2.0.15";
|
|
|
|
features = [ "full" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"typeshare" = rec {
|
|
|
|
crateName = "typeshare";
|
|
|
|
version = "1.0.1";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "1mi7snkx2b4g84x8vx38v1myg5r6g48c865j0nz5zcsc8lpilkgl";
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "chrono";
|
|
|
|
packageId = "chrono";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
features = [ "clock" "std" "wasmbind" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "serde";
|
|
|
|
packageId = "serde";
|
|
|
|
features = [ "derive" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "serde_json";
|
|
|
|
packageId = "serde_json";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "typeshare-annotation";
|
|
|
|
packageId = "typeshare-annotation";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"typeshare-annotation" = rec {
|
|
|
|
crateName = "typeshare-annotation";
|
|
|
|
version = "1.0.2";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "1adpfhyz3lqjjbq2ym69mv62ymqyd5651gxlqdy8aa446l70srzw";
|
|
|
|
procMacro = true;
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "quote";
|
|
|
|
packageId = "quote";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "syn";
|
|
|
|
packageId = "syn 1.0.109";
|
|
|
|
features = [ "parsing" "proc-macro" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"unicode-ident" = rec {
|
|
|
|
crateName = "unicode-ident";
|
|
|
|
version = "1.0.8";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1x4v4v95fv9gn5zbpm23sa9awjvmclap1wh1lmikmw9rna3llip5";
|
|
|
|
authors = [
|
|
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"unicode-width" = rec {
|
|
|
|
crateName = "unicode-width";
|
|
|
|
version = "0.1.10";
|
|
|
|
edition = "2015";
|
|
|
|
sha256 = "12vc3wv0qwg8rzcgb9bhaf5119dlmd6lmkhbfy1zfls6n7jx3vf0";
|
|
|
|
authors = [
|
|
|
|
"kwantam <kwantam@gmail.com>"
|
|
|
|
"Manish Goregaokar <manishsmail@gmail.com>"
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
|
|
"core" = [ "dep:core" ];
|
|
|
|
"rustc-dep-of-std" = [ "std" "core" "compiler_builtins" ];
|
|
|
|
"std" = [ "dep:std" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
|
|
};
|
|
|
|
"wasm-bindgen" = rec {
|
|
|
|
crateName = "wasm-bindgen";
|
|
|
|
version = "0.2.84";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0fx5gh0b4n6znfa3blz92wn1k4bbiysyq9m95s7rn3gk46ydry1i";
|
|
|
|
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" ];
|
|
|
|
"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.84";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1ffc0wb293ha56i66f830x7f8aa2xql69a21lrasy1ncbgyr1klm";
|
|
|
|
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 1.0.109";
|
|
|
|
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.34";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0m0lnnnhs9ni4dn9vz74prsjz8bdcf8dvnznd5ljch5s279f06gj";
|
|
|
|
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.84";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1idlq28awqhq8rclb22rn5xix82w9a4rgy11vkapzhzd1dygf8ac";
|
|
|
|
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.84";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1xm56lpi0rihh8ny7x085dgs3jdm47spgqflb98wghyadwq83zra";
|
|
|
|
authors = [
|
|
|
|
"The wasm-bindgen Developers"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "proc-macro2";
|
|
|
|
packageId = "proc-macro2";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "quote";
|
|
|
|
packageId = "quote";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "syn";
|
|
|
|
packageId = "syn 1.0.109";
|
|
|
|
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.84";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0pcvk1c97r1pprzfaxxn359r0wqg5bm33ylbwgjh8f4cwbvzwih0";
|
|
|
|
authors = [
|
|
|
|
"The wasm-bindgen Developers"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"web-sys" = rec {
|
|
|
|
crateName = "web-sys";
|
|
|
|
version = "0.3.61";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "15qbbdbhyz02srvm01p0cvlh0pvmbbin9hislp0yx8rvnbs9jfz3";
|
|
|
|
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" ];
|
|
|
|
"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" ];
|
|
|
|
"FileSystemFileEntry" = [ "FileSystemEntry" ];
|
|
|
|
"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" ];
|
|
|
|
"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" ];
|
|
|
|
"XrHand" = [ "XrHandJoint" ];
|
|
|
|
"XrInputSourceEvent" = [ "Event" ];
|
|
|
|
"XrInputSourcesChangeEvent" = [ "Event" ];
|
|
|
|
"XrLayer" = [ "EventTarget" ];
|
|
|
|
"XrPermissionStatus" = [ "EventTarget" "PermissionStatus" ];
|
|
|
|
"XrReferenceSpace" = [ "EventTarget" "XrSpace" ];
|
|
|
|
"XrReferenceSpaceEvent" = [ "Event" ];
|
|
|
|
"XrSession" = [ "EventTarget" ];
|
|
|
|
"XrSessionEvent" = [ "Event" ];
|
|
|
|
"XrSpace" = [ "EventTarget" ];
|
|
|
|
"XrSystem" = [ "EventTarget" ];
|
|
|
|
"XrViewerPose" = [ "XrPose" ];
|
|
|
|
"XrWebGlLayer" = [ "EventTarget" "XrLayer" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "Event" "EventTarget" "MessageEvent" "Worker" ];
|
|
|
|
};
|
|
|
|
"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 = [ "consoleapi" "errhandlingapi" "fileapi" "minwinbase" "minwindef" "processenv" "std" "timezoneapi" "winbase" "wincon" "winerror" "winnt" ];
|
|
|
|
};
|
|
|
|
"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-util" = rec {
|
|
|
|
crateName = "winapi-util";
|
|
|
|
version = "0.1.5";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0y71bp7f6d536czj40dhqk0d55wfbbwqfp2ymqf1an5ibgl6rv3h";
|
|
|
|
authors = [
|
|
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "winapi";
|
|
|
|
packageId = "winapi";
|
|
|
|
target = { target, features }: (target."windows" or false);
|
|
|
|
features = [ "std" "consoleapi" "errhandlingapi" "fileapi" "minwindef" "processenv" "winbase" "wincon" "winerror" "winnt" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"winapi-x86_64-pc-windows-gnu" = rec {
|
|
|
|
crateName = "winapi-x86_64-pc-windows-gnu";
|
|
|
|
version = "0.4.0";
|
|
|
|
edition = "2015";
|
|
|
|
sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki";
|
|
|
|
authors = [
|
|
|
|
"Peter Atashian <retep998@gmail.com>"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows" = rec {
|
|
|
|
crateName = "windows";
|
|
|
|
version = "0.48.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "03vh89ilnxdxdh0n9np4ns4m10fvm93h3b0cc05ipg3qq1mqi1p6";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "windows-targets";
|
|
|
|
packageId = "windows-targets 0.48.0";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
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.45.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1l36bcqm4g89pknfp8r9rl1w4bn017q6a8qlx8viv0xjxzjkna3m";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "windows-targets";
|
|
|
|
packageId = "windows-targets 0.42.2";
|
|
|
|
target = { target, features }: (!(target."windows_raw_dylib" or false));
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"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_Com" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Com_CallObj" = [ "Win32_System_Com" ];
|
|
|
|
"Win32_System_Com_ChannelCredentials" = [ "Win32_System_Com" ];
|
|
|
|
"Win32_System_Com_Events" = [ "Win32_System_Com" ];
|
|
|
|
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
|
|
|
|
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
|
|
|
|
"Win32_System_Com_UI" = [ "Win32_System_Com" ];
|
|
|
|
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
|
|
|
|
"Win32_System_ComponentServices" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Console" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Contacts" = [ "Win32_System" ];
|
|
|
|
"Win32_System_CorrelationVector" = [ "Win32_System" ];
|
|
|
|
"Win32_System_DataExchange" = [ "Win32_System" ];
|
|
|
|
"Win32_System_DeploymentServices" = [ "Win32_System" ];
|
|
|
|
"Win32_System_DesktopSharing" = [ "Win32_System" ];
|
|
|
|
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Diagnostics" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
|
|
|
|
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
|
|
|
|
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
|
|
|
|
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
|
|
|
|
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
|
|
|
|
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Environment" = [ "Win32_System" ];
|
|
|
|
"Win32_System_ErrorReporting" = [ "Win32_System" ];
|
|
|
|
"Win32_System_EventCollector" = [ "Win32_System" ];
|
|
|
|
"Win32_System_EventLog" = [ "Win32_System" ];
|
|
|
|
"Win32_System_EventNotificationService" = [ "Win32_System" ];
|
|
|
|
"Win32_System_GroupPolicy" = [ "Win32_System" ];
|
|
|
|
"Win32_System_HostCompute" = [ "Win32_System" ];
|
|
|
|
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
|
|
|
|
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Hypervisor" = [ "Win32_System" ];
|
|
|
|
"Win32_System_IO" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Iis" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Ioctl" = [ "Win32_System" ];
|
|
|
|
"Win32_System_JobObjects" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Js" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Kernel" = [ "Win32_System" ];
|
|
|
|
"Win32_System_LibraryLoader" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Mailslots" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Mapi" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Memory" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
|
|
|
|
"Win32_System_MessageQueuing" = [ "Win32_System" ];
|
|
|
|
"Win32_System_MixedReality" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Mmc" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Ole" = [ "Win32_System" ];
|
|
|
|
"Win32_System_ParentalControls" = [ "Win32_System" ];
|
|
|
|
"Win32_System_PasswordManagement" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Performance" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
|
|
|
|
"Win32_System_Pipes" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Power" = [ "Win32_System" ];
|
|
|
|
"Win32_System_ProcessStatus" = [ "Win32_System" ];
|
|
|
|
"Win32_System_RealTimeCommunications" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Recovery" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Registry" = [ "Win32_System" ];
|
|
|
|
"Win32_System_RemoteAssistance" = [ "Win32_System" ];
|
|
|
|
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
|
|
|
|
"Win32_System_RemoteManagement" = [ "Win32_System" ];
|
|
|
|
"Win32_System_RestartManager" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Restore" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Rpc" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Search" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
|
|
|
|
"Win32_System_SecurityCenter" = [ "Win32_System" ];
|
|
|
|
"Win32_System_ServerBackup" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Services" = [ "Win32_System" ];
|
|
|
|
"Win32_System_SettingsManagementInfrastructure" = [ "Win32_System" ];
|
|
|
|
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
|
|
|
|
"Win32_System_Shutdown" = [ "Win32_System" ];
|
|
|
|
"Win32_System_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" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_Security" "Win32_Security_Authorization" "default" ];
|
|
|
|
};
|
|
|
|
"windows-targets 0.42.2" = rec {
|
|
|
|
crateName = "windows-targets";
|
|
|
|
version = "0.42.2";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0wfhnib2fisxlx8c507dbmh97kgij4r6kcxdi0f9nk6l1k080lcf";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "windows_aarch64_gnullvm";
|
|
|
|
packageId = "windows_aarch64_gnullvm 0.42.2";
|
|
|
|
target = { target, features }: (stdenv.hostPlatform.config == "aarch64-pc-windows-gnullvm");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_aarch64_msvc";
|
|
|
|
packageId = "windows_aarch64_msvc 0.42.2";
|
|
|
|
target = { target, features }: (stdenv.hostPlatform.config == "aarch64-pc-windows-msvc");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_aarch64_msvc";
|
|
|
|
packageId = "windows_aarch64_msvc 0.42.2";
|
|
|
|
target = { target, features }: (stdenv.hostPlatform.config == "aarch64-uwp-windows-msvc");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_i686_gnu";
|
|
|
|
packageId = "windows_i686_gnu 0.42.2";
|
|
|
|
target = { target, features }: (stdenv.hostPlatform.config == "i686-pc-windows-gnu");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_i686_gnu";
|
|
|
|
packageId = "windows_i686_gnu 0.42.2";
|
|
|
|
target = { target, features }: (stdenv.hostPlatform.config == "i686-uwp-windows-gnu");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_i686_msvc";
|
|
|
|
packageId = "windows_i686_msvc 0.42.2";
|
|
|
|
target = { target, features }: (stdenv.hostPlatform.config == "i686-pc-windows-msvc");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_i686_msvc";
|
|
|
|
packageId = "windows_i686_msvc 0.42.2";
|
|
|
|
target = { target, features }: (stdenv.hostPlatform.config == "i686-uwp-windows-msvc");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_x86_64_gnu";
|
|
|
|
packageId = "windows_x86_64_gnu 0.42.2";
|
|
|
|
target = { target, features }: (stdenv.hostPlatform.config == "x86_64-pc-windows-gnu");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_x86_64_gnu";
|
|
|
|
packageId = "windows_x86_64_gnu 0.42.2";
|
|
|
|
target = { target, features }: (stdenv.hostPlatform.config == "x86_64-uwp-windows-gnu");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_x86_64_gnullvm";
|
|
|
|
packageId = "windows_x86_64_gnullvm 0.42.2";
|
|
|
|
target = { target, features }: (stdenv.hostPlatform.config == "x86_64-pc-windows-gnullvm");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_x86_64_msvc";
|
|
|
|
packageId = "windows_x86_64_msvc 0.42.2";
|
|
|
|
target = { target, features }: (stdenv.hostPlatform.config == "x86_64-pc-windows-msvc");
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_x86_64_msvc";
|
|
|
|
packageId = "windows_x86_64_msvc 0.42.2";
|
|
|
|
target = { target, features }: (stdenv.hostPlatform.config == "x86_64-uwp-windows-msvc");
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows-targets 0.48.0" = rec {
|
|
|
|
crateName = "windows-targets";
|
|
|
|
version = "0.48.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1mfzg94w0c8h4ya9sva7rra77f3iy1712af9b6bwg03wrpqbc7kv";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "windows_aarch64_gnullvm";
|
|
|
|
packageId = "windows_aarch64_gnullvm 0.48.0";
|
|
|
|
target = { target, features }: ((target."arch" == "aarch64") && (target."env" == "gnu") && (target."abi" == "llvm") && (!(target."windows_raw_dylib" or false)));
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_aarch64_msvc";
|
|
|
|
packageId = "windows_aarch64_msvc 0.48.0";
|
|
|
|
target = { target, features }: ((target."arch" == "aarch64") && (target."env" == "msvc") && (!(target."windows_raw_dylib" or false)));
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_i686_gnu";
|
|
|
|
packageId = "windows_i686_gnu 0.48.0";
|
|
|
|
target = { target, features }: ((target."arch" == "x86") && (target."env" == "gnu") && (!(target."windows_raw_dylib" or false)));
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_i686_msvc";
|
|
|
|
packageId = "windows_i686_msvc 0.48.0";
|
|
|
|
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 0.48.0";
|
|
|
|
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 0.48.0";
|
|
|
|
target = { target, features }: ((target."arch" == "x86_64") && (target."env" == "gnu") && (target."abi" == "llvm") && (!(target."windows_raw_dylib" or false)));
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows_x86_64_msvc";
|
|
|
|
packageId = "windows_x86_64_msvc 0.48.0";
|
|
|
|
target = { target, features }: ((target."arch" == "x86_64") && (target."env" == "msvc") && (!(target."windows_raw_dylib" or false)));
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_aarch64_gnullvm 0.42.2" = rec {
|
|
|
|
crateName = "windows_aarch64_gnullvm";
|
|
|
|
version = "0.42.2";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1y4q0qmvl0lvp7syxvfykafvmwal5hrjb4fmv04bqs0bawc52yjr";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_aarch64_gnullvm 0.48.0" = rec {
|
|
|
|
crateName = "windows_aarch64_gnullvm";
|
|
|
|
version = "0.48.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1g71yxi61c410pwzq05ld7si4p9hyx6lf5fkw21sinvr3cp5gbli";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_aarch64_msvc 0.42.2" = rec {
|
|
|
|
crateName = "windows_aarch64_msvc";
|
|
|
|
version = "0.42.2";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0hsdikjl5sa1fva5qskpwlxzpc5q9l909fpl1w6yy1hglrj8i3p0";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_aarch64_msvc 0.48.0" = rec {
|
|
|
|
crateName = "windows_aarch64_msvc";
|
|
|
|
version = "0.48.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1wvwipchhywcjaw73h998vzachf668fpqccbhrxzrz5xszh2gvxj";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_i686_gnu 0.42.2" = rec {
|
|
|
|
crateName = "windows_i686_gnu";
|
|
|
|
version = "0.42.2";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0kx866dfrby88lqs9v1vgmrkk1z6af9lhaghh5maj7d4imyr47f6";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_i686_gnu 0.48.0" = rec {
|
|
|
|
crateName = "windows_i686_gnu";
|
|
|
|
version = "0.48.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0hd2v9kp8fss0rzl83wzhw0s5z8q1b4875m6s1phv0yvlxi1jak2";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_i686_msvc 0.42.2" = rec {
|
|
|
|
crateName = "windows_i686_msvc";
|
|
|
|
version = "0.42.2";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0q0h9m2aq1pygc199pa5jgc952qhcnf0zn688454i7v4xjv41n24";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_i686_msvc 0.48.0" = rec {
|
|
|
|
crateName = "windows_i686_msvc";
|
|
|
|
version = "0.48.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "004fkyqv3if178xx9ksqc4qqv8sz8n72mpczsr2vy8ffckiwchj5";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_x86_64_gnu 0.42.2" = rec {
|
|
|
|
crateName = "windows_x86_64_gnu";
|
|
|
|
version = "0.42.2";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0dnbf2xnp3xrvy8v9mgs3var4zq9v9yh9kv79035rdgyp2w15scd";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_x86_64_gnu 0.48.0" = rec {
|
|
|
|
crateName = "windows_x86_64_gnu";
|
|
|
|
version = "0.48.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1cblz5m6a8q6ha09bz4lz233dnq5sw2hpra06k9cna3n3xk8laya";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_x86_64_gnullvm 0.42.2" = rec {
|
|
|
|
crateName = "windows_x86_64_gnullvm";
|
|
|
|
version = "0.42.2";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "18wl9r8qbsl475j39zvawlidp1bsbinliwfymr43fibdld31pm16";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_x86_64_gnullvm 0.48.0" = rec {
|
|
|
|
crateName = "windows_x86_64_gnullvm";
|
|
|
|
version = "0.48.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0lxryz3ysx0145bf3i38jkr7f9nxiym8p3syklp8f20yyk0xp5kq";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_x86_64_msvc 0.42.2" = rec {
|
|
|
|
crateName = "windows_x86_64_msvc";
|
|
|
|
version = "0.42.2";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1w5r0q0yzx827d10dpjza2ww0j8iajqhmb54s735hhaj66imvv4s";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"windows_x86_64_msvc 0.48.0" = rec {
|
|
|
|
crateName = "windows_x86_64_msvc";
|
|
|
|
version = "0.48.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "12ipr1knzj2rwjygyllfi5mkd0ihnbi3r61gag5n2jgyk5bmyl8s";
|
|
|
|
authors = [
|
|
|
|
"Microsoft"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#
|
|
|
|
# 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)
|
|
|
|
#
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|