10987 lines
385 KiB
Nix
10987 lines
385 KiB
Nix
|
|
# This file was @generated by crate2nix 0.14.1 with the command:
|
|
# "generate"
|
|
# See https://github.com/kolloch/crate2nix for more info.
|
|
|
|
{ nixpkgs ? <nixpkgs>
|
|
, pkgs ? import nixpkgs { config = {}; }
|
|
, lib ? pkgs.lib
|
|
, stdenv ? pkgs.stdenv
|
|
, buildRustCrateForPkgs ? pkgs: pkgs.buildRustCrate
|
|
# This is used as the `crateOverrides` argument for `buildRustCrate`.
|
|
, defaultCrateOverrides ? pkgs.defaultCrateOverrides
|
|
# The features to enable for the root_crate or the workspace_members.
|
|
, rootFeatures ? [ "default" ]
|
|
# If true, throw errors instead of issueing deprecation warnings.
|
|
, strictDeprecation ? false
|
|
# Elements to add to the `-C target-feature=` argument passed to `rustc`
|
|
# (separated by `,`, prefixed with `+`).
|
|
# Used for conditional compilation based on CPU feature detection.
|
|
, targetFeatures ? []
|
|
# Whether to perform release builds: longer compile times, faster binaries.
|
|
, release ? true
|
|
# Additional crate2nix configuration if it exists.
|
|
, crateConfig
|
|
? if builtins.pathExists ./crate-config.nix
|
|
then pkgs.callPackage ./crate-config.nix {}
|
|
else {}
|
|
}:
|
|
|
|
rec {
|
|
#
|
|
# "public" attributes that we attempt to keep stable with new versions of crate2nix.
|
|
#
|
|
|
|
|
|
# Refer your crate build derivation by name here.
|
|
# You can override the features with
|
|
# workspaceMembers."${crateName}".build.override { features = [ "default" "feature1" ... ]; }.
|
|
workspaceMembers = {
|
|
"cyberpunk" = rec {
|
|
packageId = "cyberpunk";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "cyberpunk";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
"cyberpunk-splash" = rec {
|
|
packageId = "cyberpunk-splash";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "cyberpunk-splash";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
"emseries" = rec {
|
|
packageId = "emseries";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "emseries";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
"fitnesstrax" = rec {
|
|
packageId = "fitnesstrax";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "fitnesstrax";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
"ft-core" = rec {
|
|
packageId = "ft-core";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "ft-core";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
"l10n-db" = rec {
|
|
packageId = "l10n-db";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "l10n-db";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
"result-extended" = rec {
|
|
packageId = "result-extended";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "result-extended";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
"server" = rec {
|
|
packageId = "server";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "server";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
"visions-client" = rec {
|
|
packageId = "visions-client";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "visions-client";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
"visions-types" = rec {
|
|
packageId = "visions-types";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "visions-types";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
};
|
|
|
|
# A derivation that joins the outputs of all workspace members together.
|
|
allWorkspaceMembers = pkgs.symlinkJoin {
|
|
name = "all-workspace-members";
|
|
paths =
|
|
let members = builtins.attrValues workspaceMembers;
|
|
in builtins.map (m: m.build) members;
|
|
};
|
|
|
|
#
|
|
# "internal" ("private") attributes that may change in every new version of crate2nix.
|
|
#
|
|
|
|
internal = rec {
|
|
# Build and dependency information for crates.
|
|
# Many of the fields are passed one-to-one to buildRustCrate.
|
|
#
|
|
# Noteworthy:
|
|
# * `dependencies`/`buildDependencies`: similar to the corresponding fields for buildRustCrate.
|
|
# but with additional information which is used during dependency/feature resolution.
|
|
# * `resolvedDependencies`: the selected default features reported by cargo - only included for debugging.
|
|
# * `devDependencies` as of now not used by `buildRustCrate` but used to
|
|
# inject test dependencies into the build
|
|
|
|
crates = {
|
|
"addr2line" = rec {
|
|
crateName = "addr2line";
|
|
version = "0.24.2";
|
|
edition = "2018";
|
|
crateBin = [];
|
|
sha256 = "1hd1i57zxgz08j6h5qrhsnm2fi0bcqvsh389fw400xm3arz2ggnz";
|
|
dependencies = [
|
|
{
|
|
name = "gimli";
|
|
packageId = "gimli";
|
|
usesDefaultFeatures = false;
|
|
features = [ "read" ];
|
|
}
|
|
];
|
|
features = {
|
|
"all" = [ "bin" ];
|
|
"alloc" = [ "dep:alloc" ];
|
|
"bin" = [ "loader" "rustc-demangle" "cpp_demangle" "fallible-iterator" "smallvec" "dep:clap" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"cpp_demangle" = [ "dep:cpp_demangle" ];
|
|
"default" = [ "rustc-demangle" "cpp_demangle" "loader" "fallible-iterator" "smallvec" ];
|
|
"fallible-iterator" = [ "dep:fallible-iterator" ];
|
|
"loader" = [ "std" "dep:object" "dep:memmap2" "dep:typed-arena" ];
|
|
"rustc-demangle" = [ "dep:rustc-demangle" ];
|
|
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "gimli/rustc-dep-of-std" ];
|
|
"smallvec" = [ "dep:smallvec" ];
|
|
"std" = [ "gimli/std" ];
|
|
};
|
|
};
|
|
"adler2" = rec {
|
|
crateName = "adler2";
|
|
version = "2.0.0";
|
|
edition = "2021";
|
|
sha256 = "09r6drylvgy8vv8k20lnbvwq8gp09h7smfn6h1rxsy15pgh629si";
|
|
authors = [
|
|
"Jonas Schievink <jonasschievink@gmail.com>"
|
|
"oyvindln <oyvindln@users.noreply.github.com>"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
};
|
|
};
|
|
"aho-corasick" = rec {
|
|
crateName = "aho-corasick";
|
|
version = "1.1.3";
|
|
edition = "2021";
|
|
sha256 = "05mrpkvdgp5d20y2p989f187ry9diliijgwrs254fs9s1m1x6q4f";
|
|
libName = "aho_corasick";
|
|
authors = [
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" "perf-literal" ];
|
|
"logging" = [ "dep:log" ];
|
|
"perf-literal" = [ "dep:memchr" ];
|
|
"std" = [ "memchr?/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"android-tzdata" = rec {
|
|
crateName = "android-tzdata";
|
|
version = "0.1.1";
|
|
edition = "2018";
|
|
sha256 = "1w7ynjxrfs97xg3qlcdns4kgfpwcdv824g611fq32cag4cdr96g9";
|
|
libName = "android_tzdata";
|
|
authors = [
|
|
"RumovZ"
|
|
];
|
|
|
|
};
|
|
"android_system_properties" = rec {
|
|
crateName = "android_system_properties";
|
|
version = "0.1.5";
|
|
edition = "2018";
|
|
sha256 = "04b3wrz12837j7mdczqd95b732gw5q7q66cv4yn4646lvccp57l1";
|
|
authors = [
|
|
"Nicolas Silva <nical@fastmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
|
|
};
|
|
"anstream" = rec {
|
|
crateName = "anstream";
|
|
version = "0.6.18";
|
|
edition = "2021";
|
|
sha256 = "16sjk4x3ns2c3ya1x28a44kh6p47c7vhk27251i015hik1lm7k4a";
|
|
dependencies = [
|
|
{
|
|
name = "anstyle";
|
|
packageId = "anstyle";
|
|
}
|
|
{
|
|
name = "anstyle-parse";
|
|
packageId = "anstyle-parse";
|
|
}
|
|
{
|
|
name = "anstyle-query";
|
|
packageId = "anstyle-query";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "anstyle-wincon";
|
|
packageId = "anstyle-wincon";
|
|
optional = true;
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
{
|
|
name = "colorchoice";
|
|
packageId = "colorchoice";
|
|
}
|
|
{
|
|
name = "is_terminal_polyfill";
|
|
packageId = "is_terminal_polyfill";
|
|
}
|
|
{
|
|
name = "utf8parse";
|
|
packageId = "utf8parse";
|
|
}
|
|
];
|
|
features = {
|
|
"auto" = [ "dep:anstyle-query" ];
|
|
"default" = [ "auto" "wincon" ];
|
|
"wincon" = [ "dep:anstyle-wincon" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "auto" "default" "wincon" ];
|
|
};
|
|
"anstyle" = rec {
|
|
crateName = "anstyle";
|
|
version = "1.0.10";
|
|
edition = "2021";
|
|
sha256 = "1yai2vppmd7zlvlrp9grwll60knrmscalf8l2qpfz8b7y5lkpk2m";
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"anstyle-parse" = rec {
|
|
crateName = "anstyle-parse";
|
|
version = "0.2.6";
|
|
edition = "2021";
|
|
sha256 = "1acqayy22fwzsrvr6n0lz6a4zvjjcvgr5sm941m7m0b2fr81cb9v";
|
|
libName = "anstyle_parse";
|
|
dependencies = [
|
|
{
|
|
name = "utf8parse";
|
|
packageId = "utf8parse";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"core" = [ "dep:arrayvec" ];
|
|
"default" = [ "utf8" ];
|
|
"utf8" = [ "dep:utf8parse" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "utf8" ];
|
|
};
|
|
"anstyle-query" = rec {
|
|
crateName = "anstyle-query";
|
|
version = "1.1.2";
|
|
edition = "2021";
|
|
sha256 = "036nm3lkyk43xbps1yql3583fp4hg3b1600is7mcyxs1gzrpm53r";
|
|
libName = "anstyle_query";
|
|
dependencies = [
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys 0.59.0";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_System_Console" "Win32_Foundation" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"anstyle-wincon" = rec {
|
|
crateName = "anstyle-wincon";
|
|
version = "3.0.7";
|
|
edition = "2021";
|
|
sha256 = "0kmf0fq4c8yribdpdpylzz1zccpy84hizmcsac3wrac1f7kk8dfa";
|
|
libName = "anstyle_wincon";
|
|
dependencies = [
|
|
{
|
|
name = "anstyle";
|
|
packageId = "anstyle";
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys 0.59.0";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_System_Console" "Win32_Foundation" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"anyhow" = rec {
|
|
crateName = "anyhow";
|
|
version = "1.0.97";
|
|
edition = "2018";
|
|
sha256 = "0kvspbiwncmmkdgrwjrimsmbmhzxc641p5ql99l2rjq6smmdbznw";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
features = {
|
|
"backtrace" = [ "dep:backtrace" ];
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"async-channel 1.9.0" = rec {
|
|
crateName = "async-channel";
|
|
version = "1.9.0";
|
|
edition = "2018";
|
|
sha256 = "0dbdlkzlncbibd3ij6y6jmvjd0cmdn48ydcfdpfhw09njd93r5c1";
|
|
libName = "async_channel";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "concurrent-queue";
|
|
packageId = "concurrent-queue";
|
|
}
|
|
{
|
|
name = "event-listener";
|
|
packageId = "event-listener 2.5.3";
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
}
|
|
];
|
|
|
|
};
|
|
"async-channel 2.3.1" = rec {
|
|
crateName = "async-channel";
|
|
version = "2.3.1";
|
|
edition = "2021";
|
|
sha256 = "0skvwxj6ysfc6d7bhczz9a2550260g62bm5gl0nmjxxyn007id49";
|
|
libName = "async_channel";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "concurrent-queue";
|
|
packageId = "concurrent-queue";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "event-listener-strategy";
|
|
packageId = "event-listener-strategy";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "concurrent-queue/std" "event-listener-strategy/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"async-executor" = rec {
|
|
crateName = "async-executor";
|
|
version = "1.13.1";
|
|
edition = "2021";
|
|
sha256 = "1v6w1dbvsmw6cs4dk4lxj5dvrikc6xi479wikwaab2qy3h09mjih";
|
|
libName = "async_executor";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
"John Nunley <dev@notgull.net>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "async-task";
|
|
packageId = "async-task";
|
|
}
|
|
{
|
|
name = "concurrent-queue";
|
|
packageId = "concurrent-queue";
|
|
}
|
|
{
|
|
name = "fastrand";
|
|
packageId = "fastrand";
|
|
}
|
|
{
|
|
name = "futures-lite";
|
|
packageId = "futures-lite";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-lite";
|
|
packageId = "futures-lite";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (builtins.elem "wasm" target."family");
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "slab";
|
|
packageId = "slab";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "fastrand";
|
|
packageId = "fastrand";
|
|
}
|
|
{
|
|
name = "futures-lite";
|
|
packageId = "futures-lite";
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
};
|
|
"async-global-executor" = rec {
|
|
crateName = "async-global-executor";
|
|
version = "2.4.1";
|
|
edition = "2021";
|
|
sha256 = "1762s45cc134d38rrv0hyp41hv4iv6nmx59vswid2p0il8rvdc85";
|
|
libName = "async_global_executor";
|
|
authors = [
|
|
"Marc-Antoine Perennou <Marc-Antoine@Perennou.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "async-channel";
|
|
packageId = "async-channel 2.3.1";
|
|
}
|
|
{
|
|
name = "async-executor";
|
|
packageId = "async-executor";
|
|
}
|
|
{
|
|
name = "async-io";
|
|
packageId = "async-io";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "async-lock";
|
|
packageId = "async-lock";
|
|
}
|
|
{
|
|
name = "blocking";
|
|
packageId = "blocking";
|
|
}
|
|
{
|
|
name = "futures-lite";
|
|
packageId = "futures-lite";
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
];
|
|
features = {
|
|
"async-io" = [ "dep:async-io" ];
|
|
"default" = [ "async-io" ];
|
|
"tokio" = [ "tokio-crate" ];
|
|
"tokio-crate" = [ "dep:tokio-crate" ];
|
|
"tokio02" = [ "tokio02-crate" ];
|
|
"tokio02-crate" = [ "dep:tokio02-crate" ];
|
|
"tokio03" = [ "tokio03-crate" ];
|
|
"tokio03-crate" = [ "dep:tokio03-crate" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "async-io" "default" ];
|
|
};
|
|
"async-io" = rec {
|
|
crateName = "async-io";
|
|
version = "2.4.0";
|
|
edition = "2021";
|
|
sha256 = "0n8h0vy53n4vdkq529scqnkzm9vcl3r73za9nj81s2nfrhiv78j3";
|
|
libName = "async_io";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "async-lock";
|
|
packageId = "async-lock";
|
|
}
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "concurrent-queue";
|
|
packageId = "concurrent-queue";
|
|
}
|
|
{
|
|
name = "futures-io";
|
|
packageId = "futures-io";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "futures-lite";
|
|
packageId = "futures-lite";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "parking";
|
|
packageId = "parking";
|
|
}
|
|
{
|
|
name = "polling";
|
|
packageId = "polling";
|
|
}
|
|
{
|
|
name = "rustix";
|
|
packageId = "rustix 0.38.44";
|
|
usesDefaultFeatures = false;
|
|
features = [ "fs" "net" "std" ];
|
|
}
|
|
{
|
|
name = "slab";
|
|
packageId = "slab";
|
|
}
|
|
{
|
|
name = "tracing";
|
|
packageId = "tracing";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys 0.59.0";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Foundation" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"async-lock" = rec {
|
|
crateName = "async-lock";
|
|
version = "3.4.0";
|
|
edition = "2021";
|
|
sha256 = "060vh45i809wcqyxzs5g69nqiqah7ydz0hpkcjys9258vqn4fvpz";
|
|
libName = "async_lock";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "event-listener";
|
|
packageId = "event-listener 5.4.0";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "event-listener-strategy";
|
|
packageId = "event-listener-strategy";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"loom" = [ "event-listener/loom" "dep:loom" ];
|
|
"std" = [ "event-listener/std" "event-listener-strategy/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"async-std" = rec {
|
|
crateName = "async-std";
|
|
version = "1.13.1";
|
|
edition = "2018";
|
|
sha256 = "094azlylq90vki8pv8k6lyhdbw1kcf7m344mfn2hyblcq30r80kk";
|
|
libName = "async_std";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
"Yoshua Wuyts <yoshuawuyts@gmail.com>"
|
|
"Friedel Ziegelmayer <me@dignifiedquire.com>"
|
|
"Contributors to async-std"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "async-channel";
|
|
packageId = "async-channel 1.9.0";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "async-global-executor";
|
|
packageId = "async-global-executor";
|
|
optional = true;
|
|
target = { target, features }: (!("unknown" == target."os" or null));
|
|
features = [ "async-io" ];
|
|
}
|
|
{
|
|
name = "async-io";
|
|
packageId = "async-io";
|
|
optional = true;
|
|
target = { target, features }: (!("unknown" == target."os" or null));
|
|
}
|
|
{
|
|
name = "async-lock";
|
|
packageId = "async-lock";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "crossbeam-utils";
|
|
packageId = "crossbeam-utils";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
optional = true;
|
|
target = { target, features }: ("wasm32" == target."arch" or null);
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-io";
|
|
packageId = "futures-io";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "futures-lite";
|
|
packageId = "futures-lite";
|
|
optional = true;
|
|
target = { target, features }: (!("unknown" == target."os" or null));
|
|
}
|
|
{
|
|
name = "gloo-timers";
|
|
packageId = "gloo-timers";
|
|
optional = true;
|
|
target = { target, features }: ("wasm32" == target."arch" or null);
|
|
features = [ "futures" ];
|
|
}
|
|
{
|
|
name = "kv-log-macro";
|
|
packageId = "kv-log-macro";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
optional = true;
|
|
features = [ "kv_unstable" ];
|
|
}
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "pin-utils";
|
|
packageId = "pin-utils";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "slab";
|
|
packageId = "slab";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "wasm-bindgen-futures";
|
|
packageId = "wasm-bindgen-futures";
|
|
optional = true;
|
|
target = { target, features }: ("wasm32" == target."arch" or null);
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "futures-core/alloc" "pin-project-lite" ];
|
|
"async-attributes" = [ "dep:async-attributes" ];
|
|
"async-channel" = [ "dep:async-channel" ];
|
|
"async-global-executor" = [ "dep:async-global-executor" ];
|
|
"async-io" = [ "dep:async-io" ];
|
|
"async-lock" = [ "dep:async-lock" ];
|
|
"async-process" = [ "dep:async-process" ];
|
|
"attributes" = [ "async-attributes" ];
|
|
"crossbeam-utils" = [ "dep:crossbeam-utils" ];
|
|
"default" = [ "std" "async-global-executor" "async-io" "futures-lite" "kv-log-macro" "log" "pin-project-lite" "gloo-timers" ];
|
|
"docs" = [ "attributes" "unstable" "default" ];
|
|
"futures-channel" = [ "dep:futures-channel" ];
|
|
"futures-core" = [ "dep:futures-core" ];
|
|
"futures-io" = [ "dep:futures-io" ];
|
|
"futures-lite" = [ "dep:futures-lite" ];
|
|
"gloo-timers" = [ "dep:gloo-timers" ];
|
|
"kv-log-macro" = [ "dep:kv-log-macro" ];
|
|
"log" = [ "dep:log" ];
|
|
"memchr" = [ "dep:memchr" ];
|
|
"once_cell" = [ "dep:once_cell" ];
|
|
"pin-project-lite" = [ "dep:pin-project-lite" ];
|
|
"pin-utils" = [ "dep:pin-utils" ];
|
|
"slab" = [ "dep:slab" ];
|
|
"std" = [ "alloc" "crossbeam-utils" "futures-core/std" "futures-io" "memchr" "once_cell" "pin-utils" "slab" "wasm-bindgen-futures" "futures-channel" "async-channel" "async-lock" ];
|
|
"surf" = [ "dep:surf" ];
|
|
"tokio02" = [ "async-global-executor/tokio02" ];
|
|
"tokio03" = [ "async-global-executor/tokio03" ];
|
|
"tokio1" = [ "async-global-executor/tokio" ];
|
|
"unstable" = [ "std" "async-io" "async-process" ];
|
|
"wasm-bindgen-futures" = [ "dep:wasm-bindgen-futures" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "async-channel" "async-global-executor" "async-io" "async-lock" "crossbeam-utils" "default" "futures-channel" "futures-core" "futures-io" "futures-lite" "gloo-timers" "kv-log-macro" "log" "memchr" "once_cell" "pin-project-lite" "pin-utils" "slab" "std" "wasm-bindgen-futures" ];
|
|
};
|
|
"async-task" = rec {
|
|
crateName = "async-task";
|
|
version = "4.7.1";
|
|
edition = "2021";
|
|
sha256 = "1pp3avr4ri2nbh7s6y9ws0397nkx1zymmcr14sq761ljarh3axcb";
|
|
libName = "async_task";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"portable-atomic" = [ "dep:portable-atomic" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"async-trait" = rec {
|
|
crateName = "async-trait";
|
|
version = "0.1.88";
|
|
edition = "2021";
|
|
sha256 = "1dgxvz7g75cmz6vqqz0mri4xazc6a8xfj1db6r9fxz29lzyd6fg5";
|
|
procMacro = true;
|
|
libName = "async_trait";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
usesDefaultFeatures = false;
|
|
features = [ "clone-impls" "full" "parsing" "printing" "proc-macro" "visit-mut" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"atomic-waker" = rec {
|
|
crateName = "atomic-waker";
|
|
version = "1.1.2";
|
|
edition = "2018";
|
|
sha256 = "1h5av1lw56m0jf0fd3bchxq8a30xv0b4wv8s4zkp4s0i7mfvs18m";
|
|
libName = "atomic_waker";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
"Contributors to futures-rs"
|
|
];
|
|
features = {
|
|
"portable-atomic" = [ "dep:portable-atomic" ];
|
|
};
|
|
};
|
|
"autocfg" = rec {
|
|
crateName = "autocfg";
|
|
version = "1.4.0";
|
|
edition = "2015";
|
|
sha256 = "09lz3by90d2hphbq56znag9v87gfpd9gb8nr82hll8z6x2nhprdc";
|
|
authors = [
|
|
"Josh Stone <cuviper@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"axum" = rec {
|
|
crateName = "axum";
|
|
version = "0.8.3";
|
|
edition = "2021";
|
|
sha256 = "1222spmyw5s2dfggwn62474jkh72ld52abkz5wjbkyg1024i0ify";
|
|
dependencies = [
|
|
{
|
|
name = "axum-core";
|
|
packageId = "axum-core";
|
|
}
|
|
{
|
|
name = "axum-macros";
|
|
packageId = "axum-macros";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "form_urlencoded";
|
|
packageId = "form_urlencoded";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" ];
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http 1.3.1";
|
|
}
|
|
{
|
|
name = "http-body";
|
|
packageId = "http-body";
|
|
}
|
|
{
|
|
name = "http-body-util";
|
|
packageId = "http-body-util";
|
|
}
|
|
{
|
|
name = "hyper";
|
|
packageId = "hyper";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "hyper-util";
|
|
packageId = "hyper-util";
|
|
optional = true;
|
|
features = [ "tokio" "server" "service" ];
|
|
}
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
}
|
|
{
|
|
name = "matchit";
|
|
packageId = "matchit";
|
|
}
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
}
|
|
{
|
|
name = "mime";
|
|
packageId = "mime";
|
|
}
|
|
{
|
|
name = "percent-encoding";
|
|
packageId = "percent-encoding";
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "rustversion";
|
|
packageId = "rustversion";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
optional = true;
|
|
features = [ "raw_value" ];
|
|
}
|
|
{
|
|
name = "serde_path_to_error";
|
|
packageId = "serde_path_to_error";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "serde_urlencoded";
|
|
packageId = "serde_urlencoded";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "sync_wrapper";
|
|
packageId = "sync_wrapper";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
rename = "tokio";
|
|
optional = true;
|
|
features = [ "time" ];
|
|
}
|
|
{
|
|
name = "tower";
|
|
packageId = "tower";
|
|
usesDefaultFeatures = false;
|
|
features = [ "util" ];
|
|
}
|
|
{
|
|
name = "tower-layer";
|
|
packageId = "tower-layer";
|
|
}
|
|
{
|
|
name = "tower-service";
|
|
packageId = "tower-service";
|
|
}
|
|
{
|
|
name = "tracing";
|
|
packageId = "tracing";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "hyper";
|
|
packageId = "hyper";
|
|
features = [ "client" ];
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
features = [ "raw_value" ];
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
rename = "tokio";
|
|
features = [ "macros" "rt" "rt-multi-thread" "net" "test-util" ];
|
|
}
|
|
{
|
|
name = "tower";
|
|
packageId = "tower";
|
|
rename = "tower";
|
|
features = [ "util" "timeout" "limit" "load-shed" "steer" "filter" ];
|
|
}
|
|
{
|
|
name = "tracing";
|
|
packageId = "tracing";
|
|
}
|
|
];
|
|
features = {
|
|
"__private" = [ "tokio" "http1" "dep:reqwest" ];
|
|
"__private_docs" = [ "axum-core/__private_docs" "tower/full" "dep:tower-http" ];
|
|
"default" = [ "form" "http1" "json" "matched-path" "original-uri" "query" "tokio" "tower-log" "tracing" ];
|
|
"form" = [ "dep:form_urlencoded" "dep:serde_urlencoded" "dep:serde_path_to_error" ];
|
|
"http1" = [ "dep:hyper" "hyper?/http1" "hyper-util?/http1" ];
|
|
"http2" = [ "dep:hyper" "hyper?/http2" "hyper-util?/http2" ];
|
|
"json" = [ "dep:serde_json" "dep:serde_path_to_error" ];
|
|
"macros" = [ "dep:axum-macros" ];
|
|
"multipart" = [ "dep:multer" ];
|
|
"query" = [ "dep:form_urlencoded" "dep:serde_urlencoded" "dep:serde_path_to_error" ];
|
|
"tokio" = [ "dep:hyper-util" "dep:tokio" "tokio/net" "tokio/rt" "tower/make" "tokio/macros" ];
|
|
"tower-log" = [ "tower/log" ];
|
|
"tracing" = [ "dep:tracing" "axum-core/tracing" ];
|
|
"ws" = [ "dep:hyper" "tokio" "dep:tokio-tungstenite" "dep:sha1" "dep:base64" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "form" "http1" "json" "macros" "matched-path" "original-uri" "query" "tokio" "tower-log" "tracing" ];
|
|
};
|
|
"axum-core" = rec {
|
|
crateName = "axum-core";
|
|
version = "0.5.2";
|
|
edition = "2021";
|
|
sha256 = "19kwzksb4hwr3qfbrhjbqf83z6fjyng14wrkzck6fj1g8784qik8";
|
|
libName = "axum_core";
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http 1.3.1";
|
|
}
|
|
{
|
|
name = "http-body";
|
|
packageId = "http-body";
|
|
}
|
|
{
|
|
name = "http-body-util";
|
|
packageId = "http-body-util";
|
|
}
|
|
{
|
|
name = "mime";
|
|
packageId = "mime";
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "rustversion";
|
|
packageId = "rustversion";
|
|
}
|
|
{
|
|
name = "sync_wrapper";
|
|
packageId = "sync_wrapper";
|
|
}
|
|
{
|
|
name = "tower-layer";
|
|
packageId = "tower-layer";
|
|
}
|
|
{
|
|
name = "tower-service";
|
|
packageId = "tower-service";
|
|
}
|
|
{
|
|
name = "tracing";
|
|
packageId = "tracing";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"__private_docs" = [ "dep:tower-http" ];
|
|
"tracing" = [ "dep:tracing" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "tracing" ];
|
|
};
|
|
"axum-macros" = rec {
|
|
crateName = "axum-macros";
|
|
version = "0.5.0";
|
|
edition = "2021";
|
|
sha256 = "0p6011ld0izk22fmdxsps58cigilq2yhnmyqw4f8bslg09gdwkv0";
|
|
procMacro = true;
|
|
libName = "axum_macros";
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
features = [ "full" "parsing" "extra-traits" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
features = [ "full" "extra-traits" ];
|
|
}
|
|
];
|
|
features = {
|
|
"__private" = [ "syn/visit-mut" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"backtrace" = rec {
|
|
crateName = "backtrace";
|
|
version = "0.3.74";
|
|
edition = "2021";
|
|
sha256 = "06pfif7nwx66qf2zaanc2fcq7m64i91ki9imw9xd3bnz5hrwp0ld";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "addr2line";
|
|
packageId = "addr2line";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null))));
|
|
}
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null))));
|
|
}
|
|
{
|
|
name = "miniz_oxide";
|
|
packageId = "miniz_oxide";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null))));
|
|
}
|
|
{
|
|
name = "object";
|
|
packageId = "object";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null))));
|
|
features = [ "read_core" "elf" "macho" "pe" "xcoff" "unaligned" "archive" ];
|
|
}
|
|
{
|
|
name = "rustc-demangle";
|
|
packageId = "rustc-demangle";
|
|
}
|
|
{
|
|
name = "windows-targets";
|
|
packageId = "windows-targets";
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
];
|
|
features = {
|
|
"cpp_demangle" = [ "dep:cpp_demangle" ];
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serialize-serde" = [ "serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"bincode" = rec {
|
|
crateName = "bincode";
|
|
version = "1.3.3";
|
|
edition = "2015";
|
|
sha256 = "1bfw3mnwzx5g1465kiqllp5n4r10qrqy88kdlp3jfwnq2ya5xx5i";
|
|
authors = [
|
|
"Ty Overby <ty@pre-alpha.com>"
|
|
"Francesco Mazzoli <f@mazzo.li>"
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
"Zoey Riordan <zoey@dos.cafe>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
};
|
|
"bitflags" = rec {
|
|
crateName = "bitflags";
|
|
version = "2.9.0";
|
|
edition = "2021";
|
|
sha256 = "1gb5w7pxnmx8l2bjz1i6rkbwbm2167k294rhy6cl1y3vbc8i90jw";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"bytemuck" = [ "dep:bytemuck" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"blocking" = rec {
|
|
crateName = "blocking";
|
|
version = "1.6.1";
|
|
edition = "2021";
|
|
sha256 = "1si99l8zp7c4zq87y35ayjgc5c9b60jb8h0k14zfcs679z2l2gvh";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "async-channel";
|
|
packageId = "async-channel 2.3.1";
|
|
}
|
|
{
|
|
name = "async-task";
|
|
packageId = "async-task";
|
|
}
|
|
{
|
|
name = "futures-io";
|
|
packageId = "futures-io";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "futures-lite";
|
|
packageId = "futures-lite";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "piper";
|
|
packageId = "piper";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "futures-lite";
|
|
packageId = "futures-lite";
|
|
}
|
|
];
|
|
features = {
|
|
"tracing" = [ "dep:tracing" ];
|
|
};
|
|
};
|
|
"bumpalo" = rec {
|
|
crateName = "bumpalo";
|
|
version = "3.17.0";
|
|
edition = "2021";
|
|
sha256 = "1gxxsn2fsjmv03g8p3m749mczv2k4m8xspifs5l7bcx0vx3gna0n";
|
|
authors = [
|
|
"Nick Fitzgerald <fitzgen@gmail.com>"
|
|
];
|
|
features = {
|
|
"allocator-api2" = [ "dep:allocator-api2" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"bytes" = rec {
|
|
crateName = "bytes";
|
|
version = "1.10.1";
|
|
edition = "2018";
|
|
sha256 = "0smd4wi2yrhp5pmq571yiaqx84bjqlm1ixqhnvfwzzc6pqkn26yp";
|
|
authors = [
|
|
"Carl Lerche <me@carllerche.com>"
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"extra-platforms" = [ "dep:extra-platforms" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"cairo-rs" = rec {
|
|
crateName = "cairo-rs";
|
|
version = "0.18.5";
|
|
edition = "2021";
|
|
sha256 = "1qjfkcq3mrh3p01nnn71dy3kn99g21xx3j8xcdvzn8ll2pq6x8lc";
|
|
libName = "cairo";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags";
|
|
}
|
|
{
|
|
name = "cairo-sys-rs";
|
|
packageId = "cairo-sys-rs";
|
|
rename = "ffi";
|
|
}
|
|
{
|
|
name = "glib";
|
|
packageId = "glib";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "use_glib" ];
|
|
"freetype" = [ "ffi/freetype" "freetype-rs" ];
|
|
"freetype-rs" = [ "dep:freetype-rs" ];
|
|
"glib" = [ "dep:glib" ];
|
|
"pdf" = [ "ffi/pdf" ];
|
|
"png" = [ "ffi/png" ];
|
|
"ps" = [ "ffi/ps" ];
|
|
"script" = [ "ffi/script" ];
|
|
"svg" = [ "ffi/svg" ];
|
|
"use_glib" = [ "glib" "ffi/use_glib" ];
|
|
"v1_16" = [ "ffi/v1_16" ];
|
|
"v1_18" = [ "v1_16" "ffi/v1_18" ];
|
|
"win32-surface" = [ "ffi/win32-surface" ];
|
|
"xcb" = [ "ffi/xcb" ];
|
|
"xlib" = [ "ffi/xlib" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "glib" "use_glib" ];
|
|
};
|
|
"cairo-sys-rs" = rec {
|
|
crateName = "cairo-sys-rs";
|
|
version = "0.18.2";
|
|
edition = "2021";
|
|
sha256 = "0lfsxl7ylw3phbnwmz3k58j1gnqi6kc2hdc7g3bb7f4hwnl9yp38";
|
|
libName = "cairo_sys";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "glib-sys";
|
|
packageId = "glib-sys";
|
|
rename = "glib";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "system-deps";
|
|
packageId = "system-deps";
|
|
}
|
|
];
|
|
features = {
|
|
"glib" = [ "dep:glib" ];
|
|
"use_glib" = [ "glib" ];
|
|
"v1_18" = [ "v1_16" ];
|
|
"win32-surface" = [ "winapi" ];
|
|
"winapi" = [ "dep:winapi" ];
|
|
"x11" = [ "dep:x11" ];
|
|
"xlib" = [ "x11" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "glib" "use_glib" ];
|
|
};
|
|
"cc" = rec {
|
|
crateName = "cc";
|
|
version = "1.2.17";
|
|
edition = "2018";
|
|
sha256 = "0flf697b5p87ds39s3g076q75xlnfgiicpz8792sy7df833mgjqz";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "shlex";
|
|
packageId = "shlex";
|
|
}
|
|
];
|
|
features = {
|
|
"parallel" = [ "dep:libc" "dep:jobserver" ];
|
|
};
|
|
};
|
|
"cfg-expr" = rec {
|
|
crateName = "cfg-expr";
|
|
version = "0.15.8";
|
|
edition = "2021";
|
|
sha256 = "00lgf717pmf5qd2qsxxzs815v6baqg38d6m5i6wlh235p14asryh";
|
|
libName = "cfg_expr";
|
|
authors = [
|
|
"Embark <opensource@embark-studios.com>"
|
|
"Jake Shadle <jake.shadle@embark-studios.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "smallvec";
|
|
packageId = "smallvec";
|
|
}
|
|
{
|
|
name = "target-lexicon";
|
|
packageId = "target-lexicon";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"target-lexicon" = [ "dep:target-lexicon" ];
|
|
"targets" = [ "target-lexicon" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "target-lexicon" "targets" ];
|
|
};
|
|
"cfg-if" = rec {
|
|
crateName = "cfg-if";
|
|
version = "1.0.0";
|
|
edition = "2018";
|
|
sha256 = "1za0vb97n4brpzpv8lsbnzmq5r8f2b0cpqqr0sy8h5bn751xxwds";
|
|
libName = "cfg_if";
|
|
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.40";
|
|
edition = "2021";
|
|
sha256 = "0z334kqnvq5zx6xsq1k6zk8g9z14fgk2w3vkn4n13pvi3mhn8y8s";
|
|
dependencies = [
|
|
{
|
|
name = "android-tzdata";
|
|
packageId = "android-tzdata";
|
|
optional = true;
|
|
target = { target, features }: ("android" == target."os" or null);
|
|
}
|
|
{
|
|
name = "iana-time-zone";
|
|
packageId = "iana-time-zone";
|
|
optional = true;
|
|
target = { target, features }: (target."unix" or false);
|
|
features = [ "fallback" ];
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
optional = true;
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && (!(("emscripten" == target."os" or null) || ("wasi" == target."os" or null))));
|
|
}
|
|
{
|
|
name = "num-traits";
|
|
packageId = "num-traits";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
optional = true;
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && (!(("emscripten" == target."os" or null) || ("wasi" == target."os" or null))));
|
|
}
|
|
{
|
|
name = "windows-link";
|
|
packageId = "windows-link";
|
|
optional = true;
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
];
|
|
features = {
|
|
"android-tzdata" = [ "dep:android-tzdata" ];
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"clock" = [ "winapi" "iana-time-zone" "android-tzdata" "now" ];
|
|
"default" = [ "clock" "std" "oldtime" "wasmbind" ];
|
|
"iana-time-zone" = [ "dep:iana-time-zone" ];
|
|
"js-sys" = [ "dep:js-sys" ];
|
|
"now" = [ "std" ];
|
|
"pure-rust-locales" = [ "dep:pure-rust-locales" ];
|
|
"rkyv" = [ "dep:rkyv" "rkyv/size_32" ];
|
|
"rkyv-16" = [ "dep:rkyv" "rkyv?/size_16" ];
|
|
"rkyv-32" = [ "dep:rkyv" "rkyv?/size_32" ];
|
|
"rkyv-64" = [ "dep:rkyv" "rkyv?/size_64" ];
|
|
"rkyv-validation" = [ "rkyv?/validation" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"std" = [ "alloc" ];
|
|
"unstable-locales" = [ "pure-rust-locales" ];
|
|
"wasm-bindgen" = [ "dep:wasm-bindgen" ];
|
|
"wasmbind" = [ "wasm-bindgen" "js-sys" ];
|
|
"winapi" = [ "windows-link" ];
|
|
"windows-link" = [ "dep:windows-link" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "android-tzdata" "clock" "default" "iana-time-zone" "js-sys" "now" "oldtime" "serde" "std" "wasm-bindgen" "wasmbind" "winapi" "windows-link" ];
|
|
};
|
|
"chrono-tz" = rec {
|
|
crateName = "chrono-tz";
|
|
version = "0.8.6";
|
|
edition = "2021";
|
|
sha256 = "0vlksnmpb6rd4h55245agnfhphnpslwnq9al3aw3is43dd3f16nm";
|
|
libName = "chrono_tz";
|
|
dependencies = [
|
|
{
|
|
name = "chrono";
|
|
packageId = "chrono";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "phf";
|
|
packageId = "phf";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "chrono-tz-build";
|
|
packageId = "chrono-tz-build";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "chrono";
|
|
packageId = "chrono";
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" ];
|
|
}
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"case-insensitive" = [ "dep:uncased" "chrono-tz-build/case-insensitive" "phf/uncased" ];
|
|
"default" = [ "std" ];
|
|
"filter-by-regex" = [ "chrono-tz-build/filter-by-regex" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "serde" "std" ];
|
|
};
|
|
"chrono-tz-build" = rec {
|
|
crateName = "chrono-tz-build";
|
|
version = "0.2.1";
|
|
edition = "2021";
|
|
sha256 = "03rmzd69cn7fp0fgkjr5042b3g54s2l941afjm3001ls7kqkjgj3";
|
|
libName = "chrono_tz_build";
|
|
dependencies = [
|
|
{
|
|
name = "parse-zoneinfo";
|
|
packageId = "parse-zoneinfo";
|
|
}
|
|
{
|
|
name = "phf";
|
|
packageId = "phf";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "phf_codegen";
|
|
packageId = "phf_codegen";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"case-insensitive" = [ "uncased" "phf/uncased" ];
|
|
"filter-by-regex" = [ "regex" ];
|
|
"regex" = [ "dep:regex" ];
|
|
"uncased" = [ "dep:uncased" ];
|
|
};
|
|
};
|
|
"clap" = rec {
|
|
crateName = "clap";
|
|
version = "4.5.34";
|
|
edition = "2021";
|
|
crateBin = [];
|
|
sha256 = "1zz2jm6sjpq94wqh4afplmvnklwwp36yjgvnaala4399h5wqjn79";
|
|
dependencies = [
|
|
{
|
|
name = "clap_builder";
|
|
packageId = "clap_builder";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "clap_derive";
|
|
packageId = "clap_derive";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"cargo" = [ "clap_builder/cargo" ];
|
|
"color" = [ "clap_builder/color" ];
|
|
"debug" = [ "clap_builder/debug" "clap_derive?/debug" ];
|
|
"default" = [ "std" "color" "help" "usage" "error-context" "suggestions" ];
|
|
"deprecated" = [ "clap_builder/deprecated" "clap_derive?/deprecated" ];
|
|
"derive" = [ "dep:clap_derive" ];
|
|
"env" = [ "clap_builder/env" ];
|
|
"error-context" = [ "clap_builder/error-context" ];
|
|
"help" = [ "clap_builder/help" ];
|
|
"std" = [ "clap_builder/std" ];
|
|
"string" = [ "clap_builder/string" ];
|
|
"suggestions" = [ "clap_builder/suggestions" ];
|
|
"unicode" = [ "clap_builder/unicode" ];
|
|
"unstable-doc" = [ "clap_builder/unstable-doc" "derive" ];
|
|
"unstable-ext" = [ "clap_builder/unstable-ext" ];
|
|
"unstable-markdown" = [ "clap_derive/unstable-markdown" ];
|
|
"unstable-styles" = [ "clap_builder/unstable-styles" ];
|
|
"unstable-v5" = [ "clap_builder/unstable-v5" "clap_derive?/unstable-v5" "deprecated" ];
|
|
"usage" = [ "clap_builder/usage" ];
|
|
"wrap_help" = [ "clap_builder/wrap_help" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "color" "default" "derive" "error-context" "help" "std" "suggestions" "usage" ];
|
|
};
|
|
"clap_builder" = rec {
|
|
crateName = "clap_builder";
|
|
version = "4.5.34";
|
|
edition = "2021";
|
|
sha256 = "12941q4h6gn30ch72spw6fn12r2fkgh9mcav1cbb4gc4358g7c43";
|
|
dependencies = [
|
|
{
|
|
name = "anstream";
|
|
packageId = "anstream";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "anstyle";
|
|
packageId = "anstyle";
|
|
}
|
|
{
|
|
name = "clap_lex";
|
|
packageId = "clap_lex";
|
|
}
|
|
{
|
|
name = "strsim";
|
|
packageId = "strsim";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"color" = [ "dep:anstream" ];
|
|
"debug" = [ "dep:backtrace" ];
|
|
"default" = [ "std" "color" "help" "usage" "error-context" "suggestions" ];
|
|
"std" = [ "anstyle/std" ];
|
|
"suggestions" = [ "dep:strsim" "error-context" ];
|
|
"unicode" = [ "dep:unicode-width" "dep:unicase" ];
|
|
"unstable-doc" = [ "cargo" "wrap_help" "env" "unicode" "string" "unstable-ext" ];
|
|
"unstable-styles" = [ "color" ];
|
|
"unstable-v5" = [ "deprecated" ];
|
|
"wrap_help" = [ "help" "dep:terminal_size" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "color" "error-context" "help" "std" "suggestions" "usage" ];
|
|
};
|
|
"clap_derive" = rec {
|
|
crateName = "clap_derive";
|
|
version = "4.5.32";
|
|
edition = "2021";
|
|
sha256 = "1mqcag8qapb5yhygg2hi153kzmbf7w5hqp3nl3fvl5cn4yp6l5q9";
|
|
procMacro = true;
|
|
dependencies = [
|
|
{
|
|
name = "heck";
|
|
packageId = "heck 0.5.0";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
features = {
|
|
"raw-deprecated" = [ "deprecated" ];
|
|
"unstable-markdown" = [ "dep:pulldown-cmark" "dep:anstyle" ];
|
|
"unstable-v5" = [ "deprecated" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"clap_lex" = rec {
|
|
crateName = "clap_lex";
|
|
version = "0.7.4";
|
|
edition = "2021";
|
|
sha256 = "19nwfls5db269js5n822vkc8dw0wjq2h1wf0hgr06ld2g52d2spl";
|
|
|
|
};
|
|
"colorchoice" = rec {
|
|
crateName = "colorchoice";
|
|
version = "1.0.3";
|
|
edition = "2021";
|
|
sha256 = "1439m3r3jy3xqck8aa13q658visn71ki76qa93cy55wkmalwlqsv";
|
|
|
|
};
|
|
"concurrent-queue" = rec {
|
|
crateName = "concurrent-queue";
|
|
version = "2.5.0";
|
|
edition = "2021";
|
|
sha256 = "0wrr3mzq2ijdkxwndhf79k952cp4zkz35ray8hvsxl96xrx1k82c";
|
|
libName = "concurrent_queue";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
"Taiki Endo <te316e89@gmail.com>"
|
|
"John Nunley <dev@notgull.net>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "crossbeam-utils";
|
|
packageId = "crossbeam-utils";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"loom" = [ "dep:loom" ];
|
|
"portable-atomic" = [ "dep:portable-atomic" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"console_error_panic_hook" = rec {
|
|
crateName = "console_error_panic_hook";
|
|
version = "0.1.7";
|
|
edition = "2015";
|
|
sha256 = "1g5v8s0ndycc10mdn6igy914k645pgpcl8vjpz6nvxkhyirynsm0";
|
|
authors = [
|
|
"Nick Fitzgerald <fitzgen@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
];
|
|
|
|
};
|
|
"core-foundation-sys" = rec {
|
|
crateName = "core-foundation-sys";
|
|
version = "0.8.7";
|
|
edition = "2018";
|
|
sha256 = "12w8j73lazxmr1z0h98hf3z623kl8ms7g07jch7n4p8f9nwlhdkp";
|
|
libName = "core_foundation_sys";
|
|
authors = [
|
|
"The Servo Project Developers"
|
|
];
|
|
features = {
|
|
"default" = [ "link" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "link" ];
|
|
};
|
|
"crossbeam-utils" = rec {
|
|
crateName = "crossbeam-utils";
|
|
version = "0.8.21";
|
|
edition = "2021";
|
|
sha256 = "0a3aa2bmc8q35fb67432w16wvi54sfmb69rk9h5bhd18vw0c99fh";
|
|
libName = "crossbeam_utils";
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"loom" = [ "dep:loom" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"cyberpunk" = rec {
|
|
crateName = "cyberpunk";
|
|
version = "0.1.0";
|
|
edition = "2021";
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./cyberpunk; };
|
|
dependencies = [
|
|
{
|
|
name = "cairo-rs";
|
|
packageId = "cairo-rs";
|
|
}
|
|
{
|
|
name = "gio";
|
|
packageId = "gio";
|
|
}
|
|
{
|
|
name = "glib";
|
|
packageId = "glib";
|
|
}
|
|
{
|
|
name = "gtk4";
|
|
packageId = "gtk4";
|
|
rename = "gtk";
|
|
features = [ "v4_10" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"cyberpunk-splash" = rec {
|
|
crateName = "cyberpunk-splash";
|
|
version = "0.1.0";
|
|
edition = "2021";
|
|
crateBin = [
|
|
{
|
|
name = "cyberpunk-splash";
|
|
path = "src/main.rs";
|
|
requiredFeatures = [ ];
|
|
}
|
|
];
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./cyberpunk-splash; };
|
|
dependencies = [
|
|
{
|
|
name = "async-std";
|
|
packageId = "async-std";
|
|
}
|
|
{
|
|
name = "cairo-rs";
|
|
packageId = "cairo-rs";
|
|
}
|
|
{
|
|
name = "cyberpunk";
|
|
packageId = "cyberpunk";
|
|
}
|
|
{
|
|
name = "gio";
|
|
packageId = "gio";
|
|
}
|
|
{
|
|
name = "glib";
|
|
packageId = "glib";
|
|
}
|
|
{
|
|
name = "gtk4";
|
|
packageId = "gtk4";
|
|
rename = "gtk";
|
|
features = [ "v4_10" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"dimensioned 0.7.0" = rec {
|
|
crateName = "dimensioned";
|
|
version = "0.7.0";
|
|
edition = "2015";
|
|
sha256 = "09ky8s3higkf677lmyqg30hmj66gpg7hx907s6hfvbk2a9av05r5";
|
|
build = "src/build/mod.rs";
|
|
authors = [
|
|
"Paho Lurie-Gregg <paho@paholg.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "generic-array";
|
|
packageId = "generic-array 0.11.2";
|
|
}
|
|
{
|
|
name = "num-traits";
|
|
packageId = "num-traits";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "typenum";
|
|
packageId = "typenum";
|
|
}
|
|
];
|
|
features = {
|
|
"approx" = [ "dep:approx" ];
|
|
"clapme" = [ "dep:clapme" ];
|
|
"default" = [ "std" ];
|
|
"quickcheck" = [ "dep:quickcheck" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde_test" = [ "dep:serde_test" ];
|
|
"test" = [ "approx" "ci" "clapme" "quickcheck" "serde" "serde_test" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "serde" "std" ];
|
|
};
|
|
"dimensioned 0.8.0" = rec {
|
|
crateName = "dimensioned";
|
|
version = "0.8.0";
|
|
edition = "2021";
|
|
sha256 = "15s3j4ry943xqlac63bp81sgdk9s3yilysabzww35j9ibmnaic50";
|
|
build = "src/build/mod.rs";
|
|
authors = [
|
|
"Paho Lurie-Gregg <paho@paholg.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "generic-array";
|
|
packageId = "generic-array 0.14.7";
|
|
}
|
|
{
|
|
name = "num-traits";
|
|
packageId = "num-traits";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "typenum";
|
|
packageId = "typenum";
|
|
}
|
|
];
|
|
features = {
|
|
"approx" = [ "dep:approx" ];
|
|
"auto-args" = [ "dep:auto-args" ];
|
|
"clapme" = [ "dep:clapme" ];
|
|
"default" = [ "std" ];
|
|
"rand" = [ "dep:rand" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde_test" = [ "dep:serde_test" ];
|
|
"test" = [ "approx" "clapme" "serde" "serde_test" "rand" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "serde" "std" ];
|
|
};
|
|
"displaydoc" = rec {
|
|
crateName = "displaydoc";
|
|
version = "0.2.5";
|
|
edition = "2021";
|
|
sha256 = "1q0alair462j21iiqwrr21iabkfnb13d6x5w95lkdg21q2xrqdlp";
|
|
procMacro = true;
|
|
authors = [
|
|
"Jane Lusby <jlusby@yaah.dev>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
};
|
|
"emseries" = rec {
|
|
crateName = "emseries";
|
|
version = "0.6.0";
|
|
edition = "2021";
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./emseries; };
|
|
authors = [
|
|
"Savanni D'Gerinel <savanni@luminescent-dreams.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "chrono";
|
|
packageId = "chrono";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "chrono-tz";
|
|
packageId = "chrono-tz";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
}
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
{
|
|
name = "uuid";
|
|
packageId = "uuid 0.8.2";
|
|
features = [ "v4" "serde" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "dimensioned";
|
|
packageId = "dimensioned 0.7.0";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "tempfile";
|
|
packageId = "tempfile";
|
|
}
|
|
];
|
|
|
|
};
|
|
"equivalent" = rec {
|
|
crateName = "equivalent";
|
|
version = "1.0.2";
|
|
edition = "2015";
|
|
sha256 = "03swzqznragy8n0x31lqc78g2af054jwivp7lkrbrc0khz74lyl7";
|
|
|
|
};
|
|
"errno" = rec {
|
|
crateName = "errno";
|
|
version = "0.3.10";
|
|
edition = "2018";
|
|
sha256 = "0pgblicz1kjz9wa9m0sghkhh2zw1fhq1mxzj7ndjm746kg5m5n1k";
|
|
authors = [
|
|
"Chris Wong <lambda.fairy@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("hermit" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("wasi" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys 0.59.0";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Foundation" "Win32_System_Diagnostics_Debug" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "libc/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"event-listener 2.5.3" = rec {
|
|
crateName = "event-listener";
|
|
version = "2.5.3";
|
|
edition = "2018";
|
|
sha256 = "1q4w3pndc518crld6zsqvvpy9lkzwahp2zgza9kbzmmqh9gif1h2";
|
|
libName = "event_listener";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"event-listener 5.4.0" = rec {
|
|
crateName = "event-listener";
|
|
version = "5.4.0";
|
|
edition = "2021";
|
|
sha256 = "1bii2gn3vaa33s0gr2zph7cagiq0ppcfxcxabs24ri9z9kgar4il";
|
|
libName = "event_listener";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
"John Nunley <dev@notgull.net>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "concurrent-queue";
|
|
packageId = "concurrent-queue";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "parking";
|
|
packageId = "parking";
|
|
optional = true;
|
|
target = { target, features }: (!(builtins.elem "wasm" target."family"));
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
];
|
|
features = {
|
|
"critical-section" = [ "dep:critical-section" ];
|
|
"default" = [ "std" ];
|
|
"loom" = [ "concurrent-queue/loom" "parking?/loom" "dep:loom" ];
|
|
"parking" = [ "dep:parking" ];
|
|
"portable-atomic" = [ "portable-atomic-util" "portable_atomic_crate" "concurrent-queue/portable-atomic" ];
|
|
"portable-atomic-util" = [ "dep:portable-atomic-util" ];
|
|
"portable_atomic_crate" = [ "dep:portable_atomic_crate" ];
|
|
"std" = [ "concurrent-queue/std" "parking" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "parking" "std" ];
|
|
};
|
|
"event-listener-strategy" = rec {
|
|
crateName = "event-listener-strategy";
|
|
version = "0.5.4";
|
|
edition = "2021";
|
|
sha256 = "14rv18av8s7n8yixg38bxp5vg2qs394rl1w052by5npzmbgz7scb";
|
|
libName = "event_listener_strategy";
|
|
authors = [
|
|
"John Nunley <dev@notgull.net>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "event-listener";
|
|
packageId = "event-listener 5.4.0";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"loom" = [ "event-listener/loom" ];
|
|
"portable-atomic" = [ "event-listener/portable-atomic" ];
|
|
"std" = [ "event-listener/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"fastrand" = rec {
|
|
crateName = "fastrand";
|
|
version = "2.3.0";
|
|
edition = "2018";
|
|
sha256 = "1ghiahsw1jd68df895cy5h3gzwk30hndidn3b682zmshpgmrx41p";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"getrandom" = [ "dep:getrandom" ];
|
|
"js" = [ "std" "getrandom" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"field-offset" = rec {
|
|
crateName = "field-offset";
|
|
version = "0.3.6";
|
|
edition = "2015";
|
|
sha256 = "0zq5sssaa2ckmcmxxbly8qgz3sxpb8g1lwv90sdh1z74qif2gqiq";
|
|
libName = "field_offset";
|
|
authors = [
|
|
"Diggory Blake <diggsey@googlemail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "memoffset";
|
|
packageId = "memoffset";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "rustc_version";
|
|
packageId = "rustc_version";
|
|
}
|
|
];
|
|
|
|
};
|
|
"fitnesstrax" = rec {
|
|
crateName = "fitnesstrax";
|
|
version = "0.6.0";
|
|
edition = "2021";
|
|
crateBin = [
|
|
{
|
|
name = "fitnesstrax";
|
|
path = "src/main.rs";
|
|
requiredFeatures = [ ];
|
|
}
|
|
];
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./fitnesstrax/app; };
|
|
dependencies = [
|
|
{
|
|
name = "async-channel";
|
|
packageId = "async-channel 2.3.1";
|
|
}
|
|
{
|
|
name = "async-trait";
|
|
packageId = "async-trait";
|
|
}
|
|
{
|
|
name = "chrono";
|
|
packageId = "chrono";
|
|
}
|
|
{
|
|
name = "chrono-tz";
|
|
packageId = "chrono-tz";
|
|
}
|
|
{
|
|
name = "dimensioned";
|
|
packageId = "dimensioned 0.8.0";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "emseries";
|
|
packageId = "emseries";
|
|
}
|
|
{
|
|
name = "ft-core";
|
|
packageId = "ft-core";
|
|
}
|
|
{
|
|
name = "gdk4";
|
|
packageId = "gdk4";
|
|
rename = "gdk";
|
|
}
|
|
{
|
|
name = "gio";
|
|
packageId = "gio";
|
|
}
|
|
{
|
|
name = "glib";
|
|
packageId = "glib";
|
|
}
|
|
{
|
|
name = "gtk4";
|
|
packageId = "gtk4";
|
|
rename = "gtk";
|
|
features = [ "v4_10" ];
|
|
}
|
|
{
|
|
name = "libadwaita";
|
|
packageId = "libadwaita";
|
|
rename = "adw";
|
|
features = [ "v1_4" ];
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 2.0.12";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "full" "rt" ];
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "glib-build-tools";
|
|
packageId = "glib-build-tools";
|
|
}
|
|
];
|
|
|
|
};
|
|
"fnv" = rec {
|
|
crateName = "fnv";
|
|
version = "1.0.7";
|
|
edition = "2015";
|
|
sha256 = "1hc2mcqha06aibcaza94vbi81j6pr9a1bbxrxjfhc91zin8yr7iz";
|
|
libPath = "lib.rs";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"form_urlencoded" = rec {
|
|
crateName = "form_urlencoded";
|
|
version = "1.2.1";
|
|
edition = "2018";
|
|
sha256 = "0milh8x7nl4f450s3ddhg57a3flcv6yq8hlkyk6fyr3mcb128dp1";
|
|
authors = [
|
|
"The rust-url developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "percent-encoding";
|
|
packageId = "percent-encoding";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "percent-encoding/alloc" ];
|
|
"default" = [ "std" ];
|
|
"std" = [ "alloc" "percent-encoding/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"ft-core" = rec {
|
|
crateName = "ft-core";
|
|
version = "0.1.0";
|
|
edition = "2021";
|
|
crateBin = [
|
|
{
|
|
name = "legacy-importer";
|
|
path = "src/bin/legacy-importer.rs";
|
|
requiredFeatures = [ ];
|
|
}
|
|
];
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./fitnesstrax/core; };
|
|
libName = "ft_core";
|
|
dependencies = [
|
|
{
|
|
name = "chrono";
|
|
packageId = "chrono";
|
|
}
|
|
{
|
|
name = "chrono-tz";
|
|
packageId = "chrono-tz";
|
|
}
|
|
{
|
|
name = "dimensioned";
|
|
packageId = "dimensioned 0.8.0";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "emseries";
|
|
packageId = "emseries";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" "serde_derive" ];
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "tempfile";
|
|
packageId = "tempfile";
|
|
}
|
|
];
|
|
|
|
};
|
|
"futures" = rec {
|
|
crateName = "futures";
|
|
version = "0.3.31";
|
|
edition = "2018";
|
|
sha256 = "0xh8ddbkm9jy8kc5gbvjp9a4b6rqqxvc8471yb2qaz5wm2qhgg35";
|
|
dependencies = [
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
usesDefaultFeatures = false;
|
|
features = [ "sink" ];
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-io";
|
|
packageId = "futures-io";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-sink";
|
|
packageId = "futures-sink";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-task";
|
|
packageId = "futures-task";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
features = [ "sink" ];
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "futures-core/alloc" "futures-task/alloc" "futures-sink/alloc" "futures-channel/alloc" "futures-util/alloc" ];
|
|
"async-await" = [ "futures-util/async-await" "futures-util/async-await-macro" ];
|
|
"bilock" = [ "futures-util/bilock" ];
|
|
"compat" = [ "std" "futures-util/compat" ];
|
|
"default" = [ "std" "async-await" "executor" ];
|
|
"executor" = [ "std" "futures-executor/std" ];
|
|
"futures-executor" = [ "dep:futures-executor" ];
|
|
"io-compat" = [ "compat" "futures-util/io-compat" ];
|
|
"std" = [ "alloc" "futures-core/std" "futures-task/std" "futures-io/std" "futures-sink/std" "futures-util/std" "futures-util/io" "futures-util/channel" ];
|
|
"thread-pool" = [ "executor" "futures-executor/thread-pool" ];
|
|
"unstable" = [ "futures-core/unstable" "futures-task/unstable" "futures-channel/unstable" "futures-io/unstable" "futures-util/unstable" ];
|
|
"write-all-vectored" = [ "futures-util/write-all-vectored" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "async-await" "std" ];
|
|
};
|
|
"futures-channel" = rec {
|
|
crateName = "futures-channel";
|
|
version = "0.3.31";
|
|
edition = "2018";
|
|
sha256 = "040vpqpqlbk099razq8lyn74m0f161zd0rp36hciqrwcg2zibzrd";
|
|
libName = "futures_channel";
|
|
dependencies = [
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-sink";
|
|
packageId = "futures-sink";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "futures-core/alloc" ];
|
|
"default" = [ "std" ];
|
|
"futures-sink" = [ "dep:futures-sink" ];
|
|
"sink" = [ "futures-sink" ];
|
|
"std" = [ "alloc" "futures-core/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "futures-sink" "sink" "std" ];
|
|
};
|
|
"futures-core" = rec {
|
|
crateName = "futures-core";
|
|
version = "0.3.31";
|
|
edition = "2018";
|
|
sha256 = "0gk6yrxgi5ihfanm2y431jadrll00n5ifhnpx090c2f2q1cr1wh5";
|
|
libName = "futures_core";
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"portable-atomic" = [ "dep:portable-atomic" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"futures-executor" = rec {
|
|
crateName = "futures-executor";
|
|
version = "0.3.31";
|
|
edition = "2018";
|
|
sha256 = "17vcci6mdfzx4gbk0wx64chr2f13wwwpvyf3xd5fb1gmjzcx2a0y";
|
|
libName = "futures_executor";
|
|
dependencies = [
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-task";
|
|
packageId = "futures-task";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"num_cpus" = [ "dep:num_cpus" ];
|
|
"std" = [ "futures-core/std" "futures-task/std" "futures-util/std" ];
|
|
"thread-pool" = [ "std" "num_cpus" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"futures-io" = rec {
|
|
crateName = "futures-io";
|
|
version = "0.3.31";
|
|
edition = "2018";
|
|
sha256 = "1ikmw1yfbgvsychmsihdkwa8a1knank2d9a8dk01mbjar9w1np4y";
|
|
libName = "futures_io";
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"futures-lite" = rec {
|
|
crateName = "futures-lite";
|
|
version = "2.6.0";
|
|
edition = "2021";
|
|
sha256 = "0cmmgszlmkwsac9pyw5rfjakmshgx4wmzmlyn6mmjs0jav4axvgm";
|
|
libName = "futures_lite";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
"Contributors to futures-rs"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "fastrand";
|
|
packageId = "fastrand";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-io";
|
|
packageId = "futures-io";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "parking";
|
|
packageId = "parking";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "race" "std" ];
|
|
"fastrand" = [ "dep:fastrand" ];
|
|
"futures-io" = [ "dep:futures-io" ];
|
|
"memchr" = [ "dep:memchr" ];
|
|
"parking" = [ "dep:parking" ];
|
|
"race" = [ "fastrand" ];
|
|
"std" = [ "alloc" "fastrand/std" "futures-io" "parking" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "fastrand" "futures-io" "parking" "race" "std" ];
|
|
};
|
|
"futures-macro" = rec {
|
|
crateName = "futures-macro";
|
|
version = "0.3.31";
|
|
edition = "2018";
|
|
sha256 = "0l1n7kqzwwmgiznn0ywdc5i24z72zvh9q1dwps54mimppi7f6bhn";
|
|
procMacro = true;
|
|
libName = "futures_macro";
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"futures-sink" = rec {
|
|
crateName = "futures-sink";
|
|
version = "0.3.31";
|
|
edition = "2018";
|
|
sha256 = "1xyly6naq6aqm52d5rh236snm08kw8zadydwqz8bip70s6vzlxg5";
|
|
libName = "futures_sink";
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"futures-task" = rec {
|
|
crateName = "futures-task";
|
|
version = "0.3.31";
|
|
edition = "2018";
|
|
sha256 = "124rv4n90f5xwfsm9qw6y99755y021cmi5dhzh253s920z77s3zr";
|
|
libName = "futures_task";
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "std" ];
|
|
};
|
|
"futures-util" = rec {
|
|
crateName = "futures-util";
|
|
version = "0.3.31";
|
|
edition = "2018";
|
|
sha256 = "10aa1ar8bgkgbr4wzxlidkqkcxf77gffyj8j7768h831pcaq784z";
|
|
libName = "futures_util";
|
|
dependencies = [
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-io";
|
|
packageId = "futures-io";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "futures-macro";
|
|
packageId = "futures-macro";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-sink";
|
|
packageId = "futures-sink";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-task";
|
|
packageId = "futures-task";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "pin-utils";
|
|
packageId = "pin-utils";
|
|
}
|
|
{
|
|
name = "slab";
|
|
packageId = "slab";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "futures-core/alloc" "futures-task/alloc" ];
|
|
"async-await-macro" = [ "async-await" "futures-macro" ];
|
|
"channel" = [ "std" "futures-channel" ];
|
|
"compat" = [ "std" "futures_01" ];
|
|
"default" = [ "std" "async-await" "async-await-macro" ];
|
|
"futures-channel" = [ "dep:futures-channel" ];
|
|
"futures-io" = [ "dep:futures-io" ];
|
|
"futures-macro" = [ "dep:futures-macro" ];
|
|
"futures-sink" = [ "dep:futures-sink" ];
|
|
"futures_01" = [ "dep:futures_01" ];
|
|
"io" = [ "std" "futures-io" "memchr" ];
|
|
"io-compat" = [ "io" "compat" "tokio-io" ];
|
|
"memchr" = [ "dep:memchr" ];
|
|
"portable-atomic" = [ "futures-core/portable-atomic" ];
|
|
"sink" = [ "futures-sink" ];
|
|
"slab" = [ "dep:slab" ];
|
|
"std" = [ "alloc" "futures-core/std" "futures-task/std" "slab" ];
|
|
"tokio-io" = [ "dep:tokio-io" ];
|
|
"unstable" = [ "futures-core/unstable" "futures-task/unstable" ];
|
|
"write-all-vectored" = [ "io" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "async-await" "async-await-macro" "channel" "default" "futures-channel" "futures-io" "futures-macro" "futures-sink" "io" "memchr" "sink" "slab" "std" ];
|
|
};
|
|
"gdk-pixbuf" = rec {
|
|
crateName = "gdk-pixbuf";
|
|
version = "0.18.5";
|
|
edition = "2021";
|
|
sha256 = "1v7svvl0g7zybndmis5inaqqgi1mvcc6s1n8rkb31f5zn3qzbqah";
|
|
libName = "gdk_pixbuf";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "gdk-pixbuf-sys";
|
|
packageId = "gdk-pixbuf-sys";
|
|
rename = "ffi";
|
|
}
|
|
{
|
|
name = "gio";
|
|
packageId = "gio";
|
|
}
|
|
{
|
|
name = "glib";
|
|
packageId = "glib";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
];
|
|
features = {
|
|
"v2_40" = [ "ffi/v2_40" ];
|
|
"v2_42" = [ "v2_40" "ffi/v2_42" ];
|
|
};
|
|
};
|
|
"gdk-pixbuf-sys" = rec {
|
|
crateName = "gdk-pixbuf-sys";
|
|
version = "0.18.0";
|
|
edition = "2021";
|
|
sha256 = "1xya543c4ffd2n7aiwwrdxsyc9casdbasafi6ixcknafckm3k61z";
|
|
libName = "gdk_pixbuf_sys";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "gio-sys";
|
|
packageId = "gio-sys";
|
|
rename = "gio";
|
|
}
|
|
{
|
|
name = "glib-sys";
|
|
packageId = "glib-sys";
|
|
rename = "glib";
|
|
}
|
|
{
|
|
name = "gobject-sys";
|
|
packageId = "gobject-sys";
|
|
rename = "gobject";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "system-deps";
|
|
packageId = "system-deps";
|
|
}
|
|
];
|
|
features = {
|
|
"v2_42" = [ "v2_40" ];
|
|
};
|
|
};
|
|
"gdk4" = rec {
|
|
crateName = "gdk4";
|
|
version = "0.7.3";
|
|
edition = "2021";
|
|
sha256 = "1xiacc63p73apr033gjrb9dsk0y4yxnsljwfxbwfry41snd03nvy";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cairo-rs";
|
|
packageId = "cairo-rs";
|
|
}
|
|
{
|
|
name = "gdk-pixbuf";
|
|
packageId = "gdk-pixbuf";
|
|
}
|
|
{
|
|
name = "gdk4-sys";
|
|
packageId = "gdk4-sys";
|
|
rename = "ffi";
|
|
}
|
|
{
|
|
name = "gio";
|
|
packageId = "gio";
|
|
features = [ "v2_66" ];
|
|
}
|
|
{
|
|
name = "glib";
|
|
packageId = "glib";
|
|
features = [ "v2_66" ];
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "pango";
|
|
packageId = "pango";
|
|
features = [ "v1_46" ];
|
|
}
|
|
];
|
|
features = {
|
|
"gl" = [ "dep:gl" ];
|
|
"v4_10" = [ "ffi/v4_10" "v4_8" ];
|
|
"v4_12" = [ "ffi/v4_12" "v4_10" ];
|
|
"v4_2" = [ "ffi/v4_2" ];
|
|
"v4_4" = [ "ffi/v4_4" "v4_2" ];
|
|
"v4_6" = [ "ffi/v4_6" "v4_4" ];
|
|
"v4_8" = [ "ffi/v4_8" "v4_6" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v4_10" "v4_2" "v4_4" "v4_6" "v4_8" ];
|
|
};
|
|
"gdk4-sys" = rec {
|
|
crateName = "gdk4-sys";
|
|
version = "0.7.2";
|
|
edition = "2021";
|
|
sha256 = "1w7yvir565sjrrw828lss07749hfpfsr19jdjzwivkx36brl7ayv";
|
|
libName = "gdk4_sys";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cairo-sys-rs";
|
|
packageId = "cairo-sys-rs";
|
|
rename = "cairo";
|
|
}
|
|
{
|
|
name = "gdk-pixbuf-sys";
|
|
packageId = "gdk-pixbuf-sys";
|
|
rename = "gdk_pixbuf";
|
|
}
|
|
{
|
|
name = "gio-sys";
|
|
packageId = "gio-sys";
|
|
rename = "gio";
|
|
}
|
|
{
|
|
name = "glib-sys";
|
|
packageId = "glib-sys";
|
|
rename = "glib";
|
|
}
|
|
{
|
|
name = "gobject-sys";
|
|
packageId = "gobject-sys";
|
|
rename = "gobject";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "pango-sys";
|
|
packageId = "pango-sys";
|
|
rename = "pango";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "pkg-config";
|
|
packageId = "pkg-config";
|
|
}
|
|
{
|
|
name = "system-deps";
|
|
packageId = "system-deps";
|
|
}
|
|
];
|
|
features = {
|
|
"v4_10" = [ "v4_8" ];
|
|
"v4_12" = [ "v4_10" ];
|
|
"v4_4" = [ "v4_2" ];
|
|
"v4_6" = [ "v4_4" ];
|
|
"v4_8" = [ "v4_6" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v4_10" "v4_2" "v4_4" "v4_6" "v4_8" ];
|
|
};
|
|
"generic-array 0.11.2" = rec {
|
|
crateName = "generic-array";
|
|
version = "0.11.2";
|
|
edition = "2015";
|
|
sha256 = "0a7w8w0rg47nmcinnfzv443lcyb8mplwc251p1jyr5xj2yh6wzv6";
|
|
libName = "generic_array";
|
|
authors = [
|
|
"Bartłomiej Kamiński <fizyk20@gmail.com>"
|
|
"Aaron Trent <novacrazy@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "typenum";
|
|
packageId = "typenum";
|
|
}
|
|
];
|
|
features = {
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
};
|
|
"generic-array 0.14.7" = rec {
|
|
crateName = "generic-array";
|
|
version = "0.14.7";
|
|
edition = "2015";
|
|
sha256 = "16lyyrzrljfq424c3n8kfwkqihlimmsg5nhshbbp48np3yjrqr45";
|
|
libName = "generic_array";
|
|
authors = [
|
|
"Bartłomiej Kamiński <fizyk20@gmail.com>"
|
|
"Aaron Trent <novacrazy@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "typenum";
|
|
packageId = "typenum";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "version_check";
|
|
packageId = "version_check";
|
|
}
|
|
];
|
|
features = {
|
|
"serde" = [ "dep:serde" ];
|
|
"zeroize" = [ "dep:zeroize" ];
|
|
};
|
|
};
|
|
"getrandom 0.2.15" = rec {
|
|
crateName = "getrandom";
|
|
version = "0.2.15";
|
|
edition = "2018";
|
|
sha256 = "1mzlnrb3dgyd1fb84gvw10pyr8wdqdl4ry4sr64i1s8an66pqmn4";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
optional = true;
|
|
target = { target, features }: ((("wasm32" == target."arch" or null) || ("wasm64" == target."arch" or null)) && ("unknown" == target."os" or null));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "wasi";
|
|
packageId = "wasi 0.11.0+wasi-snapshot-preview1";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("wasi" == target."os" or null);
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((("wasm32" == target."arch" or null) || ("wasm64" == target."arch" or null)) && ("unknown" == target."os" or null));
|
|
}
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"js" = [ "wasm-bindgen" "js-sys" ];
|
|
"js-sys" = [ "dep:js-sys" ];
|
|
"rustc-dep-of-std" = [ "compiler_builtins" "core" "libc/rustc-dep-of-std" "wasi/rustc-dep-of-std" ];
|
|
"wasm-bindgen" = [ "dep:wasm-bindgen" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "js" "js-sys" "wasm-bindgen" ];
|
|
};
|
|
"getrandom 0.3.2" = rec {
|
|
crateName = "getrandom";
|
|
version = "0.3.2";
|
|
edition = "2021";
|
|
sha256 = "1w2mlixa1989v7czr68iji7h67yra2pbg3s480wsqjza1r2sizkk";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((("linux" == target."os" or null) || ("android" == target."os" or null)) && (!((("linux" == target."os" or null) && ("" == target."env" or null)) || ("custom" == target."getrandom_backend" or null) || ("linux_raw" == target."getrandom_backend" or null) || ("rdrand" == target."getrandom_backend" or null) || ("rndr" == target."getrandom_backend" or null))));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("dragonfly" == target."os" or null) || ("freebsd" == target."os" or null) || ("hurd" == target."os" or null) || ("illumos" == target."os" or null) || ("cygwin" == target."os" or null) || (("horizon" == target."os" or null) && ("arm" == target."arch" or null)));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("haiku" == target."os" or null) || ("redox" == target."os" or null) || ("nto" == target."os" or null) || ("aix" == target."os" or null));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("ios" == target."os" or null) || ("visionos" == target."os" or null) || ("watchos" == target."os" or null) || ("tvos" == target."os" or null));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("macos" == target."os" or null) || ("openbsd" == target."os" or null) || ("vita" == target."os" or null) || ("emscripten" == target."os" or null));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("netbsd" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("solaris" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("vxworks" == target."os" or null);
|
|
}
|
|
{
|
|
name = "r-efi";
|
|
packageId = "r-efi";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("uefi" == target."os" or null) && ("efi_rng" == target."getrandom_backend" or null));
|
|
}
|
|
{
|
|
name = "wasi";
|
|
packageId = "wasi 0.14.2+wasi-0.2.4";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p2" == target."env" or null));
|
|
}
|
|
];
|
|
features = {
|
|
"rustc-dep-of-std" = [ "dep:compiler_builtins" "dep:core" ];
|
|
"wasm_js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
|
|
};
|
|
};
|
|
"gimli" = rec {
|
|
crateName = "gimli";
|
|
version = "0.31.1";
|
|
edition = "2018";
|
|
sha256 = "0gvqc0ramx8szv76jhfd4dms0zyamvlg4whhiz11j34hh3dqxqh7";
|
|
features = {
|
|
"default" = [ "read-all" "write" ];
|
|
"endian-reader" = [ "read" "dep:stable_deref_trait" ];
|
|
"fallible-iterator" = [ "dep:fallible-iterator" ];
|
|
"read" = [ "read-core" ];
|
|
"read-all" = [ "read" "std" "fallible-iterator" "endian-reader" ];
|
|
"rustc-dep-of-std" = [ "dep:core" "dep:alloc" "dep:compiler_builtins" ];
|
|
"std" = [ "fallible-iterator?/std" "stable_deref_trait?/std" ];
|
|
"write" = [ "dep:indexmap" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "read" "read-core" ];
|
|
};
|
|
"gio" = rec {
|
|
crateName = "gio";
|
|
version = "0.18.4";
|
|
edition = "2021";
|
|
sha256 = "0wsc6mnx057s4ailacg99dwgna38dbqli5x7a6y9rdw75x9qzz6l";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-io";
|
|
packageId = "futures-io";
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "gio-sys";
|
|
packageId = "gio-sys";
|
|
rename = "ffi";
|
|
}
|
|
{
|
|
name = "glib";
|
|
packageId = "glib";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "smallvec";
|
|
packageId = "smallvec";
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
features = [ "io" ];
|
|
}
|
|
];
|
|
features = {
|
|
"v2_58" = [ "ffi/v2_58" "glib/v2_58" ];
|
|
"v2_60" = [ "v2_58" "ffi/v2_60" "glib/v2_60" ];
|
|
"v2_62" = [ "v2_60" "ffi/v2_62" "glib/v2_62" ];
|
|
"v2_64" = [ "v2_62" "ffi/v2_64" "glib/v2_64" ];
|
|
"v2_66" = [ "v2_64" "ffi/v2_66" "glib/v2_66" ];
|
|
"v2_68" = [ "v2_66" "ffi/v2_68" "glib/v2_68" ];
|
|
"v2_70" = [ "v2_68" "ffi/v2_70" "glib/v2_70" ];
|
|
"v2_72" = [ "v2_70" "ffi/v2_72" "glib/v2_72" ];
|
|
"v2_74" = [ "v2_72" "ffi/v2_74" "glib/v2_74" ];
|
|
"v2_76" = [ "v2_74" "ffi/v2_76" "glib/v2_76" ];
|
|
"v2_78" = [ "v2_76" "ffi/v2_78" "glib/v2_78" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v2_58" "v2_60" "v2_62" "v2_64" "v2_66" ];
|
|
};
|
|
"gio-sys" = rec {
|
|
crateName = "gio-sys";
|
|
version = "0.18.1";
|
|
edition = "2021";
|
|
sha256 = "1lip8z35iy9d184x2qwjxlbxi64q9cpayy7v1p5y9xdsa3w6smip";
|
|
libName = "gio_sys";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "glib-sys";
|
|
packageId = "glib-sys";
|
|
rename = "glib";
|
|
}
|
|
{
|
|
name = "gobject-sys";
|
|
packageId = "gobject-sys";
|
|
rename = "gobject";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "winapi";
|
|
packageId = "winapi";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "ws2def" "winsock2" ];
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "system-deps";
|
|
packageId = "system-deps";
|
|
}
|
|
];
|
|
features = {
|
|
"v2_60" = [ "v2_58" ];
|
|
"v2_62" = [ "v2_60" ];
|
|
"v2_64" = [ "v2_62" ];
|
|
"v2_66" = [ "v2_64" ];
|
|
"v2_68" = [ "v2_66" ];
|
|
"v2_70" = [ "v2_68" ];
|
|
"v2_72" = [ "v2_70" ];
|
|
"v2_74" = [ "v2_72" ];
|
|
"v2_76" = [ "v2_74" ];
|
|
"v2_78" = [ "v2_76" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v2_58" "v2_60" "v2_62" "v2_64" "v2_66" ];
|
|
};
|
|
"glib" = rec {
|
|
crateName = "glib";
|
|
version = "0.18.5";
|
|
edition = "2021";
|
|
sha256 = "1r8fw0627nmn19bgk3xpmcfngx3wkn7mcpq5a8ma3risx3valg93";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags";
|
|
}
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-executor";
|
|
packageId = "futures-executor";
|
|
}
|
|
{
|
|
name = "futures-task";
|
|
packageId = "futures-task";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
}
|
|
{
|
|
name = "gio-sys";
|
|
packageId = "gio-sys";
|
|
rename = "gio_ffi";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "glib-macros";
|
|
packageId = "glib-macros";
|
|
}
|
|
{
|
|
name = "glib-sys";
|
|
packageId = "glib-sys";
|
|
rename = "ffi";
|
|
}
|
|
{
|
|
name = "gobject-sys";
|
|
packageId = "gobject-sys";
|
|
rename = "gobject_ffi";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
{
|
|
name = "smallvec";
|
|
packageId = "smallvec";
|
|
features = [ "union" "const_generics" "const_new" ];
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "gio" ];
|
|
"gio" = [ "gio_ffi" ];
|
|
"gio_ffi" = [ "dep:gio_ffi" ];
|
|
"log" = [ "rs-log" ];
|
|
"log_macros" = [ "log" ];
|
|
"rs-log" = [ "dep:rs-log" ];
|
|
"v2_58" = [ "ffi/v2_58" "gobject_ffi/v2_58" ];
|
|
"v2_60" = [ "v2_58" "ffi/v2_60" ];
|
|
"v2_62" = [ "v2_60" "ffi/v2_62" "gobject_ffi/v2_62" ];
|
|
"v2_64" = [ "v2_62" "ffi/v2_64" ];
|
|
"v2_66" = [ "v2_64" "ffi/v2_66" "gobject_ffi/v2_66" ];
|
|
"v2_68" = [ "v2_66" "ffi/v2_68" "gobject_ffi/v2_68" ];
|
|
"v2_70" = [ "v2_68" "ffi/v2_70" "gobject_ffi/v2_70" ];
|
|
"v2_72" = [ "v2_70" "ffi/v2_72" "gobject_ffi/v2_72" ];
|
|
"v2_74" = [ "v2_72" "ffi/v2_74" "gobject_ffi/v2_74" ];
|
|
"v2_76" = [ "v2_74" "ffi/v2_76" "gobject_ffi/v2_76" ];
|
|
"v2_78" = [ "v2_76" "ffi/v2_78" "gobject_ffi/v2_78" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "gio" "gio_ffi" "v2_58" "v2_60" "v2_62" "v2_64" "v2_66" ];
|
|
};
|
|
"glib-build-tools" = rec {
|
|
crateName = "glib-build-tools";
|
|
version = "0.18.0";
|
|
edition = "2021";
|
|
sha256 = "0p5c2ayiam5bkp9wvq9f9ihwp06nqs5j801npjlwnhrl8rpwac9l";
|
|
libName = "glib_build_tools";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
features = {
|
|
"gio" = [ "dep:gio" ];
|
|
};
|
|
};
|
|
"glib-macros" = rec {
|
|
crateName = "glib-macros";
|
|
version = "0.18.5";
|
|
edition = "2021";
|
|
sha256 = "1p5cla53fcp195zp0hkqpmnn7iwmkdswhy7xh34002bw8y7j5c0b";
|
|
procMacro = true;
|
|
libName = "glib_macros";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "heck";
|
|
packageId = "heck 0.4.1";
|
|
}
|
|
{
|
|
name = "proc-macro-crate";
|
|
packageId = "proc-macro-crate 2.0.0";
|
|
}
|
|
{
|
|
name = "proc-macro-error";
|
|
packageId = "proc-macro-error";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"glib-sys" = rec {
|
|
crateName = "glib-sys";
|
|
version = "0.18.1";
|
|
edition = "2021";
|
|
sha256 = "164qhsfmlzd5mhyxs8123jzbdfldwxbikfpq5cysj3lddbmy4g06";
|
|
libName = "glib_sys";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "system-deps";
|
|
packageId = "system-deps";
|
|
}
|
|
];
|
|
features = {
|
|
"v2_60" = [ "v2_58" ];
|
|
"v2_62" = [ "v2_60" ];
|
|
"v2_64" = [ "v2_62" ];
|
|
"v2_66" = [ "v2_64" ];
|
|
"v2_68" = [ "v2_66" ];
|
|
"v2_70" = [ "v2_68" ];
|
|
"v2_72" = [ "v2_70" ];
|
|
"v2_74" = [ "v2_72" ];
|
|
"v2_76" = [ "v2_74" ];
|
|
"v2_78" = [ "v2_76" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v2_58" "v2_60" "v2_62" "v2_64" "v2_66" ];
|
|
};
|
|
"gloo" = rec {
|
|
crateName = "gloo";
|
|
version = "0.11.0";
|
|
edition = "2021";
|
|
sha256 = "0wnk1zxf63i9h73r0haw2laqck3iqs0gagnp739lpbsfwbn84lni";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "gloo-console";
|
|
packageId = "gloo-console";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "gloo-dialogs";
|
|
packageId = "gloo-dialogs";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "gloo-events";
|
|
packageId = "gloo-events";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "gloo-file";
|
|
packageId = "gloo-file";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "gloo-history";
|
|
packageId = "gloo-history";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "gloo-net";
|
|
packageId = "gloo-net 0.5.0";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "gloo-render";
|
|
packageId = "gloo-render";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "gloo-storage";
|
|
packageId = "gloo-storage";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "gloo-timers";
|
|
packageId = "gloo-timers";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "gloo-utils";
|
|
packageId = "gloo-utils";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "gloo-worker";
|
|
packageId = "gloo-worker";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"console" = [ "gloo-console" ];
|
|
"default" = [ "timers" "events" "file" "dialogs" "storage" "render" "console" "utils" "history" "worker" "net" ];
|
|
"dialogs" = [ "gloo-dialogs" ];
|
|
"events" = [ "gloo-events" ];
|
|
"file" = [ "gloo-file" ];
|
|
"futures" = [ "timers" "file" "worker" "gloo-timers/futures" "gloo-file/futures" "gloo-worker/futures" ];
|
|
"gloo-console" = [ "dep:gloo-console" ];
|
|
"gloo-dialogs" = [ "dep:gloo-dialogs" ];
|
|
"gloo-events" = [ "dep:gloo-events" ];
|
|
"gloo-file" = [ "dep:gloo-file" ];
|
|
"gloo-history" = [ "dep:gloo-history" ];
|
|
"gloo-net" = [ "dep:gloo-net" ];
|
|
"gloo-render" = [ "dep:gloo-render" ];
|
|
"gloo-storage" = [ "dep:gloo-storage" ];
|
|
"gloo-timers" = [ "dep:gloo-timers" ];
|
|
"gloo-utils" = [ "dep:gloo-utils" ];
|
|
"gloo-worker" = [ "dep:gloo-worker" ];
|
|
"history" = [ "gloo-history" ];
|
|
"net" = [ "gloo-net" ];
|
|
"render" = [ "gloo-render" ];
|
|
"storage" = [ "gloo-storage" ];
|
|
"timers" = [ "gloo-timers" ];
|
|
"utils" = [ "gloo-utils" ];
|
|
"worker" = [ "gloo-worker" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "console" "default" "dialogs" "events" "file" "gloo-console" "gloo-dialogs" "gloo-events" "gloo-file" "gloo-history" "gloo-net" "gloo-render" "gloo-storage" "gloo-timers" "gloo-utils" "gloo-worker" "history" "net" "render" "storage" "timers" "utils" "worker" ];
|
|
};
|
|
"gloo-console" = rec {
|
|
crateName = "gloo-console";
|
|
version = "0.3.0";
|
|
edition = "2021";
|
|
sha256 = "0qg24wbvql0bsr980hbrm0pi11c3jmlwpj0pgdklz8mlas7qc5ra";
|
|
libName = "gloo_console";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "gloo-utils";
|
|
packageId = "gloo-utils";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "console" "Document" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"gloo-dialogs" = rec {
|
|
crateName = "gloo-dialogs";
|
|
version = "0.2.0";
|
|
edition = "2021";
|
|
sha256 = "1pqmg2z3x4c3id25jd0p8rjwy5qjbc4k1x8gflsi9c1207hlhixz";
|
|
libName = "gloo_dialogs";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "Window" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"gloo-events" = rec {
|
|
crateName = "gloo-events";
|
|
version = "0.2.0";
|
|
edition = "2021";
|
|
sha256 = "0h8yr4n1pvwp4rr87835w14kjdkycyn8gypmh2lmnf3wbys6zhi7";
|
|
libName = "gloo_events";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "Event" "EventTarget" "AddEventListenerOptions" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "HtmlElement" "Window" "Document" "Element" "MouseEvent" "ProgressEvent" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"gloo-file" = rec {
|
|
crateName = "gloo-file";
|
|
version = "0.3.0";
|
|
edition = "2021";
|
|
sha256 = "07xxainnnrg6l3ccw2bvqiz4m76ih557aklp5r5q5cizhrqksmlp";
|
|
libName = "gloo_file";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "gloo-events";
|
|
packageId = "gloo-events";
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "Blob" "File" "FileList" "FileReader" "HtmlInputElement" "BlobPropertyBag" "FilePropertyBag" "DomException" "Url" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "Window" "Response" ];
|
|
}
|
|
];
|
|
features = {
|
|
"futures" = [ "futures-channel" ];
|
|
"futures-channel" = [ "dep:futures-channel" ];
|
|
"mime" = [ "dep:mime" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"gloo-history" = rec {
|
|
crateName = "gloo-history";
|
|
version = "0.2.2";
|
|
edition = "2021";
|
|
sha256 = "1mhphqywgbqj4agpi4zyc4hah12nys7085jymiz44d5swlml6gwh";
|
|
libName = "gloo_history";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "getrandom";
|
|
packageId = "getrandom 0.2.15";
|
|
target = { target, features }: ("wasm32" == target."arch" or null);
|
|
features = [ "js" ];
|
|
}
|
|
{
|
|
name = "gloo-events";
|
|
packageId = "gloo-events";
|
|
}
|
|
{
|
|
name = "gloo-utils";
|
|
packageId = "gloo-utils";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "serde-wasm-bindgen";
|
|
packageId = "serde-wasm-bindgen";
|
|
}
|
|
{
|
|
name = "serde_urlencoded";
|
|
packageId = "serde_urlencoded";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "History" "Window" "Location" "Url" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "query" ];
|
|
"query" = [ "thiserror" "serde_urlencoded" ];
|
|
"serde_urlencoded" = [ "dep:serde_urlencoded" ];
|
|
"thiserror" = [ "dep:thiserror" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "query" "serde_urlencoded" "thiserror" ];
|
|
};
|
|
"gloo-net 0.5.0" = rec {
|
|
crateName = "gloo-net";
|
|
version = "0.5.0";
|
|
edition = "2021";
|
|
sha256 = "0wz1xvll8nqzbiwswjswid7xm6332q15yr2wq4i8i6i3s51a5aj3";
|
|
libName = "gloo_net";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
"Muhammad Hamza <muhammadhamza1311@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "futures-sink";
|
|
packageId = "futures-sink";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "gloo-utils";
|
|
packageId = "gloo-utils";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http 0.2.12";
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
}
|
|
{
|
|
name = "pin-project";
|
|
packageId = "pin-project";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "wasm-bindgen-futures";
|
|
packageId = "wasm-bindgen-futures";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "json" "websocket" "http" "eventsource" ];
|
|
"eventsource" = [ "futures-channel" "futures-core" "pin-project" "web-sys/Event" "web-sys/EventTarget" "web-sys/EventSource" "web-sys/MessageEvent" ];
|
|
"futures-channel" = [ "dep:futures-channel" ];
|
|
"futures-core" = [ "dep:futures-core" ];
|
|
"futures-io" = [ "dep:futures-io" ];
|
|
"futures-sink" = [ "dep:futures-sink" ];
|
|
"http" = [ "web-sys/Headers" "web-sys/UrlSearchParams" "web-sys/Url" "web-sys/Request" "web-sys/RequestInit" "web-sys/RequestMode" "web-sys/Response" "web-sys/ResponseInit" "web-sys/ResponseType" "web-sys/Window" "web-sys/RequestCache" "web-sys/RequestCredentials" "web-sys/ObserverCallback" "web-sys/RequestRedirect" "web-sys/ReferrerPolicy" "web-sys/AbortSignal" "web-sys/ReadableStream" "web-sys/Blob" "web-sys/FormData" "web-sys/WorkerGlobalScope" ];
|
|
"io-util" = [ "futures-io" ];
|
|
"json" = [ "serde" "serde_json" "gloo-utils/serde" ];
|
|
"pin-project" = [ "dep:pin-project" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde_json" = [ "dep:serde_json" ];
|
|
"websocket" = [ "web-sys/WebSocket" "web-sys/AddEventListenerOptions" "web-sys/ErrorEvent" "web-sys/FileReader" "web-sys/MessageEvent" "web-sys/ProgressEvent" "web-sys/CloseEvent" "web-sys/CloseEventInit" "web-sys/BinaryType" "web-sys/Blob" "futures-channel" "futures-core" "futures-sink" "pin-project" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "eventsource" "futures-channel" "futures-core" "futures-sink" "http" "json" "pin-project" "serde" "serde_json" "websocket" ];
|
|
};
|
|
"gloo-net 0.6.0" = rec {
|
|
crateName = "gloo-net";
|
|
version = "0.6.0";
|
|
edition = "2021";
|
|
sha256 = "1005q761m8kbifc01pvjyjfpj0qs3szh8qaxni13vjjq39xn4vy0";
|
|
libName = "gloo_net";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
"Elina <imelina@elina.website>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "futures-sink";
|
|
packageId = "futures-sink";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "gloo-utils";
|
|
packageId = "gloo-utils";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http 1.3.1";
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
}
|
|
{
|
|
name = "pin-project";
|
|
packageId = "pin-project";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "wasm-bindgen-futures";
|
|
packageId = "wasm-bindgen-futures";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "json" "websocket" "http" "eventsource" ];
|
|
"eventsource" = [ "futures-channel" "futures-core" "pin-project" "web-sys/Event" "web-sys/EventTarget" "web-sys/EventSource" "web-sys/MessageEvent" ];
|
|
"futures-channel" = [ "dep:futures-channel" ];
|
|
"futures-core" = [ "dep:futures-core" ];
|
|
"futures-io" = [ "dep:futures-io" ];
|
|
"futures-sink" = [ "dep:futures-sink" ];
|
|
"http" = [ "web-sys/Headers" "web-sys/UrlSearchParams" "web-sys/Url" "web-sys/Request" "web-sys/RequestInit" "web-sys/RequestMode" "web-sys/Response" "web-sys/ResponseInit" "web-sys/ResponseType" "web-sys/RequestCache" "web-sys/RequestCredentials" "web-sys/ObserverCallback" "web-sys/RequestRedirect" "web-sys/ReferrerPolicy" "web-sys/AbortSignal" "web-sys/ReadableStream" "web-sys/Blob" "web-sys/FormData" ];
|
|
"io-util" = [ "futures-io" ];
|
|
"json" = [ "serde" "serde_json" "gloo-utils/serde" ];
|
|
"pin-project" = [ "dep:pin-project" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde_json" = [ "dep:serde_json" ];
|
|
"websocket" = [ "web-sys/WebSocket" "web-sys/AddEventListenerOptions" "web-sys/ErrorEvent" "web-sys/FileReader" "web-sys/MessageEvent" "web-sys/ProgressEvent" "web-sys/CloseEvent" "web-sys/CloseEventInit" "web-sys/BinaryType" "web-sys/Blob" "futures-channel" "futures-core" "futures-sink" "pin-project" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "eventsource" "futures-channel" "futures-core" "futures-sink" "http" "json" "pin-project" "serde" "serde_json" "websocket" ];
|
|
};
|
|
"gloo-render" = rec {
|
|
crateName = "gloo-render";
|
|
version = "0.2.0";
|
|
edition = "2021";
|
|
sha256 = "0cwqcka7l5p29idq174c6mi5cgal0rywngdck26qwfki8ikqn02n";
|
|
libName = "gloo_render";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "Window" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"gloo-storage" = rec {
|
|
crateName = "gloo-storage";
|
|
version = "0.3.0";
|
|
edition = "2021";
|
|
sha256 = "0yi7740iza6nyg6n8sxzzhy6yg6xpbxhig7r2bwqlxcjihg07j7v";
|
|
libName = "gloo_storage";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "gloo-utils";
|
|
packageId = "gloo-utils";
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "Storage" "Window" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"gloo-timers" = rec {
|
|
crateName = "gloo-timers";
|
|
version = "0.3.0";
|
|
edition = "2021";
|
|
sha256 = "1519157n7xppkk6pdw5w52vy1llzn5iljkqd7q1h5609jv7l7cdv";
|
|
libName = "gloo_timers";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
];
|
|
features = {
|
|
"futures" = [ "futures-core" "futures-channel" ];
|
|
"futures-channel" = [ "dep:futures-channel" ];
|
|
"futures-core" = [ "dep:futures-core" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "futures" "futures-channel" "futures-core" ];
|
|
};
|
|
"gloo-utils" = rec {
|
|
crateName = "gloo-utils";
|
|
version = "0.2.0";
|
|
edition = "2021";
|
|
sha256 = "1am31cd6889shb7158bg9zzsjcpvyzxrhfhxgia8rc8k84smam8b";
|
|
libName = "gloo_utils";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "Document" "History" "HtmlElement" "Location" "Window" "HtmlHeadElement" "Element" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "serde" ];
|
|
"serde" = [ "dep:serde" "dep:serde_json" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "serde" ];
|
|
};
|
|
"gloo-worker" = rec {
|
|
crateName = "gloo-worker";
|
|
version = "0.5.0";
|
|
edition = "2021";
|
|
sha256 = "0pgymv97awlgcpl040mjmn8jwy5kzb72j98na20ir484fqnjcpq8";
|
|
libName = "gloo_worker";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bincode";
|
|
packageId = "bincode";
|
|
}
|
|
{
|
|
name = "futures";
|
|
packageId = "futures";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "gloo-utils";
|
|
packageId = "gloo-utils";
|
|
}
|
|
{
|
|
name = "gloo-worker-macros";
|
|
packageId = "gloo-worker-macros";
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
}
|
|
{
|
|
name = "pinned";
|
|
packageId = "pinned";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "wasm-bindgen-futures";
|
|
packageId = "wasm-bindgen-futures";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "Blob" "BlobPropertyBag" "DedicatedWorkerGlobalScope" "MessageEvent" "Url" "Worker" "WorkerOptions" ];
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"gloo-worker-macros" = rec {
|
|
crateName = "gloo-worker-macros";
|
|
version = "0.1.0";
|
|
edition = "2021";
|
|
sha256 = "1rs0f6b34mkhlmpmhqi747c34000sd5mxma92yacjyw5sicalv4m";
|
|
procMacro = true;
|
|
libName = "gloo_worker_macros";
|
|
authors = [
|
|
"Rust and WebAssembly Working Group"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro-crate";
|
|
packageId = "proc-macro-crate 1.3.1";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"gobject-sys" = rec {
|
|
crateName = "gobject-sys";
|
|
version = "0.18.0";
|
|
edition = "2021";
|
|
sha256 = "0i6fhp3m6vs3wkzyc22rk2cqj68qvgddxmpaai34l72da5xi4l08";
|
|
libName = "gobject_sys";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "glib-sys";
|
|
packageId = "glib-sys";
|
|
rename = "glib";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "system-deps";
|
|
packageId = "system-deps";
|
|
}
|
|
];
|
|
features = {
|
|
"v2_62" = [ "v2_58" ];
|
|
"v2_66" = [ "v2_62" ];
|
|
"v2_68" = [ "v2_66" ];
|
|
"v2_70" = [ "v2_68" ];
|
|
"v2_72" = [ "v2_70" ];
|
|
"v2_74" = [ "v2_72" ];
|
|
"v2_76" = [ "v2_74" ];
|
|
"v2_78" = [ "v2_74" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v2_58" "v2_62" "v2_66" ];
|
|
};
|
|
"graphene-rs" = rec {
|
|
crateName = "graphene-rs";
|
|
version = "0.18.1";
|
|
edition = "2021";
|
|
sha256 = "00f4q1ra4haap5i7lazwhkdgnb49fs8adk2nm6ki6mjhl76jh8iv";
|
|
libName = "graphene";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "glib";
|
|
packageId = "glib";
|
|
}
|
|
{
|
|
name = "graphene-sys";
|
|
packageId = "graphene-sys";
|
|
rename = "ffi";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
features = {
|
|
"v1_12" = [ "ffi/v1_12" ];
|
|
};
|
|
};
|
|
"graphene-sys" = rec {
|
|
crateName = "graphene-sys";
|
|
version = "0.18.1";
|
|
edition = "2021";
|
|
sha256 = "0n8zlg7z26lwpnvlqp1hjlgrs671skqwagdpm7r8i1zwx3748hfc";
|
|
libName = "graphene_sys";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "glib-sys";
|
|
packageId = "glib-sys";
|
|
rename = "glib";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "pkg-config";
|
|
packageId = "pkg-config";
|
|
}
|
|
{
|
|
name = "system-deps";
|
|
packageId = "system-deps";
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
};
|
|
"gsk4" = rec {
|
|
crateName = "gsk4";
|
|
version = "0.7.3";
|
|
edition = "2021";
|
|
sha256 = "0zhzs2dkgiinhgc11akpn2harq3x5n1iq21dnc4h689g3lsqx58d";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cairo-rs";
|
|
packageId = "cairo-rs";
|
|
}
|
|
{
|
|
name = "gdk4";
|
|
packageId = "gdk4";
|
|
rename = "gdk";
|
|
}
|
|
{
|
|
name = "glib";
|
|
packageId = "glib";
|
|
features = [ "v2_66" ];
|
|
}
|
|
{
|
|
name = "graphene-rs";
|
|
packageId = "graphene-rs";
|
|
rename = "graphene";
|
|
}
|
|
{
|
|
name = "gsk4-sys";
|
|
packageId = "gsk4-sys";
|
|
rename = "ffi";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "pango";
|
|
packageId = "pango";
|
|
features = [ "v1_46" ];
|
|
}
|
|
];
|
|
features = {
|
|
"broadway" = [ "ffi/broadway" ];
|
|
"v4_10" = [ "ffi/v4_10" "gdk/v4_10" "v4_6" ];
|
|
"v4_14" = [ "ffi/v4_14" "v4_10" ];
|
|
"v4_2" = [ "ffi/v4_2" "gdk/v4_2" ];
|
|
"v4_4" = [ "ffi/v4_4" "gdk/v4_4" "v4_2" ];
|
|
"v4_6" = [ "ffi/v4_6" "gdk/v4_6" "v4_4" ];
|
|
"vulkan" = [ "ffi/vulkan" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v4_10" "v4_2" "v4_4" "v4_6" ];
|
|
};
|
|
"gsk4-sys" = rec {
|
|
crateName = "gsk4-sys";
|
|
version = "0.7.3";
|
|
edition = "2021";
|
|
sha256 = "0mbdlm9qi1hql48rr29vsj9vlqwc7gxg67wg1q19z67azwz9xg8j";
|
|
libName = "gsk4_sys";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cairo-sys-rs";
|
|
packageId = "cairo-sys-rs";
|
|
rename = "cairo";
|
|
}
|
|
{
|
|
name = "gdk4-sys";
|
|
packageId = "gdk4-sys";
|
|
rename = "gdk";
|
|
}
|
|
{
|
|
name = "glib-sys";
|
|
packageId = "glib-sys";
|
|
rename = "glib";
|
|
}
|
|
{
|
|
name = "gobject-sys";
|
|
packageId = "gobject-sys";
|
|
rename = "gobject";
|
|
}
|
|
{
|
|
name = "graphene-sys";
|
|
packageId = "graphene-sys";
|
|
rename = "graphene";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "pango-sys";
|
|
packageId = "pango-sys";
|
|
rename = "pango";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "system-deps";
|
|
packageId = "system-deps";
|
|
}
|
|
];
|
|
features = {
|
|
"v4_10" = [ "v4_6" ];
|
|
"v4_14" = [ "v4_10" ];
|
|
"v4_4" = [ "v4_2" ];
|
|
"v4_6" = [ "v4_4" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v4_10" "v4_2" "v4_4" "v4_6" ];
|
|
};
|
|
"gtk4" = rec {
|
|
crateName = "gtk4";
|
|
version = "0.7.3";
|
|
edition = "2021";
|
|
sha256 = "0hh8nzglmz94v1m1h6vy8z12m6fr7ia467ry0md5fa4p7sm53sss";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cairo-rs";
|
|
packageId = "cairo-rs";
|
|
}
|
|
{
|
|
name = "field-offset";
|
|
packageId = "field-offset";
|
|
}
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
}
|
|
{
|
|
name = "gdk-pixbuf";
|
|
packageId = "gdk-pixbuf";
|
|
}
|
|
{
|
|
name = "gdk4";
|
|
packageId = "gdk4";
|
|
rename = "gdk";
|
|
}
|
|
{
|
|
name = "gio";
|
|
packageId = "gio";
|
|
features = [ "v2_66" ];
|
|
}
|
|
{
|
|
name = "glib";
|
|
packageId = "glib";
|
|
features = [ "v2_66" ];
|
|
}
|
|
{
|
|
name = "graphene-rs";
|
|
packageId = "graphene-rs";
|
|
rename = "graphene";
|
|
}
|
|
{
|
|
name = "gsk4";
|
|
packageId = "gsk4";
|
|
rename = "gsk";
|
|
}
|
|
{
|
|
name = "gtk4-macros";
|
|
packageId = "gtk4-macros";
|
|
}
|
|
{
|
|
name = "gtk4-sys";
|
|
packageId = "gtk4-sys";
|
|
rename = "ffi";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "pango";
|
|
packageId = "pango";
|
|
features = [ "v1_46" ];
|
|
}
|
|
];
|
|
features = {
|
|
"blueprint" = [ "gtk4-macros/blueprint" ];
|
|
"gnome_42" = [ "v4_6" "cairo-rs/v1_16" "gdk-pixbuf/v2_42" "gio/v2_72" ];
|
|
"gnome_43" = [ "v4_8" "cairo-rs/v1_16" "gdk-pixbuf/v2_42" "gio/v2_74" ];
|
|
"gnome_44" = [ "v4_10" "cairo-rs/v1_16" "gdk-pixbuf/v2_42" "gio/v2_76" ];
|
|
"gnome_45" = [ "v4_12" "cairo-rs/v1_16" "pango/v1_52" "gdk-pixbuf/v2_42" "gio/v2_78" ];
|
|
"v4_10" = [ "ffi/v4_10" "v4_8" "gdk/v4_10" "gsk/v4_10" ];
|
|
"v4_12" = [ "ffi/v4_12" "v4_10" "gdk/v4_12" ];
|
|
"v4_14" = [ "ffi/v4_14" "v4_12" "gsk/v4_14" ];
|
|
"v4_2" = [ "ffi/v4_2" "gdk/v4_2" "gsk/v4_2" ];
|
|
"v4_4" = [ "ffi/v4_4" "v4_2" "gdk/v4_4" "gsk/v4_4" ];
|
|
"v4_6" = [ "ffi/v4_6" "v4_4" "gdk/v4_6" "gsk/v4_6" "pango/v1_50" ];
|
|
"v4_8" = [ "ffi/v4_8" "v4_6" "gdk/v4_8" ];
|
|
"xml_validation" = [ "gtk4-macros/xml_validation" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v4_10" "v4_2" "v4_4" "v4_6" "v4_8" ];
|
|
};
|
|
"gtk4-macros" = rec {
|
|
crateName = "gtk4-macros";
|
|
version = "0.7.2";
|
|
edition = "2021";
|
|
sha256 = "0bw3cchiycf7dw1bw4p8946gv38azxy05a5w0ndgcmxnz6fc8znm";
|
|
procMacro = true;
|
|
libName = "gtk4_macros";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "anyhow";
|
|
packageId = "anyhow";
|
|
}
|
|
{
|
|
name = "proc-macro-crate";
|
|
packageId = "proc-macro-crate 1.3.1";
|
|
}
|
|
{
|
|
name = "proc-macro-error";
|
|
packageId = "proc-macro-error";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 1.0.109";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
features = {
|
|
"quick-xml" = [ "dep:quick-xml" ];
|
|
"xml_validation" = [ "quick-xml" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"gtk4-sys" = rec {
|
|
crateName = "gtk4-sys";
|
|
version = "0.7.3";
|
|
edition = "2021";
|
|
links = "gtk-4";
|
|
sha256 = "1f2ylskyqkjdik9fij2m46pra4jagnif5xyalbxfk3334fmc9n2l";
|
|
libName = "gtk4_sys";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cairo-sys-rs";
|
|
packageId = "cairo-sys-rs";
|
|
rename = "cairo";
|
|
}
|
|
{
|
|
name = "gdk-pixbuf-sys";
|
|
packageId = "gdk-pixbuf-sys";
|
|
rename = "gdk_pixbuf";
|
|
}
|
|
{
|
|
name = "gdk4-sys";
|
|
packageId = "gdk4-sys";
|
|
rename = "gdk";
|
|
}
|
|
{
|
|
name = "gio-sys";
|
|
packageId = "gio-sys";
|
|
rename = "gio";
|
|
}
|
|
{
|
|
name = "glib-sys";
|
|
packageId = "glib-sys";
|
|
rename = "glib";
|
|
}
|
|
{
|
|
name = "gobject-sys";
|
|
packageId = "gobject-sys";
|
|
rename = "gobject";
|
|
}
|
|
{
|
|
name = "graphene-sys";
|
|
packageId = "graphene-sys";
|
|
rename = "graphene";
|
|
}
|
|
{
|
|
name = "gsk4-sys";
|
|
packageId = "gsk4-sys";
|
|
rename = "gsk";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "pango-sys";
|
|
packageId = "pango-sys";
|
|
rename = "pango";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "system-deps";
|
|
packageId = "system-deps";
|
|
}
|
|
];
|
|
features = {
|
|
"v4_10" = [ "v4_8" ];
|
|
"v4_12" = [ "v4_10" ];
|
|
"v4_14" = [ "v4_12" ];
|
|
"v4_4" = [ "v4_2" ];
|
|
"v4_6" = [ "v4_4" ];
|
|
"v4_8" = [ "v4_6" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v4_10" "v4_2" "v4_4" "v4_6" "v4_8" ];
|
|
};
|
|
"hashbrown" = rec {
|
|
crateName = "hashbrown";
|
|
version = "0.15.2";
|
|
edition = "2021";
|
|
sha256 = "12dj0yfn59p3kh3679ac0w1fagvzf4z2zp87a13gbbqbzw0185dz";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"allocator-api2" = [ "dep:allocator-api2" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
|
|
"default-hasher" = [ "dep:foldhash" ];
|
|
"equivalent" = [ "dep:equivalent" ];
|
|
"nightly" = [ "allocator-api2?/nightly" "bumpalo/allocator_api" ];
|
|
"rayon" = [ "dep:rayon" ];
|
|
"rustc-dep-of-std" = [ "nightly" "core" "compiler_builtins" "alloc" "rustc-internal-api" "raw-entry" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
};
|
|
"heck 0.4.1" = rec {
|
|
crateName = "heck";
|
|
version = "0.4.1";
|
|
edition = "2018";
|
|
sha256 = "1a7mqsnycv5z4z5vnv1k34548jzmc0ajic7c1j8jsaspnhw5ql4m";
|
|
authors = [
|
|
"Without Boats <woboats@gmail.com>"
|
|
];
|
|
features = {
|
|
"unicode" = [ "unicode-segmentation" ];
|
|
"unicode-segmentation" = [ "dep:unicode-segmentation" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"heck 0.5.0" = rec {
|
|
crateName = "heck";
|
|
version = "0.5.0";
|
|
edition = "2021";
|
|
sha256 = "1sjmpsdl8czyh9ywl3qcsfsq9a307dg4ni2vnlwgnzzqhc4y0113";
|
|
|
|
};
|
|
"hermit-abi 0.3.9" = rec {
|
|
crateName = "hermit-abi";
|
|
version = "0.3.9";
|
|
edition = "2021";
|
|
sha256 = "092hxjbjnq5fmz66grd9plxd0sh6ssg5fhgwwwqbrzgzkjwdycfj";
|
|
libName = "hermit_abi";
|
|
authors = [
|
|
"Stefan Lankes"
|
|
];
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins/rustc-dep-of-std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"hermit-abi 0.4.0" = rec {
|
|
crateName = "hermit-abi";
|
|
version = "0.4.0";
|
|
edition = "2021";
|
|
sha256 = "1k1zwllx6nfq417hy38x4akw1ivlv68ymvnzyxs76ffgsqcskxpv";
|
|
libName = "hermit_abi";
|
|
authors = [
|
|
"Stefan Lankes"
|
|
];
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins/rustc-dep-of-std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"http 0.2.12" = rec {
|
|
crateName = "http";
|
|
version = "0.2.12";
|
|
edition = "2018";
|
|
sha256 = "1w81s4bcbmcj9bjp7mllm8jlz6b31wzvirz8bgpzbqkpwmbvn730";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
"Carl Lerche <me@carllerche.com>"
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "fnv";
|
|
packageId = "fnv";
|
|
}
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
}
|
|
];
|
|
|
|
};
|
|
"http 1.3.1" = rec {
|
|
crateName = "http";
|
|
version = "1.3.1";
|
|
edition = "2018";
|
|
sha256 = "0r95i5h7dr1xadp1ac9453w0s62s27hzkam356nyx2d9mqqmva7l";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
"Carl Lerche <me@carllerche.com>"
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "fnv";
|
|
packageId = "fnv";
|
|
}
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"http-body" = rec {
|
|
crateName = "http-body";
|
|
version = "1.0.1";
|
|
edition = "2018";
|
|
sha256 = "111ir5k2b9ihz5nr9cz7cwm7fnydca7dx4hc7vr16scfzghxrzhy";
|
|
libName = "http_body";
|
|
authors = [
|
|
"Carl Lerche <me@carllerche.com>"
|
|
"Lucio Franco <luciofranco14@gmail.com>"
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http 1.3.1";
|
|
}
|
|
];
|
|
|
|
};
|
|
"http-body-util" = rec {
|
|
crateName = "http-body-util";
|
|
version = "0.1.3";
|
|
edition = "2018";
|
|
sha256 = "0jm6jv4gxsnlsi1kzdyffjrj8cfr3zninnxpw73mvkxy4qzdj8dh";
|
|
libName = "http_body_util";
|
|
authors = [
|
|
"Carl Lerche <me@carllerche.com>"
|
|
"Lucio Franco <luciofranco14@gmail.com>"
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http 1.3.1";
|
|
}
|
|
{
|
|
name = "http-body";
|
|
packageId = "http-body";
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
];
|
|
features = {
|
|
"channel" = [ "dep:tokio" ];
|
|
"full" = [ "channel" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"httparse" = rec {
|
|
crateName = "httparse";
|
|
version = "1.10.1";
|
|
edition = "2018";
|
|
sha256 = "11ycd554bw2dkgw0q61xsa7a4jn1wb1xbfacmf3dbwsikvkkvgvd";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"httpdate" = rec {
|
|
crateName = "httpdate";
|
|
version = "1.0.3";
|
|
edition = "2021";
|
|
sha256 = "1aa9rd2sac0zhjqh24c9xvir96g188zldkx0hr6dnnlx5904cfyz";
|
|
authors = [
|
|
"Pyfisch <pyfisch@posteo.org>"
|
|
];
|
|
|
|
};
|
|
"hyper" = rec {
|
|
crateName = "hyper";
|
|
version = "1.6.0";
|
|
edition = "2021";
|
|
sha256 = "103ggny2k31z0iq2gzwk2vbx601wx6xkpjpxn40hr3p3b0b5fayc";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http 1.3.1";
|
|
}
|
|
{
|
|
name = "http-body";
|
|
packageId = "http-body";
|
|
}
|
|
{
|
|
name = "httparse";
|
|
packageId = "httparse";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "httpdate";
|
|
packageId = "httpdate";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "smallvec";
|
|
packageId = "smallvec";
|
|
optional = true;
|
|
features = [ "const_generics" "const_new" ];
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "sync" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "futures-channel";
|
|
packageId = "futures-channel";
|
|
features = [ "sink" ];
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" "sink" ];
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "fs" "macros" "net" "io-std" "io-util" "rt" "rt-multi-thread" "sync" "time" "test-util" ];
|
|
}
|
|
];
|
|
features = {
|
|
"client" = [ "dep:want" "dep:pin-project-lite" "dep:smallvec" ];
|
|
"ffi" = [ "dep:http-body-util" "futures-util?/alloc" ];
|
|
"full" = [ "client" "http1" "http2" "server" ];
|
|
"http1" = [ "dep:futures-channel" "dep:futures-util" "dep:httparse" "dep:itoa" ];
|
|
"http2" = [ "dep:futures-channel" "dep:futures-util" "dep:h2" ];
|
|
"server" = [ "dep:httpdate" "dep:pin-project-lite" "dep:smallvec" ];
|
|
"tracing" = [ "dep:tracing" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "http1" "server" ];
|
|
};
|
|
"hyper-util" = rec {
|
|
crateName = "hyper-util";
|
|
version = "0.1.10";
|
|
edition = "2021";
|
|
sha256 = "1d1iwrkysjhq63pg54zk3vfby1j7zmxzm9zzyfr4lwvp0szcybfz";
|
|
libName = "hyper_util";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http 1.3.1";
|
|
}
|
|
{
|
|
name = "http-body";
|
|
packageId = "http-body";
|
|
}
|
|
{
|
|
name = "hyper";
|
|
packageId = "hyper";
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "tower-service";
|
|
packageId = "tower-service";
|
|
optional = true;
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "hyper";
|
|
packageId = "hyper";
|
|
features = [ "full" ];
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "macros" "test-util" "signal" ];
|
|
}
|
|
];
|
|
features = {
|
|
"client" = [ "hyper/client" "dep:tracing" "dep:futures-channel" "dep:tower-service" ];
|
|
"client-legacy" = [ "client" "dep:socket2" "tokio/sync" ];
|
|
"full" = [ "client" "client-legacy" "server" "server-auto" "server-graceful" "service" "http1" "http2" "tokio" ];
|
|
"http1" = [ "hyper/http1" ];
|
|
"http2" = [ "hyper/http2" ];
|
|
"server" = [ "hyper/server" ];
|
|
"server-auto" = [ "server" "http1" "http2" ];
|
|
"server-graceful" = [ "server" "tokio/sync" "futures-util/alloc" ];
|
|
"service" = [ "dep:tower-service" ];
|
|
"tokio" = [ "dep:tokio" "tokio/net" "tokio/rt" "tokio/time" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "http1" "server" "service" "tokio" ];
|
|
};
|
|
"iana-time-zone" = rec {
|
|
crateName = "iana-time-zone";
|
|
version = "0.1.62";
|
|
edition = "2021";
|
|
sha256 = "09yipibk825gz391k399x68agkdn0mblgx2x5iwj2rz50s5nbzdj";
|
|
libName = "iana_time_zone";
|
|
authors = [
|
|
"Andrew Straw <strawman@astraw.com>"
|
|
"René Kijewski <rene.kijewski@fu-berlin.de>"
|
|
"Ryan Lopopolo <rjl@hyperbo.la>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "android_system_properties";
|
|
packageId = "android_system_properties";
|
|
target = { target, features }: ("android" == target."os" or null);
|
|
}
|
|
{
|
|
name = "core-foundation-sys";
|
|
packageId = "core-foundation-sys";
|
|
target = { target, features }: ("apple" == target."vendor" or null);
|
|
}
|
|
{
|
|
name = "iana-time-zone-haiku";
|
|
packageId = "iana-time-zone-haiku";
|
|
target = { target, features }: ("haiku" == target."os" or null);
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."os" or null));
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."os" or null));
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."os" or null));
|
|
}
|
|
{
|
|
name = "windows-core";
|
|
packageId = "windows-core";
|
|
target = { target, features }: ("windows" == target."os" or null);
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "fallback" ];
|
|
};
|
|
"iana-time-zone-haiku" = rec {
|
|
crateName = "iana-time-zone-haiku";
|
|
version = "0.1.2";
|
|
edition = "2018";
|
|
sha256 = "17r6jmj31chn7xs9698r122mapq85mfnv98bb4pg6spm0si2f67k";
|
|
libName = "iana_time_zone_haiku";
|
|
authors = [
|
|
"René Kijewski <crates.io@k6i.de>"
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "cc";
|
|
packageId = "cc";
|
|
}
|
|
];
|
|
|
|
};
|
|
"icu_locid" = rec {
|
|
crateName = "icu_locid";
|
|
version = "1.5.0";
|
|
edition = "2021";
|
|
sha256 = "0dznvd1c5b02iilqm044q4hvar0sqibq1z46prqwjzwif61vpb0k";
|
|
authors = [
|
|
"The ICU4X Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "displaydoc";
|
|
packageId = "displaydoc";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "litemap";
|
|
packageId = "litemap";
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" ];
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" "derive" ];
|
|
}
|
|
{
|
|
name = "tinystr";
|
|
packageId = "tinystr";
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" ];
|
|
}
|
|
{
|
|
name = "writeable";
|
|
packageId = "writeable";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
usesDefaultFeatures = false;
|
|
features = [ "derive" ];
|
|
}
|
|
];
|
|
features = {
|
|
"bench" = [ "serde" ];
|
|
"databake" = [ "dep:databake" ];
|
|
"serde" = [ "dep:serde" "tinystr/serde" ];
|
|
"zerovec" = [ "dep:zerovec" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "serde" ];
|
|
};
|
|
"implicit-clone" = rec {
|
|
crateName = "implicit-clone";
|
|
version = "0.5.1";
|
|
edition = "2021";
|
|
sha256 = "0q3bkbz2vfjhnf7g8x9j7bnwinvdiyh629dlfpqvcf2v7r1cbr48";
|
|
libName = "implicit_clone";
|
|
authors = [
|
|
"Cecile Tonglet <cecile.tonglet@cecton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "implicit-clone-derive";
|
|
packageId = "implicit-clone-derive";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "derive" ];
|
|
"derive" = [ "implicit-clone-derive" ];
|
|
"implicit-clone-derive" = [ "dep:implicit-clone-derive" ];
|
|
"indexmap" = [ "dep:indexmap" ];
|
|
"map" = [ "indexmap" ];
|
|
"serde" = [ "dep:serde" "indexmap/serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "derive" "implicit-clone-derive" "indexmap" "map" ];
|
|
};
|
|
"implicit-clone-derive" = rec {
|
|
crateName = "implicit-clone-derive";
|
|
version = "0.1.2";
|
|
edition = "2021";
|
|
sha256 = "088sppimdyl55gnzgqfb7ff9ikkifdj7y70ybjxd0qsy6dnip739";
|
|
procMacro = true;
|
|
libName = "implicit_clone_derive";
|
|
authors = [
|
|
"Cecile Tonglet <cecile.tonglet@cecton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"indexmap" = rec {
|
|
crateName = "indexmap";
|
|
version = "2.8.0";
|
|
edition = "2021";
|
|
sha256 = "0n3hkpzch6q3wgzh8g8hiyac6kk3vgd8nfsxy8mi80jvw47xam1r";
|
|
dependencies = [
|
|
{
|
|
name = "equivalent";
|
|
packageId = "equivalent";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "hashbrown";
|
|
packageId = "hashbrown";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"borsh" = [ "dep:borsh" ];
|
|
"default" = [ "std" ];
|
|
"quickcheck" = [ "dep:quickcheck" ];
|
|
"rayon" = [ "dep:rayon" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"is_terminal_polyfill" = rec {
|
|
crateName = "is_terminal_polyfill";
|
|
version = "1.70.1";
|
|
edition = "2021";
|
|
sha256 = "1kwfgglh91z33kl0w5i338mfpa3zs0hidq5j4ny4rmjwrikchhvr";
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"itoa" = rec {
|
|
crateName = "itoa";
|
|
version = "1.0.15";
|
|
edition = "2018";
|
|
sha256 = "0b4fj9kz54dr3wam0vprjwgygvycyw8r0qwg7vp19ly8b2w16psa";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
features = {
|
|
"no-panic" = [ "dep:no-panic" ];
|
|
};
|
|
};
|
|
"js-sys" = rec {
|
|
crateName = "js-sys";
|
|
version = "0.3.77";
|
|
edition = "2021";
|
|
sha256 = "13x2qcky5l22z4xgivi59xhjjx4kxir1zg7gcj0f1ijzd4yg7yhw";
|
|
libName = "js_sys";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "wasm-bindgen/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"kv-log-macro" = rec {
|
|
crateName = "kv-log-macro";
|
|
version = "1.0.7";
|
|
edition = "2018";
|
|
sha256 = "0zwp4bxkkp87rl7xy2dain77z977rvcry1gmr5bssdbn541v7s0d";
|
|
libName = "kv_log_macro";
|
|
authors = [
|
|
"Yoshua Wuyts <yoshuawuyts@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
features = [ "kv_unstable" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"l10n-db" = rec {
|
|
crateName = "l10n-db";
|
|
version = "0.1.0";
|
|
edition = "2021";
|
|
crateBin = [
|
|
{
|
|
name = "l10n-db";
|
|
path = "src/bin/l10n-db.rs";
|
|
requiredFeatures = [ ];
|
|
}
|
|
];
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./l10n-db; };
|
|
libName = "l10n_db";
|
|
dependencies = [
|
|
{
|
|
name = "chrono";
|
|
packageId = "chrono";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "clap";
|
|
packageId = "clap";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "icu_locid";
|
|
packageId = "icu_locid";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
}
|
|
{
|
|
name = "tempfile";
|
|
packageId = "tempfile";
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 2.0.12";
|
|
}
|
|
{
|
|
name = "toml";
|
|
packageId = "toml";
|
|
}
|
|
{
|
|
name = "xml-rs";
|
|
packageId = "xml-rs";
|
|
}
|
|
];
|
|
|
|
};
|
|
"libadwaita" = rec {
|
|
crateName = "libadwaita";
|
|
version = "0.5.3";
|
|
edition = "2021";
|
|
sha256 = "174pzn9dwsk8ikvrhx13vkh0zrpvb3rhg9yd2q5d2zjh0q6fgrrg";
|
|
authors = [
|
|
"Bilal Elmoussaoui <bil.elmoussaoui@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "gdk-pixbuf";
|
|
packageId = "gdk-pixbuf";
|
|
}
|
|
{
|
|
name = "gdk4";
|
|
packageId = "gdk4";
|
|
rename = "gdk";
|
|
}
|
|
{
|
|
name = "gio";
|
|
packageId = "gio";
|
|
}
|
|
{
|
|
name = "glib";
|
|
packageId = "glib";
|
|
}
|
|
{
|
|
name = "gtk4";
|
|
packageId = "gtk4";
|
|
rename = "gtk";
|
|
}
|
|
{
|
|
name = "libadwaita-sys";
|
|
packageId = "libadwaita-sys";
|
|
rename = "ffi";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "pango";
|
|
packageId = "pango";
|
|
}
|
|
];
|
|
features = {
|
|
"gtk_v4_10" = [ "gtk_v4_8" ];
|
|
"gtk_v4_4" = [ "gtk_v4_2" ];
|
|
"gtk_v4_6" = [ "gtk_v4_4" ];
|
|
"gtk_v4_8" = [ "gtk_v4_6" ];
|
|
"v1_1" = [ "ffi/v1_1" ];
|
|
"v1_2" = [ "v1_1" "ffi/v1_2" ];
|
|
"v1_3" = [ "v1_2" "ffi/v1_3" ];
|
|
"v1_4" = [ "v1_3" "ffi/v1_4" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v1_1" "v1_2" "v1_3" "v1_4" ];
|
|
};
|
|
"libadwaita-sys" = rec {
|
|
crateName = "libadwaita-sys";
|
|
version = "0.5.3";
|
|
edition = "2021";
|
|
links = "libadwaita-1";
|
|
sha256 = "16n6xsy6jhbj0jbpz8yvql6c9b89a99v9vhdz5s37mg1inisl42y";
|
|
libName = "libadwaita_sys";
|
|
authors = [
|
|
"Bilal Elmoussaoui <bil.elmoussaoui@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "gdk4-sys";
|
|
packageId = "gdk4-sys";
|
|
rename = "gdk";
|
|
}
|
|
{
|
|
name = "gio-sys";
|
|
packageId = "gio-sys";
|
|
rename = "gio";
|
|
}
|
|
{
|
|
name = "glib-sys";
|
|
packageId = "glib-sys";
|
|
rename = "glib";
|
|
}
|
|
{
|
|
name = "gobject-sys";
|
|
packageId = "gobject-sys";
|
|
rename = "gobject";
|
|
}
|
|
{
|
|
name = "gtk4-sys";
|
|
packageId = "gtk4-sys";
|
|
rename = "gtk";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "pango-sys";
|
|
packageId = "pango-sys";
|
|
rename = "pango";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "system-deps";
|
|
packageId = "system-deps";
|
|
}
|
|
];
|
|
features = {
|
|
"v1_2" = [ "v1_1" ];
|
|
"v1_3" = [ "v1_2" ];
|
|
"v1_4" = [ "v1_3" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v1_1" "v1_2" "v1_3" "v1_4" ];
|
|
};
|
|
"libc" = rec {
|
|
crateName = "libc";
|
|
version = "0.2.171";
|
|
edition = "2021";
|
|
sha256 = "1mipla3dy3l59pfa9xy4iw2vdgn8n30dzf4vdnasjflxdqhkg6f1";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"rustc-dep-of-std" = [ "align" "rustc-std-workspace-core" ];
|
|
"rustc-std-workspace-core" = [ "dep:rustc-std-workspace-core" ];
|
|
"use_std" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "extra_traits" "std" ];
|
|
};
|
|
"linux-raw-sys 0.4.15" = rec {
|
|
crateName = "linux-raw-sys";
|
|
version = "0.4.15";
|
|
edition = "2021";
|
|
sha256 = "1aq7r2g7786hyxhv40spzf2nhag5xbw2axxc1k8z5k1dsgdm4v6j";
|
|
libName = "linux_raw_sys";
|
|
authors = [
|
|
"Dan Gohman <dev@sunfishcode.online>"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" "general" "errno" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" "no_std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "elf" "errno" "general" "if_ether" "ioctl" "net" "netlink" "no_std" "prctl" "xdp" ];
|
|
};
|
|
"linux-raw-sys 0.9.3" = rec {
|
|
crateName = "linux-raw-sys";
|
|
version = "0.9.3";
|
|
edition = "2021";
|
|
sha256 = "04zl7j4k1kgbn7rrl3i7yszaglgxp0c8dbwx8f1cabnjjwhb2zgy";
|
|
libName = "linux_raw_sys";
|
|
authors = [
|
|
"Dan Gohman <dev@sunfishcode.online>"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" "general" "errno" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" "no_std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "elf" "errno" "general" "ioctl" "no_std" ];
|
|
};
|
|
"litemap" = rec {
|
|
crateName = "litemap";
|
|
version = "0.7.5";
|
|
edition = "2021";
|
|
sha256 = "0mi8ykav0s974ps79p438x04snh0cdb7lc864b42jws5375i9yr3";
|
|
authors = [
|
|
"The ICU4X Project Developers"
|
|
];
|
|
features = {
|
|
"databake" = [ "dep:databake" ];
|
|
"default" = [ "alloc" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"testing" = [ "alloc" ];
|
|
"yoke" = [ "dep:yoke" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" ];
|
|
};
|
|
"lock_api" = rec {
|
|
crateName = "lock_api";
|
|
version = "0.4.12";
|
|
edition = "2021";
|
|
sha256 = "05qvxa6g27yyva25a5ghsg85apdxkvr77yhkyhapj6r8vnf8pbq7";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "scopeguard";
|
|
packageId = "scopeguard";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "autocfg";
|
|
packageId = "autocfg";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "atomic_usize" ];
|
|
"owning_ref" = [ "dep:owning_ref" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "atomic_usize" "default" ];
|
|
};
|
|
"log" = rec {
|
|
crateName = "log";
|
|
version = "0.4.27";
|
|
edition = "2021";
|
|
sha256 = "150x589dqil307rv0rwj0jsgz5bjbwvl83gyl61jf873a7rjvp0k";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "value-bag";
|
|
packageId = "value-bag";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "inline-i128" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "value-bag";
|
|
packageId = "value-bag";
|
|
features = [ "test" ];
|
|
}
|
|
];
|
|
features = {
|
|
"kv_serde" = [ "kv_std" "value-bag/serde" "serde" ];
|
|
"kv_std" = [ "std" "kv" "value-bag/error" ];
|
|
"kv_sval" = [ "kv" "value-bag/sval" "sval" "sval_ref" ];
|
|
"kv_unstable" = [ "kv" "value-bag" ];
|
|
"kv_unstable_serde" = [ "kv_serde" "kv_unstable_std" ];
|
|
"kv_unstable_std" = [ "kv_std" "kv_unstable" ];
|
|
"kv_unstable_sval" = [ "kv_sval" "kv_unstable" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"sval" = [ "dep:sval" ];
|
|
"sval_ref" = [ "dep:sval_ref" ];
|
|
"value-bag" = [ "dep:value-bag" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "kv" "kv_unstable" "value-bag" ];
|
|
};
|
|
"matchit" = rec {
|
|
crateName = "matchit";
|
|
version = "0.8.4";
|
|
edition = "2021";
|
|
sha256 = "1hzl48fwq1cn5dvshfly6vzkzqhfihya65zpj7nz7lfx82mgzqa7";
|
|
authors = [
|
|
"Ibraheem Ahmed <ibraheem@ibraheem.ca>"
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"memchr" = rec {
|
|
crateName = "memchr";
|
|
version = "2.7.4";
|
|
edition = "2021";
|
|
sha256 = "18z32bhxrax0fnjikv475z7ii718hq457qwmaryixfxsl2qrmjkq";
|
|
authors = [
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
"bluss"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"logging" = [ "dep:log" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
"std" = [ "alloc" ];
|
|
"use_std" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"memoffset" = rec {
|
|
crateName = "memoffset";
|
|
version = "0.9.1";
|
|
edition = "2015";
|
|
sha256 = "12i17wh9a9plx869g7j4whf62xw68k5zd4k0k5nh6ys5mszid028";
|
|
authors = [
|
|
"Gilad Naaman <gilad.naaman@gmail.com>"
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "autocfg";
|
|
packageId = "autocfg";
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"mime" = rec {
|
|
crateName = "mime";
|
|
version = "0.3.17";
|
|
edition = "2015";
|
|
sha256 = "16hkibgvb9klh0w0jk5crr5xv90l3wlf77ggymzjmvl1818vnxv8";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
|
|
};
|
|
"miniz_oxide" = rec {
|
|
crateName = "miniz_oxide";
|
|
version = "0.8.5";
|
|
edition = "2021";
|
|
sha256 = "1r9whkc61xri7m1cn4rjrjlhr32ab29nvfxcbg0ri5mmpgg08glf";
|
|
authors = [
|
|
"Frommi <daniil.liferenko@gmail.com>"
|
|
"oyvindln <oyvindln@users.noreply.github.com>"
|
|
"Rich Geldreich richgel99@gmail.com"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "adler2";
|
|
packageId = "adler2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "with-alloc" ];
|
|
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "adler2/rustc-dep-of-std" ];
|
|
"simd" = [ "simd-adler32" ];
|
|
"simd-adler32" = [ "dep:simd-adler32" ];
|
|
};
|
|
};
|
|
"mio" = rec {
|
|
crateName = "mio";
|
|
version = "1.0.3";
|
|
edition = "2021";
|
|
sha256 = "1gah0h4ia3avxbwym0b6bi6lr6rpysmj9zvw6zis5yq0z0xq91i8";
|
|
authors = [
|
|
"Carl Lerche <me@carllerche.com>"
|
|
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: ("hermit" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: ("wasi" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "wasi";
|
|
packageId = "wasi 0.11.0+wasi-snapshot-preview1";
|
|
target = { target, features }: ("wasi" == target."os" or null);
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys 0.52.0";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Wdk_Foundation" "Wdk_Storage_FileSystem" "Wdk_System_IO" "Win32_Foundation" "Win32_Networking_WinSock" "Win32_Storage_FileSystem" "Win32_System_IO" "Win32_System_WindowsProgramming" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "log" ];
|
|
"log" = [ "dep:log" ];
|
|
"os-ext" = [ "os-poll" "windows-sys/Win32_System_Pipes" "windows-sys/Win32_Security" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "net" "os-ext" "os-poll" ];
|
|
};
|
|
"num-traits" = rec {
|
|
crateName = "num-traits";
|
|
version = "0.2.19";
|
|
edition = "2021";
|
|
sha256 = "0h984rhdkkqd4ny9cif7y2azl3xdfb7768hb9irhpsch4q3gq787";
|
|
libName = "num_traits";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "autocfg";
|
|
packageId = "autocfg";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"libm" = [ "dep:libm" ];
|
|
};
|
|
};
|
|
"num_cpus" = rec {
|
|
crateName = "num_cpus";
|
|
version = "1.16.0";
|
|
edition = "2015";
|
|
sha256 = "0hra6ihpnh06dvfvz9ipscys0xfqa9ca9hzp384d5m02ssvgqqa1";
|
|
authors = [
|
|
"Sean McArthur <sean@seanmonstar.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "hermit-abi";
|
|
packageId = "hermit-abi 0.3.9";
|
|
target = { target, features }: ("hermit" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (!(target."windows" or false));
|
|
}
|
|
];
|
|
|
|
};
|
|
"object" = rec {
|
|
crateName = "object";
|
|
version = "0.36.7";
|
|
edition = "2018";
|
|
sha256 = "11vv97djn9nc5n6w1gc6bd96d2qk2c8cg1kw5km9bsi3v4a8x532";
|
|
dependencies = [
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"all" = [ "read" "write" "build" "std" "compression" "wasm" ];
|
|
"alloc" = [ "dep:alloc" ];
|
|
"build" = [ "build_core" "write_std" "elf" ];
|
|
"build_core" = [ "read_core" "write_core" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"compression" = [ "dep:flate2" "dep:ruzstd" "std" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "read" "compression" ];
|
|
"doc" = [ "read_core" "write_std" "build_core" "std" "compression" "archive" "coff" "elf" "macho" "pe" "wasm" "xcoff" ];
|
|
"pe" = [ "coff" ];
|
|
"read" = [ "read_core" "archive" "coff" "elf" "macho" "pe" "xcoff" "unaligned" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" "alloc" "memchr/rustc-dep-of-std" ];
|
|
"std" = [ "memchr/std" ];
|
|
"unstable-all" = [ "all" "unstable" ];
|
|
"wasm" = [ "dep:wasmparser" ];
|
|
"write" = [ "write_std" "coff" "elf" "macho" "pe" "xcoff" ];
|
|
"write_core" = [ "dep:crc32fast" "dep:indexmap" "dep:hashbrown" ];
|
|
"write_std" = [ "write_core" "std" "indexmap?/std" "crc32fast?/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "archive" "coff" "elf" "macho" "pe" "read_core" "unaligned" "xcoff" ];
|
|
};
|
|
"once_cell" = rec {
|
|
crateName = "once_cell";
|
|
version = "1.21.3";
|
|
edition = "2021";
|
|
sha256 = "0b9x77lb9f1j6nqgf5aka4s2qj0nly176bpbrv6f9iakk5ff3xa2";
|
|
authors = [
|
|
"Aleksey Kladov <aleksey.kladov@gmail.com>"
|
|
];
|
|
features = {
|
|
"alloc" = [ "race" ];
|
|
"atomic-polyfill" = [ "critical-section" ];
|
|
"critical-section" = [ "dep:critical-section" "portable-atomic" ];
|
|
"default" = [ "std" ];
|
|
"parking_lot" = [ "dep:parking_lot_core" ];
|
|
"portable-atomic" = [ "dep:portable-atomic" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "race" "std" ];
|
|
};
|
|
"pango" = rec {
|
|
crateName = "pango";
|
|
version = "0.18.3";
|
|
edition = "2021";
|
|
sha256 = "1r5ygq7036sv7w32kp8yxr6vgggd54iaavh3yckanmq4xg0px8kw";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "gio";
|
|
packageId = "gio";
|
|
}
|
|
{
|
|
name = "glib";
|
|
packageId = "glib";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
{
|
|
name = "pango-sys";
|
|
packageId = "pango-sys";
|
|
rename = "ffi";
|
|
}
|
|
];
|
|
features = {
|
|
"v1_42" = [ "ffi/v1_42" ];
|
|
"v1_44" = [ "v1_42" "ffi/v1_44" ];
|
|
"v1_46" = [ "v1_44" "ffi/v1_46" ];
|
|
"v1_48" = [ "v1_46" "ffi/v1_48" ];
|
|
"v1_50" = [ "v1_48" "ffi/v1_50" ];
|
|
"v1_52" = [ "v1_50" "ffi/v1_52" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v1_42" "v1_44" "v1_46" "v1_48" "v1_50" ];
|
|
};
|
|
"pango-sys" = rec {
|
|
crateName = "pango-sys";
|
|
version = "0.18.0";
|
|
edition = "2021";
|
|
sha256 = "1iaxalcaaj59cl9n10svh4g50v8jrc1a36kd7n9yahx8j7ikfrs3";
|
|
libName = "pango_sys";
|
|
authors = [
|
|
"The gtk-rs Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "glib-sys";
|
|
packageId = "glib-sys";
|
|
rename = "glib";
|
|
}
|
|
{
|
|
name = "gobject-sys";
|
|
packageId = "gobject-sys";
|
|
rename = "gobject";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "system-deps";
|
|
packageId = "system-deps";
|
|
}
|
|
];
|
|
features = {
|
|
"v1_44" = [ "v1_42" ];
|
|
"v1_46" = [ "v1_44" ];
|
|
"v1_48" = [ "v1_46" ];
|
|
"v1_50" = [ "v1_48" ];
|
|
"v1_52" = [ "v1_50" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "v1_42" "v1_44" "v1_46" "v1_48" "v1_50" ];
|
|
};
|
|
"parking" = rec {
|
|
crateName = "parking";
|
|
version = "2.2.1";
|
|
edition = "2018";
|
|
sha256 = "1fnfgmzkfpjd69v4j9x737b1k8pnn054bvzcn5dm3pkgq595d3gk";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"loom" = [ "dep:loom" ];
|
|
};
|
|
};
|
|
"parking_lot" = rec {
|
|
crateName = "parking_lot";
|
|
version = "0.12.3";
|
|
edition = "2021";
|
|
sha256 = "09ws9g6245iiq8z975h8ycf818a66q3c6zv4b5h8skpm7hc1igzi";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "lock_api";
|
|
packageId = "lock_api";
|
|
}
|
|
{
|
|
name = "parking_lot_core";
|
|
packageId = "parking_lot_core";
|
|
}
|
|
];
|
|
features = {
|
|
"arc_lock" = [ "lock_api/arc_lock" ];
|
|
"deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
|
|
"nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
|
|
"owning_ref" = [ "lock_api/owning_ref" ];
|
|
"serde" = [ "lock_api/serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"parking_lot_core" = rec {
|
|
crateName = "parking_lot_core";
|
|
version = "0.9.10";
|
|
edition = "2021";
|
|
sha256 = "1y3cf9ld9ijf7i4igwzffcn0xl16dxyn4c5bwgjck1dkgabiyh0y";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "redox_syscall";
|
|
packageId = "redox_syscall";
|
|
target = { target, features }: ("redox" == target."os" or null);
|
|
}
|
|
{
|
|
name = "smallvec";
|
|
packageId = "smallvec";
|
|
}
|
|
{
|
|
name = "windows-targets";
|
|
packageId = "windows-targets";
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
];
|
|
features = {
|
|
"backtrace" = [ "dep:backtrace" ];
|
|
"deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ];
|
|
"petgraph" = [ "dep:petgraph" ];
|
|
"thread-id" = [ "dep:thread-id" ];
|
|
};
|
|
};
|
|
"parse-zoneinfo" = rec {
|
|
crateName = "parse-zoneinfo";
|
|
version = "0.3.1";
|
|
edition = "2021";
|
|
sha256 = "093cs8slbd6kyfi6h12isz0mnaayf5ha8szri1xrbqj4inqhaahz";
|
|
libName = "parse_zoneinfo";
|
|
dependencies = [
|
|
{
|
|
name = "regex";
|
|
packageId = "regex";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" "unicode-perl" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"percent-encoding" = rec {
|
|
crateName = "percent-encoding";
|
|
version = "2.3.1";
|
|
edition = "2018";
|
|
sha256 = "0gi8wgx0dcy8rnv1kywdv98lwcx67hz0a0zwpib5v2i08r88y573";
|
|
libName = "percent_encoding";
|
|
authors = [
|
|
"The rust-url developers"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"phf" = rec {
|
|
crateName = "phf";
|
|
version = "0.11.3";
|
|
edition = "2021";
|
|
sha256 = "0y6hxp1d48rx2434wgi5g8j1pr8s5jja29ha2b65435fh057imhz";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "phf_shared";
|
|
packageId = "phf_shared";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"macros" = [ "phf_macros" ];
|
|
"phf_macros" = [ "dep:phf_macros" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"std" = [ "phf_shared/std" ];
|
|
"uncased" = [ "phf_shared/uncased" ];
|
|
"unicase" = [ "phf_macros?/unicase" "phf_shared/unicase" ];
|
|
};
|
|
};
|
|
"phf_codegen" = rec {
|
|
crateName = "phf_codegen";
|
|
version = "0.11.3";
|
|
edition = "2021";
|
|
sha256 = "0si1n6zr93kzjs3wah04ikw8z6npsr39jw4dam8yi9czg2609y5f";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "phf_generator";
|
|
packageId = "phf_generator";
|
|
}
|
|
{
|
|
name = "phf_shared";
|
|
packageId = "phf_shared";
|
|
}
|
|
];
|
|
|
|
};
|
|
"phf_generator" = rec {
|
|
crateName = "phf_generator";
|
|
version = "0.11.3";
|
|
edition = "2021";
|
|
crateBin = [];
|
|
sha256 = "0gc4np7s91ynrgw73s2i7iakhb4lzdv1gcyx7yhlc0n214a2701w";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "phf_shared";
|
|
packageId = "phf_shared";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "rand";
|
|
packageId = "rand";
|
|
usesDefaultFeatures = false;
|
|
features = [ "small_rng" ];
|
|
}
|
|
];
|
|
features = {
|
|
"criterion" = [ "dep:criterion" ];
|
|
};
|
|
};
|
|
"phf_shared" = rec {
|
|
crateName = "phf_shared";
|
|
version = "0.11.3";
|
|
edition = "2021";
|
|
sha256 = "1rallyvh28jqd9i916gk5gk2igdmzlgvv5q0l3xbf3m6y8pbrsk7";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "siphasher";
|
|
packageId = "siphasher";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"uncased" = [ "dep:uncased" ];
|
|
"unicase" = [ "dep:unicase" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"pin-project" = rec {
|
|
crateName = "pin-project";
|
|
version = "1.1.10";
|
|
edition = "2021";
|
|
sha256 = "12kadbnfm1f43cyadw9gsbyln1cy7vj764wz5c8wxaiza3filzv7";
|
|
libName = "pin_project";
|
|
dependencies = [
|
|
{
|
|
name = "pin-project-internal";
|
|
packageId = "pin-project-internal";
|
|
}
|
|
];
|
|
|
|
};
|
|
"pin-project-internal" = rec {
|
|
crateName = "pin-project-internal";
|
|
version = "1.1.10";
|
|
edition = "2021";
|
|
sha256 = "0qgqzfl0f4lzaz7yl5llhbg97g68r15kljzihaw9wm64z17qx4bf";
|
|
procMacro = true;
|
|
libName = "pin_project_internal";
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
usesDefaultFeatures = false;
|
|
features = [ "parsing" "printing" "clone-impls" "proc-macro" "full" "visit-mut" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"pin-project-lite" = rec {
|
|
crateName = "pin-project-lite";
|
|
version = "0.2.16";
|
|
edition = "2018";
|
|
sha256 = "16wzc7z7dfkf9bmjin22f5282783f6mdksnr0nv0j5ym5f9gyg1v";
|
|
libName = "pin_project_lite";
|
|
|
|
};
|
|
"pin-utils" = rec {
|
|
crateName = "pin-utils";
|
|
version = "0.1.0";
|
|
edition = "2018";
|
|
sha256 = "117ir7vslsl2z1a7qzhws4pd01cg2d3338c47swjyvqv2n60v1wb";
|
|
libName = "pin_utils";
|
|
authors = [
|
|
"Josef Brandl <mail@josefbrandl.de>"
|
|
];
|
|
|
|
};
|
|
"pinned" = rec {
|
|
crateName = "pinned";
|
|
version = "0.1.0";
|
|
edition = "2021";
|
|
sha256 = "0nsrxs49dhjjz1gvg0pvac2rcidnwwd8l99y7vhwym2yv5xh4ad8";
|
|
authors = [
|
|
"Kaede Hoshiakwa <futursolo@icloud.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "futures";
|
|
packageId = "futures";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" "async-await" ];
|
|
}
|
|
{
|
|
name = "rustversion";
|
|
packageId = "rustversion";
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
];
|
|
|
|
};
|
|
"piper" = rec {
|
|
crateName = "piper";
|
|
version = "0.2.4";
|
|
edition = "2018";
|
|
sha256 = "0rn0mjjm0cwagdkay77wgmz3sqf8fqmv9d9czm79mvr2yj8c9j4n";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
"John Nunley <dev@notgull.net>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "atomic-waker";
|
|
packageId = "atomic-waker";
|
|
}
|
|
{
|
|
name = "fastrand";
|
|
packageId = "fastrand";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "futures-io";
|
|
packageId = "futures-io";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"futures-io" = [ "dep:futures-io" ];
|
|
"portable-atomic" = [ "atomic-waker/portable-atomic" "portable_atomic_crate" "portable-atomic-util" ];
|
|
"portable-atomic-util" = [ "dep:portable-atomic-util" ];
|
|
"portable_atomic_crate" = [ "dep:portable_atomic_crate" ];
|
|
"std" = [ "fastrand/std" "futures-io" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "futures-io" "std" ];
|
|
};
|
|
"pkg-config" = rec {
|
|
crateName = "pkg-config";
|
|
version = "0.3.32";
|
|
edition = "2018";
|
|
sha256 = "0k4h3gnzs94sjb2ix6jyksacs52cf1fanpwsmlhjnwrdnp8dppby";
|
|
libName = "pkg_config";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
|
|
};
|
|
"polling" = rec {
|
|
crateName = "polling";
|
|
version = "3.7.4";
|
|
edition = "2021";
|
|
sha256 = "0bs4nhwfwsvlzlhah2gbhj3aa9ynvchv2g350wapswh26a65c156";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
"John Nunley <dev@notgull.net>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "concurrent-queue";
|
|
packageId = "concurrent-queue";
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
{
|
|
name = "hermit-abi";
|
|
packageId = "hermit-abi 0.4.0";
|
|
target = { target, features }: ("hermit" == target."os" or null);
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
{
|
|
name = "rustix";
|
|
packageId = "rustix 0.38.44";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((target."unix" or false) || ("fuchsia" == target."os" or null) || ("vxworks" == target."os" or null));
|
|
features = [ "event" "fs" "pipe" "process" "std" "time" ];
|
|
}
|
|
{
|
|
name = "tracing";
|
|
packageId = "tracing";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys 0.59.0";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Wdk_Foundation" "Wdk_Storage_FileSystem" "Win32_Foundation" "Win32_Networking_WinSock" "Win32_Security" "Win32_Storage_FileSystem" "Win32_System_IO" "Win32_System_LibraryLoader" "Win32_System_Threading" "Win32_System_WindowsProgramming" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"prettyplease" = rec {
|
|
crateName = "prettyplease";
|
|
version = "0.2.31";
|
|
edition = "2021";
|
|
links = "prettyplease02";
|
|
sha256 = "1sxdgjh8j79iir9cwhwwiy25fqlkvs019rxac7sl5036hxrza5jk";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
usesDefaultFeatures = false;
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
usesDefaultFeatures = false;
|
|
features = [ "clone-impls" "extra-traits" "parsing" "printing" "visit-mut" ];
|
|
}
|
|
];
|
|
features = {
|
|
"verbatim" = [ "syn/parsing" ];
|
|
};
|
|
};
|
|
"proc-macro-crate 1.3.1" = rec {
|
|
crateName = "proc-macro-crate";
|
|
version = "1.3.1";
|
|
edition = "2021";
|
|
sha256 = "069r1k56bvgk0f58dm5swlssfcp79im230affwk6d9ck20g04k3z";
|
|
libName = "proc_macro_crate";
|
|
authors = [
|
|
"Bastian Köcher <git@kchr.de>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
{
|
|
name = "toml_edit";
|
|
packageId = "toml_edit 0.19.15";
|
|
}
|
|
];
|
|
|
|
};
|
|
"proc-macro-crate 2.0.0" = rec {
|
|
crateName = "proc-macro-crate";
|
|
version = "2.0.0";
|
|
edition = "2021";
|
|
sha256 = "1s23imns07vmacn2xjd5hv2h6rr94iqq3fd2frwa6i4h2nk6d0vy";
|
|
libName = "proc_macro_crate";
|
|
authors = [
|
|
"Bastian Köcher <git@kchr.de>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "toml_edit";
|
|
packageId = "toml_edit 0.20.7";
|
|
}
|
|
];
|
|
|
|
};
|
|
"proc-macro-error" = rec {
|
|
crateName = "proc-macro-error";
|
|
version = "1.0.4";
|
|
edition = "2018";
|
|
sha256 = "1373bhxaf0pagd8zkyd03kkx6bchzf6g0dkwrwzsnal9z47lj9fs";
|
|
libName = "proc_macro_error";
|
|
authors = [
|
|
"CreepySkeleton <creepy-skeleton@yandex.ru>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro-error-attr";
|
|
packageId = "proc-macro-error-attr";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 1.0.109";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "version_check";
|
|
packageId = "version_check";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "syn-error" ];
|
|
"syn" = [ "dep:syn" ];
|
|
"syn-error" = [ "syn" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "syn" "syn-error" ];
|
|
};
|
|
"proc-macro-error-attr" = rec {
|
|
crateName = "proc-macro-error-attr";
|
|
version = "1.0.4";
|
|
edition = "2018";
|
|
sha256 = "0sgq6m5jfmasmwwy8x4mjygx5l7kp8s4j60bv25ckv2j1qc41gm1";
|
|
procMacro = true;
|
|
libName = "proc_macro_error_attr";
|
|
authors = [
|
|
"CreepySkeleton <creepy-skeleton@yandex.ru>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "version_check";
|
|
packageId = "version_check";
|
|
}
|
|
];
|
|
|
|
};
|
|
"proc-macro2" = rec {
|
|
crateName = "proc-macro2";
|
|
version = "1.0.94";
|
|
edition = "2021";
|
|
sha256 = "114wxb56gdj9vy44q0ll3l2x9niqzcbyqikydmlb5f3h5rsp26d3";
|
|
libName = "proc_macro2";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "unicode-ident";
|
|
packageId = "unicode-ident";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "proc-macro" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "proc-macro" ];
|
|
};
|
|
"quote" = rec {
|
|
crateName = "quote";
|
|
version = "1.0.40";
|
|
edition = "2018";
|
|
sha256 = "1394cxjg6nwld82pzp2d4fp6pmaz32gai1zh9z5hvh0dawww118q";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "proc-macro" ];
|
|
"proc-macro" = [ "proc-macro2/proc-macro" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "proc-macro" ];
|
|
};
|
|
"r-efi" = rec {
|
|
crateName = "r-efi";
|
|
version = "5.2.0";
|
|
edition = "2018";
|
|
sha256 = "1ig93jvpqyi87nc5kb6dri49p56q7r7qxrn8kfizmqkfj5nmyxkl";
|
|
libName = "r_efi";
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"examples" = [ "native" ];
|
|
"rustc-dep-of-std" = [ "compiler_builtins/rustc-dep-of-std" "core" ];
|
|
};
|
|
};
|
|
"rand" = rec {
|
|
crateName = "rand";
|
|
version = "0.8.5";
|
|
edition = "2018";
|
|
sha256 = "013l6931nn7gkc23jz5mm3qdhf93jjf0fg64nz2lp4i51qd8vbrl";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
"The Rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "rand_core";
|
|
packageId = "rand_core";
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "rand_core/alloc" ];
|
|
"default" = [ "std" "std_rng" ];
|
|
"getrandom" = [ "rand_core/getrandom" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"log" = [ "dep:log" ];
|
|
"packed_simd" = [ "dep:packed_simd" ];
|
|
"rand_chacha" = [ "dep:rand_chacha" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde1" = [ "serde" "rand_core/serde1" ];
|
|
"simd_support" = [ "packed_simd" ];
|
|
"std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ];
|
|
"std_rng" = [ "rand_chacha" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "small_rng" ];
|
|
};
|
|
"rand_core" = rec {
|
|
crateName = "rand_core";
|
|
version = "0.6.4";
|
|
edition = "2018";
|
|
sha256 = "0b4j2v4cb5krak1pv6kakv4sz6xcwbrmy2zckc32hsigbrwy82zc";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"getrandom" = [ "dep:getrandom" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde1" = [ "serde" ];
|
|
"std" = [ "alloc" "getrandom" "getrandom/std" ];
|
|
};
|
|
};
|
|
"redox_syscall" = rec {
|
|
crateName = "redox_syscall";
|
|
version = "0.5.10";
|
|
edition = "2021";
|
|
sha256 = "1l9b638qx72312yzh8ykvda9b3lqd9gf6yqn66b23a331ck0r30b";
|
|
libName = "syscall";
|
|
authors = [
|
|
"Jeremy Soller <jackpot51@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags";
|
|
}
|
|
];
|
|
features = {
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "userspace" ];
|
|
"rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "userspace" ];
|
|
};
|
|
"regex" = rec {
|
|
crateName = "regex";
|
|
version = "1.11.1";
|
|
edition = "2021";
|
|
sha256 = "148i41mzbx8bmq32hsj1q4karkzzx5m60qza6gdw4pdc9qdyyi5m";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "aho-corasick";
|
|
packageId = "aho-corasick";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "regex-automata";
|
|
packageId = "regex-automata";
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" "syntax" "meta" "nfa-pikevm" ];
|
|
}
|
|
{
|
|
name = "regex-syntax";
|
|
packageId = "regex-syntax";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" "perf" "unicode" "regex-syntax/default" ];
|
|
"logging" = [ "aho-corasick?/logging" "memchr?/logging" "regex-automata/logging" ];
|
|
"perf" = [ "perf-cache" "perf-dfa" "perf-onepass" "perf-backtrack" "perf-inline" "perf-literal" ];
|
|
"perf-backtrack" = [ "regex-automata/nfa-backtrack" ];
|
|
"perf-dfa" = [ "regex-automata/hybrid" ];
|
|
"perf-dfa-full" = [ "regex-automata/dfa-build" "regex-automata/dfa-search" ];
|
|
"perf-inline" = [ "regex-automata/perf-inline" ];
|
|
"perf-literal" = [ "dep:aho-corasick" "dep:memchr" "regex-automata/perf-literal" ];
|
|
"perf-onepass" = [ "regex-automata/dfa-onepass" ];
|
|
"std" = [ "aho-corasick?/std" "memchr?/std" "regex-automata/std" "regex-syntax/std" ];
|
|
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "regex-automata/unicode" "regex-syntax/unicode" ];
|
|
"unicode-age" = [ "regex-automata/unicode-age" "regex-syntax/unicode-age" ];
|
|
"unicode-bool" = [ "regex-automata/unicode-bool" "regex-syntax/unicode-bool" ];
|
|
"unicode-case" = [ "regex-automata/unicode-case" "regex-syntax/unicode-case" ];
|
|
"unicode-gencat" = [ "regex-automata/unicode-gencat" "regex-syntax/unicode-gencat" ];
|
|
"unicode-perl" = [ "regex-automata/unicode-perl" "regex-automata/unicode-word-boundary" "regex-syntax/unicode-perl" ];
|
|
"unicode-script" = [ "regex-automata/unicode-script" "regex-syntax/unicode-script" ];
|
|
"unicode-segment" = [ "regex-automata/unicode-segment" "regex-syntax/unicode-segment" ];
|
|
"unstable" = [ "pattern" ];
|
|
"use_std" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" "unicode-perl" ];
|
|
};
|
|
"regex-automata" = rec {
|
|
crateName = "regex-automata";
|
|
version = "0.4.9";
|
|
edition = "2021";
|
|
sha256 = "02092l8zfh3vkmk47yjc8d631zhhcd49ck2zr133prvd3z38v7l0";
|
|
libName = "regex_automata";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "aho-corasick";
|
|
packageId = "aho-corasick";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "regex-syntax";
|
|
packageId = "regex-syntax";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" "syntax" "perf" "unicode" "meta" "nfa" "dfa" "hybrid" ];
|
|
"dfa" = [ "dfa-build" "dfa-search" "dfa-onepass" ];
|
|
"dfa-build" = [ "nfa-thompson" "dfa-search" ];
|
|
"dfa-onepass" = [ "nfa-thompson" ];
|
|
"hybrid" = [ "alloc" "nfa-thompson" ];
|
|
"internal-instrument" = [ "internal-instrument-pikevm" ];
|
|
"internal-instrument-pikevm" = [ "logging" "std" ];
|
|
"logging" = [ "dep:log" "aho-corasick?/logging" "memchr?/logging" ];
|
|
"meta" = [ "syntax" "nfa-pikevm" ];
|
|
"nfa" = [ "nfa-thompson" "nfa-pikevm" "nfa-backtrack" ];
|
|
"nfa-backtrack" = [ "nfa-thompson" ];
|
|
"nfa-pikevm" = [ "nfa-thompson" ];
|
|
"nfa-thompson" = [ "alloc" ];
|
|
"perf" = [ "perf-inline" "perf-literal" ];
|
|
"perf-literal" = [ "perf-literal-substring" "perf-literal-multisubstring" ];
|
|
"perf-literal-multisubstring" = [ "std" "dep:aho-corasick" ];
|
|
"perf-literal-substring" = [ "aho-corasick?/perf-literal" "dep:memchr" ];
|
|
"std" = [ "regex-syntax?/std" "memchr?/std" "aho-corasick?/std" "alloc" ];
|
|
"syntax" = [ "dep:regex-syntax" "alloc" ];
|
|
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" "regex-syntax?/unicode" ];
|
|
"unicode-age" = [ "regex-syntax?/unicode-age" ];
|
|
"unicode-bool" = [ "regex-syntax?/unicode-bool" ];
|
|
"unicode-case" = [ "regex-syntax?/unicode-case" ];
|
|
"unicode-gencat" = [ "regex-syntax?/unicode-gencat" ];
|
|
"unicode-perl" = [ "regex-syntax?/unicode-perl" ];
|
|
"unicode-script" = [ "regex-syntax?/unicode-script" ];
|
|
"unicode-segment" = [ "regex-syntax?/unicode-segment" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "meta" "nfa-pikevm" "nfa-thompson" "std" "syntax" "unicode-perl" "unicode-word-boundary" ];
|
|
};
|
|
"regex-syntax" = rec {
|
|
crateName = "regex-syntax";
|
|
version = "0.8.5";
|
|
edition = "2021";
|
|
sha256 = "0p41p3hj9ww7blnbwbj9h7rwxzxg0c1hvrdycgys8rxyhqqw859b";
|
|
libName = "regex_syntax";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"default" = [ "std" "unicode" ];
|
|
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" "unicode-perl" ];
|
|
};
|
|
"result-extended" = rec {
|
|
crateName = "result-extended";
|
|
version = "0.1.0";
|
|
edition = "2021";
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./result-extended; };
|
|
libName = "result_extended";
|
|
devDependencies = [
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
];
|
|
|
|
};
|
|
"rustc-demangle" = rec {
|
|
crateName = "rustc-demangle";
|
|
version = "0.1.24";
|
|
edition = "2015";
|
|
sha256 = "07zysaafgrkzy2rjgwqdj2a8qdpsm6zv6f5pgpk9x0lm40z9b6vi";
|
|
libName = "rustc_demangle";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
};
|
|
};
|
|
"rustc_version" = rec {
|
|
crateName = "rustc_version";
|
|
version = "0.4.1";
|
|
edition = "2018";
|
|
sha256 = "14lvdsmr5si5qbqzrajgb6vfn69k0sfygrvfvr2mps26xwi3mjyg";
|
|
dependencies = [
|
|
{
|
|
name = "semver";
|
|
packageId = "semver";
|
|
}
|
|
];
|
|
|
|
};
|
|
"rustix 0.38.44" = rec {
|
|
crateName = "rustix";
|
|
version = "0.38.44";
|
|
edition = "2021";
|
|
sha256 = "0m61v0h15lf5rrnbjhcb9306bgqrhskrqv7i1n0939dsw8dbrdgx";
|
|
authors = [
|
|
"Dan Gohman <dev@sunfishcode.online>"
|
|
"Jakub Konka <kubkon@jakubkonka.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
|
|
}
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
|
|
}
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
|
|
}
|
|
{
|
|
name = "linux-raw-sys";
|
|
packageId = "linux-raw-sys 0.4.15";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((("android" == target."os" or null) || ("linux" == target."os" or null)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
|
|
features = [ "general" "ioctl" "no_std" ];
|
|
}
|
|
{
|
|
name = "linux-raw-sys";
|
|
packageId = "linux-raw-sys 0.4.15";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || ("s390x" == target."arch" or null)) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
|
|
features = [ "general" "errno" "ioctl" "no_std" "elf" ];
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys 0.59.0";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_NetworkManagement_IpHelper" "Win32_System_Threading" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
features = {
|
|
"all-apis" = [ "event" "fs" "io_uring" "mm" "mount" "net" "param" "pipe" "process" "procfs" "pty" "rand" "runtime" "shm" "stdio" "system" "termios" "thread" "time" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" "use-libc-auxv" ];
|
|
"io_uring" = [ "event" "fs" "net" "linux-raw-sys/io_uring" ];
|
|
"itoa" = [ "dep:itoa" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"libc-extra-traits" = [ "libc?/extra_traits" ];
|
|
"libc_errno" = [ "dep:libc_errno" ];
|
|
"linux_latest" = [ "linux_4_11" ];
|
|
"net" = [ "linux-raw-sys/net" "linux-raw-sys/netlink" "linux-raw-sys/if_ether" "linux-raw-sys/xdp" ];
|
|
"once_cell" = [ "dep:once_cell" ];
|
|
"param" = [ "fs" ];
|
|
"process" = [ "linux-raw-sys/prctl" ];
|
|
"procfs" = [ "once_cell" "itoa" "fs" ];
|
|
"pty" = [ "itoa" "fs" ];
|
|
"runtime" = [ "linux-raw-sys/prctl" ];
|
|
"rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" "compiler_builtins" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" "compiler_builtins?/rustc-dep-of-std" ];
|
|
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
|
|
"shm" = [ "fs" ];
|
|
"std" = [ "bitflags/std" "alloc" "libc?/std" "libc_errno?/std" "libc-extra-traits" ];
|
|
"system" = [ "linux-raw-sys/system" ];
|
|
"thread" = [ "linux-raw-sys/prctl" ];
|
|
"use-libc" = [ "libc_errno" "libc" "libc-extra-traits" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "event" "fs" "libc-extra-traits" "net" "pipe" "process" "std" "time" ];
|
|
};
|
|
"rustix 1.0.3" = rec {
|
|
crateName = "rustix";
|
|
version = "1.0.3";
|
|
edition = "2021";
|
|
sha256 = "15kyccykzx7spxxxx5n39v592bdvzns91cf3xhlqvb4n55aihsp5";
|
|
authors = [
|
|
"Dan Gohman <dev@sunfishcode.online>"
|
|
"Jakub Konka <kubkon@jakubkonka.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
|
|
}
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
|
|
}
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
|
|
}
|
|
{
|
|
name = "linux-raw-sys";
|
|
packageId = "linux-raw-sys 0.9.3";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((("android" == target."os" or null) || ("linux" == target."os" or null)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
|
|
features = [ "general" "ioctl" "no_std" ];
|
|
}
|
|
{
|
|
name = "linux-raw-sys";
|
|
packageId = "linux-raw-sys 0.9.3";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
|
|
features = [ "general" "errno" "ioctl" "no_std" "elf" ];
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys 0.59.0";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Foundation" "Win32_Networking_WinSock" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
features = {
|
|
"all-apis" = [ "event" "fs" "io_uring" "mm" "mount" "net" "param" "pipe" "process" "pty" "rand" "runtime" "shm" "stdio" "system" "termios" "thread" "time" ];
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"io_uring" = [ "event" "fs" "net" "thread" "linux-raw-sys/io_uring" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"libc_errno" = [ "dep:libc_errno" ];
|
|
"linux_5_1" = [ "linux_4_11" ];
|
|
"linux_5_11" = [ "linux_5_1" ];
|
|
"linux_latest" = [ "linux_5_11" ];
|
|
"net" = [ "linux-raw-sys/net" "linux-raw-sys/netlink" "linux-raw-sys/if_ether" "linux-raw-sys/xdp" ];
|
|
"process" = [ "linux-raw-sys/prctl" ];
|
|
"pty" = [ "fs" ];
|
|
"runtime" = [ "linux-raw-sys/prctl" ];
|
|
"rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" "compiler_builtins" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" "compiler_builtins?/rustc-dep-of-std" ];
|
|
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
|
|
"shm" = [ "fs" ];
|
|
"std" = [ "bitflags/std" "alloc" "libc?/std" "libc_errno?/std" ];
|
|
"system" = [ "linux-raw-sys/system" ];
|
|
"thread" = [ "linux-raw-sys/prctl" ];
|
|
"use-libc" = [ "libc_errno" "libc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "fs" "std" ];
|
|
};
|
|
"rustversion" = rec {
|
|
crateName = "rustversion";
|
|
version = "1.0.20";
|
|
edition = "2018";
|
|
sha256 = "1lhwjb16dsm8brd18bn2bh0ryzc7qi29bi2jjsc6ny2zbwn3ivgd";
|
|
procMacro = true;
|
|
build = "build/build.rs";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"ryu" = rec {
|
|
crateName = "ryu";
|
|
version = "1.0.20";
|
|
edition = "2018";
|
|
sha256 = "07s855l8sb333h6bpn24pka5sp7hjk2w667xy6a0khkf6sqv5lr8";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
features = {
|
|
"no-panic" = [ "dep:no-panic" ];
|
|
};
|
|
};
|
|
"scopeguard" = rec {
|
|
crateName = "scopeguard";
|
|
version = "1.2.0";
|
|
edition = "2015";
|
|
sha256 = "0jcz9sd47zlsgcnm1hdw0664krxwb5gczlif4qngj2aif8vky54l";
|
|
authors = [
|
|
"bluss"
|
|
];
|
|
features = {
|
|
"default" = [ "use_std" ];
|
|
};
|
|
};
|
|
"semver" = rec {
|
|
crateName = "semver";
|
|
version = "1.0.26";
|
|
edition = "2018";
|
|
sha256 = "1l5q2vb8fjkby657kdyfpvv40x2i2xqq9bg57pxqakfj92fgmrjn";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"serde" = rec {
|
|
crateName = "serde";
|
|
version = "1.0.219";
|
|
edition = "2018";
|
|
sha256 = "1dl6nyxnsi82a197sd752128a4avm6mxnscywas1jq30srp2q3jz";
|
|
authors = [
|
|
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
target = { target, features }: false;
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"derive" = [ "serde_derive" ];
|
|
"serde_derive" = [ "dep:serde_derive" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "derive" "serde_derive" "std" ];
|
|
};
|
|
"serde-wasm-bindgen" = rec {
|
|
crateName = "serde-wasm-bindgen";
|
|
version = "0.6.5";
|
|
edition = "2018";
|
|
sha256 = "0sz1l4v8059hiizf5z7r2spm6ws6sqcrs4qgqwww3p7dy1ly20l3";
|
|
libName = "serde_wasm_bindgen";
|
|
authors = [
|
|
"Ingvar Stepanyan <me@rreverser.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
];
|
|
|
|
};
|
|
"serde_derive" = rec {
|
|
crateName = "serde_derive";
|
|
version = "1.0.219";
|
|
edition = "2015";
|
|
sha256 = "001azhjmj7ya52pmfiw4ppxm16nd44y15j2pf5gkcwrcgz7pc0jv";
|
|
procMacro = true;
|
|
authors = [
|
|
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
features = [ "proc-macro" ];
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
usesDefaultFeatures = false;
|
|
features = [ "proc-macro" ];
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
usesDefaultFeatures = false;
|
|
features = [ "clone-impls" "derive" "parsing" "printing" "proc-macro" ];
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"serde_json" = rec {
|
|
crateName = "serde_json";
|
|
version = "1.0.140";
|
|
edition = "2021";
|
|
sha256 = "0wwkp4vc20r87081ihj3vpyz5qf7wqkqipq17v99nv6wjrp8n1i0";
|
|
authors = [
|
|
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
}
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
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" = [ "memchr/std" "serde/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "raw_value" "std" ];
|
|
};
|
|
"serde_path_to_error" = rec {
|
|
crateName = "serde_path_to_error";
|
|
version = "0.1.17";
|
|
edition = "2021";
|
|
sha256 = "0alb447z25dvczd6ll3vfjbf51pypn23mgs5hv8978vzjczv3yjr";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
}
|
|
];
|
|
|
|
};
|
|
"serde_spanned" = rec {
|
|
crateName = "serde_spanned";
|
|
version = "0.6.8";
|
|
edition = "2021";
|
|
sha256 = "1q89g70azwi4ybilz5jb8prfpa575165lmrffd49vmcf76qpqq47";
|
|
dependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
}
|
|
];
|
|
features = {
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "serde" ];
|
|
};
|
|
"serde_urlencoded" = rec {
|
|
crateName = "serde_urlencoded";
|
|
version = "0.7.1";
|
|
edition = "2018";
|
|
sha256 = "1zgklbdaysj3230xivihs30qi5vkhigg323a9m62k8jwf4a1qjfk";
|
|
authors = [
|
|
"Anthony Ramine <n.oxyde@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "form_urlencoded";
|
|
packageId = "form_urlencoded";
|
|
}
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
}
|
|
{
|
|
name = "ryu";
|
|
packageId = "ryu";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
}
|
|
];
|
|
|
|
};
|
|
"server" = rec {
|
|
crateName = "server";
|
|
version = "0.1.0";
|
|
edition = "2021";
|
|
crateBin = [
|
|
{
|
|
name = "server";
|
|
path = "src/main.rs";
|
|
requiredFeatures = [ ];
|
|
}
|
|
];
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./visions/server; };
|
|
dependencies = [
|
|
{
|
|
name = "axum";
|
|
packageId = "axum";
|
|
features = [ "macros" ];
|
|
}
|
|
{
|
|
name = "result-extended";
|
|
packageId = "result-extended";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" "serde_derive" ];
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 2.0.12";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "full" "rt" ];
|
|
}
|
|
{
|
|
name = "tower-http";
|
|
packageId = "tower-http";
|
|
features = [ "cors" ];
|
|
}
|
|
{
|
|
name = "uuid";
|
|
packageId = "uuid 1.16.0";
|
|
features = [ "v4" ];
|
|
}
|
|
{
|
|
name = "visions-types";
|
|
packageId = "visions-types";
|
|
}
|
|
];
|
|
|
|
};
|
|
"shlex" = rec {
|
|
crateName = "shlex";
|
|
version = "1.3.0";
|
|
edition = "2015";
|
|
sha256 = "0r1y6bv26c1scpxvhg2cabimrmwgbp4p3wy6syj9n0c4s3q2znhg";
|
|
authors = [
|
|
"comex <comexk@gmail.com>"
|
|
"Fenhl <fenhl@fenhl.net>"
|
|
"Adrian Taylor <adetaylor@chromium.org>"
|
|
"Alex Touchet <alextouchet@outlook.com>"
|
|
"Daniel Parks <dp+git@oxidized.org>"
|
|
"Garrett Berg <googberg@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"signal-hook-registry" = rec {
|
|
crateName = "signal-hook-registry";
|
|
version = "1.4.2";
|
|
edition = "2015";
|
|
sha256 = "1cb5akgq8ajnd5spyn587srvs4n26ryq0p78nswffwhv46sf1sd9";
|
|
libName = "signal_hook_registry";
|
|
authors = [
|
|
"Michal 'vorner' Vaner <vorner@vorner.cz>"
|
|
"Masaki Hara <ackie.h.gmai@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
|
|
};
|
|
"siphasher" = rec {
|
|
crateName = "siphasher";
|
|
version = "1.0.1";
|
|
edition = "2018";
|
|
sha256 = "17f35782ma3fn6sh21c027kjmd227xyrx06ffi8gw4xzv9yry6an";
|
|
authors = [
|
|
"Frank Denis <github@pureftpd.org>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde_json" = [ "dep:serde_json" ];
|
|
"serde_no_std" = [ "serde/alloc" ];
|
|
"serde_std" = [ "std" "serde/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"slab" = rec {
|
|
crateName = "slab";
|
|
version = "0.4.9";
|
|
edition = "2018";
|
|
sha256 = "0rxvsgir0qw5lkycrqgb1cxsvxzjv9bmx73bk5y42svnzfba94lg";
|
|
authors = [
|
|
"Carl Lerche <me@carllerche.com>"
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "autocfg";
|
|
packageId = "autocfg";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"smallvec" = rec {
|
|
crateName = "smallvec";
|
|
version = "1.14.0";
|
|
edition = "2018";
|
|
sha256 = "1z8wpr53x6jisklqhkkvkgyi8s5cn69h2d2alhqfxahzxwiq7kvz";
|
|
authors = [
|
|
"The Servo Project Developers"
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"const_new" = [ "const_generics" ];
|
|
"drain_keep_rest" = [ "drain_filter" ];
|
|
"malloc_size_of" = [ "dep:malloc_size_of" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "const_generics" "const_new" "union" ];
|
|
};
|
|
"socket2" = rec {
|
|
crateName = "socket2";
|
|
version = "0.5.9";
|
|
edition = "2021";
|
|
sha256 = "1vzds1wwwi0a51fn10r98j7cx3ir4shvhykpbk7md2h5h1ydapsg";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys 0.52.0";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" ];
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "all" ];
|
|
};
|
|
"strsim" = rec {
|
|
crateName = "strsim";
|
|
version = "0.11.1";
|
|
edition = "2015";
|
|
sha256 = "0kzvqlw8hxqb7y598w1s0hxlnmi84sg5vsipp3yg5na5d1rvba3x";
|
|
authors = [
|
|
"Danny Guo <danny@dannyguo.com>"
|
|
"maxbachmann <oss@maxbachmann.de>"
|
|
];
|
|
|
|
};
|
|
"syn 1.0.109" = rec {
|
|
crateName = "syn";
|
|
version = "1.0.109";
|
|
edition = "2018";
|
|
sha256 = "0ds2if4600bd59wsv7jjgfkayfzy3hnazs394kz6zdkmna8l3dkj";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "unicode-ident";
|
|
packageId = "unicode-ident";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
|
|
"printing" = [ "quote" ];
|
|
"proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ];
|
|
"quote" = [ "dep:quote" ];
|
|
"test" = [ "syn-test-suite/all-features" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "full" "parsing" "printing" "proc-macro" "quote" ];
|
|
};
|
|
"syn 2.0.100" = rec {
|
|
crateName = "syn";
|
|
version = "2.0.100";
|
|
edition = "2021";
|
|
sha256 = "18623wdkns03blpv65xsjn8fipl9p9hj98vlrnhin7nqran496mh";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "unicode-ident";
|
|
packageId = "unicode-ident";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
|
|
"printing" = [ "dep:quote" ];
|
|
"proc-macro" = [ "proc-macro2/proc-macro" "quote?/proc-macro" ];
|
|
"test" = [ "syn-test-suite/all-features" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "full" "parsing" "printing" "proc-macro" "visit" "visit-mut" ];
|
|
};
|
|
"sync_wrapper" = rec {
|
|
crateName = "sync_wrapper";
|
|
version = "1.0.2";
|
|
edition = "2021";
|
|
sha256 = "0qvjyasd6w18mjg5xlaq5jgy84jsjfsvmnn12c13gypxbv75dwhb";
|
|
authors = [
|
|
"Actyx AG <developer@actyx.io>"
|
|
];
|
|
features = {
|
|
"futures" = [ "futures-core" ];
|
|
"futures-core" = [ "dep:futures-core" ];
|
|
};
|
|
};
|
|
"system-deps" = rec {
|
|
crateName = "system-deps";
|
|
version = "6.2.2";
|
|
edition = "2018";
|
|
sha256 = "0j93ryw031n3h8b0nfpj5xwh3ify636xmv8kxianvlyyipmkbrd3";
|
|
libName = "system_deps";
|
|
authors = [
|
|
"Guillaume Desmottes <guillaume.desmottes@collabora.com>"
|
|
"Josh Triplett <josh@joshtriplett.org>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-expr";
|
|
packageId = "cfg-expr";
|
|
features = [ "targets" ];
|
|
}
|
|
{
|
|
name = "heck";
|
|
packageId = "heck 0.5.0";
|
|
}
|
|
{
|
|
name = "pkg-config";
|
|
packageId = "pkg-config";
|
|
}
|
|
{
|
|
name = "toml";
|
|
packageId = "toml";
|
|
usesDefaultFeatures = false;
|
|
features = [ "parse" ];
|
|
}
|
|
{
|
|
name = "version-compare";
|
|
packageId = "version-compare";
|
|
}
|
|
];
|
|
|
|
};
|
|
"target-lexicon" = rec {
|
|
crateName = "target-lexicon";
|
|
version = "0.12.16";
|
|
edition = "2018";
|
|
sha256 = "1cg3bnx1gdkdr5hac1hzxy64fhw4g7dqkd0n3dxy5lfngpr1mi31";
|
|
libName = "target_lexicon";
|
|
authors = [
|
|
"Dan Gohman <sunfish@mozilla.com>"
|
|
];
|
|
features = {
|
|
"serde" = [ "dep:serde" ];
|
|
"serde_support" = [ "serde" "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"tempfile" = rec {
|
|
crateName = "tempfile";
|
|
version = "3.19.1";
|
|
edition = "2021";
|
|
sha256 = "1grmcj8y6rcavndw2dm18ndzdimsq5f8lcrwyg627cdrcdvsqdvl";
|
|
authors = [
|
|
"Steven Allen <steven@stebalien.com>"
|
|
"The Rust Project Developers"
|
|
"Ashley Mannix <ashleymannix@live.com.au>"
|
|
"Jason White <me@jasonwhite.io>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "fastrand";
|
|
packageId = "fastrand";
|
|
}
|
|
{
|
|
name = "getrandom";
|
|
packageId = "getrandom 0.3.2";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((target."unix" or false) || (target."windows" or false) || ("wasi" == target."os" or null));
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "rustix";
|
|
packageId = "rustix 1.0.3";
|
|
target = { target, features }: ((target."unix" or false) || ("wasi" == target."os" or null));
|
|
features = [ "fs" ];
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys 0.59.0";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Storage_FileSystem" "Win32_Foundation" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "getrandom" ];
|
|
"getrandom" = [ "dep:getrandom" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "getrandom" ];
|
|
};
|
|
"thiserror 1.0.69" = rec {
|
|
crateName = "thiserror";
|
|
version = "1.0.69";
|
|
edition = "2021";
|
|
sha256 = "0lizjay08agcr5hs9yfzzj6axs53a2rgx070a1dsi3jpkcrzbamn";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "thiserror-impl";
|
|
packageId = "thiserror-impl 1.0.69";
|
|
}
|
|
];
|
|
|
|
};
|
|
"thiserror 2.0.12" = rec {
|
|
crateName = "thiserror";
|
|
version = "2.0.12";
|
|
edition = "2021";
|
|
sha256 = "024791nsc0np63g2pq30cjf9acj38z3jwx9apvvi8qsqmqnqlysn";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "thiserror-impl";
|
|
packageId = "thiserror-impl 2.0.12";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"thiserror-impl 1.0.69" = rec {
|
|
crateName = "thiserror-impl";
|
|
version = "1.0.69";
|
|
edition = "2021";
|
|
sha256 = "1h84fmn2nai41cxbhk6pqf46bxqq1b344v8yz089w1chzi76rvjg";
|
|
procMacro = true;
|
|
libName = "thiserror_impl";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
}
|
|
];
|
|
|
|
};
|
|
"thiserror-impl 2.0.12" = rec {
|
|
crateName = "thiserror-impl";
|
|
version = "2.0.12";
|
|
edition = "2021";
|
|
sha256 = "07bsn7shydaidvyyrm7jz29vp78vrxr9cr9044rfmn078lmz8z3z";
|
|
procMacro = true;
|
|
libName = "thiserror_impl";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
}
|
|
];
|
|
|
|
};
|
|
"tinystr" = rec {
|
|
crateName = "tinystr";
|
|
version = "0.7.6";
|
|
edition = "2021";
|
|
sha256 = "0bxqaw7z8r2kzngxlzlgvld1r6jbnwyylyvyjbv1q71rvgaga5wi";
|
|
authors = [
|
|
"The ICU4X Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "displaydoc";
|
|
packageId = "displaydoc";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" ];
|
|
}
|
|
];
|
|
features = {
|
|
"databake" = [ "dep:databake" ];
|
|
"default" = [ "alloc" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"zerovec" = [ "dep:zerovec" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "serde" ];
|
|
};
|
|
"tokio" = rec {
|
|
crateName = "tokio";
|
|
version = "1.44.1";
|
|
edition = "2021";
|
|
sha256 = "06n90q5hh1yd844s6nf4j3fwbrkm2bnq533kp3a488l4bdhxm0pk";
|
|
authors = [
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "backtrace";
|
|
packageId = "backtrace";
|
|
target = { target, features }: (target."tokio_taskdump" or false);
|
|
}
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
optional = true;
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "mio";
|
|
packageId = "mio";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "parking_lot";
|
|
packageId = "parking_lot";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "signal-hook-registry";
|
|
packageId = "signal-hook-registry";
|
|
optional = true;
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "socket2";
|
|
packageId = "socket2";
|
|
optional = true;
|
|
target = { target, features }: (!(builtins.elem "wasm" target."family"));
|
|
features = [ "all" ];
|
|
}
|
|
{
|
|
name = "tokio-macros";
|
|
packageId = "tokio-macros";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys 0.52.0";
|
|
optional = true;
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = {target, features}: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "socket2";
|
|
packageId = "socket2";
|
|
target = {target, features}: (!(builtins.elem "wasm" target."family"));
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys 0.52.0";
|
|
target = {target, features}: (target."windows" or false);
|
|
features = [ "Win32_Foundation" "Win32_Security_Authorization" ];
|
|
}
|
|
];
|
|
features = {
|
|
"bytes" = [ "dep:bytes" ];
|
|
"full" = [ "fs" "io-util" "io-std" "macros" "net" "parking_lot" "process" "rt" "rt-multi-thread" "signal" "sync" "time" ];
|
|
"io-util" = [ "bytes" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"macros" = [ "tokio-macros" ];
|
|
"mio" = [ "dep:mio" ];
|
|
"net" = [ "libc" "mio/os-poll" "mio/os-ext" "mio/net" "socket2" "windows-sys/Win32_Foundation" "windows-sys/Win32_Security" "windows-sys/Win32_Storage_FileSystem" "windows-sys/Win32_System_Pipes" "windows-sys/Win32_System_SystemServices" ];
|
|
"parking_lot" = [ "dep:parking_lot" ];
|
|
"process" = [ "bytes" "libc" "mio/os-poll" "mio/os-ext" "mio/net" "signal-hook-registry" "windows-sys/Win32_Foundation" "windows-sys/Win32_System_Threading" "windows-sys/Win32_System_WindowsProgramming" ];
|
|
"rt-multi-thread" = [ "rt" ];
|
|
"signal" = [ "libc" "mio/os-poll" "mio/net" "mio/os-ext" "signal-hook-registry" "windows-sys/Win32_Foundation" "windows-sys/Win32_System_Console" ];
|
|
"signal-hook-registry" = [ "dep:signal-hook-registry" ];
|
|
"socket2" = [ "dep:socket2" ];
|
|
"test-util" = [ "rt" "sync" "time" ];
|
|
"tokio-macros" = [ "dep:tokio-macros" ];
|
|
"tracing" = [ "dep:tracing" ];
|
|
"windows-sys" = [ "dep:windows-sys" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "bytes" "default" "fs" "full" "io-std" "io-util" "libc" "macros" "mio" "net" "parking_lot" "process" "rt" "rt-multi-thread" "signal" "signal-hook-registry" "socket2" "sync" "time" "tokio-macros" "windows-sys" ];
|
|
};
|
|
"tokio-macros" = rec {
|
|
crateName = "tokio-macros";
|
|
version = "2.5.0";
|
|
edition = "2021";
|
|
sha256 = "1f6az2xbvqp7am417b78d1za8axbvjvxnmkakz9vr8s52czx81kf";
|
|
procMacro = true;
|
|
libName = "tokio_macros";
|
|
authors = [
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"tokio-stream" = rec {
|
|
crateName = "tokio-stream";
|
|
version = "0.1.17";
|
|
edition = "2021";
|
|
sha256 = "0ix0770hfp4x5rh5bl7vsnr3d4iz4ms43i522xw70xaap9xqv9gc";
|
|
libName = "tokio_stream";
|
|
authors = [
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "sync" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "full" "test-util" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "time" ];
|
|
"fs" = [ "tokio/fs" ];
|
|
"full" = [ "time" "net" "io-util" "fs" "sync" "signal" ];
|
|
"io-util" = [ "tokio/io-util" ];
|
|
"net" = [ "tokio/net" ];
|
|
"signal" = [ "tokio/signal" ];
|
|
"sync" = [ "tokio/sync" "tokio-util" ];
|
|
"time" = [ "tokio/time" ];
|
|
"tokio-util" = [ "dep:tokio-util" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "time" ];
|
|
};
|
|
"tokise" = rec {
|
|
crateName = "tokise";
|
|
version = "0.2.0";
|
|
edition = "2021";
|
|
sha256 = "03p48kqln4y2kk8r5871363m6mkc1yds47k7q6f9wnz1iirrgkyy";
|
|
authors = [
|
|
"Kaede Hoshikawa <futursolo@icloud.com>"
|
|
"Elina <imelina@elina.website>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "futures";
|
|
packageId = "futures";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" "async-await" ];
|
|
}
|
|
{
|
|
name = "gloo";
|
|
packageId = "gloo";
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && (!("wasi" == target."os" or null)));
|
|
}
|
|
{
|
|
name = "num_cpus";
|
|
packageId = "num_cpus";
|
|
target = { target, features }: (!("wasm32" == target."arch" or null));
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
{
|
|
name = "pin-project";
|
|
packageId = "pin-project";
|
|
}
|
|
{
|
|
name = "pinned";
|
|
packageId = "pinned";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
target = { target, features }: ((!("wasm32" == target."arch" or null)) || ("wasi" == target."os" or null));
|
|
features = [ "rt" "time" ];
|
|
}
|
|
{
|
|
name = "tokio-stream";
|
|
packageId = "tokio-stream";
|
|
target = { target, features }: ((!("wasm32" == target."arch" or null)) || ("wasi" == target."os" or null));
|
|
features = [ "time" ];
|
|
}
|
|
{
|
|
name = "wasm-bindgen-futures";
|
|
packageId = "wasm-bindgen-futures";
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && (!("wasi" == target."os" or null)));
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
target = {target, features}: (!("wasm32" == target."arch" or null));
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"toml" = rec {
|
|
crateName = "toml";
|
|
version = "0.8.20";
|
|
edition = "2021";
|
|
sha256 = "0j012b37iz1mihksr6a928s6dzszxvblzg3l5wxp7azzsv6sb1yd";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
}
|
|
{
|
|
name = "serde_spanned";
|
|
packageId = "serde_spanned";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "toml_datetime";
|
|
packageId = "toml_datetime";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "toml_edit";
|
|
packageId = "toml_edit 0.22.24";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "serde" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "parse" "display" ];
|
|
"display" = [ "dep:toml_edit" "toml_edit?/display" ];
|
|
"indexmap" = [ "dep:indexmap" ];
|
|
"parse" = [ "dep:toml_edit" "toml_edit?/parse" ];
|
|
"preserve_order" = [ "indexmap" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "display" "parse" ];
|
|
};
|
|
"toml_datetime" = rec {
|
|
crateName = "toml_datetime";
|
|
version = "0.6.8";
|
|
edition = "2021";
|
|
sha256 = "0hgv7v9g35d7y9r2afic58jvlwnf73vgd1mz2k8gihlgrf73bmqd";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "serde" ];
|
|
};
|
|
"toml_edit 0.19.15" = rec {
|
|
crateName = "toml_edit";
|
|
version = "0.19.15";
|
|
edition = "2021";
|
|
sha256 = "08bl7rp5g6jwmfpad9s8jpw8wjrciadpnbaswgywpr9hv9qbfnqv";
|
|
authors = [
|
|
"Andronik Ordian <write@reusable.software>"
|
|
"Ed Page <eopage@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "toml_datetime";
|
|
packageId = "toml_datetime";
|
|
}
|
|
{
|
|
name = "winnow";
|
|
packageId = "winnow 0.5.40";
|
|
}
|
|
];
|
|
features = {
|
|
"perf" = [ "dep:kstring" ];
|
|
"serde" = [ "dep:serde" "toml_datetime/serde" "dep:serde_spanned" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"toml_edit 0.20.7" = rec {
|
|
crateName = "toml_edit";
|
|
version = "0.20.7";
|
|
edition = "2021";
|
|
sha256 = "10bdyrl1yj5jxkiqfa2fyx9inlzlm7s8nf1jnysp4k6qwky2gx3h";
|
|
authors = [
|
|
"Andronik Ordian <write@reusable.software>"
|
|
"Ed Page <eopage@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "toml_datetime";
|
|
packageId = "toml_datetime";
|
|
}
|
|
{
|
|
name = "winnow";
|
|
packageId = "winnow 0.5.40";
|
|
}
|
|
];
|
|
features = {
|
|
"perf" = [ "dep:kstring" ];
|
|
"serde" = [ "dep:serde" "toml_datetime/serde" "dep:serde_spanned" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"toml_edit 0.22.24" = rec {
|
|
crateName = "toml_edit";
|
|
version = "0.22.24";
|
|
edition = "2021";
|
|
sha256 = "0x0lgp70x5cl9nla03xqs5vwwwlrwmd0djkdrp3h3lpdymgpkd0p";
|
|
authors = [
|
|
"Andronik Ordian <write@reusable.software>"
|
|
"Ed Page <eopage@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "serde_spanned";
|
|
packageId = "serde_spanned";
|
|
optional = true;
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "toml_datetime";
|
|
packageId = "toml_datetime";
|
|
}
|
|
{
|
|
name = "winnow";
|
|
packageId = "winnow 0.7.4";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "parse" "display" ];
|
|
"parse" = [ "dep:winnow" ];
|
|
"perf" = [ "dep:kstring" ];
|
|
"serde" = [ "dep:serde" "toml_datetime/serde" "dep:serde_spanned" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "display" "parse" "serde" ];
|
|
};
|
|
"tower" = rec {
|
|
crateName = "tower";
|
|
version = "0.5.2";
|
|
edition = "2018";
|
|
sha256 = "1ybmd59nm4abl9bsvy6rx31m4zvzp5rja2slzpn712y9b68ssffh";
|
|
authors = [
|
|
"Tower Maintainers <team@tower-rs.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "futures-core";
|
|
packageId = "futures-core";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "futures-util";
|
|
packageId = "futures-util";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" ];
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "sync_wrapper";
|
|
packageId = "sync_wrapper";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
optional = true;
|
|
features = [ "sync" ];
|
|
}
|
|
{
|
|
name = "tower-layer";
|
|
packageId = "tower-layer";
|
|
}
|
|
{
|
|
name = "tower-service";
|
|
packageId = "tower-service";
|
|
}
|
|
{
|
|
name = "tracing";
|
|
packageId = "tracing";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
features = [ "macros" "sync" "test-util" "rt-multi-thread" ];
|
|
}
|
|
{
|
|
name = "tracing";
|
|
packageId = "tracing";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
];
|
|
features = {
|
|
"__common" = [ "futures-core" "pin-project-lite" ];
|
|
"balance" = [ "discover" "load" "ready-cache" "make" "slab" "util" ];
|
|
"buffer" = [ "__common" "tokio/sync" "tokio/rt" "tokio-util" "tracing" ];
|
|
"discover" = [ "__common" ];
|
|
"filter" = [ "__common" "futures-util" ];
|
|
"full" = [ "balance" "buffer" "discover" "filter" "hedge" "limit" "load" "load-shed" "make" "ready-cache" "reconnect" "retry" "spawn-ready" "steer" "timeout" "util" ];
|
|
"futures-core" = [ "dep:futures-core" ];
|
|
"futures-util" = [ "dep:futures-util" ];
|
|
"hdrhistogram" = [ "dep:hdrhistogram" ];
|
|
"hedge" = [ "util" "filter" "futures-util" "hdrhistogram" "tokio/time" "tracing" ];
|
|
"indexmap" = [ "dep:indexmap" ];
|
|
"limit" = [ "__common" "tokio/time" "tokio/sync" "tokio-util" "tracing" ];
|
|
"load" = [ "__common" "tokio/time" "tracing" ];
|
|
"load-shed" = [ "__common" ];
|
|
"log" = [ "tracing/log" ];
|
|
"make" = [ "futures-util" "pin-project-lite" "tokio/io-std" ];
|
|
"pin-project-lite" = [ "dep:pin-project-lite" ];
|
|
"ready-cache" = [ "futures-core" "futures-util" "indexmap" "tokio/sync" "tracing" "pin-project-lite" ];
|
|
"reconnect" = [ "make" "tokio/io-std" "tracing" ];
|
|
"retry" = [ "__common" "tokio/time" "util" ];
|
|
"slab" = [ "dep:slab" ];
|
|
"spawn-ready" = [ "__common" "futures-util" "tokio/sync" "tokio/rt" "util" "tracing" ];
|
|
"sync_wrapper" = [ "dep:sync_wrapper" ];
|
|
"timeout" = [ "pin-project-lite" "tokio/time" ];
|
|
"tokio" = [ "dep:tokio" ];
|
|
"tokio-stream" = [ "dep:tokio-stream" ];
|
|
"tokio-util" = [ "dep:tokio-util" ];
|
|
"tracing" = [ "dep:tracing" ];
|
|
"util" = [ "__common" "futures-util" "pin-project-lite" "sync_wrapper" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "__common" "futures-core" "futures-util" "log" "make" "pin-project-lite" "sync_wrapper" "tokio" "tracing" "util" ];
|
|
};
|
|
"tower-http" = rec {
|
|
crateName = "tower-http";
|
|
version = "0.6.2";
|
|
edition = "2018";
|
|
sha256 = "15wnvhl6cpir9125s73bqjzjsvfb0fmndmsimnl2ddnlhfvs6gs0";
|
|
libName = "tower_http";
|
|
authors = [
|
|
"Tower Maintainers <team@tower-rs.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags";
|
|
}
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
{
|
|
name = "http";
|
|
packageId = "http 1.3.1";
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "tower-layer";
|
|
packageId = "tower-layer";
|
|
}
|
|
{
|
|
name = "tower-service";
|
|
packageId = "tower-service";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "bytes";
|
|
packageId = "bytes";
|
|
}
|
|
];
|
|
features = {
|
|
"async-compression" = [ "dep:async-compression" ];
|
|
"auth" = [ "base64" "validate-request" ];
|
|
"base64" = [ "dep:base64" ];
|
|
"catch-panic" = [ "tracing" "futures-util/std" "dep:http-body" "dep:http-body-util" ];
|
|
"compression-br" = [ "async-compression/brotli" "futures-core" "dep:http-body" "tokio-util" "tokio" ];
|
|
"compression-deflate" = [ "async-compression/zlib" "futures-core" "dep:http-body" "tokio-util" "tokio" ];
|
|
"compression-full" = [ "compression-br" "compression-deflate" "compression-gzip" "compression-zstd" ];
|
|
"compression-gzip" = [ "async-compression/gzip" "futures-core" "dep:http-body" "tokio-util" "tokio" ];
|
|
"compression-zstd" = [ "async-compression/zstd" "futures-core" "dep:http-body" "tokio-util" "tokio" ];
|
|
"decompression-br" = [ "async-compression/brotli" "futures-core" "dep:http-body" "dep:http-body-util" "tokio-util" "tokio" ];
|
|
"decompression-deflate" = [ "async-compression/zlib" "futures-core" "dep:http-body" "dep:http-body-util" "tokio-util" "tokio" ];
|
|
"decompression-full" = [ "decompression-br" "decompression-deflate" "decompression-gzip" "decompression-zstd" ];
|
|
"decompression-gzip" = [ "async-compression/gzip" "futures-core" "dep:http-body" "dep:http-body-util" "tokio-util" "tokio" ];
|
|
"decompression-zstd" = [ "async-compression/zstd" "futures-core" "dep:http-body" "dep:http-body-util" "tokio-util" "tokio" ];
|
|
"follow-redirect" = [ "futures-util" "dep:http-body" "iri-string" "tower/util" ];
|
|
"fs" = [ "futures-util" "dep:http-body" "dep:http-body-util" "tokio/fs" "tokio-util/io" "tokio/io-util" "dep:http-range-header" "mime_guess" "mime" "percent-encoding" "httpdate" "set-status" "futures-util/alloc" "tracing" ];
|
|
"full" = [ "add-extension" "auth" "catch-panic" "compression-full" "cors" "decompression-full" "follow-redirect" "fs" "limit" "map-request-body" "map-response-body" "metrics" "normalize-path" "propagate-header" "redirect" "request-id" "sensitive-headers" "set-header" "set-status" "timeout" "trace" "util" "validate-request" ];
|
|
"futures-core" = [ "dep:futures-core" ];
|
|
"futures-util" = [ "dep:futures-util" ];
|
|
"httpdate" = [ "dep:httpdate" ];
|
|
"iri-string" = [ "dep:iri-string" ];
|
|
"limit" = [ "dep:http-body" "dep:http-body-util" ];
|
|
"metrics" = [ "dep:http-body" "tokio/time" ];
|
|
"mime" = [ "dep:mime" ];
|
|
"mime_guess" = [ "dep:mime_guess" ];
|
|
"percent-encoding" = [ "dep:percent-encoding" ];
|
|
"request-id" = [ "uuid" ];
|
|
"timeout" = [ "dep:http-body" "tokio/time" ];
|
|
"tokio" = [ "dep:tokio" ];
|
|
"tokio-util" = [ "dep:tokio-util" ];
|
|
"tower" = [ "dep:tower" ];
|
|
"trace" = [ "dep:http-body" "tracing" ];
|
|
"tracing" = [ "dep:tracing" ];
|
|
"util" = [ "tower" ];
|
|
"uuid" = [ "dep:uuid" ];
|
|
"validate-request" = [ "mime" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "cors" "default" ];
|
|
};
|
|
"tower-layer" = rec {
|
|
crateName = "tower-layer";
|
|
version = "0.3.3";
|
|
edition = "2018";
|
|
sha256 = "03kq92fdzxin51w8iqix06dcfgydyvx7yr6izjq0p626v9n2l70j";
|
|
libName = "tower_layer";
|
|
authors = [
|
|
"Tower Maintainers <team@tower-rs.com>"
|
|
];
|
|
|
|
};
|
|
"tower-service" = rec {
|
|
crateName = "tower-service";
|
|
version = "0.3.3";
|
|
edition = "2018";
|
|
sha256 = "1hzfkvkci33ra94xjx64vv3pp0sq346w06fpkcdwjcid7zhvdycd";
|
|
libName = "tower_service";
|
|
authors = [
|
|
"Tower Maintainers <team@tower-rs.com>"
|
|
];
|
|
|
|
};
|
|
"tracing" = rec {
|
|
crateName = "tracing";
|
|
version = "0.1.41";
|
|
edition = "2018";
|
|
sha256 = "1l5xrzyjfyayrwhvhldfnwdyligi1mpqm8mzbi2m1d6y6p2hlkkq";
|
|
authors = [
|
|
"Eliza Weisman <eliza@buoyant.io>"
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "pin-project-lite";
|
|
packageId = "pin-project-lite";
|
|
}
|
|
{
|
|
name = "tracing-attributes";
|
|
packageId = "tracing-attributes";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "tracing-core";
|
|
packageId = "tracing-core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
}
|
|
];
|
|
features = {
|
|
"attributes" = [ "tracing-attributes" ];
|
|
"default" = [ "std" "attributes" ];
|
|
"log" = [ "dep:log" ];
|
|
"log-always" = [ "log" ];
|
|
"std" = [ "tracing-core/std" ];
|
|
"tracing-attributes" = [ "dep:tracing-attributes" ];
|
|
"valuable" = [ "tracing-core/valuable" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "attributes" "default" "log" "std" "tracing-attributes" ];
|
|
};
|
|
"tracing-attributes" = rec {
|
|
crateName = "tracing-attributes";
|
|
version = "0.1.28";
|
|
edition = "2018";
|
|
sha256 = "0v92l9cxs42rdm4m5hsa8z7ln1xsiw1zc2iil8c6k7lzq0jf2nir";
|
|
procMacro = true;
|
|
libName = "tracing_attributes";
|
|
authors = [
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
"Eliza Weisman <eliza@buoyant.io>"
|
|
"David Barsky <dbarsky@amazon.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
usesDefaultFeatures = false;
|
|
features = [ "full" "parsing" "printing" "visit-mut" "clone-impls" "extra-traits" "proc-macro" ];
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
};
|
|
"tracing-core" = rec {
|
|
crateName = "tracing-core";
|
|
version = "0.1.33";
|
|
edition = "2018";
|
|
sha256 = "170gc7cxyjx824r9kr17zc9gvzx89ypqfdzq259pr56gg5bwjwp6";
|
|
libName = "tracing_core";
|
|
authors = [
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" "valuable?/std" ];
|
|
"once_cell" = [ "dep:once_cell" ];
|
|
"std" = [ "once_cell" ];
|
|
"valuable" = [ "dep:valuable" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "once_cell" "std" ];
|
|
};
|
|
"typenum" = rec {
|
|
crateName = "typenum";
|
|
version = "1.18.0";
|
|
edition = "2018";
|
|
sha256 = "0gwgz8n91pv40gabrr1lzji0b0hsmg0817njpy397bq7rvizzk0x";
|
|
authors = [
|
|
"Paho Lurie-Gregg <paho@paholg.com>"
|
|
"Andre Bogus <bogusandre@gmail.com>"
|
|
];
|
|
features = {
|
|
"scale-info" = [ "dep:scale-info" ];
|
|
"scale_info" = [ "scale-info/derive" ];
|
|
};
|
|
};
|
|
"unicode-ident" = rec {
|
|
crateName = "unicode-ident";
|
|
version = "1.0.18";
|
|
edition = "2018";
|
|
sha256 = "04k5r6sijkafzljykdq26mhjpmhdx4jwzvn1lh90g9ax9903jpss";
|
|
libName = "unicode_ident";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"utf8parse" = rec {
|
|
crateName = "utf8parse";
|
|
version = "0.2.2";
|
|
edition = "2018";
|
|
sha256 = "088807qwjq46azicqwbhlmzwrbkz7l4hpw43sdkdyyk524vdxaq6";
|
|
authors = [
|
|
"Joe Wilm <joe@jwilm.com>"
|
|
"Christian Duerr <contact@christianduerr.com>"
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"uuid 0.8.2" = rec {
|
|
crateName = "uuid";
|
|
version = "0.8.2";
|
|
edition = "2018";
|
|
sha256 = "1dy4ldcp7rnzjy56dxh7d2sgrcvn4q77y0a8r0a48946h66zjp5w";
|
|
authors = [
|
|
"Ashley Mannix<ashleymannix@live.com.au>"
|
|
"Christopher Armstrong"
|
|
"Dylan DPC<dylan.dpc@gmail.com>"
|
|
"Hunar Roop Kahlon<hunar.roop@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "getrandom";
|
|
packageId = "getrandom 0.2.15";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"getrandom" = [ "dep:getrandom" ];
|
|
"guid" = [ "winapi" ];
|
|
"md5" = [ "dep:md5" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"sha1" = [ "dep:sha1" ];
|
|
"slog" = [ "dep:slog" ];
|
|
"stdweb" = [ "getrandom" "getrandom/js" ];
|
|
"v3" = [ "md5" ];
|
|
"v4" = [ "getrandom" ];
|
|
"v5" = [ "sha1" ];
|
|
"wasm-bindgen" = [ "getrandom" "getrandom/js" ];
|
|
"winapi" = [ "dep:winapi" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "getrandom" "serde" "std" "v4" ];
|
|
};
|
|
"uuid 1.16.0" = rec {
|
|
crateName = "uuid";
|
|
version = "1.16.0";
|
|
edition = "2018";
|
|
sha256 = "1a9dkv6jm4lz7ip9l9i1mcx7sh389xjsr03l6jgwqjpmkdvpm3s5";
|
|
authors = [
|
|
"Ashley Mannix<ashleymannix@live.com.au>"
|
|
"Dylan DPC<dylan.dpc@gmail.com>"
|
|
"Hunar Roop Kahlon<hunar.roop@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "getrandom";
|
|
packageId = "getrandom 0.3.2";
|
|
optional = true;
|
|
target = { target, features }: (!(("wasm32" == target."arch" or null) && ("unknown" == target."vendor" or null) && ("unknown" == target."os" or null)));
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
optional = true;
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."vendor" or null) && ("unknown" == target."os" or null) && (builtins.elem "atomics" targetFeatures));
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
optional = true;
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."vendor" or null) && ("unknown" == target."os" or null));
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
target = {target, features}: (("wasm32" == target."arch" or null) && ("unknown" == target."vendor" or null) && ("unknown" == target."os" or null));
|
|
}
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"atomic" = [ "dep:atomic" ];
|
|
"borsh" = [ "dep:borsh" "dep:borsh-derive" ];
|
|
"bytemuck" = [ "dep:bytemuck" ];
|
|
"default" = [ "std" ];
|
|
"fast-rng" = [ "rng" "dep:rand" ];
|
|
"js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
|
|
"macro-diagnostics" = [ "dep:uuid-macro-internal" ];
|
|
"md5" = [ "dep:md-5" ];
|
|
"rng" = [ "dep:getrandom" ];
|
|
"rng-getrandom" = [ "rng" "dep:getrandom" "uuid-rng-internal-lib" "uuid-rng-internal-lib/getrandom" ];
|
|
"rng-rand" = [ "rng" "dep:rand" "uuid-rng-internal-lib" "uuid-rng-internal-lib/rand" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"sha1" = [ "dep:sha1_smol" ];
|
|
"slog" = [ "dep:slog" ];
|
|
"uuid-rng-internal-lib" = [ "dep:uuid-rng-internal-lib" ];
|
|
"v1" = [ "atomic" ];
|
|
"v3" = [ "md5" ];
|
|
"v4" = [ "rng" ];
|
|
"v5" = [ "sha1" ];
|
|
"v6" = [ "atomic" ];
|
|
"v7" = [ "rng" ];
|
|
"zerocopy" = [ "dep:zerocopy" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "js" "rng" "std" "v4" ];
|
|
};
|
|
"value-bag" = rec {
|
|
crateName = "value-bag";
|
|
version = "1.11.1";
|
|
edition = "2021";
|
|
sha256 = "1i89r6z2dxydybh43mxpc2qx3y943f35sm42c06v2gkliadf4g4l";
|
|
libName = "value_bag";
|
|
authors = [
|
|
"Ashley Mannix <ashleymannix@live.com.au>"
|
|
];
|
|
features = {
|
|
"alloc" = [ "value-bag-sval2?/alloc" "value-bag-serde1?/alloc" ];
|
|
"error" = [ "std" ];
|
|
"owned" = [ "alloc" "value-bag-serde1?/owned" ];
|
|
"serde" = [ "serde1" ];
|
|
"serde1" = [ "alloc" "value-bag-serde1" "value-bag-sval2?/serde1" ];
|
|
"std" = [ "alloc" "value-bag-sval2?/std" "value-bag-serde1?/std" ];
|
|
"sval" = [ "sval2" ];
|
|
"sval2" = [ "value-bag-sval2" ];
|
|
"test" = [ "std" ];
|
|
"value-bag-serde1" = [ "dep:value-bag-serde1" ];
|
|
"value-bag-sval2" = [ "dep:value-bag-sval2" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "inline-i128" ];
|
|
};
|
|
"version-compare" = rec {
|
|
crateName = "version-compare";
|
|
version = "0.2.0";
|
|
edition = "2021";
|
|
sha256 = "12y9262fhjm1wp0aj3mwhads7kv0jz8h168nn5fb8b43nwf9abl5";
|
|
libName = "version_compare";
|
|
authors = [
|
|
"Tim Visee <3a4fb3964f@sinenomine.email>"
|
|
];
|
|
|
|
};
|
|
"version_check" = rec {
|
|
crateName = "version_check";
|
|
version = "0.9.5";
|
|
edition = "2015";
|
|
sha256 = "0nhhi4i5x89gm911azqbn7avs9mdacw2i3vcz3cnmz3mv4rqz4hb";
|
|
authors = [
|
|
"Sergio Benitez <sb@sergio.bz>"
|
|
];
|
|
|
|
};
|
|
"visions-client" = rec {
|
|
crateName = "visions-client";
|
|
version = "0.1.0";
|
|
edition = "2021";
|
|
crateBin = [
|
|
{
|
|
name = "visions-client";
|
|
path = "src/main.rs";
|
|
requiredFeatures = [ ];
|
|
}
|
|
];
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./visions/ui; };
|
|
dependencies = [
|
|
{
|
|
name = "gloo-console";
|
|
packageId = "gloo-console";
|
|
}
|
|
{
|
|
name = "gloo-net";
|
|
packageId = "gloo-net 0.6.0";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" "serde_derive" ];
|
|
}
|
|
{
|
|
name = "serde-wasm-bindgen";
|
|
packageId = "serde-wasm-bindgen";
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
}
|
|
{
|
|
name = "visions-types";
|
|
packageId = "visions-types";
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "wasm-bindgen-futures";
|
|
packageId = "wasm-bindgen-futures";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
}
|
|
{
|
|
name = "yew";
|
|
packageId = "yew";
|
|
features = [ "csr" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"visions-types" = rec {
|
|
crateName = "visions-types";
|
|
version = "0.1.0";
|
|
edition = "2021";
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./visions/types; };
|
|
libName = "visions_types";
|
|
dependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "uuid";
|
|
packageId = "uuid 1.16.0";
|
|
features = [ "v4" "js" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"wasi 0.11.0+wasi-snapshot-preview1" = rec {
|
|
crateName = "wasi";
|
|
version = "0.11.0+wasi-snapshot-preview1";
|
|
edition = "2018";
|
|
sha256 = "08z4hxwkpdpalxjps1ai9y7ihin26y9f476i53dv98v45gkqg3cw";
|
|
authors = [
|
|
"The Cranelift Project Developers"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ];
|
|
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"wasi 0.14.2+wasi-0.2.4" = rec {
|
|
crateName = "wasi";
|
|
version = "0.14.2+wasi-0.2.4";
|
|
edition = "2021";
|
|
sha256 = "1cwcqjr3dgdq8j325awgk8a715h0hg0f7jqzsb077n4qm6jzk0wn";
|
|
authors = [
|
|
"The Cranelift Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "wit-bindgen-rt";
|
|
packageId = "wit-bindgen-rt";
|
|
features = [ "bitflags" ];
|
|
}
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ];
|
|
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
|
|
};
|
|
};
|
|
"wasm-bindgen" = rec {
|
|
crateName = "wasm-bindgen";
|
|
version = "0.2.100";
|
|
edition = "2021";
|
|
sha256 = "1x8ymcm6yi3i1rwj78myl1agqv2m86i648myy3lc97s9swlqkp0y";
|
|
libName = "wasm_bindgen";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "rustversion";
|
|
packageId = "rustversion";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "wasm-bindgen-macro";
|
|
packageId = "wasm-bindgen-macro";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" "msrv" ];
|
|
"enable-interning" = [ "std" ];
|
|
"msrv" = [ "rustversion" ];
|
|
"rustversion" = [ "dep:rustversion" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde-serialize" = [ "serde" "serde_json" "std" ];
|
|
"serde_json" = [ "dep:serde_json" ];
|
|
"strict-macro" = [ "wasm-bindgen-macro/strict-macro" ];
|
|
"xxx_debug_only_print_generated_code" = [ "wasm-bindgen-macro/xxx_debug_only_print_generated_code" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "msrv" "rustversion" "std" ];
|
|
};
|
|
"wasm-bindgen-backend" = rec {
|
|
crateName = "wasm-bindgen-backend";
|
|
version = "0.2.100";
|
|
edition = "2021";
|
|
sha256 = "1ihbf1hq3y81c4md9lyh6lcwbx6a5j0fw4fygd423g62lm8hc2ig";
|
|
libName = "wasm_bindgen_backend";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bumpalo";
|
|
packageId = "bumpalo";
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
features = [ "full" ];
|
|
}
|
|
{
|
|
name = "wasm-bindgen-shared";
|
|
packageId = "wasm-bindgen-shared";
|
|
}
|
|
];
|
|
features = {
|
|
"extra-traits" = [ "syn/extra-traits" ];
|
|
};
|
|
};
|
|
"wasm-bindgen-futures" = rec {
|
|
crateName = "wasm-bindgen-futures";
|
|
version = "0.4.50";
|
|
edition = "2021";
|
|
sha256 = "0q8ymi6i9r3vxly551dhxcyai7nc491mspj0j1wbafxwq074fpam";
|
|
libName = "wasm_bindgen_futures";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (builtins.elem "atomics" targetFeatures);
|
|
features = [ "MessageEvent" "Worker" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"futures-core" = [ "dep:futures-core" ];
|
|
"futures-core-03-stream" = [ "futures-core" ];
|
|
"std" = [ "wasm-bindgen/std" "js-sys/std" "web-sys/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"wasm-bindgen-macro" = rec {
|
|
crateName = "wasm-bindgen-macro";
|
|
version = "0.2.100";
|
|
edition = "2021";
|
|
sha256 = "01xls2dvzh38yj17jgrbiib1d3nyad7k2yw9s0mpklwys333zrkz";
|
|
procMacro = true;
|
|
libName = "wasm_bindgen_macro";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "wasm-bindgen-macro-support";
|
|
packageId = "wasm-bindgen-macro-support";
|
|
}
|
|
];
|
|
features = {
|
|
"strict-macro" = [ "wasm-bindgen-macro-support/strict-macro" ];
|
|
};
|
|
};
|
|
"wasm-bindgen-macro-support" = rec {
|
|
crateName = "wasm-bindgen-macro-support";
|
|
version = "0.2.100";
|
|
edition = "2021";
|
|
sha256 = "1plm8dh20jg2id0320pbmrlsv6cazfv6b6907z19ys4z1jj7xs4a";
|
|
libName = "wasm_bindgen_macro_support";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
features = [ "visit" "visit-mut" "full" ];
|
|
}
|
|
{
|
|
name = "wasm-bindgen-backend";
|
|
packageId = "wasm-bindgen-backend";
|
|
}
|
|
{
|
|
name = "wasm-bindgen-shared";
|
|
packageId = "wasm-bindgen-shared";
|
|
}
|
|
];
|
|
features = {
|
|
"extra-traits" = [ "syn/extra-traits" ];
|
|
};
|
|
};
|
|
"wasm-bindgen-shared" = rec {
|
|
crateName = "wasm-bindgen-shared";
|
|
version = "0.2.100";
|
|
edition = "2021";
|
|
links = "wasm_bindgen";
|
|
sha256 = "0gffxvqgbh9r9xl36gprkfnh3w9gl8wgia6xrin7v11sjcxxf18s";
|
|
libName = "wasm_bindgen_shared";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "unicode-ident";
|
|
packageId = "unicode-ident";
|
|
}
|
|
];
|
|
|
|
};
|
|
"web-sys" = rec {
|
|
crateName = "web-sys";
|
|
version = "0.3.77";
|
|
edition = "2021";
|
|
sha256 = "1lnmc1ffbq34qw91nndklqqm75rasaffj2g4f8h1yvqqz4pdvdik";
|
|
libName = "web_sys";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"AbortSignal" = [ "EventTarget" ];
|
|
"AnalyserNode" = [ "AudioNode" "EventTarget" ];
|
|
"Animation" = [ "EventTarget" ];
|
|
"AnimationEvent" = [ "Event" ];
|
|
"AnimationPlaybackEvent" = [ "Event" ];
|
|
"Attr" = [ "EventTarget" "Node" ];
|
|
"AudioBufferSourceNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
|
|
"AudioContext" = [ "BaseAudioContext" "EventTarget" ];
|
|
"AudioDestinationNode" = [ "AudioNode" "EventTarget" ];
|
|
"AudioNode" = [ "EventTarget" ];
|
|
"AudioProcessingEvent" = [ "Event" ];
|
|
"AudioScheduledSourceNode" = [ "AudioNode" "EventTarget" ];
|
|
"AudioStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
|
|
"AudioTrackList" = [ "EventTarget" ];
|
|
"AudioWorklet" = [ "Worklet" ];
|
|
"AudioWorkletGlobalScope" = [ "WorkletGlobalScope" ];
|
|
"AudioWorkletNode" = [ "AudioNode" "EventTarget" ];
|
|
"AuthenticatorAssertionResponse" = [ "AuthenticatorResponse" ];
|
|
"AuthenticatorAttestationResponse" = [ "AuthenticatorResponse" ];
|
|
"BaseAudioContext" = [ "EventTarget" ];
|
|
"BatteryManager" = [ "EventTarget" ];
|
|
"BeforeUnloadEvent" = [ "Event" ];
|
|
"BiquadFilterNode" = [ "AudioNode" "EventTarget" ];
|
|
"BlobEvent" = [ "Event" ];
|
|
"Bluetooth" = [ "EventTarget" ];
|
|
"BluetoothAdvertisingEvent" = [ "Event" ];
|
|
"BluetoothDevice" = [ "EventTarget" ];
|
|
"BluetoothPermissionResult" = [ "EventTarget" "PermissionStatus" ];
|
|
"BluetoothRemoteGattCharacteristic" = [ "EventTarget" ];
|
|
"BluetoothRemoteGattService" = [ "EventTarget" ];
|
|
"BroadcastChannel" = [ "EventTarget" ];
|
|
"CanvasCaptureMediaStream" = [ "EventTarget" "MediaStream" ];
|
|
"CanvasCaptureMediaStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
|
|
"CdataSection" = [ "CharacterData" "EventTarget" "Node" "Text" ];
|
|
"ChannelMergerNode" = [ "AudioNode" "EventTarget" ];
|
|
"ChannelSplitterNode" = [ "AudioNode" "EventTarget" ];
|
|
"CharacterData" = [ "EventTarget" "Node" ];
|
|
"ChromeWorker" = [ "EventTarget" "Worker" ];
|
|
"Clipboard" = [ "EventTarget" ];
|
|
"ClipboardEvent" = [ "Event" ];
|
|
"CloseEvent" = [ "Event" ];
|
|
"Comment" = [ "CharacterData" "EventTarget" "Node" ];
|
|
"CompositionEvent" = [ "Event" "UiEvent" ];
|
|
"ConstantSourceNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
|
|
"ConvolverNode" = [ "AudioNode" "EventTarget" ];
|
|
"CssAnimation" = [ "Animation" "EventTarget" ];
|
|
"CssConditionRule" = [ "CssGroupingRule" "CssRule" ];
|
|
"CssCounterStyleRule" = [ "CssRule" ];
|
|
"CssFontFaceRule" = [ "CssRule" ];
|
|
"CssFontFeatureValuesRule" = [ "CssRule" ];
|
|
"CssGroupingRule" = [ "CssRule" ];
|
|
"CssImportRule" = [ "CssRule" ];
|
|
"CssKeyframeRule" = [ "CssRule" ];
|
|
"CssKeyframesRule" = [ "CssRule" ];
|
|
"CssMediaRule" = [ "CssConditionRule" "CssGroupingRule" "CssRule" ];
|
|
"CssNamespaceRule" = [ "CssRule" ];
|
|
"CssPageRule" = [ "CssRule" ];
|
|
"CssStyleRule" = [ "CssRule" ];
|
|
"CssStyleSheet" = [ "StyleSheet" ];
|
|
"CssSupportsRule" = [ "CssConditionRule" "CssGroupingRule" "CssRule" ];
|
|
"CssTransition" = [ "Animation" "EventTarget" ];
|
|
"CustomEvent" = [ "Event" ];
|
|
"DedicatedWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
|
|
"DelayNode" = [ "AudioNode" "EventTarget" ];
|
|
"DeviceLightEvent" = [ "Event" ];
|
|
"DeviceMotionEvent" = [ "Event" ];
|
|
"DeviceOrientationEvent" = [ "Event" ];
|
|
"DeviceProximityEvent" = [ "Event" ];
|
|
"Document" = [ "EventTarget" "Node" ];
|
|
"DocumentFragment" = [ "EventTarget" "Node" ];
|
|
"DocumentTimeline" = [ "AnimationTimeline" ];
|
|
"DocumentType" = [ "EventTarget" "Node" ];
|
|
"DomMatrix" = [ "DomMatrixReadOnly" ];
|
|
"DomPoint" = [ "DomPointReadOnly" ];
|
|
"DomRect" = [ "DomRectReadOnly" ];
|
|
"DomRequest" = [ "EventTarget" ];
|
|
"DragEvent" = [ "Event" "MouseEvent" "UiEvent" ];
|
|
"DynamicsCompressorNode" = [ "AudioNode" "EventTarget" ];
|
|
"Element" = [ "EventTarget" "Node" ];
|
|
"ErrorEvent" = [ "Event" ];
|
|
"EventSource" = [ "EventTarget" ];
|
|
"ExtendableEvent" = [ "Event" ];
|
|
"ExtendableMessageEvent" = [ "Event" "ExtendableEvent" ];
|
|
"FetchEvent" = [ "Event" "ExtendableEvent" ];
|
|
"FetchObserver" = [ "EventTarget" ];
|
|
"File" = [ "Blob" ];
|
|
"FileReader" = [ "EventTarget" ];
|
|
"FileSystemDirectoryEntry" = [ "FileSystemEntry" ];
|
|
"FileSystemDirectoryHandle" = [ "FileSystemHandle" ];
|
|
"FileSystemFileEntry" = [ "FileSystemEntry" ];
|
|
"FileSystemFileHandle" = [ "FileSystemHandle" ];
|
|
"FileSystemWritableFileStream" = [ "WritableStream" ];
|
|
"FocusEvent" = [ "Event" "UiEvent" ];
|
|
"FontFaceSet" = [ "EventTarget" ];
|
|
"FontFaceSetLoadEvent" = [ "Event" ];
|
|
"GainNode" = [ "AudioNode" "EventTarget" ];
|
|
"GamepadEvent" = [ "Event" ];
|
|
"GpuDevice" = [ "EventTarget" ];
|
|
"GpuInternalError" = [ "GpuError" ];
|
|
"GpuOutOfMemoryError" = [ "GpuError" ];
|
|
"GpuPipelineError" = [ "DomException" ];
|
|
"GpuUncapturedErrorEvent" = [ "Event" ];
|
|
"GpuValidationError" = [ "GpuError" ];
|
|
"HashChangeEvent" = [ "Event" ];
|
|
"Hid" = [ "EventTarget" ];
|
|
"HidConnectionEvent" = [ "Event" ];
|
|
"HidDevice" = [ "EventTarget" ];
|
|
"HidInputReportEvent" = [ "Event" ];
|
|
"HtmlAnchorElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlAreaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlAudioElement" = [ "Element" "EventTarget" "HtmlElement" "HtmlMediaElement" "Node" ];
|
|
"HtmlBaseElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlBodyElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlBrElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlButtonElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlCanvasElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDataElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDataListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDetailsElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDialogElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDirectoryElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDivElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlDocument" = [ "Document" "EventTarget" "Node" ];
|
|
"HtmlElement" = [ "Element" "EventTarget" "Node" ];
|
|
"HtmlEmbedElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlFieldSetElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlFontElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlFormControlsCollection" = [ "HtmlCollection" ];
|
|
"HtmlFormElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlFrameElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlFrameSetElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlHeadElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlHeadingElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlHrElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlHtmlElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlIFrameElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlImageElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlInputElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlLabelElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlLegendElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlLiElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlLinkElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlMapElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlMediaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlMenuElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlMenuItemElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlMetaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlMeterElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlModElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlOListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlObjectElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlOptGroupElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlOptionElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlOptionsCollection" = [ "HtmlCollection" ];
|
|
"HtmlOutputElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlParagraphElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlParamElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlPictureElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlPreElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlProgressElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlQuoteElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlScriptElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlSelectElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlSlotElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlSourceElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlSpanElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlStyleElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTableCaptionElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTableCellElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTableColElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTableElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTableRowElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTableSectionElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTemplateElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTextAreaElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTimeElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTitleElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlTrackElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlUListElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlUnknownElement" = [ "Element" "EventTarget" "HtmlElement" "Node" ];
|
|
"HtmlVideoElement" = [ "Element" "EventTarget" "HtmlElement" "HtmlMediaElement" "Node" ];
|
|
"IdbCursorWithValue" = [ "IdbCursor" ];
|
|
"IdbDatabase" = [ "EventTarget" ];
|
|
"IdbFileHandle" = [ "EventTarget" ];
|
|
"IdbFileRequest" = [ "DomRequest" "EventTarget" ];
|
|
"IdbLocaleAwareKeyRange" = [ "IdbKeyRange" ];
|
|
"IdbMutableFile" = [ "EventTarget" ];
|
|
"IdbOpenDbRequest" = [ "EventTarget" "IdbRequest" ];
|
|
"IdbRequest" = [ "EventTarget" ];
|
|
"IdbTransaction" = [ "EventTarget" ];
|
|
"IdbVersionChangeEvent" = [ "Event" ];
|
|
"IirFilterNode" = [ "AudioNode" "EventTarget" ];
|
|
"ImageCaptureErrorEvent" = [ "Event" ];
|
|
"ImageTrack" = [ "EventTarget" ];
|
|
"InputDeviceInfo" = [ "MediaDeviceInfo" ];
|
|
"InputEvent" = [ "Event" "UiEvent" ];
|
|
"KeyFrameRequestEvent" = [ "Event" ];
|
|
"KeyboardEvent" = [ "Event" "UiEvent" ];
|
|
"KeyframeEffect" = [ "AnimationEffect" ];
|
|
"LocalMediaStream" = [ "EventTarget" "MediaStream" ];
|
|
"MathMlElement" = [ "Element" "EventTarget" "Node" ];
|
|
"MediaDevices" = [ "EventTarget" ];
|
|
"MediaElementAudioSourceNode" = [ "AudioNode" "EventTarget" ];
|
|
"MediaEncryptedEvent" = [ "Event" ];
|
|
"MediaKeyError" = [ "Event" ];
|
|
"MediaKeyMessageEvent" = [ "Event" ];
|
|
"MediaKeySession" = [ "EventTarget" ];
|
|
"MediaQueryList" = [ "EventTarget" ];
|
|
"MediaQueryListEvent" = [ "Event" ];
|
|
"MediaRecorder" = [ "EventTarget" ];
|
|
"MediaRecorderErrorEvent" = [ "Event" ];
|
|
"MediaSource" = [ "EventTarget" ];
|
|
"MediaStream" = [ "EventTarget" ];
|
|
"MediaStreamAudioDestinationNode" = [ "AudioNode" "EventTarget" ];
|
|
"MediaStreamAudioSourceNode" = [ "AudioNode" "EventTarget" ];
|
|
"MediaStreamEvent" = [ "Event" ];
|
|
"MediaStreamTrack" = [ "EventTarget" ];
|
|
"MediaStreamTrackEvent" = [ "Event" ];
|
|
"MediaStreamTrackGenerator" = [ "EventTarget" "MediaStreamTrack" ];
|
|
"MessageEvent" = [ "Event" ];
|
|
"MessagePort" = [ "EventTarget" ];
|
|
"MidiAccess" = [ "EventTarget" ];
|
|
"MidiConnectionEvent" = [ "Event" ];
|
|
"MidiInput" = [ "EventTarget" "MidiPort" ];
|
|
"MidiMessageEvent" = [ "Event" ];
|
|
"MidiOutput" = [ "EventTarget" "MidiPort" ];
|
|
"MidiPort" = [ "EventTarget" ];
|
|
"MouseEvent" = [ "Event" "UiEvent" ];
|
|
"MouseScrollEvent" = [ "Event" "MouseEvent" "UiEvent" ];
|
|
"MutationEvent" = [ "Event" ];
|
|
"NetworkInformation" = [ "EventTarget" ];
|
|
"Node" = [ "EventTarget" ];
|
|
"Notification" = [ "EventTarget" ];
|
|
"NotificationEvent" = [ "Event" "ExtendableEvent" ];
|
|
"OfflineAudioCompletionEvent" = [ "Event" ];
|
|
"OfflineAudioContext" = [ "BaseAudioContext" "EventTarget" ];
|
|
"OfflineResourceList" = [ "EventTarget" ];
|
|
"OffscreenCanvas" = [ "EventTarget" ];
|
|
"OscillatorNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
|
|
"PageTransitionEvent" = [ "Event" ];
|
|
"PaintWorkletGlobalScope" = [ "WorkletGlobalScope" ];
|
|
"PannerNode" = [ "AudioNode" "EventTarget" ];
|
|
"PaymentMethodChangeEvent" = [ "Event" "PaymentRequestUpdateEvent" ];
|
|
"PaymentRequestUpdateEvent" = [ "Event" ];
|
|
"Performance" = [ "EventTarget" ];
|
|
"PerformanceMark" = [ "PerformanceEntry" ];
|
|
"PerformanceMeasure" = [ "PerformanceEntry" ];
|
|
"PerformanceNavigationTiming" = [ "PerformanceEntry" "PerformanceResourceTiming" ];
|
|
"PerformanceResourceTiming" = [ "PerformanceEntry" ];
|
|
"PermissionStatus" = [ "EventTarget" ];
|
|
"PointerEvent" = [ "Event" "MouseEvent" "UiEvent" ];
|
|
"PopStateEvent" = [ "Event" ];
|
|
"PopupBlockedEvent" = [ "Event" ];
|
|
"PresentationAvailability" = [ "EventTarget" ];
|
|
"PresentationConnection" = [ "EventTarget" ];
|
|
"PresentationConnectionAvailableEvent" = [ "Event" ];
|
|
"PresentationConnectionCloseEvent" = [ "Event" ];
|
|
"PresentationConnectionList" = [ "EventTarget" ];
|
|
"PresentationRequest" = [ "EventTarget" ];
|
|
"ProcessingInstruction" = [ "CharacterData" "EventTarget" "Node" ];
|
|
"ProgressEvent" = [ "Event" ];
|
|
"PromiseRejectionEvent" = [ "Event" ];
|
|
"PublicKeyCredential" = [ "Credential" ];
|
|
"PushEvent" = [ "Event" "ExtendableEvent" ];
|
|
"RadioNodeList" = [ "NodeList" ];
|
|
"RtcDataChannel" = [ "EventTarget" ];
|
|
"RtcDataChannelEvent" = [ "Event" ];
|
|
"RtcPeerConnection" = [ "EventTarget" ];
|
|
"RtcPeerConnectionIceErrorEvent" = [ "Event" ];
|
|
"RtcPeerConnectionIceEvent" = [ "Event" ];
|
|
"RtcRtpScriptTransformer" = [ "EventTarget" ];
|
|
"RtcTrackEvent" = [ "Event" ];
|
|
"RtcTransformEvent" = [ "Event" ];
|
|
"RtcdtmfSender" = [ "EventTarget" ];
|
|
"RtcdtmfToneChangeEvent" = [ "Event" ];
|
|
"SFrameTransform" = [ "EventTarget" ];
|
|
"SFrameTransformErrorEvent" = [ "Event" ];
|
|
"Screen" = [ "EventTarget" ];
|
|
"ScreenOrientation" = [ "EventTarget" ];
|
|
"ScriptProcessorNode" = [ "AudioNode" "EventTarget" ];
|
|
"ScrollAreaEvent" = [ "Event" "UiEvent" ];
|
|
"SecurityPolicyViolationEvent" = [ "Event" ];
|
|
"Serial" = [ "EventTarget" ];
|
|
"SerialPort" = [ "EventTarget" ];
|
|
"ServiceWorker" = [ "EventTarget" ];
|
|
"ServiceWorkerContainer" = [ "EventTarget" ];
|
|
"ServiceWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
|
|
"ServiceWorkerRegistration" = [ "EventTarget" ];
|
|
"ShadowRoot" = [ "DocumentFragment" "EventTarget" "Node" ];
|
|
"SharedWorker" = [ "EventTarget" ];
|
|
"SharedWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
|
|
"SourceBuffer" = [ "EventTarget" ];
|
|
"SourceBufferList" = [ "EventTarget" ];
|
|
"SpeechRecognition" = [ "EventTarget" ];
|
|
"SpeechRecognitionError" = [ "Event" ];
|
|
"SpeechRecognitionEvent" = [ "Event" ];
|
|
"SpeechSynthesis" = [ "EventTarget" ];
|
|
"SpeechSynthesisErrorEvent" = [ "Event" "SpeechSynthesisEvent" ];
|
|
"SpeechSynthesisEvent" = [ "Event" ];
|
|
"SpeechSynthesisUtterance" = [ "EventTarget" ];
|
|
"StereoPannerNode" = [ "AudioNode" "EventTarget" ];
|
|
"StorageEvent" = [ "Event" ];
|
|
"SubmitEvent" = [ "Event" ];
|
|
"SvgAnimateElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
|
|
"SvgAnimateMotionElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
|
|
"SvgAnimateTransformElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
|
|
"SvgAnimationElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgCircleElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgClipPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgComponentTransferFunctionElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgDefsElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgDescElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgElement" = [ "Element" "EventTarget" "Node" ];
|
|
"SvgEllipseElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgFilterElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgForeignObjectElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgGeometryElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgGraphicsElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgImageElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgLineElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgLinearGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGradientElement" ];
|
|
"SvgMarkerElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgMaskElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgMetadataElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgPathSegArcAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegArcRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegClosePath" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoCubicAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoCubicRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoCubicSmoothAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoCubicSmoothRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoQuadraticAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoQuadraticRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoQuadraticSmoothAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegCurvetoQuadraticSmoothRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegLinetoAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegLinetoHorizontalAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegLinetoHorizontalRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegLinetoRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegLinetoVerticalAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegLinetoVerticalRel" = [ "SvgPathSeg" ];
|
|
"SvgPathSegMovetoAbs" = [ "SvgPathSeg" ];
|
|
"SvgPathSegMovetoRel" = [ "SvgPathSeg" ];
|
|
"SvgPatternElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgPolygonElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgPolylineElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgRadialGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGradientElement" ];
|
|
"SvgRectElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
|
|
"SvgScriptElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgSetElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
|
|
"SvgStopElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgStyleElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgSwitchElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgSymbolElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgTextContentElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgTextElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" "SvgTextPositioningElement" ];
|
|
"SvgTextPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" ];
|
|
"SvgTextPositioningElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" ];
|
|
"SvgTitleElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgUseElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgViewElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgaElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgfeBlendElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeColorMatrixElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeComponentTransferElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeCompositeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeConvolveMatrixElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeDiffuseLightingElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeDisplacementMapElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeDistantLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeDropShadowElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeFloodElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeFuncAElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
|
|
"SvgfeFuncBElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
|
|
"SvgfeFuncGElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
|
|
"SvgfeFuncRElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
|
|
"SvgfeGaussianBlurElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeImageElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeMergeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeMergeNodeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeMorphologyElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeOffsetElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfePointLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeSpecularLightingElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeSpotLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeTileElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgfeTurbulenceElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvggElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgmPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
|
|
"SvgsvgElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
|
|
"SvgtSpanElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" "SvgTextPositioningElement" ];
|
|
"TaskController" = [ "AbortController" ];
|
|
"TaskPriorityChangeEvent" = [ "Event" ];
|
|
"TaskSignal" = [ "AbortSignal" "EventTarget" ];
|
|
"TcpServerSocket" = [ "EventTarget" ];
|
|
"TcpServerSocketEvent" = [ "Event" ];
|
|
"TcpSocket" = [ "EventTarget" ];
|
|
"TcpSocketErrorEvent" = [ "Event" ];
|
|
"TcpSocketEvent" = [ "Event" ];
|
|
"Text" = [ "CharacterData" "EventTarget" "Node" ];
|
|
"TextTrack" = [ "EventTarget" ];
|
|
"TextTrackCue" = [ "EventTarget" ];
|
|
"TextTrackList" = [ "EventTarget" ];
|
|
"TimeEvent" = [ "Event" ];
|
|
"ToggleEvent" = [ "Event" ];
|
|
"TouchEvent" = [ "Event" "UiEvent" ];
|
|
"TrackEvent" = [ "Event" ];
|
|
"TransitionEvent" = [ "Event" ];
|
|
"UiEvent" = [ "Event" ];
|
|
"Usb" = [ "EventTarget" ];
|
|
"UsbConnectionEvent" = [ "Event" ];
|
|
"UsbPermissionResult" = [ "EventTarget" "PermissionStatus" ];
|
|
"UserProximityEvent" = [ "Event" ];
|
|
"ValueEvent" = [ "Event" ];
|
|
"VideoStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
|
|
"VideoTrackList" = [ "EventTarget" ];
|
|
"VisualViewport" = [ "EventTarget" ];
|
|
"VrDisplay" = [ "EventTarget" ];
|
|
"VttCue" = [ "EventTarget" "TextTrackCue" ];
|
|
"WakeLockSentinel" = [ "EventTarget" ];
|
|
"WaveShaperNode" = [ "AudioNode" "EventTarget" ];
|
|
"WebGlContextEvent" = [ "Event" ];
|
|
"WebKitCssMatrix" = [ "DomMatrix" "DomMatrixReadOnly" ];
|
|
"WebSocket" = [ "EventTarget" ];
|
|
"WebTransportError" = [ "DomException" ];
|
|
"WebTransportReceiveStream" = [ "ReadableStream" ];
|
|
"WebTransportSendStream" = [ "WritableStream" ];
|
|
"WheelEvent" = [ "Event" "MouseEvent" "UiEvent" ];
|
|
"Window" = [ "EventTarget" ];
|
|
"WindowClient" = [ "Client" ];
|
|
"Worker" = [ "EventTarget" ];
|
|
"WorkerDebuggerGlobalScope" = [ "EventTarget" ];
|
|
"WorkerGlobalScope" = [ "EventTarget" ];
|
|
"XmlDocument" = [ "Document" "EventTarget" "Node" ];
|
|
"XmlHttpRequest" = [ "EventTarget" "XmlHttpRequestEventTarget" ];
|
|
"XmlHttpRequestEventTarget" = [ "EventTarget" ];
|
|
"XmlHttpRequestUpload" = [ "EventTarget" "XmlHttpRequestEventTarget" ];
|
|
"XrBoundedReferenceSpace" = [ "EventTarget" "XrReferenceSpace" "XrSpace" ];
|
|
"XrInputSourceEvent" = [ "Event" ];
|
|
"XrInputSourcesChangeEvent" = [ "Event" ];
|
|
"XrJointPose" = [ "XrPose" ];
|
|
"XrJointSpace" = [ "EventTarget" "XrSpace" ];
|
|
"XrLayer" = [ "EventTarget" ];
|
|
"XrPermissionStatus" = [ "EventTarget" "PermissionStatus" ];
|
|
"XrReferenceSpace" = [ "EventTarget" "XrSpace" ];
|
|
"XrReferenceSpaceEvent" = [ "Event" ];
|
|
"XrSession" = [ "EventTarget" ];
|
|
"XrSessionEvent" = [ "Event" ];
|
|
"XrSpace" = [ "EventTarget" ];
|
|
"XrSystem" = [ "EventTarget" ];
|
|
"XrViewerPose" = [ "XrPose" ];
|
|
"XrWebGlLayer" = [ "EventTarget" "XrLayer" ];
|
|
"default" = [ "std" ];
|
|
"std" = [ "wasm-bindgen/std" "js-sys/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "AbortSignal" "AddEventListenerOptions" "AnimationEvent" "BinaryType" "Blob" "BlobPropertyBag" "CharacterData" "CloseEvent" "CloseEventInit" "DedicatedWorkerGlobalScope" "Document" "DocumentFragment" "DomException" "DragEvent" "Element" "ErrorEvent" "Event" "EventInit" "EventSource" "EventTarget" "File" "FileList" "FilePropertyBag" "FileReader" "FocusEvent" "FormData" "Headers" "History" "HtmlCollection" "HtmlElement" "HtmlHeadElement" "HtmlInputElement" "HtmlScriptElement" "HtmlTextAreaElement" "InputEvent" "InputEventInit" "KeyboardEvent" "Location" "MessageEvent" "MouseEvent" "Node" "NodeList" "ObserverCallback" "PointerEvent" "ProgressEvent" "ReadableStream" "ReferrerPolicy" "Request" "RequestCache" "RequestCredentials" "RequestInit" "RequestMode" "RequestRedirect" "Response" "ResponseInit" "ResponseType" "ShadowRoot" "Storage" "SubmitEvent" "Text" "TouchEvent" "TransitionEvent" "UiEvent" "Url" "UrlSearchParams" "WebSocket" "WheelEvent" "Window" "Worker" "WorkerGlobalScope" "WorkerOptions" "console" "default" "std" ];
|
|
};
|
|
"winapi" = rec {
|
|
crateName = "winapi";
|
|
version = "0.3.9";
|
|
edition = "2015";
|
|
sha256 = "06gl025x418lchw1wxj64ycr7gha83m44cjr5sarhynd9xkrm0sw";
|
|
authors = [
|
|
"Peter Atashian <retep998@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "winapi-i686-pc-windows-gnu";
|
|
packageId = "winapi-i686-pc-windows-gnu";
|
|
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnu");
|
|
}
|
|
{
|
|
name = "winapi-x86_64-pc-windows-gnu";
|
|
packageId = "winapi-x86_64-pc-windows-gnu";
|
|
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnu");
|
|
}
|
|
];
|
|
features = {
|
|
"debug" = [ "impl-debug" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "winsock2" "ws2def" ];
|
|
};
|
|
"winapi-i686-pc-windows-gnu" = rec {
|
|
crateName = "winapi-i686-pc-windows-gnu";
|
|
version = "0.4.0";
|
|
edition = "2015";
|
|
sha256 = "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc";
|
|
libName = "winapi_i686_pc_windows_gnu";
|
|
authors = [
|
|
"Peter Atashian <retep998@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"winapi-x86_64-pc-windows-gnu" = rec {
|
|
crateName = "winapi-x86_64-pc-windows-gnu";
|
|
version = "0.4.0";
|
|
edition = "2015";
|
|
sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki";
|
|
libName = "winapi_x86_64_pc_windows_gnu";
|
|
authors = [
|
|
"Peter Atashian <retep998@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"windows-core" = rec {
|
|
crateName = "windows-core";
|
|
version = "0.52.0";
|
|
edition = "2021";
|
|
sha256 = "1nc3qv7sy24x0nlnb32f7alzpd6f72l4p24vl65vydbyil669ark";
|
|
libName = "windows_core";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "windows-targets";
|
|
packageId = "windows-targets";
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"windows-link" = rec {
|
|
crateName = "windows-link";
|
|
version = "0.1.1";
|
|
edition = "2021";
|
|
sha256 = "0f2cq7imbrppsmmnz8899hfhg07cp5gq6rh0bjhb1qb6nwshk13n";
|
|
libName = "windows_link";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows-sys 0.52.0" = rec {
|
|
crateName = "windows-sys";
|
|
version = "0.52.0";
|
|
edition = "2021";
|
|
sha256 = "0gd3v4ji88490zgb6b5mq5zgbvwv7zx1ibn8v3x83rwcdbryaar8";
|
|
libName = "windows_sys";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "windows-targets";
|
|
packageId = "windows-targets";
|
|
}
|
|
];
|
|
features = {
|
|
"Wdk_Foundation" = [ "Wdk" ];
|
|
"Wdk_Graphics" = [ "Wdk" ];
|
|
"Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
|
|
"Wdk_Storage" = [ "Wdk" ];
|
|
"Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
|
|
"Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
|
|
"Wdk_System" = [ "Wdk" ];
|
|
"Wdk_System_IO" = [ "Wdk_System" ];
|
|
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
|
|
"Wdk_System_Registry" = [ "Wdk_System" ];
|
|
"Wdk_System_SystemInformation" = [ "Wdk_System" ];
|
|
"Wdk_System_SystemServices" = [ "Wdk_System" ];
|
|
"Wdk_System_Threading" = [ "Wdk_System" ];
|
|
"Win32_Data" = [ "Win32" ];
|
|
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
|
|
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
|
|
"Win32_Devices" = [ "Win32" ];
|
|
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
|
|
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Communication" = [ "Win32_Devices" ];
|
|
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
|
|
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Display" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
|
|
"Win32_Devices_Fax" = [ "Win32_Devices" ];
|
|
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
|
|
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Properties" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
|
|
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Usb" = [ "Win32_Devices" ];
|
|
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
|
|
"Win32_Foundation" = [ "Win32" ];
|
|
"Win32_Gaming" = [ "Win32" ];
|
|
"Win32_Globalization" = [ "Win32" ];
|
|
"Win32_Graphics" = [ "Win32" ];
|
|
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
|
|
"Win32_Management" = [ "Win32" ];
|
|
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
|
|
"Win32_Media" = [ "Win32" ];
|
|
"Win32_Media_Audio" = [ "Win32_Media" ];
|
|
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
|
|
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
|
|
"Win32_Media_Multimedia" = [ "Win32_Media" ];
|
|
"Win32_Media_Streaming" = [ "Win32_Media" ];
|
|
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
|
|
"Win32_NetworkManagement" = [ "Win32" ];
|
|
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
|
|
"Win32_Networking" = [ "Win32" ];
|
|
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
|
|
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
|
|
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
|
|
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
|
|
"Win32_Security" = [ "Win32" ];
|
|
"Win32_Security_AppLocker" = [ "Win32_Security" ];
|
|
"Win32_Security_Authentication" = [ "Win32_Security" ];
|
|
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
|
|
"Win32_Security_Authorization" = [ "Win32_Security" ];
|
|
"Win32_Security_Credentials" = [ "Win32_Security" ];
|
|
"Win32_Security_Cryptography" = [ "Win32_Security" ];
|
|
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
|
|
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
|
|
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
|
|
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
|
|
"Win32_Security_Isolation" = [ "Win32_Security" ];
|
|
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
|
|
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
|
|
"Win32_Security_WinTrust" = [ "Win32_Security" ];
|
|
"Win32_Security_WinWlx" = [ "Win32_Security" ];
|
|
"Win32_Storage" = [ "Win32" ];
|
|
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
|
|
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Compression" = [ "Win32_Storage" ];
|
|
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
|
|
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
|
|
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
|
|
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
|
|
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Jet" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Nvme" = [ "Win32_Storage" ];
|
|
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
|
|
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
|
|
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Xps" = [ "Win32_Storage" ];
|
|
"Win32_System" = [ "Win32" ];
|
|
"Win32_System_AddressBook" = [ "Win32_System" ];
|
|
"Win32_System_Antimalware" = [ "Win32_System" ];
|
|
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
|
|
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
|
|
"Win32_System_ClrHosting" = [ "Win32_System" ];
|
|
"Win32_System_Com" = [ "Win32_System" ];
|
|
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
|
|
"Win32_System_ComponentServices" = [ "Win32_System" ];
|
|
"Win32_System_Console" = [ "Win32_System" ];
|
|
"Win32_System_CorrelationVector" = [ "Win32_System" ];
|
|
"Win32_System_DataExchange" = [ "Win32_System" ];
|
|
"Win32_System_DeploymentServices" = [ "Win32_System" ];
|
|
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
|
|
"Win32_System_Diagnostics" = [ "Win32_System" ];
|
|
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
|
|
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
|
|
"Win32_System_Environment" = [ "Win32_System" ];
|
|
"Win32_System_ErrorReporting" = [ "Win32_System" ];
|
|
"Win32_System_EventCollector" = [ "Win32_System" ];
|
|
"Win32_System_EventLog" = [ "Win32_System" ];
|
|
"Win32_System_EventNotificationService" = [ "Win32_System" ];
|
|
"Win32_System_GroupPolicy" = [ "Win32_System" ];
|
|
"Win32_System_HostCompute" = [ "Win32_System" ];
|
|
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
|
|
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
|
|
"Win32_System_Hypervisor" = [ "Win32_System" ];
|
|
"Win32_System_IO" = [ "Win32_System" ];
|
|
"Win32_System_Iis" = [ "Win32_System" ];
|
|
"Win32_System_Ioctl" = [ "Win32_System" ];
|
|
"Win32_System_JobObjects" = [ "Win32_System" ];
|
|
"Win32_System_Js" = [ "Win32_System" ];
|
|
"Win32_System_Kernel" = [ "Win32_System" ];
|
|
"Win32_System_LibraryLoader" = [ "Win32_System" ];
|
|
"Win32_System_Mailslots" = [ "Win32_System" ];
|
|
"Win32_System_Mapi" = [ "Win32_System" ];
|
|
"Win32_System_Memory" = [ "Win32_System" ];
|
|
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
|
|
"Win32_System_MessageQueuing" = [ "Win32_System" ];
|
|
"Win32_System_MixedReality" = [ "Win32_System" ];
|
|
"Win32_System_Ole" = [ "Win32_System" ];
|
|
"Win32_System_PasswordManagement" = [ "Win32_System" ];
|
|
"Win32_System_Performance" = [ "Win32_System" ];
|
|
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
|
|
"Win32_System_Pipes" = [ "Win32_System" ];
|
|
"Win32_System_Power" = [ "Win32_System" ];
|
|
"Win32_System_ProcessStatus" = [ "Win32_System" ];
|
|
"Win32_System_Recovery" = [ "Win32_System" ];
|
|
"Win32_System_Registry" = [ "Win32_System" ];
|
|
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
|
|
"Win32_System_RemoteManagement" = [ "Win32_System" ];
|
|
"Win32_System_RestartManager" = [ "Win32_System" ];
|
|
"Win32_System_Restore" = [ "Win32_System" ];
|
|
"Win32_System_Rpc" = [ "Win32_System" ];
|
|
"Win32_System_Search" = [ "Win32_System" ];
|
|
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
|
|
"Win32_System_SecurityCenter" = [ "Win32_System" ];
|
|
"Win32_System_Services" = [ "Win32_System" ];
|
|
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
|
|
"Win32_System_Shutdown" = [ "Win32_System" ];
|
|
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
|
|
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
|
|
"Win32_System_SystemInformation" = [ "Win32_System" ];
|
|
"Win32_System_SystemServices" = [ "Win32_System" ];
|
|
"Win32_System_Threading" = [ "Win32_System" ];
|
|
"Win32_System_Time" = [ "Win32_System" ];
|
|
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
|
|
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
|
|
"Win32_System_Variant" = [ "Win32_System" ];
|
|
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
|
|
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
|
|
"Win32_System_Wmi" = [ "Win32_System" ];
|
|
"Win32_UI" = [ "Win32" ];
|
|
"Win32_UI_Accessibility" = [ "Win32_UI" ];
|
|
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
|
|
"Win32_UI_Controls" = [ "Win32_UI" ];
|
|
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
|
|
"Win32_UI_HiDpi" = [ "Win32_UI" ];
|
|
"Win32_UI_Input" = [ "Win32_UI" ];
|
|
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
|
|
"Win32_UI_Magnification" = [ "Win32_UI" ];
|
|
"Win32_UI_Shell" = [ "Win32_UI" ];
|
|
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
|
|
"Win32_UI_TabletPC" = [ "Win32_UI" ];
|
|
"Win32_UI_TextServices" = [ "Win32_UI" ];
|
|
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
|
|
"Win32_Web" = [ "Win32" ];
|
|
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "Wdk" "Wdk_Foundation" "Wdk_Storage" "Wdk_Storage_FileSystem" "Wdk_System" "Wdk_System_IO" "Win32" "Win32_Foundation" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Console" "Win32_System_IO" "Win32_System_Pipes" "Win32_System_SystemServices" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
|
|
};
|
|
"windows-sys 0.59.0" = rec {
|
|
crateName = "windows-sys";
|
|
version = "0.59.0";
|
|
edition = "2021";
|
|
sha256 = "0fw5672ziw8b3zpmnbp9pdv1famk74f1l9fcbc3zsrzdg56vqf0y";
|
|
libName = "windows_sys";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "windows-targets";
|
|
packageId = "windows-targets";
|
|
}
|
|
];
|
|
features = {
|
|
"Wdk" = [ "Win32_Foundation" ];
|
|
"Wdk_Devices" = [ "Wdk" ];
|
|
"Wdk_Devices_Bluetooth" = [ "Wdk_Devices" ];
|
|
"Wdk_Devices_HumanInterfaceDevice" = [ "Wdk_Devices" ];
|
|
"Wdk_Foundation" = [ "Wdk" ];
|
|
"Wdk_Graphics" = [ "Wdk" ];
|
|
"Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
|
|
"Wdk_NetworkManagement" = [ "Wdk" ];
|
|
"Wdk_NetworkManagement_Ndis" = [ "Wdk_NetworkManagement" ];
|
|
"Wdk_NetworkManagement_WindowsFilteringPlatform" = [ "Wdk_NetworkManagement" ];
|
|
"Wdk_Storage" = [ "Wdk" ];
|
|
"Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
|
|
"Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
|
|
"Wdk_System" = [ "Wdk" ];
|
|
"Wdk_System_IO" = [ "Wdk_System" ];
|
|
"Wdk_System_Memory" = [ "Wdk_System" ];
|
|
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
|
|
"Wdk_System_Registry" = [ "Wdk_System" ];
|
|
"Wdk_System_SystemInformation" = [ "Wdk_System" ];
|
|
"Wdk_System_SystemServices" = [ "Wdk_System" ];
|
|
"Wdk_System_Threading" = [ "Wdk_System" ];
|
|
"Win32" = [ "Win32_Foundation" ];
|
|
"Win32_Data" = [ "Win32" ];
|
|
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
|
|
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
|
|
"Win32_Devices" = [ "Win32" ];
|
|
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
|
|
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Communication" = [ "Win32_Devices" ];
|
|
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
|
|
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Display" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
|
|
"Win32_Devices_Fax" = [ "Win32_Devices" ];
|
|
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
|
|
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Properties" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
|
|
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Usb" = [ "Win32_Devices" ];
|
|
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
|
|
"Win32_Foundation" = [ "Win32" ];
|
|
"Win32_Gaming" = [ "Win32" ];
|
|
"Win32_Globalization" = [ "Win32" ];
|
|
"Win32_Graphics" = [ "Win32" ];
|
|
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
|
|
"Win32_Management" = [ "Win32" ];
|
|
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
|
|
"Win32_Media" = [ "Win32" ];
|
|
"Win32_Media_Audio" = [ "Win32_Media" ];
|
|
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
|
|
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
|
|
"Win32_Media_Multimedia" = [ "Win32_Media" ];
|
|
"Win32_Media_Streaming" = [ "Win32_Media" ];
|
|
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
|
|
"Win32_NetworkManagement" = [ "Win32" ];
|
|
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
|
|
"Win32_Networking" = [ "Win32" ];
|
|
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
|
|
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
|
|
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
|
|
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
|
|
"Win32_Security" = [ "Win32" ];
|
|
"Win32_Security_AppLocker" = [ "Win32_Security" ];
|
|
"Win32_Security_Authentication" = [ "Win32_Security" ];
|
|
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
|
|
"Win32_Security_Authorization" = [ "Win32_Security" ];
|
|
"Win32_Security_Credentials" = [ "Win32_Security" ];
|
|
"Win32_Security_Cryptography" = [ "Win32_Security" ];
|
|
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
|
|
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
|
|
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
|
|
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
|
|
"Win32_Security_Isolation" = [ "Win32_Security" ];
|
|
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
|
|
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
|
|
"Win32_Security_WinTrust" = [ "Win32_Security" ];
|
|
"Win32_Security_WinWlx" = [ "Win32_Security" ];
|
|
"Win32_Storage" = [ "Win32" ];
|
|
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
|
|
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Compression" = [ "Win32_Storage" ];
|
|
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
|
|
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
|
|
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
|
|
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
|
|
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Jet" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Nvme" = [ "Win32_Storage" ];
|
|
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
|
|
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
|
|
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Xps" = [ "Win32_Storage" ];
|
|
"Win32_System" = [ "Win32" ];
|
|
"Win32_System_AddressBook" = [ "Win32_System" ];
|
|
"Win32_System_Antimalware" = [ "Win32_System" ];
|
|
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
|
|
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
|
|
"Win32_System_ClrHosting" = [ "Win32_System" ];
|
|
"Win32_System_Com" = [ "Win32_System" ];
|
|
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
|
|
"Win32_System_ComponentServices" = [ "Win32_System" ];
|
|
"Win32_System_Console" = [ "Win32_System" ];
|
|
"Win32_System_CorrelationVector" = [ "Win32_System" ];
|
|
"Win32_System_DataExchange" = [ "Win32_System" ];
|
|
"Win32_System_DeploymentServices" = [ "Win32_System" ];
|
|
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
|
|
"Win32_System_Diagnostics" = [ "Win32_System" ];
|
|
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
|
|
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_TraceLogging" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
|
|
"Win32_System_Environment" = [ "Win32_System" ];
|
|
"Win32_System_ErrorReporting" = [ "Win32_System" ];
|
|
"Win32_System_EventCollector" = [ "Win32_System" ];
|
|
"Win32_System_EventLog" = [ "Win32_System" ];
|
|
"Win32_System_EventNotificationService" = [ "Win32_System" ];
|
|
"Win32_System_GroupPolicy" = [ "Win32_System" ];
|
|
"Win32_System_HostCompute" = [ "Win32_System" ];
|
|
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
|
|
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
|
|
"Win32_System_Hypervisor" = [ "Win32_System" ];
|
|
"Win32_System_IO" = [ "Win32_System" ];
|
|
"Win32_System_Iis" = [ "Win32_System" ];
|
|
"Win32_System_Ioctl" = [ "Win32_System" ];
|
|
"Win32_System_JobObjects" = [ "Win32_System" ];
|
|
"Win32_System_Js" = [ "Win32_System" ];
|
|
"Win32_System_Kernel" = [ "Win32_System" ];
|
|
"Win32_System_LibraryLoader" = [ "Win32_System" ];
|
|
"Win32_System_Mailslots" = [ "Win32_System" ];
|
|
"Win32_System_Mapi" = [ "Win32_System" ];
|
|
"Win32_System_Memory" = [ "Win32_System" ];
|
|
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
|
|
"Win32_System_MessageQueuing" = [ "Win32_System" ];
|
|
"Win32_System_MixedReality" = [ "Win32_System" ];
|
|
"Win32_System_Ole" = [ "Win32_System" ];
|
|
"Win32_System_PasswordManagement" = [ "Win32_System" ];
|
|
"Win32_System_Performance" = [ "Win32_System" ];
|
|
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
|
|
"Win32_System_Pipes" = [ "Win32_System" ];
|
|
"Win32_System_Power" = [ "Win32_System" ];
|
|
"Win32_System_ProcessStatus" = [ "Win32_System" ];
|
|
"Win32_System_Recovery" = [ "Win32_System" ];
|
|
"Win32_System_Registry" = [ "Win32_System" ];
|
|
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
|
|
"Win32_System_RemoteManagement" = [ "Win32_System" ];
|
|
"Win32_System_RestartManager" = [ "Win32_System" ];
|
|
"Win32_System_Restore" = [ "Win32_System" ];
|
|
"Win32_System_Rpc" = [ "Win32_System" ];
|
|
"Win32_System_Search" = [ "Win32_System" ];
|
|
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
|
|
"Win32_System_SecurityCenter" = [ "Win32_System" ];
|
|
"Win32_System_Services" = [ "Win32_System" ];
|
|
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
|
|
"Win32_System_Shutdown" = [ "Win32_System" ];
|
|
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
|
|
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
|
|
"Win32_System_SystemInformation" = [ "Win32_System" ];
|
|
"Win32_System_SystemServices" = [ "Win32_System" ];
|
|
"Win32_System_Threading" = [ "Win32_System" ];
|
|
"Win32_System_Time" = [ "Win32_System" ];
|
|
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
|
|
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
|
|
"Win32_System_Variant" = [ "Win32_System" ];
|
|
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
|
|
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
|
|
"Win32_System_Wmi" = [ "Win32_System" ];
|
|
"Win32_UI" = [ "Win32" ];
|
|
"Win32_UI_Accessibility" = [ "Win32_UI" ];
|
|
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
|
|
"Win32_UI_Controls" = [ "Win32_UI" ];
|
|
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
|
|
"Win32_UI_HiDpi" = [ "Win32_UI" ];
|
|
"Win32_UI_Input" = [ "Win32_UI" ];
|
|
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
|
|
"Win32_UI_Magnification" = [ "Win32_UI" ];
|
|
"Win32_UI_Shell" = [ "Win32_UI" ];
|
|
"Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
|
|
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
|
|
"Win32_UI_TabletPC" = [ "Win32_UI" ];
|
|
"Win32_UI_TextServices" = [ "Win32_UI" ];
|
|
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
|
|
"Win32_Web" = [ "Win32" ];
|
|
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "Wdk" "Wdk_Foundation" "Wdk_Storage" "Wdk_Storage_FileSystem" "Win32" "Win32_Foundation" "Win32_NetworkManagement" "Win32_NetworkManagement_IpHelper" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Console" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "Win32_System_IO" "Win32_System_LibraryLoader" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ];
|
|
};
|
|
"windows-targets" = rec {
|
|
crateName = "windows-targets";
|
|
version = "0.52.6";
|
|
edition = "2021";
|
|
sha256 = "0wwrx625nwlfp7k93r2rra568gad1mwd888h1jwnl0vfg5r4ywlv";
|
|
libName = "windows_targets";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "windows_aarch64_gnullvm";
|
|
packageId = "windows_aarch64_gnullvm";
|
|
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "aarch64-pc-windows-gnullvm");
|
|
}
|
|
{
|
|
name = "windows_aarch64_msvc";
|
|
packageId = "windows_aarch64_msvc";
|
|
target = { target, features }: (("aarch64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
|
|
}
|
|
{
|
|
name = "windows_i686_gnu";
|
|
packageId = "windows_i686_gnu";
|
|
target = { target, features }: (("x86" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
|
|
}
|
|
{
|
|
name = "windows_i686_gnullvm";
|
|
packageId = "windows_i686_gnullvm";
|
|
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "i686-pc-windows-gnullvm");
|
|
}
|
|
{
|
|
name = "windows_i686_msvc";
|
|
packageId = "windows_i686_msvc";
|
|
target = { target, features }: (("x86" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
|
|
}
|
|
{
|
|
name = "windows_x86_64_gnu";
|
|
packageId = "windows_x86_64_gnu";
|
|
target = { target, features }: (("x86_64" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false)));
|
|
}
|
|
{
|
|
name = "windows_x86_64_gnullvm";
|
|
packageId = "windows_x86_64_gnullvm";
|
|
target = { target, features }: (stdenv.hostPlatform.rust.rustcTarget == "x86_64-pc-windows-gnullvm");
|
|
}
|
|
{
|
|
name = "windows_x86_64_msvc";
|
|
packageId = "windows_x86_64_msvc";
|
|
target = { target, features }: ((("x86_64" == target."arch" or null) || ("arm64ec" == target."arch" or null)) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false)));
|
|
}
|
|
];
|
|
|
|
};
|
|
"windows_aarch64_gnullvm" = rec {
|
|
crateName = "windows_aarch64_gnullvm";
|
|
version = "0.52.6";
|
|
edition = "2021";
|
|
sha256 = "1lrcq38cr2arvmz19v32qaggvj8bh1640mdm9c2fr877h0hn591j";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_aarch64_msvc" = rec {
|
|
crateName = "windows_aarch64_msvc";
|
|
version = "0.52.6";
|
|
edition = "2021";
|
|
sha256 = "0sfl0nysnz32yyfh773hpi49b1q700ah6y7sacmjbqjjn5xjmv09";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_i686_gnu" = rec {
|
|
crateName = "windows_i686_gnu";
|
|
version = "0.52.6";
|
|
edition = "2021";
|
|
sha256 = "02zspglbykh1jh9pi7gn8g1f97jh1rrccni9ivmrfbl0mgamm6wf";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_i686_gnullvm" = rec {
|
|
crateName = "windows_i686_gnullvm";
|
|
version = "0.52.6";
|
|
edition = "2021";
|
|
sha256 = "0rpdx1537mw6slcpqa0rm3qixmsb79nbhqy5fsm3q2q9ik9m5vhf";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_i686_msvc" = rec {
|
|
crateName = "windows_i686_msvc";
|
|
version = "0.52.6";
|
|
edition = "2021";
|
|
sha256 = "0rkcqmp4zzmfvrrrx01260q3xkpzi6fzi2x2pgdcdry50ny4h294";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_x86_64_gnu" = rec {
|
|
crateName = "windows_x86_64_gnu";
|
|
version = "0.52.6";
|
|
edition = "2021";
|
|
sha256 = "0y0sifqcb56a56mvn7xjgs8g43p33mfqkd8wj1yhrgxzma05qyhl";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_x86_64_gnullvm" = rec {
|
|
crateName = "windows_x86_64_gnullvm";
|
|
version = "0.52.6";
|
|
edition = "2021";
|
|
sha256 = "03gda7zjx1qh8k9nnlgb7m3w3s1xkysg55hkd1wjch8pqhyv5m94";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"windows_x86_64_msvc" = rec {
|
|
crateName = "windows_x86_64_msvc";
|
|
version = "0.52.6";
|
|
edition = "2021";
|
|
sha256 = "1v7rb5cibyzx8vak29pdrk8nx9hycsjs4w0jgms08qk49jl6v7sq";
|
|
authors = [
|
|
"Microsoft"
|
|
];
|
|
|
|
};
|
|
"winnow 0.5.40" = rec {
|
|
crateName = "winnow";
|
|
version = "0.5.40";
|
|
edition = "2021";
|
|
sha256 = "0xk8maai7gyxda673mmw3pj1hdizy5fpi7287vaywykkk19sk4zm";
|
|
dependencies = [
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"debug" = [ "dep:anstream" "dep:anstyle" "dep:is-terminal" "dep:terminal_size" ];
|
|
"default" = [ "std" ];
|
|
"simd" = [ "dep:memchr" ];
|
|
"std" = [ "alloc" "memchr?/std" ];
|
|
"unstable-doc" = [ "alloc" "std" "simd" "unstable-recover" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"winnow 0.7.4" = rec {
|
|
crateName = "winnow";
|
|
version = "0.7.4";
|
|
edition = "2021";
|
|
sha256 = "0dmbsz6zfddcgsqzzqxw1h8f7zy19x407g7zl3hyp6vf2m2bb5qf";
|
|
dependencies = [
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"debug" = [ "std" "dep:anstream" "dep:anstyle" "dep:is-terminal" "dep:terminal_size" ];
|
|
"default" = [ "std" ];
|
|
"simd" = [ "dep:memchr" ];
|
|
"std" = [ "alloc" "memchr?/std" ];
|
|
"unstable-doc" = [ "alloc" "std" "simd" "unstable-recover" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"wit-bindgen-rt" = rec {
|
|
crateName = "wit-bindgen-rt";
|
|
version = "0.39.0";
|
|
edition = "2021";
|
|
sha256 = "1hd65pa5hp0nl664m94bg554h4zlhrzmkjsf6lsgsb7yc4734hkg";
|
|
libName = "wit_bindgen_rt";
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"async" = [ "dep:futures" "dep:once_cell" ];
|
|
"bitflags" = [ "dep:bitflags" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "bitflags" ];
|
|
};
|
|
"writeable" = rec {
|
|
crateName = "writeable";
|
|
version = "0.5.5";
|
|
edition = "2021";
|
|
sha256 = "0lawr6y0bwqfyayf3z8zmqlhpnzhdx0ahs54isacbhyjwa7g778y";
|
|
authors = [
|
|
"The ICU4X Project Developers"
|
|
];
|
|
features = {
|
|
"either" = [ "dep:either" ];
|
|
};
|
|
};
|
|
"xml-rs" = rec {
|
|
crateName = "xml-rs";
|
|
version = "0.8.25";
|
|
edition = "2021";
|
|
crateBin = [];
|
|
sha256 = "1i73ajf6scni5bi1a51r19xykgrambdx5fkks0fyg5jqqbml1ff5";
|
|
libName = "xml";
|
|
authors = [
|
|
"Vladimir Matveev <vmatveev@citrine.cc>"
|
|
];
|
|
|
|
};
|
|
"yew" = rec {
|
|
crateName = "yew";
|
|
version = "0.21.0";
|
|
edition = "2021";
|
|
workspace_member = null;
|
|
src = pkgs.fetchgit {
|
|
url = "https://github.com/yewstack/yew/";
|
|
rev = "b0d065626175f009cde687980f3724de8dc27240";
|
|
sha256 = "1g47mpyzd2mib73cjrbmcivrp7kr16f6hbrmpaap56kbc518khwf";
|
|
};
|
|
authors = [
|
|
"Denis Kolodin <deniskolodin@gmail.com>"
|
|
"Justin Starry <justin@yew.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "console_error_panic_hook";
|
|
packageId = "console_error_panic_hook";
|
|
}
|
|
{
|
|
name = "futures";
|
|
packageId = "futures";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "gloo";
|
|
packageId = "gloo";
|
|
}
|
|
{
|
|
name = "implicit-clone";
|
|
packageId = "implicit-clone";
|
|
features = [ "map" ];
|
|
}
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
}
|
|
{
|
|
name = "rustversion";
|
|
packageId = "rustversion";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "slab";
|
|
packageId = "slab";
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 2.0.12";
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null));
|
|
features = [ "macros" "rt" "time" ];
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
target = { target, features }: (!("wasm32" == target."arch" or null));
|
|
features = [ "rt" ];
|
|
}
|
|
{
|
|
name = "tokise";
|
|
packageId = "tokise";
|
|
}
|
|
{
|
|
name = "tracing";
|
|
packageId = "tracing";
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
}
|
|
{
|
|
name = "wasm-bindgen-futures";
|
|
packageId = "wasm-bindgen-futures";
|
|
target = { target, features }: ("wasm32" == target."arch" or null);
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "AnimationEvent" "Document" "DragEvent" "Element" "ErrorEvent" "Event" "EventInit" "EventTarget" "FocusEvent" "HtmlElement" "HtmlInputElement" "HtmlCollection" "HtmlTextAreaElement" "InputEvent" "InputEventInit" "KeyboardEvent" "Location" "MouseEvent" "Node" "NodeList" "PointerEvent" "ProgressEvent" "ShadowRoot" "Text" "TouchEvent" "TransitionEvent" "UiEvent" "WheelEvent" "Window" "HtmlScriptElement" "SubmitEvent" ];
|
|
}
|
|
{
|
|
name = "yew-macro";
|
|
packageId = "yew-macro";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "gloo";
|
|
packageId = "gloo";
|
|
features = [ "futures" ];
|
|
}
|
|
{
|
|
name = "tokio";
|
|
packageId = "tokio";
|
|
target = {target, features}: (!("wasm32" == target."arch" or null));
|
|
features = [ "full" ];
|
|
}
|
|
{
|
|
name = "wasm-bindgen-futures";
|
|
packageId = "wasm-bindgen-futures";
|
|
}
|
|
{
|
|
name = "web-sys";
|
|
packageId = "web-sys";
|
|
features = [ "ShadowRootInit" "ShadowRootMode" "HtmlButtonElement" ];
|
|
}
|
|
];
|
|
features = {
|
|
"hydration" = [ "csr" "dep:bincode" ];
|
|
"ssr" = [ "dep:html-escape" "dep:base64ct" "dep:bincode" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "csr" "default" ];
|
|
};
|
|
"yew-macro" = rec {
|
|
crateName = "yew-macro";
|
|
version = "0.21.0";
|
|
edition = "2021";
|
|
workspace_member = null;
|
|
src = pkgs.fetchgit {
|
|
url = "https://github.com/yewstack/yew/";
|
|
rev = "b0d065626175f009cde687980f3724de8dc27240";
|
|
sha256 = "1g47mpyzd2mib73cjrbmcivrp7kr16f6hbrmpaap56kbc518khwf";
|
|
};
|
|
procMacro = true;
|
|
libName = "yew_macro";
|
|
authors = [
|
|
"Justin Starry <justin@yew.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
{
|
|
name = "prettyplease";
|
|
packageId = "prettyplease";
|
|
}
|
|
{
|
|
name = "proc-macro-error";
|
|
packageId = "proc-macro-error";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "rustversion";
|
|
packageId = "rustversion";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.100";
|
|
features = [ "full" "extra-traits" "visit-mut" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
};
|
|
|
|
#
|
|
# crate2nix/default.nix (excerpt start)
|
|
#
|
|
|
|
/* Target (platform) data for conditional dependencies.
|
|
This corresponds roughly to what buildRustCrate is setting.
|
|
*/
|
|
makeDefaultTarget = platform: {
|
|
unix = platform.isUnix;
|
|
windows = platform.isWindows;
|
|
fuchsia = true;
|
|
test = false;
|
|
|
|
inherit (platform.rust.platform)
|
|
arch
|
|
os
|
|
vendor;
|
|
family = platform.rust.platform.target-family;
|
|
env = "gnu";
|
|
endian =
|
|
if platform.parsed.cpu.significantByte.name == "littleEndian"
|
|
then "little" else "big";
|
|
pointer_width = toString platform.parsed.cpu.bits;
|
|
debug_assertions = false;
|
|
};
|
|
|
|
/* Filters common temp files and build files. */
|
|
# TODO(pkolloch): Substitute with gitignore filter
|
|
sourceFilter = name: type:
|
|
let
|
|
baseName = builtins.baseNameOf (builtins.toString name);
|
|
in
|
|
! (
|
|
# Filter out git
|
|
baseName == ".gitignore"
|
|
|| (type == "directory" && baseName == ".git")
|
|
|
|
# Filter out build results
|
|
|| (
|
|
type == "directory" && (
|
|
baseName == "target"
|
|
|| baseName == "_site"
|
|
|| baseName == ".sass-cache"
|
|
|| baseName == ".jekyll-metadata"
|
|
|| baseName == "build-artifacts"
|
|
)
|
|
)
|
|
|
|
# Filter out nix-build result symlinks
|
|
|| (
|
|
type == "symlink" && lib.hasPrefix "result" baseName
|
|
)
|
|
|
|
# Filter out IDE config
|
|
|| (
|
|
type == "directory" && (
|
|
baseName == ".idea" || baseName == ".vscode"
|
|
)
|
|
) || lib.hasSuffix ".iml" baseName
|
|
|
|
# Filter out nix build files
|
|
|| baseName == "Cargo.nix"
|
|
|
|
# Filter out editor backup / swap files.
|
|
|| lib.hasSuffix "~" baseName
|
|
|| builtins.match "^\\.sw[a-z]$$" baseName != null
|
|
|| builtins.match "^\\..*\\.sw[a-z]$$" baseName != null
|
|
|| lib.hasSuffix ".tmp" baseName
|
|
|| lib.hasSuffix ".bak" baseName
|
|
|| baseName == "tests.nix"
|
|
);
|
|
|
|
/* Returns a crate which depends on successful test execution
|
|
of crate given as the second argument.
|
|
|
|
testCrateFlags: list of flags to pass to the test exectuable
|
|
testInputs: list of packages that should be available during test execution
|
|
*/
|
|
crateWithTest = { crate, testCrate, testCrateFlags, testInputs, testPreRun, testPostRun }:
|
|
assert builtins.typeOf testCrateFlags == "list";
|
|
assert builtins.typeOf testInputs == "list";
|
|
assert builtins.typeOf testPreRun == "string";
|
|
assert builtins.typeOf testPostRun == "string";
|
|
let
|
|
# override the `crate` so that it will build and execute tests instead of
|
|
# building the actual lib and bin targets We just have to pass `--test`
|
|
# to rustc and it will do the right thing. We execute the tests and copy
|
|
# their log and the test executables to $out for later inspection.
|
|
test =
|
|
let
|
|
drv = testCrate.override
|
|
(
|
|
_: {
|
|
buildTests = true;
|
|
}
|
|
);
|
|
# If the user hasn't set any pre/post commands, we don't want to
|
|
# insert empty lines. This means that any existing users of crate2nix
|
|
# don't get a spurious rebuild unless they set these explicitly.
|
|
testCommand = pkgs.lib.concatStringsSep "\n"
|
|
(pkgs.lib.filter (s: s != "") [
|
|
testPreRun
|
|
"$f $testCrateFlags 2>&1 | tee -a $out"
|
|
testPostRun
|
|
]);
|
|
in
|
|
pkgs.runCommand "run-tests-${testCrate.name}"
|
|
{
|
|
inherit testCrateFlags;
|
|
buildInputs = testInputs;
|
|
} ''
|
|
set -e
|
|
|
|
export RUST_BACKTRACE=1
|
|
|
|
# recreate a file hierarchy as when running tests with cargo
|
|
|
|
# the source for test data
|
|
# It's necessary to locate the source in $NIX_BUILD_TOP/source/
|
|
# instead of $NIX_BUILD_TOP/
|
|
# because we compiled those test binaries in the former and not the latter.
|
|
# So all paths will expect source tree to be there and not in the build top directly.
|
|
# For example: $NIX_BUILD_TOP := /build in general, if you ask yourself.
|
|
# NOTE: There could be edge cases if `crate.sourceRoot` does exist but
|
|
# it's very hard to reason about them.
|
|
# Open a bug if you run into this!
|
|
mkdir -p source/
|
|
cd source/
|
|
|
|
${pkgs.buildPackages.xorg.lndir}/bin/lndir ${crate.src}
|
|
|
|
# build outputs
|
|
testRoot=target/debug
|
|
mkdir -p $testRoot
|
|
|
|
# executables of the crate
|
|
# we copy to prevent std::env::current_exe() to resolve to a store location
|
|
for i in ${crate}/bin/*; do
|
|
cp "$i" "$testRoot"
|
|
done
|
|
chmod +w -R .
|
|
|
|
# test harness executables are suffixed with a hash, like cargo does
|
|
# this allows to prevent name collision with the main
|
|
# executables of the crate
|
|
hash=$(basename $out)
|
|
for file in ${drv}/tests/*; do
|
|
f=$testRoot/$(basename $file)-$hash
|
|
cp $file $f
|
|
${testCommand}
|
|
done
|
|
'';
|
|
in
|
|
pkgs.runCommand "${crate.name}-linked"
|
|
{
|
|
inherit (crate) outputs crateName;
|
|
passthru = (crate.passthru or { }) // {
|
|
inherit test;
|
|
};
|
|
}
|
|
(lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
echo tested by ${test}
|
|
'' + ''
|
|
${lib.concatMapStringsSep "\n" (output: "ln -s ${crate.${output}} ${"$"}${output}") crate.outputs}
|
|
'');
|
|
|
|
/* A restricted overridable version of builtRustCratesWithFeatures. */
|
|
buildRustCrateWithFeatures =
|
|
{ packageId
|
|
, features ? rootFeatures
|
|
, crateOverrides ? defaultCrateOverrides
|
|
, buildRustCrateForPkgsFunc ? null
|
|
, runTests ? false
|
|
, testCrateFlags ? [ ]
|
|
, testInputs ? [ ]
|
|
# Any command to run immediatelly before a test is executed.
|
|
, testPreRun ? ""
|
|
# Any command run immediatelly after a test is executed.
|
|
, testPostRun ? ""
|
|
}:
|
|
lib.makeOverridable
|
|
(
|
|
{ features
|
|
, crateOverrides
|
|
, runTests
|
|
, testCrateFlags
|
|
, testInputs
|
|
, testPreRun
|
|
, testPostRun
|
|
}:
|
|
let
|
|
buildRustCrateForPkgsFuncOverriden =
|
|
if buildRustCrateForPkgsFunc != null
|
|
then buildRustCrateForPkgsFunc
|
|
else
|
|
(
|
|
if crateOverrides == pkgs.defaultCrateOverrides
|
|
then buildRustCrateForPkgs
|
|
else
|
|
pkgs: (buildRustCrateForPkgs pkgs).override {
|
|
defaultCrateOverrides = crateOverrides;
|
|
}
|
|
);
|
|
builtRustCrates = builtRustCratesWithFeatures {
|
|
inherit packageId features;
|
|
buildRustCrateForPkgsFunc = buildRustCrateForPkgsFuncOverriden;
|
|
runTests = false;
|
|
};
|
|
builtTestRustCrates = builtRustCratesWithFeatures {
|
|
inherit packageId features;
|
|
buildRustCrateForPkgsFunc = buildRustCrateForPkgsFuncOverriden;
|
|
runTests = true;
|
|
};
|
|
drv = builtRustCrates.crates.${packageId};
|
|
testDrv = builtTestRustCrates.crates.${packageId};
|
|
derivation =
|
|
if runTests then
|
|
crateWithTest
|
|
{
|
|
crate = drv;
|
|
testCrate = testDrv;
|
|
inherit testCrateFlags testInputs testPreRun testPostRun;
|
|
}
|
|
else drv;
|
|
in
|
|
derivation
|
|
)
|
|
{ inherit features crateOverrides runTests testCrateFlags testInputs testPreRun testPostRun; };
|
|
|
|
/* Returns an attr set with packageId mapped to the result of buildRustCrateForPkgsFunc
|
|
for the corresponding crate.
|
|
*/
|
|
builtRustCratesWithFeatures =
|
|
{ packageId
|
|
, features
|
|
, crateConfigs ? crates
|
|
, buildRustCrateForPkgsFunc
|
|
, runTests
|
|
, makeTarget ? makeDefaultTarget
|
|
} @ args:
|
|
assert (builtins.isAttrs crateConfigs);
|
|
assert (builtins.isString packageId);
|
|
assert (builtins.isList features);
|
|
assert (builtins.isAttrs (makeTarget stdenv.hostPlatform));
|
|
assert (builtins.isBool runTests);
|
|
let
|
|
rootPackageId = packageId;
|
|
mergedFeatures = mergePackageFeatures
|
|
(
|
|
args // {
|
|
inherit rootPackageId;
|
|
target = makeTarget stdenv.hostPlatform // { test = runTests; };
|
|
}
|
|
);
|
|
# Memoize built packages so that reappearing packages are only built once.
|
|
builtByPackageIdByPkgs = mkBuiltByPackageIdByPkgs pkgs;
|
|
mkBuiltByPackageIdByPkgs = pkgs:
|
|
let
|
|
self = {
|
|
crates = lib.mapAttrs (packageId: value: buildByPackageIdForPkgsImpl self pkgs packageId) crateConfigs;
|
|
target = makeTarget stdenv.hostPlatform;
|
|
build = mkBuiltByPackageIdByPkgs pkgs.buildPackages;
|
|
};
|
|
in
|
|
self;
|
|
buildByPackageIdForPkgsImpl = self: pkgs: packageId:
|
|
let
|
|
features = mergedFeatures."${packageId}" or [ ];
|
|
crateConfig' = crateConfigs."${packageId}";
|
|
crateConfig =
|
|
builtins.removeAttrs crateConfig' [ "resolvedDefaultFeatures" "devDependencies" ];
|
|
devDependencies =
|
|
lib.optionals
|
|
(runTests && packageId == rootPackageId)
|
|
(crateConfig'.devDependencies or [ ]);
|
|
dependencies =
|
|
dependencyDerivations {
|
|
inherit features;
|
|
inherit (self) target;
|
|
buildByPackageId = depPackageId:
|
|
# proc_macro crates must be compiled for the build architecture
|
|
if crateConfigs.${depPackageId}.procMacro or false
|
|
then self.build.crates.${depPackageId}
|
|
else self.crates.${depPackageId};
|
|
dependencies =
|
|
(crateConfig.dependencies or [ ])
|
|
++ devDependencies;
|
|
};
|
|
buildDependencies =
|
|
dependencyDerivations {
|
|
inherit features;
|
|
inherit (self.build) target;
|
|
buildByPackageId = depPackageId:
|
|
self.build.crates.${depPackageId};
|
|
dependencies = crateConfig.buildDependencies or [ ];
|
|
};
|
|
dependenciesWithRenames =
|
|
let
|
|
buildDeps = filterEnabledDependencies {
|
|
inherit features;
|
|
inherit (self) target;
|
|
dependencies = crateConfig.dependencies or [ ] ++ devDependencies;
|
|
};
|
|
hostDeps = filterEnabledDependencies {
|
|
inherit features;
|
|
inherit (self.build) target;
|
|
dependencies = crateConfig.buildDependencies or [ ];
|
|
};
|
|
in
|
|
lib.filter (d: d ? "rename") (hostDeps ++ buildDeps);
|
|
# Crate renames have the form:
|
|
#
|
|
# {
|
|
# crate_name = [
|
|
# { version = "1.2.3"; rename = "crate_name01"; }
|
|
# ];
|
|
# # ...
|
|
# }
|
|
crateRenames =
|
|
let
|
|
grouped =
|
|
lib.groupBy
|
|
(dependency: dependency.name)
|
|
dependenciesWithRenames;
|
|
versionAndRename = dep:
|
|
let
|
|
package = crateConfigs."${dep.packageId}";
|
|
in
|
|
{ inherit (dep) rename; inherit (package) version; };
|
|
in
|
|
lib.mapAttrs (name: builtins.map versionAndRename) grouped;
|
|
in
|
|
buildRustCrateForPkgsFunc pkgs
|
|
(
|
|
crateConfig // {
|
|
src = crateConfig.src or (
|
|
pkgs.fetchurl rec {
|
|
name = "${crateConfig.crateName}-${crateConfig.version}.tar.gz";
|
|
# https://www.pietroalbini.org/blog/downloading-crates-io/
|
|
# Not rate-limited, CDN URL.
|
|
url = "https://static.crates.io/crates/${crateConfig.crateName}/${crateConfig.crateName}-${crateConfig.version}.crate";
|
|
sha256 =
|
|
assert (lib.assertMsg (crateConfig ? sha256) "Missing sha256 for ${name}");
|
|
crateConfig.sha256;
|
|
}
|
|
);
|
|
extraRustcOpts = lib.lists.optional (targetFeatures != [ ]) "-C target-feature=${lib.concatMapStringsSep "," (x: "+${x}") targetFeatures}";
|
|
inherit features dependencies buildDependencies crateRenames release;
|
|
}
|
|
);
|
|
in
|
|
builtByPackageIdByPkgs;
|
|
|
|
/* Returns the actual derivations for the given dependencies. */
|
|
dependencyDerivations =
|
|
{ buildByPackageId
|
|
, features
|
|
, dependencies
|
|
, target
|
|
}:
|
|
assert (builtins.isList features);
|
|
assert (builtins.isList dependencies);
|
|
assert (builtins.isAttrs target);
|
|
let
|
|
enabledDependencies = filterEnabledDependencies {
|
|
inherit dependencies features target;
|
|
};
|
|
depDerivation = dependency: buildByPackageId dependency.packageId;
|
|
in
|
|
map depDerivation enabledDependencies;
|
|
|
|
/* Returns a sanitized version of val with all values substituted that cannot
|
|
be serialized as JSON.
|
|
*/
|
|
sanitizeForJson = val:
|
|
if builtins.isAttrs val
|
|
then lib.mapAttrs (n: sanitizeForJson) val
|
|
else if builtins.isList val
|
|
then builtins.map sanitizeForJson val
|
|
else if builtins.isFunction val
|
|
then "function"
|
|
else val;
|
|
|
|
/* Returns various tools to debug a crate. */
|
|
debugCrate = { packageId, target ? makeDefaultTarget stdenv.hostPlatform }:
|
|
assert (builtins.isString packageId);
|
|
let
|
|
debug = rec {
|
|
# The built tree as passed to buildRustCrate.
|
|
buildTree = buildRustCrateWithFeatures {
|
|
buildRustCrateForPkgsFunc = _: lib.id;
|
|
inherit packageId;
|
|
};
|
|
sanitizedBuildTree = sanitizeForJson buildTree;
|
|
dependencyTree = sanitizeForJson
|
|
(
|
|
buildRustCrateWithFeatures {
|
|
buildRustCrateForPkgsFunc = _: crate: {
|
|
"01_crateName" = crate.crateName or false;
|
|
"02_features" = crate.features or [ ];
|
|
"03_dependencies" = crate.dependencies or [ ];
|
|
};
|
|
inherit packageId;
|
|
}
|
|
);
|
|
mergedPackageFeatures = mergePackageFeatures {
|
|
features = rootFeatures;
|
|
inherit packageId target;
|
|
};
|
|
diffedDefaultPackageFeatures = diffDefaultPackageFeatures {
|
|
inherit packageId target;
|
|
};
|
|
};
|
|
in
|
|
{ internal = debug; };
|
|
|
|
/* Returns differences between cargo default features and crate2nix default
|
|
features.
|
|
|
|
This is useful for verifying the feature resolution in crate2nix.
|
|
*/
|
|
diffDefaultPackageFeatures =
|
|
{ crateConfigs ? crates
|
|
, packageId
|
|
, target
|
|
}:
|
|
assert (builtins.isAttrs crateConfigs);
|
|
let
|
|
prefixValues = prefix: lib.mapAttrs (n: v: { "${prefix}" = v; });
|
|
mergedFeatures =
|
|
prefixValues
|
|
"crate2nix"
|
|
(mergePackageFeatures { inherit crateConfigs packageId target; features = [ "default" ]; });
|
|
configs = prefixValues "cargo" crateConfigs;
|
|
combined = lib.foldAttrs (a: b: a // b) { } [ mergedFeatures configs ];
|
|
onlyInCargo =
|
|
builtins.attrNames
|
|
(lib.filterAttrs (n: v: !(v ? "crate2nix") && (v ? "cargo")) combined);
|
|
onlyInCrate2Nix =
|
|
builtins.attrNames
|
|
(lib.filterAttrs (n: v: (v ? "crate2nix") && !(v ? "cargo")) combined);
|
|
differentFeatures = lib.filterAttrs
|
|
(
|
|
n: v:
|
|
(v ? "crate2nix")
|
|
&& (v ? "cargo")
|
|
&& (v.crate2nix.features or [ ]) != (v."cargo".resolved_default_features or [ ])
|
|
)
|
|
combined;
|
|
in
|
|
builtins.toJSON {
|
|
inherit onlyInCargo onlyInCrate2Nix differentFeatures;
|
|
};
|
|
|
|
/* Returns an attrset mapping packageId to the list of enabled features.
|
|
|
|
If multiple paths to a dependency enable different features, the
|
|
corresponding feature sets are merged. Features in rust are additive.
|
|
*/
|
|
mergePackageFeatures =
|
|
{ crateConfigs ? crates
|
|
, packageId
|
|
, rootPackageId ? packageId
|
|
, features ? rootFeatures
|
|
, dependencyPath ? [ crates.${packageId}.crateName ]
|
|
, featuresByPackageId ? { }
|
|
, target
|
|
# Adds devDependencies to the crate with rootPackageId.
|
|
, runTests ? false
|
|
, ...
|
|
} @ args:
|
|
assert (builtins.isAttrs crateConfigs);
|
|
assert (builtins.isString packageId);
|
|
assert (builtins.isString rootPackageId);
|
|
assert (builtins.isList features);
|
|
assert (builtins.isList dependencyPath);
|
|
assert (builtins.isAttrs featuresByPackageId);
|
|
assert (builtins.isAttrs target);
|
|
assert (builtins.isBool runTests);
|
|
let
|
|
crateConfig = crateConfigs."${packageId}" or (builtins.throw "Package not found: ${packageId}");
|
|
expandedFeatures = expandFeatures (crateConfig.features or { }) features;
|
|
enabledFeatures = enableFeatures (crateConfig.dependencies or [ ]) expandedFeatures;
|
|
depWithResolvedFeatures = dependency:
|
|
let
|
|
inherit (dependency) packageId;
|
|
features = dependencyFeatures enabledFeatures dependency;
|
|
in
|
|
{ inherit packageId features; };
|
|
resolveDependencies = cache: path: dependencies:
|
|
assert (builtins.isAttrs cache);
|
|
assert (builtins.isList dependencies);
|
|
let
|
|
enabledDependencies = filterEnabledDependencies {
|
|
inherit dependencies target;
|
|
features = enabledFeatures;
|
|
};
|
|
directDependencies = map depWithResolvedFeatures enabledDependencies;
|
|
foldOverCache = op: lib.foldl op cache directDependencies;
|
|
in
|
|
foldOverCache
|
|
(
|
|
cache: { packageId, features }:
|
|
let
|
|
cacheFeatures = cache.${packageId} or [ ];
|
|
combinedFeatures = sortedUnique (cacheFeatures ++ features);
|
|
in
|
|
if cache ? ${packageId} && cache.${packageId} == combinedFeatures
|
|
then cache
|
|
else
|
|
mergePackageFeatures {
|
|
features = combinedFeatures;
|
|
featuresByPackageId = cache;
|
|
inherit crateConfigs packageId target runTests rootPackageId;
|
|
}
|
|
);
|
|
cacheWithSelf =
|
|
let
|
|
cacheFeatures = featuresByPackageId.${packageId} or [ ];
|
|
combinedFeatures = sortedUnique (cacheFeatures ++ enabledFeatures);
|
|
in
|
|
featuresByPackageId // {
|
|
"${packageId}" = combinedFeatures;
|
|
};
|
|
cacheWithDependencies =
|
|
resolveDependencies cacheWithSelf "dep"
|
|
(
|
|
crateConfig.dependencies or [ ]
|
|
++ lib.optionals
|
|
(runTests && packageId == rootPackageId)
|
|
(crateConfig.devDependencies or [ ])
|
|
);
|
|
cacheWithAll =
|
|
resolveDependencies
|
|
cacheWithDependencies "build"
|
|
(crateConfig.buildDependencies or [ ]);
|
|
in
|
|
cacheWithAll;
|
|
|
|
/* Returns the enabled dependencies given the enabled features. */
|
|
filterEnabledDependencies = { dependencies, features, target }:
|
|
assert (builtins.isList dependencies);
|
|
assert (builtins.isList features);
|
|
assert (builtins.isAttrs target);
|
|
|
|
lib.filter
|
|
(
|
|
dep:
|
|
let
|
|
targetFunc = dep.target or (features: true);
|
|
in
|
|
targetFunc { inherit features target; }
|
|
&& (
|
|
!(dep.optional or false)
|
|
|| builtins.any (doesFeatureEnableDependency dep) features
|
|
)
|
|
)
|
|
dependencies;
|
|
|
|
/* Returns whether the given feature should enable the given dependency. */
|
|
doesFeatureEnableDependency = dependency: feature:
|
|
let
|
|
name = dependency.rename or dependency.name;
|
|
prefix = "${name}/";
|
|
len = builtins.stringLength prefix;
|
|
startsWithPrefix = builtins.substring 0 len feature == prefix;
|
|
in
|
|
feature == name || feature == "dep:" + name || startsWithPrefix;
|
|
|
|
/* Returns the expanded features for the given inputFeatures by applying the
|
|
rules in featureMap.
|
|
|
|
featureMap is an attribute set which maps feature names to lists of further
|
|
feature names to enable in case this feature is selected.
|
|
*/
|
|
expandFeatures = featureMap: inputFeatures:
|
|
assert (builtins.isAttrs featureMap);
|
|
assert (builtins.isList inputFeatures);
|
|
let
|
|
expandFeaturesNoCycle = oldSeen: inputFeatures:
|
|
if inputFeatures != [ ]
|
|
then
|
|
let
|
|
# The feature we're currently expanding.
|
|
feature = builtins.head inputFeatures;
|
|
# All the features we've seen/expanded so far, including the one
|
|
# we're currently processing.
|
|
seen = oldSeen // { ${feature} = 1; };
|
|
# Expand the feature but be careful to not re-introduce a feature
|
|
# that we've already seen: this can easily cause a cycle, see issue
|
|
# #209.
|
|
enables = builtins.filter (f: !(seen ? "${f}")) (featureMap."${feature}" or [ ]);
|
|
in
|
|
[ feature ] ++ (expandFeaturesNoCycle seen (builtins.tail inputFeatures ++ enables))
|
|
# No more features left, nothing to expand to.
|
|
else [ ];
|
|
outFeatures = expandFeaturesNoCycle { } inputFeatures;
|
|
in
|
|
sortedUnique outFeatures;
|
|
|
|
/* This function adds optional dependencies as features if they are enabled
|
|
indirectly by dependency features. This function mimics Cargo's behavior
|
|
described in a note at:
|
|
https://doc.rust-lang.org/nightly/cargo/reference/features.html#dependency-features
|
|
*/
|
|
enableFeatures = dependencies: features:
|
|
assert (builtins.isList features);
|
|
assert (builtins.isList dependencies);
|
|
let
|
|
additionalFeatures = lib.concatMap
|
|
(
|
|
dependency:
|
|
assert (builtins.isAttrs dependency);
|
|
let
|
|
enabled = builtins.any (doesFeatureEnableDependency dependency) features;
|
|
in
|
|
if (dependency.optional or false) && enabled
|
|
then [ (dependency.rename or dependency.name) ]
|
|
else [ ]
|
|
)
|
|
dependencies;
|
|
in
|
|
sortedUnique (features ++ additionalFeatures);
|
|
|
|
/*
|
|
Returns the actual features for the given dependency.
|
|
|
|
features: The features of the crate that refers this dependency.
|
|
*/
|
|
dependencyFeatures = features: dependency:
|
|
assert (builtins.isList features);
|
|
assert (builtins.isAttrs dependency);
|
|
let
|
|
defaultOrNil =
|
|
if dependency.usesDefaultFeatures or true
|
|
then [ "default" ]
|
|
else [ ];
|
|
explicitFeatures = dependency.features or [ ];
|
|
additionalDependencyFeatures =
|
|
let
|
|
name = dependency.rename or dependency.name;
|
|
stripPrefixMatch = prefix: s:
|
|
if lib.hasPrefix prefix s
|
|
then lib.removePrefix prefix s
|
|
else null;
|
|
extractFeature = feature: lib.findFirst
|
|
(f: f != null)
|
|
null
|
|
(map (prefix: stripPrefixMatch prefix feature) [
|
|
(name + "/")
|
|
(name + "?/")
|
|
]);
|
|
dependencyFeatures = lib.filter (f: f != null) (map extractFeature features);
|
|
in
|
|
dependencyFeatures;
|
|
in
|
|
defaultOrNil ++ explicitFeatures ++ additionalDependencyFeatures;
|
|
|
|
/* Sorts and removes duplicates from a list of strings. */
|
|
sortedUnique = features:
|
|
assert (builtins.isList features);
|
|
assert (builtins.all builtins.isString features);
|
|
let
|
|
outFeaturesSet = lib.foldl (set: feature: set // { "${feature}" = 1; }) { } features;
|
|
outFeaturesUnique = builtins.attrNames outFeaturesSet;
|
|
in
|
|
builtins.sort (a: b: a < b) outFeaturesUnique;
|
|
|
|
deprecationWarning = message: value:
|
|
if strictDeprecation
|
|
then builtins.throw "strictDeprecation enabled, aborting: ${message}"
|
|
else builtins.trace message value;
|
|
|
|
#
|
|
# crate2nix/default.nix (excerpt end)
|
|
#
|
|
};
|
|
}
|
|
|