veloren/nix/Cargo.nix
2020-12-14 18:13:01 +03:00

18817 lines
553 KiB
Nix

# This file was @generated by crate2nix 0.9.0-alpha.1 with the command:
# "generate" "-f" "../Cargo.toml"
# See https://github.com/kolloch/crate2nix for more info.
{ nixpkgs ? <nixpkgs>
, pkgs ? import nixpkgs { config = { }; }
, lib ? pkgs.lib
, stdenv ? pkgs.stdenv
, buildRustCrate ? 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
# 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 = {
"veloren-client" = rec {
packageId = "veloren-client";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren-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; };
};
"veloren-common" = rec {
packageId = "veloren-common";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren-common";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"veloren-common-net" = rec {
packageId = "veloren-common-net";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren-common-net";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"veloren-common-sys" = rec {
packageId = "veloren-common-sys";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren-common-sys";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"veloren-plugin-api" = rec {
packageId = "veloren-plugin-api";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren-plugin-api";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"veloren-plugin-derive" = rec {
packageId = "veloren-plugin-derive";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren-plugin-derive";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"veloren-plugin-rt" = rec {
packageId = "veloren-plugin-rt";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren-plugin-rt";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"veloren-server" = rec {
packageId = "veloren-server";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren-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; };
};
"veloren-server-cli" = rec {
packageId = "veloren-server-cli";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren-server-cli";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"veloren-voxygen" = rec {
packageId = "veloren-voxygen";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren-voxygen";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"veloren-voxygen-anim" = rec {
packageId = "veloren-voxygen-anim";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren-voxygen-anim";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"veloren-world" = rec {
packageId = "veloren-world";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren-world";
};
# Debug support which might change between releases.
# File a bug if you depend on any for non-debug work!
debug = internal.debugCrate { inherit packageId; };
};
"veloren_network" = rec {
packageId = "veloren_network";
build = internal.buildRustCrateWithFeatures {
packageId = "veloren_network";
};
# 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 = {
"ab_glyph" = rec {
crateName = "ab_glyph";
version = "0.2.6";
edition = "2018";
sha256 = "18p1fqfri2ac7980cmqkl8vdzx2k15k75dd847rnchk5cvz8b9i6";
authors = [
"Alex Butler <alexheretic@gmail.com>"
];
dependencies = [
{
name = "ab_glyph_rasterizer";
packageId = "ab_glyph_rasterizer";
usesDefaultFeatures = false;
}
{
name = "owned_ttf_parser";
packageId = "owned_ttf_parser 0.8.0";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"libm" = [ "libm2" "ab_glyph_rasterizer/libm" ];
"std" = [ "owned_ttf_parser/default" "ab_glyph_rasterizer/default" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"ab_glyph_rasterizer" = rec {
crateName = "ab_glyph_rasterizer";
version = "0.1.3";
edition = "2018";
sha256 = "05iyxk0cwgbaf22y442vasmp9prpkh8kc055zswd49r5c06q14i6";
authors = [
"Alex Butler <alexheretic@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"addr2line" = rec {
crateName = "addr2line";
version = "0.13.0";
edition = "2015";
sha256 = "0wih40hagpvpsqrvz7jb1cyv00hlsr9hhrwpjz5b76k6f4rjsshv";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
"Philip Craig <philipjcraig@gmail.com>"
"Jon Gjengset <jon@thesquareplanet.com>"
"Noah Bergbauer <noah.bergbauer@tum.de>"
];
dependencies = [
{
name = "gimli";
packageId = "gimli 0.22.0";
usesDefaultFeatures = false;
features = [ "read" ];
}
];
features = {
"default" = [ "rustc-demangle" "cpp_demangle" "std-object" "fallible-iterator" "smallvec" ];
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "gimli/rustc-dep-of-std" ];
"std" = [ "gimli/std" ];
"std-object" = [ "std" "object" "object/std" "object/compression" "gimli/endian-reader" ];
};
};
"adler" = rec {
crateName = "adler";
version = "0.2.3";
edition = "2015";
sha256 = "0zpdsrfq5bd34941gmrlamnzjfbsx0x586afb7b0jqhr8g1lwapf";
authors = [
"Jonas Schievink <jonasschievink@gmail.com>"
];
features = {
"default" = [ "std" ];
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
};
};
"adler32" = rec {
crateName = "adler32";
version = "1.2.0";
edition = "2018";
sha256 = "0d7jq7jsjyhsgbhnfq5fvrlh9j0i9g1fqrl2735ibv5f75yjgqda";
authors = [
"Remi Rampin <remirampin@gmail.com>"
];
features = {
"default" = [ "std" ];
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"ahash" = rec {
crateName = "ahash";
version = "0.3.8";
edition = "2018";
sha256 = "05qjnr0wccch0gg2kghg0xyh8qd5gfqd15q9dd6r1lamcs375zg8";
authors = [
"Tom Kaitchuck <Tom.Kaitchuck@gmail.com>"
];
dependencies = [
{
name = "const-random";
packageId = "const-random";
optional = true;
}
];
features = {
"compile-time-rng" = [ "const-random" ];
"default" = [ "compile-time-rng" "std" ];
};
resolvedDefaultFeatures = [ "compile-time-rng" "const-random" "default" "std" ];
};
"aho-corasick" = rec {
crateName = "aho-corasick";
version = "0.7.13";
edition = "2015";
sha256 = "11hfmqf90rdvjdpk0x1lixw1s9n08y3fxfy9zqsk0k2wpbc68c84";
libName = "aho_corasick";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "memchr/use_std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"alsa" = rec {
crateName = "alsa";
version = "0.4.2";
edition = "2018";
sha256 = "0c2rp29d98yaq4ijqrwi0709wda20dapncna5bissx6x3bfiln24";
authors = [
"David Henningsson <diwic@ubuntu.com>"
];
dependencies = [
{
name = "alsa-sys";
packageId = "alsa-sys";
}
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "libc";
packageId = "libc";
}
{
name = "nix";
packageId = "nix 0.15.0";
}
];
};
"alsa-sys" = rec {
crateName = "alsa-sys";
version = "0.3.0";
edition = "2018";
sha256 = "18rnznwfixfxjlz46ydid7v94gm410ff92yrj0k4hyizrndmb86m";
authors = [
"Pierre Krieger <pierre.krieger1708@gmail.com>"
"David Henningsson <diwic@ubuntu.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
buildDependencies = [
{
name = "pkg-config";
packageId = "pkg-config";
}
];
};
"andrew" = rec {
crateName = "andrew";
version = "0.3.0";
edition = "2015";
sha256 = "1f9nnvflsbfdlvvv11vks9hsjxj02n41iaflzycwkjl9a05ah7jy";
authors = [
"Lucas Timmins <timmins.s.lucas@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "line_drawing";
packageId = "line_drawing";
}
{
name = "rusttype";
packageId = "rusttype 0.9.2";
}
{
name = "walkdir";
packageId = "walkdir 2.3.1";
}
{
name = "xdg";
packageId = "xdg";
}
{
name = "xml-rs";
packageId = "xml-rs";
}
];
};
"android_glue" = rec {
crateName = "android_glue";
version = "0.2.3";
edition = "2015";
sha256 = "01y495x4i9vqkwmklwn2xk7sqg666az2axjcpkr4iwngdwi48100";
authors = [
"Pierre Krieger <pierre.krieger1708@gmail.com>"
];
};
"ansi-parser" = rec {
crateName = "ansi-parser";
version = "0.6.5";
edition = "2018";
sha256 = "152idb8a6gwdxzj6m099h3xgx8vw0sjc6skgw94nm2k3y5swc6kn";
authors = [
"David Bittner <bittneradave@gmail.com>"
];
dependencies = [
{
name = "nom";
packageId = "nom 4.2.3";
}
];
};
"ansi_term 0.11.0" = rec {
crateName = "ansi_term";
version = "0.11.0";
edition = "2015";
sha256 = "16wpvrghvd0353584i1idnsgm0r3vchg8fyrm0x8ayv1rgvbljgf";
authors = [
"ogham@bsago.me"
"Ryan Scheel (Havvy) <ryan.havvy@gmail.com>"
"Josh Triplett <josh@joshtriplett.org>"
];
dependencies = [
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: (target."os" == "windows");
features = [ "errhandlingapi" "consoleapi" "processenv" ];
}
];
};
"ansi_term 0.12.1" = rec {
crateName = "ansi_term";
version = "0.12.1";
edition = "2015";
sha256 = "1ljmkbilxgmhavxvxqa7qvm6f3fjggi7q2l3a72q9x0cxjvrnanm";
authors = [
"ogham@bsago.me"
"Ryan Scheel (Havvy) <ryan.havvy@gmail.com>"
"Josh Triplett <josh@joshtriplett.org>"
];
dependencies = [
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: (target."os" == "windows");
features = [ "consoleapi" "errhandlingapi" "fileapi" "handleapi" "processenv" ];
}
];
features = {
"derive_serde_style" = [ "serde" ];
};
};
"anymap" = rec {
crateName = "anymap";
version = "0.12.1";
edition = "2015";
sha256 = "0i23vv38i22aazp5z2hz0a44b943b6w5121kwwnpq1brpm1l559k";
authors = [
"Chris Morgan <me@chrismorgan.info>"
];
features = { };
};
"approx 0.3.2" = rec {
crateName = "approx";
version = "0.3.2";
edition = "2015";
sha256 = "1hx580xjdxl3766js9b49rnbnmr8gw8c060809l43k9f0xshprph";
authors = [
"Brendan Zabarauskas <bjzaba@yahoo.com.au>"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
};
};
"approx 0.4.0" = rec {
crateName = "approx";
version = "0.4.0";
edition = "2015";
sha256 = "0y52dg58lapl4pp1kqlznfw1blbki0nx6b0aw8kja2yi3gyhaaiz";
authors = [
"Brendan Zabarauskas <bjzaba@yahoo.com.au>"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"arc-swap" = rec {
crateName = "arc-swap";
version = "0.4.7";
edition = "2015";
sha256 = "0d2hqwpkkz7jflrf3ziy5gpblix0h72x1yalls01a15qss7xh9ad";
authors = [
"Michal 'vorner' Vaner <vorner@vorner.cz>"
];
features = { };
};
"arr_macro" = rec {
crateName = "arr_macro";
version = "0.1.3";
edition = "2018";
sha256 = "199086q8zva66lbg9bpz6fa67s81ra7yfa8148cwy1w7lkymn43a";
authors = [
"Josh Mcguigan"
];
dependencies = [
{
name = "arr_macro_impl";
packageId = "arr_macro_impl";
}
{
name = "proc-macro-hack";
packageId = "proc-macro-hack";
}
];
};
"arr_macro_impl" = rec {
crateName = "arr_macro_impl";
version = "0.1.3";
edition = "2018";
sha256 = "1lbjilz3pvwav72dfkcbz99rsq7m04xbdpqh8g3yvx3jsn5wf286";
procMacro = true;
authors = [
"Josh Mcguigan"
];
dependencies = [
{
name = "proc-macro-hack";
packageId = "proc-macro-hack";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "full" ];
}
];
};
"arraygen" = rec {
crateName = "arraygen";
version = "0.1.14";
edition = "2018";
sha256 = "0qp513pkkr1sqjq31klfsla6j6pvnqvvh6fhpyaq4n2jbxmy06js";
procMacro = true;
authors = [
"José Manuel Barroso Galindo <theypsilon@gmail.com>"
];
dependencies = [
{
name = "proc-macro-error";
packageId = "proc-macro-error";
}
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
}
];
};
"arrayref" = rec {
crateName = "arrayref";
version = "0.3.6";
edition = "2015";
sha256 = "0i6m1l3f73i0lf0cjdf5rh3xpvxydyhfbakq7xx7bkrp5qajgid4";
authors = [
"David Roundy <roundyd@physics.oregonstate.edu>"
];
};
"arrayvec 0.4.12" = rec {
crateName = "arrayvec";
version = "0.4.12";
edition = "2015";
sha256 = "1fdiv5m627gh6flp4mpmi1mh647imm9x423licsr11psz97d97yd";
authors = [
"bluss"
];
dependencies = [
{
name = "nodrop";
packageId = "nodrop";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"serde-1" = [ "serde" ];
};
};
"arrayvec 0.5.1" = rec {
crateName = "arrayvec";
version = "0.5.1";
edition = "2018";
sha256 = "1f5mca8kiiwhvhxd1mbnq68j6v6rk139sch567zwwzl6hs37vxyg";
authors = [
"bluss"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "array-sizes-33-128" "default" "std" ];
};
"ascii 0.9.3" = rec {
crateName = "ascii";
version = "0.9.3";
edition = "2015";
sha256 = "0km3zzkhrr22drf9p1zcblqirlxkdc7zra25acpi0h8qax5c1cga";
authors = [
"Thomas Bahn <thomas@thomas-bahn.net>"
"Torbjørn Birch Moltu <t.b.moltu@lyse.net>"
"Simon Sapin <simon.sapin@exyr.org>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"ascii 1.0.0" = rec {
crateName = "ascii";
version = "1.0.0";
edition = "2015";
sha256 = "0281gc828q4j692gb66jfdr5k16gyszgqflylh0pp30rllv63xdv";
authors = [
"Thomas Bahn <thomas@thomas-bahn.net>"
"Torbjørn Birch Moltu <t.b.moltu@lyse.net>"
"Simon Sapin <simon.sapin@exyr.org>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"async-std" = rec {
crateName = "async-std";
version = "1.5.0";
edition = "2018";
sha256 = "0rxjhlhyvbrd8yd369vp0izr3g0cakvvdrc741vwvvk4xc0wp3jk";
authors = [
"Stjepan Glavina <stjepang@gmail.com>"
"Yoshua Wuyts <yoshuawuyts@gmail.com>"
"Contributors to async-std"
];
dependencies = [
{
name = "async-task";
packageId = "async-task";
optional = true;
}
{
name = "broadcaster";
packageId = "broadcaster";
optional = true;
}
{
name = "crossbeam-channel";
packageId = "crossbeam-channel 0.4.4";
optional = true;
}
{
name = "crossbeam-deque";
packageId = "crossbeam-deque 0.7.3";
optional = true;
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.7.2";
optional = true;
}
{
name = "futures-core";
packageId = "futures-core";
optional = true;
}
{
name = "futures-io";
packageId = "futures-io";
optional = true;
}
{
name = "futures-timer";
packageId = "futures-timer 2.0.2";
optional = true;
}
{
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 = "mio";
packageId = "mio 0.6.22";
optional = true;
}
{
name = "mio-uds";
packageId = "mio-uds";
optional = true;
}
{
name = "num_cpus";
packageId = "num_cpus";
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;
}
];
features = {
"attributes" = [ "async-attributes" ];
"default" = [ "std" "async-task" "crossbeam-channel" "crossbeam-deque" "futures-timer" "kv-log-macro" "log" "mio" "mio-uds" "num_cpus" "pin-project-lite" ];
"docs" = [ "attributes" "unstable" "default" ];
"std" = [ "crossbeam-utils" "futures-core" "futures-io" "memchr" "once_cell" "pin-project-lite" "pin-utils" "slab" ];
"unstable" = [ "std" "broadcaster" "futures-timer" ];
};
resolvedDefaultFeatures = [ "async-task" "broadcaster" "crossbeam-channel" "crossbeam-deque" "crossbeam-utils" "default" "futures-core" "futures-io" "futures-timer" "kv-log-macro" "log" "memchr" "mio" "mio-uds" "num_cpus" "once_cell" "pin-project-lite" "pin-utils" "slab" "std" "unstable" ];
};
"async-task" = rec {
crateName = "async-task";
version = "1.3.1";
edition = "2018";
sha256 = "0p88087z43zvv924my16a17qd65kdlv1r59h80h73rvrn0bc1hha";
authors = [
"Stjepan Glavina <stjepang@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "processthreadsapi" ];
}
];
};
"atom" = rec {
crateName = "atom";
version = "0.3.5";
edition = "2015";
sha256 = "1qig9fcdqf07mzzpkicm5wgxv0zpr28njdsqf708wxq27yf6k1iw";
authors = [
"Colin Sherratt <colin.sherratt@gmail.com>"
];
};
"atty" = rec {
crateName = "atty";
version = "0.2.14";
edition = "2015";
sha256 = "1s7yslcs6a28c5vz7jwj63lkfgyx8mx99fdirlhi9lbhhzhrpcyr";
authors = [
"softprops <d.tangren@gmail.com>"
];
dependencies = [
{
name = "hermit-abi";
packageId = "hermit-abi";
target = { target, features }: (target."os" == "hermit");
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: target."unix";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "consoleapi" "processenv" "minwinbase" "minwindef" "winbase" ];
}
];
};
"auth-common" = rec {
crateName = "auth-common";
version = "0.1.0";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://gitlab.com/veloren/auth.git";
rev = "b943c85e4a38f5ec60cd18c34c73097640162bfe";
sha256 = "0ckpx36a5gmzirsih03ddfyp4iz23ffwb6sc75smb4srx1ivc7fy";
};
authors = [
"Acrimon <joel.wejdenstal@gmail.com>"
];
dependencies = [
{
name = "rand";
packageId = "rand 0.7.3";
}
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "uuid";
packageId = "uuid";
usesDefaultFeatures = false;
features = [ "serde" "v4" ];
}
];
};
"authc" = rec {
crateName = "authc";
version = "1.0.0";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://gitlab.com/veloren/auth.git";
rev = "b943c85e4a38f5ec60cd18c34c73097640162bfe";
sha256 = "0ckpx36a5gmzirsih03ddfyp4iz23ffwb6sc75smb4srx1ivc7fy";
};
authors = [
"Acrimon <joel.wejdenstal@gmail.com>"
];
dependencies = [
{
name = "auth-common";
packageId = "auth-common";
}
{
name = "fxhash";
packageId = "fxhash";
}
{
name = "hex";
packageId = "hex 0.3.2";
}
{
name = "rust-argon2";
packageId = "rust-argon2";
usesDefaultFeatures = false;
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "ureq";
packageId = "ureq 1.4.1";
usesDefaultFeatures = false;
features = [ "tls" ];
}
{
name = "uuid";
packageId = "uuid";
usesDefaultFeatures = false;
features = [ "serde" "v4" ];
}
];
};
"autocfg 0.1.7" = rec {
crateName = "autocfg";
version = "0.1.7";
edition = "2015";
sha256 = "1chwgimpx5z7xbag7krr9d8asxfqbh683qhgl9kn3hxk2l0djj8x";
authors = [
"Josh Stone <cuviper@gmail.com>"
];
};
"autocfg 1.0.1" = rec {
crateName = "autocfg";
version = "1.0.1";
edition = "2015";
sha256 = "0jj6i9zn4gjl03kjvziqdji6rwx8ykz8zk2ngpc331z2g3fk3c6d";
authors = [
"Josh Stone <cuviper@gmail.com>"
];
};
"backtrace" = rec {
crateName = "backtrace";
version = "0.3.50";
edition = "2018";
sha256 = "14zj0dfzqyhsqnb7v65k6xjsaip0rcdqqi1lb7dvmwfdzpr4q9a6";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "addr2line";
packageId = "addr2line";
optional = true;
usesDefaultFeatures = false;
}
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
}
{
name = "miniz_oxide";
packageId = "miniz_oxide 0.4.2";
optional = true;
usesDefaultFeatures = false;
}
{
name = "object";
packageId = "object";
optional = true;
usesDefaultFeatures = false;
features = [ "read_core" "elf" "macho" "pe" "unaligned" ];
}
{
name = "rustc-demangle";
packageId = "rustc-demangle";
}
];
features = {
"default" = [ "std" "gimli-symbolize" ];
"gimli-symbolize" = [ "addr2line" "miniz_oxide" "object" "std" ];
"libbacktrace" = [ "backtrace-sys/backtrace-sys" ];
"rustc-dep-of-std" = [ "backtrace-sys/rustc-dep-of-std" "cfg-if/rustc-dep-of-std" "core" "compiler_builtins" "libc/rustc-dep-of-std" "rustc-demangle/rustc-dep-of-std" ];
"serialize-rustc" = [ "rustc-serialize" ];
"serialize-serde" = [ "serde" ];
"verify-winapi" = [ "winapi/dbghelp" "winapi/handleapi" "winapi/libloaderapi" "winapi/memoryapi" "winapi/minwindef" "winapi/processthreadsapi" "winapi/synchapi" "winapi/tlhelp32" "winapi/winbase" "winapi/winnt" ];
};
resolvedDefaultFeatures = [ "addr2line" "default" "gimli-symbolize" "miniz_oxide" "object" "std" ];
};
"base-x" = rec {
crateName = "base-x";
version = "0.2.6";
edition = "2015";
sha256 = "1hfy0wv7j5ynd73yk1vyr32pqa77rp15lkrc54f8ky9c6hcbc80v";
authors = [
"Alex R. <alexei.rudenko@gmail.com>"
];
};
"base64 0.10.1" = rec {
crateName = "base64";
version = "0.10.1";
edition = "2015";
sha256 = "13k6bvd3n6dm7jqn9x918w65dd9xhx454bqphbnv0bkd6n9dj98b";
authors = [
"Alice Maz <alice@alicemaz.com>"
"Marshall Pierce <marshall@mpierce.org>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
}
];
};
"base64 0.11.0" = rec {
crateName = "base64";
version = "0.11.0";
edition = "2018";
sha256 = "1iqmims6yvr6vwzyy54qd672zw29ipjj17p8klcr578c9ajpw6xl";
authors = [
"Alice Maz <alice@alicemaz.com>"
"Marshall Pierce <marshall@mpierce.org>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"base64 0.12.3" = rec {
crateName = "base64";
version = "0.12.3";
edition = "2018";
sha256 = "1zq33had71xh48n17g4kqs96szhx3yh7qibzwi4fk217n3vz0h9l";
authors = [
"Alice Maz <alice@alicemaz.com>"
"Marshall Pierce <marshall@mpierce.org>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"bincode" = rec {
crateName = "bincode";
version = "1.3.1";
edition = "2015";
sha256 = "0vc9pjh6hfp9vfq752sa88rxwg93ydhm0dvvy58rcvx2p8wkl3gk";
authors = [
"Ty Overby <ty@pre-alpha.com>"
"Francesco Mazzoli <f@mazzo.li>"
"David Tolnay <dtolnay@gmail.com>"
"Zoey Riordan <zoey@dos.cafe>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "serde";
packageId = "serde";
}
];
features = { };
};
"bindgen" = rec {
crateName = "bindgen";
version = "0.53.3";
edition = "2015";
crateBin = [ ];
sha256 = "1rc9grfd25bk5b2acmqljhx55ndbzmh7w8b3x6q707cb4s6rfan7";
authors = [
"Jyun-Yan You <jyyou.tw@gmail.com>"
"Emilio Cobos Álvarez <emilio@crisal.io>"
"Nick Fitzgerald <fitzgen@gmail.com>"
"The Servo project developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "cexpr";
packageId = "cexpr";
}
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "clang-sys";
packageId = "clang-sys";
features = [ "clang_6_0" ];
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "lazycell";
packageId = "lazycell";
}
{
name = "peeking_take_while";
packageId = "peeking_take_while";
}
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
usesDefaultFeatures = false;
}
{
name = "quote";
packageId = "quote 1.0.7";
usesDefaultFeatures = false;
}
{
name = "regex";
packageId = "regex";
usesDefaultFeatures = false;
features = [ "std" "unicode" ];
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
{
name = "shlex";
packageId = "shlex";
}
];
devDependencies = [
{
name = "shlex";
packageId = "shlex";
}
];
features = {
"default" = [ "logging" "clap" "runtime" "which-rustfmt" ];
"logging" = [ "env_logger" "log" ];
"runtime" = [ "clang-sys/runtime" ];
"static" = [ "clang-sys/static" ];
"which-rustfmt" = [ "which" ];
};
resolvedDefaultFeatures = [ "runtime" ];
};
"bitflags" = rec {
crateName = "bitflags";
version = "1.2.1";
edition = "2015";
sha256 = "14qnd5nq8p2almk79m4m8ydqhd413yaxsyjp5xd19g3mikzf47fg";
authors = [
"The Rust Project Developers"
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"bitvec" = rec {
crateName = "bitvec";
version = "0.17.4";
edition = "2018";
sha256 = "0p3slijkjv8q64mdmagwhb1bdd33lgy1kq1wm9hlmzbisw8jy9j1";
authors = [
"myrrlyn <self@myrrlyn.dev>"
];
dependencies = [
{
name = "either";
packageId = "either";
usesDefaultFeatures = false;
}
{
name = "radium";
packageId = "radium";
}
];
features = {
"default" = [ "atomic" "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "atomic" "default" "std" ];
};
"blake2b_simd" = rec {
crateName = "blake2b_simd";
version = "0.5.10";
edition = "2018";
sha256 = "12icvk8ixlivv3jv5nyrg01sajp4s279zb1kmif0nfja4ms2vyyq";
authors = [
"Jack O'Connor"
];
dependencies = [
{
name = "arrayref";
packageId = "arrayref";
}
{
name = "arrayvec";
packageId = "arrayvec 0.5.1";
usesDefaultFeatures = false;
}
{
name = "constant_time_eq";
packageId = "constant_time_eq";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"blake3" = rec {
crateName = "blake3";
version = "0.3.7";
edition = "2018";
sha256 = "0gwxy0vbjf8nwjc32n5jb0lfyrn74bc6hcxdizdlp4gk06vkbzz9";
authors = [
"Jack O'Connor <oconnor663@gmail.com>"
];
dependencies = [
{
name = "arrayref";
packageId = "arrayref";
}
{
name = "arrayvec";
packageId = "arrayvec 0.5.1";
usesDefaultFeatures = false;
features = [ "array-sizes-33-128" ];
}
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "constant_time_eq";
packageId = "constant_time_eq";
}
{
name = "crypto-mac";
packageId = "crypto-mac";
}
{
name = "digest";
packageId = "digest 0.9.0";
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
];
features = {
"default" = [ "std" ];
"std" = [ "digest/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"block" = rec {
crateName = "block";
version = "0.1.6";
edition = "2015";
sha256 = "16k9jgll25pzsq14f244q22cdv0zb4bqacldg3kx6h89d7piz30d";
authors = [
"Steven Sheldon"
];
};
"broadcaster" = rec {
crateName = "broadcaster";
version = "1.0.0";
edition = "2018";
sha256 = "11xx4v0y9fdajqrsrmdwi9xgwh89hypdmr3krwv5l18d3vi75jfr";
authors = [
"leo60228 <iakornfeld@gmail.com>"
];
dependencies = [
{
name = "futures-channel";
packageId = "futures-channel";
optional = true;
features = [ "sink" ];
}
{
name = "futures-core";
packageId = "futures-core";
}
{
name = "futures-sink";
packageId = "futures-sink";
}
{
name = "futures-util";
packageId = "futures-util";
features = [ "sink" ];
}
{
name = "parking_lot";
packageId = "parking_lot 0.10.2";
optional = true;
}
{
name = "slab";
packageId = "slab";
}
];
features = {
"default" = [ "default-channels" "parking-lot" ];
"default-channels" = [ "futures-channel" ];
"parking-lot" = [ "parking_lot" ];
};
resolvedDefaultFeatures = [ "default" "default-channels" "futures-channel" "parking-lot" "parking_lot" ];
};
"bstr" = rec {
crateName = "bstr";
version = "0.2.13";
edition = "2015";
sha256 = "0cd9gn35hb020r3zccmc2m710wavk2iyqn60j8aqgxqdnzywmb1i";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "regex-automata";
packageId = "regex-automata";
optional = true;
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "unicode" ];
"serde1" = [ "std" "serde1-nostd" "serde/std" ];
"serde1-nostd" = [ "serde" ];
"std" = [ "memchr/use_std" ];
"unicode" = [ "lazy_static" "regex-automata" ];
};
resolvedDefaultFeatures = [ "default" "lazy_static" "regex-automata" "serde" "serde1" "serde1-nostd" "std" "unicode" ];
};
"bumpalo" = rec {
crateName = "bumpalo";
version = "3.4.0";
edition = "2018";
sha256 = "082qig1vxlklb9qwkg3j4hpfxb4b5blm59ln21njfc2p01zhi31f";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"bytemuck" = rec {
crateName = "bytemuck";
version = "1.4.1";
edition = "2018";
sha256 = "1b3pc5j3sj73d981470vbxflkx14dpqar49wyx6cbdd3bk4jxaj1";
authors = [
"Lokathor <zefria@gmail.com>"
];
features = {
"derive" = [ "bytemuck_derive" ];
"extern_crate_std" = [ "extern_crate_alloc" ];
};
};
"byteorder" = rec {
crateName = "byteorder";
version = "1.3.4";
edition = "2015";
sha256 = "1pkjfhgjnq898g1d38ygcfi0msg3m6756cwv0sgysj1d26p8mi08";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"bytes 0.4.12" = rec {
crateName = "bytes";
version = "0.4.12";
edition = "2015";
sha256 = "0768a55q2fsqdjsvcv98ndg9dq7w2g44dvq1avhwpxrdzbydyvr0";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "either";
packageId = "either";
optional = true;
usesDefaultFeatures = false;
}
{
name = "iovec";
packageId = "iovec";
}
];
features = {
"i128" = [ "byteorder/i128" ];
};
resolvedDefaultFeatures = [ "either" ];
};
"bytes 0.5.6" = rec {
crateName = "bytes";
version = "0.5.6";
edition = "2018";
sha256 = "0f5s7xq6qzmdh22ygsy8v0sp02m51y0radvq4i4y8cizy1lfqk0f";
authors = [
"Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"calloop" = rec {
crateName = "calloop";
version = "0.6.4";
edition = "2018";
sha256 = "0fpzhg6vw33k1hm6yfscx4k5sz2hd02jxx261kd4pfk8765ilmjr";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "log";
packageId = "log";
}
{
name = "nix";
packageId = "nix 0.18.0";
}
];
};
"cassowary" = rec {
crateName = "cassowary";
version = "0.3.0";
edition = "2015";
sha256 = "0lvanj0gsk6pc1chqrh4k5k0vi1rfbgzmsk46dwy3nmrqyw711nz";
authors = [
"Dylan Ede <dylanede@googlemail.com>"
];
};
"cast" = rec {
crateName = "cast";
version = "0.2.3";
edition = "2015";
sha256 = "1c5z7zryj0zwnhdgs6rw5dfvnlwc1vm19jzrlgx5055alnwk952b";
authors = [
"Jorge Aparicio <jorge@japaric.io>"
];
buildDependencies = [
{
name = "rustc_version";
packageId = "rustc_version";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"cc" = rec {
crateName = "cc";
version = "1.0.60";
edition = "2018";
crateBin = [ ];
sha256 = "0p42g8m4cb0jnv5zbi2jv09mf9w5044dszfp6n2z30zpiz31qqgg";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "jobserver";
packageId = "jobserver";
optional = true;
}
];
features = {
"parallel" = [ "jobserver" ];
};
resolvedDefaultFeatures = [ "jobserver" "parallel" ];
};
"cesu8" = rec {
crateName = "cesu8";
version = "1.1.0";
edition = "2015";
sha256 = "0g6q58wa7khxrxcxgnqyi9s1z2cjywwwd3hzr5c55wskhx6s0hvd";
authors = [
"Eric Kidd <git@randomhacks.net>"
];
features = { };
};
"cexpr" = rec {
crateName = "cexpr";
version = "0.4.0";
edition = "2018";
sha256 = "09qd1k1mrhcqfhqmsz4y1bya9gcs29si7y3w96pqkgid4y2dpbpl";
authors = [
"Jethro Beekman <jethro@jbeekman.nl>"
];
dependencies = [
{
name = "nom";
packageId = "nom 5.1.2";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
};
"cfg-if 0.1.10" = rec {
crateName = "cfg-if";
version = "0.1.10";
edition = "2018";
sha256 = "08h80ihs74jcyp24cd75wwabygbbdgl05k6p5dmq8akbr78vv1a7";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
};
};
"cfg-if 1.0.0" = rec {
crateName = "cfg-if";
version = "1.0.0";
edition = "2018";
sha256 = "1za0vb97n4brpzpv8lsbnzmq5r8f2b0cpqqr0sy8h5bn751xxwds";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
};
};
"cgl" = rec {
crateName = "cgl";
version = "0.3.2";
edition = "2015";
sha256 = "1zs7skrsyrsm759vfy2cygkx52fx91b567a12bpaz1sf4d8hbv8c";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
};
"chrono" = rec {
crateName = "chrono";
version = "0.4.18";
edition = "2015";
sha256 = "0wjpipv40xfp40a9y0qcazc72m896hzsi96g18vk9rykggdzs8fh";
authors = [
"Kang Seonghoon <public+rust@mearie.org>"
"Brandon W Maister <quodlibetor@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
optional = true;
}
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
{
name = "time";
packageId = "time";
optional = true;
}
{
name = "winapi";
packageId = "winapi 0.3.9";
optional = true;
target = { target, features }: target."windows";
features = [ "std" "minwinbase" "minwindef" "timezoneapi" ];
}
];
features = {
"clock" = [ "libc" "std" "winapi" ];
"default" = [ "clock" "std" "oldtime" ];
"oldtime" = [ "time" ];
"unstable-locales" = [ "pure-rust-locales" "alloc" ];
"wasmbind" = [ "wasm-bindgen" "js-sys" ];
};
resolvedDefaultFeatures = [ "clock" "default" "libc" "oldtime" "std" "time" "winapi" ];
};
"chunked_transfer" = rec {
crateName = "chunked_transfer";
version = "1.2.0";
edition = "2018";
sha256 = "14vi1bj4bmilnjwp39vgvdxp3cs8p9yr93ysf4gkg0i72cayna8x";
authors = [
"Corey Farwell <coreyf@rwell.org>"
];
};
"clang-sys" = rec {
crateName = "clang-sys";
version = "0.29.3";
edition = "2015";
sha256 = "02nibl74zbz5x693iy5vdbhnfckja47m7j1mp2bj7fjw3pgkfs7y";
authors = [
"Kyle Mayes <kyle@mayeses.com>"
];
dependencies = [
{
name = "glob";
packageId = "glob";
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
}
{
name = "libloading";
packageId = "libloading 0.5.2";
optional = true;
}
];
buildDependencies = [
{
name = "glob";
packageId = "glob";
}
];
features = {
"clang_3_6" = [ "gte_clang_3_6" ];
"clang_3_7" = [ "gte_clang_3_6" "gte_clang_3_7" ];
"clang_3_8" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" ];
"clang_3_9" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" ];
"clang_4_0" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" ];
"clang_5_0" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" "gte_clang_5_0" ];
"clang_6_0" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" "gte_clang_5_0" "gte_clang_6_0" ];
"clang_7_0" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" "gte_clang_5_0" "gte_clang_6_0" "gte_clang_7_0" ];
"clang_8_0" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" "gte_clang_5_0" "gte_clang_6_0" "gte_clang_7_0" "gte_clang_8_0" ];
"clang_9_0" = [ "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" "gte_clang_5_0" "gte_clang_6_0" "gte_clang_7_0" "gte_clang_8_0" "gte_clang_9_0" ];
"runtime" = [ "libloading" ];
};
resolvedDefaultFeatures = [ "clang_6_0" "gte_clang_3_6" "gte_clang_3_7" "gte_clang_3_8" "gte_clang_3_9" "gte_clang_4_0" "gte_clang_5_0" "gte_clang_6_0" "libloading" "runtime" ];
};
"clap" = rec {
crateName = "clap";
version = "2.33.3";
edition = "2015";
sha256 = "00i065a58987k1sbzqmlz721rw521zcg08jmsh40gi3khp3qmr9p";
authors = [
"Kevin K. <kbknapp@gmail.com>"
];
dependencies = [
{
name = "ansi_term";
packageId = "ansi_term 0.11.0";
optional = true;
target = { target, features }: (!target."windows");
}
{
name = "atty";
packageId = "atty";
optional = true;
}
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "strsim";
packageId = "strsim 0.8.0";
optional = true;
}
{
name = "textwrap";
packageId = "textwrap";
}
{
name = "unicode-width";
packageId = "unicode-width";
}
{
name = "vec_map";
packageId = "vec_map";
optional = true;
}
];
features = {
"color" = [ "ansi_term" "atty" ];
"default" = [ "suggestions" "color" "vec_map" ];
"doc" = [ "yaml" ];
"lints" = [ "clippy" ];
"suggestions" = [ "strsim" ];
"wrap_help" = [ "term_size" "textwrap/term_size" ];
"yaml" = [ "yaml-rust" ];
};
resolvedDefaultFeatures = [ "ansi_term" "atty" "color" "default" "strsim" "suggestions" "vec_map" ];
};
"clipboard-win 3.1.1" = rec {
crateName = "clipboard-win";
version = "3.1.1";
edition = "2018";
sha256 = "0hh3npqfa1lfn62fwvkmjlpfnizq343a994b898ffsvb100mxpwz";
authors = [
"Douman <douman@gmx.se>"
];
dependencies = [
{
name = "lazy-bytes-cast";
packageId = "lazy-bytes-cast";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
usesDefaultFeatures = false;
target = { target, features }: target."windows";
features = [ "std" "basetsd" "shellapi" "winbase" "winuser" "stringapiset" ];
}
];
};
"clipboard-win 4.0.3" = rec {
crateName = "clipboard-win";
version = "4.0.3";
edition = "2018";
sha256 = "0bd9gw35zjdh50n2gy6qq2gwpnqfafzwkliqkvm9z046fawwc8si";
authors = [
"Douman <douman@gmx.se>"
];
dependencies = [
{
name = "error-code";
packageId = "error-code";
}
{
name = "str-buf";
packageId = "str-buf";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
usesDefaultFeatures = false;
target = { target, features }: target."windows";
features = [ "basetsd" "shellapi" "winbase" "winuser" "winerror" "stringapiset" "errhandlingapi" "synchapi" ];
}
];
features = {
"std" = [ "error-code/std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"clipboard_macos" = rec {
crateName = "clipboard_macos";
version = "0.1.0";
edition = "2018";
sha256 = "15cab2bi6jr7y5bqymsvxaf3hpa0arj1cbg3lp03nic9kfg7ynhl";
authors = [
"Héctor Ramón Jiménez <hector0193@gmail.com>"
];
dependencies = [
{
name = "objc";
packageId = "objc";
}
{
name = "objc-foundation";
packageId = "objc-foundation";
}
{
name = "objc_id";
packageId = "objc_id";
}
];
};
"clipboard_wayland" = rec {
crateName = "clipboard_wayland";
version = "0.1.1";
edition = "2018";
sha256 = "1yrp15hzd2hwdiag88vkr5yyd772a7334xcb7wbqiz50vhm8fvcj";
authors = [
"Héctor Ramón Jiménez <hector0193@gmail.com>"
];
dependencies = [
{
name = "smithay-clipboard";
packageId = "smithay-clipboard 0.5.2";
}
];
};
"clipboard_x11" = rec {
crateName = "clipboard_x11";
version = "0.1.0";
edition = "2018";
sha256 = "02i9hvhxafy6qai9wi4hvhfc86ka9mdfw33i7vbah9r3qihbsz0k";
authors = [
"Héctor Ramón Jiménez <hector0193@gmail.com>"
];
dependencies = [
{
name = "xcb";
packageId = "xcb";
features = [ "thread" ];
}
];
};
"cloudabi 0.0.3" = rec {
crateName = "cloudabi";
version = "0.0.3";
edition = "2015";
sha256 = "0kxcg83jlihy0phnd2g8c2c303px3l2p3pkjz357ll6llnd5pz6x";
libPath = "cloudabi.rs";
authors = [
"Nuxi (https://nuxi.nl/) and contributors"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
optional = true;
}
];
features = {
"default" = [ "bitflags" ];
};
resolvedDefaultFeatures = [ "bitflags" "default" ];
};
"cloudabi 0.1.0" = rec {
crateName = "cloudabi";
version = "0.1.0";
edition = "2018";
sha256 = "0rv4yf5jlldfkynzrw687s00f4x12ypw7axv71vawhy6h4i52i23";
libPath = "cloudabi.rs";
authors = [
"Nuxi (https://nuxi.nl/) and contributors"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
optional = true;
}
];
features = {
"default" = [ "bitflags" ];
};
resolvedDefaultFeatures = [ "bitflags" "default" ];
};
"cocoa" = rec {
crateName = "cocoa";
version = "0.23.0";
edition = "2015";
sha256 = "1cj4c2axmg7aiid2786mpzj7wxpd582biv7c7yimqfnggp002hn5";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "block";
packageId = "block";
}
{
name = "cocoa-foundation";
packageId = "cocoa-foundation";
}
{
name = "core-foundation";
packageId = "core-foundation 0.9.1";
}
{
name = "core-graphics";
packageId = "core-graphics 0.22.1";
}
{
name = "foreign-types";
packageId = "foreign-types";
}
{
name = "libc";
packageId = "libc";
}
{
name = "objc";
packageId = "objc";
}
];
};
"cocoa-foundation" = rec {
crateName = "cocoa-foundation";
version = "0.1.0";
edition = "2015";
sha256 = "0633ipbd28z35rsdmsl505f1aasrjsrrnirs826aa32nbnv4kpks";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "block";
packageId = "block";
}
{
name = "core-foundation";
packageId = "core-foundation 0.9.1";
}
{
name = "core-graphics-types";
packageId = "core-graphics-types";
}
{
name = "foreign-types";
packageId = "foreign-types";
}
{
name = "libc";
packageId = "libc";
}
{
name = "objc";
packageId = "objc";
}
];
};
"combine 3.8.1" = rec {
crateName = "combine";
version = "3.8.1";
edition = "2015";
sha256 = "1006sbl3ybiky3d5q28p0lyph37hk7sipls1rkhikv11lfxacgfs";
authors = [
"Markus Westerlind <marwes91@gmail.com>"
];
dependencies = [
{
name = "ascii";
packageId = "ascii 0.9.3";
usesDefaultFeatures = false;
}
{
name = "byteorder";
packageId = "byteorder";
usesDefaultFeatures = false;
}
{
name = "either";
packageId = "either";
usesDefaultFeatures = false;
}
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "unreachable";
packageId = "unreachable";
}
];
features = {
"default" = [ "std" ];
"doc" = [ "regex" "regex-1" ];
"regex-1" = [ "combine-regex-1" ];
"std" = [ "memchr/use_std" "either/use_std" "byteorder/std" "ascii/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"combine 4.3.2" = rec {
crateName = "combine";
version = "4.3.2";
edition = "2018";
sha256 = "02ycmdsxlyv8pspzw3j04znm9f9if9bj573d5gynab9qcmrzc298";
authors = [
"Markus Westerlind <marwes91@gmail.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes 0.5.6";
rename = "bytes_05";
optional = true;
}
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
optional = true;
}
];
devDependencies = [
{
name = "bytes";
packageId = "bytes 0.5.6";
}
];
features = {
"default" = [ "std" ];
"futures-03" = [ "pin-project" "std" "futures-io-03" "futures-util-03" ];
"pin-project" = [ "pin-project-lite" ];
"std" = [ "memchr/use_std" "bytes_05" "pin-project" ];
"tokio-02" = [ "pin-project" "std" "tokio-02-dep" "futures-util-03" ];
};
resolvedDefaultFeatures = [ "bytes_05" "default" "pin-project" "pin-project-lite" "std" ];
};
"conrod_core" = rec {
crateName = "conrod_core";
version = "0.63.0";
edition = "2015";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://gitlab.com/veloren/conrod.git";
rev = "1ae5193588fb662a7189d81edd9f2d653c7f1da0";
sha256 = "14sxyw8si0c2md5p5hssvfl12368hqp1fy6ighd7v4lb8fqwp6zj";
};
authors = [
"Mitchell Nordine <mitchell.nordine@gmail.com>"
"Sven Nilsen <bvssvni@gmail.com>"
];
dependencies = [
{
name = "conrod_derive";
packageId = "conrod_derive";
}
{
name = "copypasta";
packageId = "copypasta";
}
{
name = "daggy";
packageId = "daggy";
}
{
name = "fnv";
packageId = "fnv";
}
{
name = "instant";
packageId = "instant";
}
{
name = "num";
packageId = "num 0.2.1";
}
{
name = "pistoncore-input";
packageId = "pistoncore-input";
}
{
name = "rusttype";
packageId = "rusttype 0.7.9";
features = [ "gpu_cache" ];
}
];
features = {
"stdweb" = [ "instant/stdweb" ];
"wasm-bindgen" = [ "instant/wasm-bindgen" ];
};
};
"conrod_derive" = rec {
crateName = "conrod_derive";
version = "0.63.0";
edition = "2015";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://gitlab.com/veloren/conrod.git";
rev = "1ae5193588fb662a7189d81edd9f2d653c7f1da0";
sha256 = "14sxyw8si0c2md5p5hssvfl12368hqp1fy6ighd7v4lb8fqwp6zj";
};
procMacro = true;
authors = [
"mitchmindtree <mitchell.nordine@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 0.4.30";
}
{
name = "quote";
packageId = "quote 0.6.13";
}
{
name = "syn";
packageId = "syn 0.15.44";
features = [ "extra-traits" "full" ];
}
];
};
"conrod_winit" = rec {
crateName = "conrod_winit";
version = "0.63.0";
edition = "2015";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://gitlab.com/veloren/conrod.git";
rev = "1ae5193588fb662a7189d81edd9f2d653c7f1da0";
sha256 = "14sxyw8si0c2md5p5hssvfl12368hqp1fy6ighd7v4lb8fqwp6zj";
};
authors = [
"Mitchell Nordine <mitchell.nordine@gmail.com>"
"Sven Nilsen <bvssvni@gmail.com>"
];
};
"const-random" = rec {
crateName = "const-random";
version = "0.1.8";
edition = "2018";
sha256 = "0sp1ang5sh27fq5b7g9fdwpq4d5s17ymj7khfzax4bbvffngj6ig";
authors = [
"Tom Kaitchuck <Tom.Kaitchuck@gmail.com>"
];
dependencies = [
{
name = "const-random-macro";
packageId = "const-random-macro";
}
{
name = "proc-macro-hack";
packageId = "proc-macro-hack";
}
];
};
"const-random-macro" = rec {
crateName = "const-random-macro";
version = "0.1.8";
edition = "2018";
sha256 = "0ykc9riajn6bijvw46092gp18vrbky3y1cjpgjgx57a5xc3cdr15";
procMacro = true;
authors = [
"Tom Kaitchuck <Tom.Kaitchuck@gmail.com>"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom";
}
{
name = "proc-macro-hack";
packageId = "proc-macro-hack";
}
];
};
"const-tweaker" = rec {
crateName = "const-tweaker";
version = "0.3.1";
edition = "2018";
sha256 = "0xp2wxfbksbnra7pbgcm3nk34g28782qsgdhgc66hvlvqgnf4yr9";
authors = [
"Thomas Versteeg <thomasversteeg@gmx.com>"
];
dependencies = [
{
name = "async-std";
packageId = "async-std";
}
{
name = "const-tweaker-attribute";
packageId = "const-tweaker-attribute";
}
{
name = "ctor";
packageId = "ctor";
}
{
name = "dashmap";
packageId = "dashmap";
}
{
name = "horrorshow";
packageId = "horrorshow";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "tide";
packageId = "tide";
}
];
};
"const-tweaker-attribute" = rec {
crateName = "const-tweaker-attribute";
version = "0.5.0";
edition = "2018";
sha256 = "1n60l09hb0h2hiz2csvvbn3az0qzmaqfyfhbih60q47ny0w9ww1d";
procMacro = true;
authors = [
"Thomas Versteeg <thomasversteeg@gmx.com>"
];
dependencies = [
{
name = "darling";
packageId = "darling";
}
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
}
];
};
"const_fn" = rec {
crateName = "const_fn";
version = "0.4.3";
edition = "2018";
sha256 = "1axgb6p2b0mdazi000vf0hd7hky690s052bwnizz3klx09p86y64";
procMacro = true;
authors = [
"Taiki Endo <te316e89@gmail.com>"
];
};
"constant_time_eq" = rec {
crateName = "constant_time_eq";
version = "0.1.5";
edition = "2015";
sha256 = "1g3vp04qzmk6cpzrd19yci6a95m7ap6wy7wkwgiy2pjklklrfl14";
authors = [
"Cesar Eduardo Barros <cesarb@cesarb.eti.br>"
];
};
"cookie" = rec {
crateName = "cookie";
version = "0.12.0";
edition = "2015";
sha256 = "1mdvqixahcywvqp0y8k2skkgbpfhsp0w73l9mz93dcrx1gq091l8";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Sergio Benitez <sb@sergio.bz>"
];
dependencies = [
{
name = "time";
packageId = "time";
}
{
name = "url";
packageId = "url 1.7.2";
optional = true;
}
];
features = {
"percent-encode" = [ "url" ];
"secure" = [ "ring" "base64" ];
};
resolvedDefaultFeatures = [ "percent-encode" "url" ];
};
"copy_dir" = rec {
crateName = "copy_dir";
version = "0.1.2";
edition = "2015";
sha256 = "1c7qx86z3v0vn45xjfq8df6w93zrik2ajnigpm1lhr1l2q1q2hkf";
authors = [
"Michael Dunsmuir <mjdunsmuir@gmail.com>"
];
dependencies = [
{
name = "walkdir";
packageId = "walkdir 0.1.8";
}
];
};
"copypasta" = rec {
crateName = "copypasta";
version = "0.7.1";
edition = "2018";
sha256 = "02zz6yndszmzr5yjhn11g1hsj0232jbzl8gch6mxksw3xngxf8s4";
authors = [
"Christian Duerr <contact@christianduerr.com>"
];
dependencies = [
{
name = "clipboard-win";
packageId = "clipboard-win 3.1.1";
target = { target, features }: target."windows";
}
{
name = "objc";
packageId = "objc";
target = { target, features }: (target."os" == "macos");
}
{
name = "objc-foundation";
packageId = "objc-foundation";
target = { target, features }: (target."os" == "macos");
}
{
name = "objc_id";
packageId = "objc_id";
target = { target, features }: (target."os" == "macos");
}
{
name = "smithay-clipboard";
packageId = "smithay-clipboard 0.6.1";
optional = true;
target = { target, features }: (target."unix" && (!((target."os" == "macos") || (target."os" == "android") || (target."os" == "ios") || (target."os" == "emscripten"))));
}
{
name = "x11-clipboard";
packageId = "x11-clipboard";
optional = true;
target = { target, features }: (target."unix" && (!((target."os" == "macos") || (target."os" == "android") || (target."os" == "ios") || (target."os" == "emscripten"))));
}
];
features = {
"default" = [ "x11" "wayland" ];
"wayland" = [ "smithay-clipboard" ];
"x11" = [ "x11-clipboard" ];
};
resolvedDefaultFeatures = [ "default" "smithay-clipboard" "wayland" "x11" "x11-clipboard" ];
};
"core-foundation 0.6.4" = rec {
crateName = "core-foundation";
version = "0.6.4";
edition = "2015";
sha256 = "0va97wf49c8dzm9c8pgyk1jn7z21rl0bj1syf2zz5m2z2hzy1f95";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "core-foundation-sys";
packageId = "core-foundation-sys 0.6.2";
}
{
name = "libc";
packageId = "libc";
}
];
features = {
"mac_os_10_7_support" = [ "core-foundation-sys/mac_os_10_7_support" ];
"mac_os_10_8_features" = [ "core-foundation-sys/mac_os_10_8_features" ];
"with-chrono" = [ "chrono" ];
"with-uuid" = [ "uuid" ];
};
};
"core-foundation 0.7.0" = rec {
crateName = "core-foundation";
version = "0.7.0";
edition = "2015";
sha256 = "0wbias8f0m5kyn2pcksi0h58fdslams6nmf16w78fgn42dx4rljp";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "core-foundation-sys";
packageId = "core-foundation-sys 0.7.0";
}
{
name = "libc";
packageId = "libc";
}
];
features = {
"mac_os_10_7_support" = [ "core-foundation-sys/mac_os_10_7_support" ];
"mac_os_10_8_features" = [ "core-foundation-sys/mac_os_10_8_features" ];
"with-chrono" = [ "chrono" ];
"with-uuid" = [ "uuid" ];
};
};
"core-foundation 0.9.1" = rec {
crateName = "core-foundation";
version = "0.9.1";
edition = "2015";
sha256 = "0qhackx0i914nbhcwi6bbxnyyqqldgxc046gviak3a3f8apf528a";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "core-foundation-sys";
packageId = "core-foundation-sys 0.8.1";
}
{
name = "libc";
packageId = "libc";
}
];
features = {
"mac_os_10_7_support" = [ "core-foundation-sys/mac_os_10_7_support" ];
"mac_os_10_8_features" = [ "core-foundation-sys/mac_os_10_8_features" ];
"with-chrono" = [ "chrono" ];
"with-uuid" = [ "uuid" ];
};
};
"core-foundation-sys 0.6.2" = rec {
crateName = "core-foundation-sys";
version = "0.6.2";
edition = "2015";
sha256 = "0fzsw1j9g1x598yhwklg59l15hwzc0pyvs01w9fg2kin4598mjp7";
authors = [
"The Servo Project Developers"
];
features = { };
};
"core-foundation-sys 0.7.0" = rec {
crateName = "core-foundation-sys";
version = "0.7.0";
edition = "2015";
sha256 = "1b5qfnnmg49sawwfsb0c0wbj81bqi7h7lh68pmhbidf0jjs1m9xk";
authors = [
"The Servo Project Developers"
];
features = { };
};
"core-foundation-sys 0.8.1" = rec {
crateName = "core-foundation-sys";
version = "0.8.1";
edition = "2015";
sha256 = "14rk4fn4nmigp096s97sxd30syp4mbh2jbikr4vkiph18rg3pby0";
authors = [
"The Servo Project Developers"
];
features = { };
};
"core-graphics 0.19.2" = rec {
crateName = "core-graphics";
version = "0.19.2";
edition = "2015";
sha256 = "08z9pgwfc0wb5v3ns7rnb2010q9g42b5vfwhp9fv4spawrs9725k";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "core-foundation";
packageId = "core-foundation 0.7.0";
}
{
name = "foreign-types";
packageId = "foreign-types";
}
{
name = "libc";
packageId = "libc";
}
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"core-graphics 0.22.1" = rec {
crateName = "core-graphics";
version = "0.22.1";
edition = "2015";
sha256 = "1yd754ml1ak55l5jgc1k2l84lafyd0x5768n8i4ndfdsaax9n8zw";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "core-foundation";
packageId = "core-foundation 0.9.1";
}
{
name = "core-graphics-types";
packageId = "core-graphics-types";
}
{
name = "foreign-types";
packageId = "foreign-types";
}
{
name = "libc";
packageId = "libc";
}
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"core-graphics-types" = rec {
crateName = "core-graphics-types";
version = "0.1.1";
edition = "2015";
sha256 = "12vqf0n5mjjcqjksdd82n2zh8hfda2zpiiqsr522c2266j5vcs1s";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "core-foundation";
packageId = "core-foundation 0.9.1";
}
{
name = "foreign-types";
packageId = "foreign-types";
}
{
name = "libc";
packageId = "libc";
}
];
};
"core-video-sys" = rec {
crateName = "core-video-sys";
version = "0.1.4";
edition = "2018";
sha256 = "0a1qbn50jrb5hxrfshyb7y0f3pbf4ily6i6nciv7bn8ac4isvv1l";
authors = [
"luozijun <luozijun.assistant@gmail.com>"
"michael.laifx <cihv2@163.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "core-foundation-sys";
packageId = "core-foundation-sys 0.7.0";
}
{
name = "core-graphics";
packageId = "core-graphics 0.19.2";
optional = true;
}
{
name = "libc";
packageId = "libc";
}
{
name = "objc";
packageId = "objc";
}
];
features = {
"all" = [ "display_link" "direct3d" "io_suface" "opengl" ];
"default" = [ "display_link" "metal" ];
"display_link" = [ "opengl" "core-graphics" ];
};
resolvedDefaultFeatures = [ "core-graphics" "display_link" "opengl" ];
};
"coreaudio-rs" = rec {
crateName = "coreaudio-rs";
version = "0.9.1";
edition = "2015";
sha256 = "14g4yqsbhif2bqdk4qk0lixfy78gl1p8lrl122qyklysclcpcagj";
libName = "coreaudio";
authors = [
"mitchmindtree <mitchell.nordine@gmail.com>"
"yupferris <jake@fusetools.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "coreaudio-sys";
packageId = "coreaudio-sys";
usesDefaultFeatures = false;
}
];
features = {
"audio_toolbox" = [ "coreaudio-sys/audio_toolbox" ];
"audio_unit" = [ "coreaudio-sys/audio_unit" ];
"core_audio" = [ "coreaudio-sys/core_audio" ];
"core_midi" = [ "coreaudio-sys/core_midi" ];
"default" = [ "audio_toolbox" "audio_unit" "core_audio" "open_al" "core_midi" ];
"open_al" = [ "coreaudio-sys/open_al" ];
};
resolvedDefaultFeatures = [ "audio_unit" "core_audio" ];
};
"coreaudio-sys" = rec {
crateName = "coreaudio-sys";
version = "0.2.5";
edition = "2015";
sha256 = "1m3i29bh1xvfxh78px2hz0yal678p5nj7jayin91w4w9w3k0wmyn";
authors = [
"Mitchell Nordine <mitchell.nordine@gmail.com>"
];
buildDependencies = [
{
name = "bindgen";
packageId = "bindgen";
usesDefaultFeatures = false;
features = [ "runtime" ];
}
];
features = {
"default" = [ "audio_toolbox" "audio_unit" "core_audio" "open_al" "core_midi" ];
};
resolvedDefaultFeatures = [ "audio_unit" "core_audio" ];
};
"cpal" = rec {
crateName = "cpal";
version = "0.13.0";
edition = "2015";
sha256 = "1jidbvk8d662lq42lnxw31lsbcadamx9j6a3p12lp4p3744d66a9";
authors = [
"The CPAL contributors"
"Pierre Krieger <pierre.krieger1708@gmail.com>"
];
dependencies = [
{
name = "alsa";
packageId = "alsa";
target = { target, features }: ((target."os" == "linux") || (target."os" == "dragonfly") || (target."os" == "freebsd"));
}
{
name = "core-foundation-sys";
packageId = "core-foundation-sys 0.6.2";
target = { target, features }: ((target."os" == "macos") || (target."os" == "ios"));
}
{
name = "coreaudio-rs";
packageId = "coreaudio-rs";
usesDefaultFeatures = false;
target = { target, features }: ((target."os" == "macos") || (target."os" == "ios"));
features = [ "audio_unit" "core_audio" ];
}
{
name = "jni";
packageId = "jni 0.17.0";
target = { target, features }: (target."os" == "android");
}
{
name = "js-sys";
packageId = "js-sys";
target = { target, features }: ((target."arch" == "wasm32") && (target."os" == "unknown"));
}
{
name = "lazy_static";
packageId = "lazy_static";
target = { target, features }: (target."os" == "windows");
}
{
name = "libc";
packageId = "libc";
target = { target, features }: ((target."os" == "linux") || (target."os" == "dragonfly") || (target."os" == "freebsd"));
}
{
name = "mach";
packageId = "mach 0.3.2";
target = { target, features }: ((target."os" == "macos") || (target."os" == "ios"));
}
{
name = "ndk";
packageId = "ndk";
target = { target, features }: (target."os" == "android");
}
{
name = "ndk-glue";
packageId = "ndk-glue";
target = { target, features }: (target."os" == "android");
}
{
name = "nix";
packageId = "nix 0.15.0";
target = { target, features }: ((target."os" == "linux") || (target."os" == "dragonfly") || (target."os" == "freebsd"));
}
{
name = "oboe";
packageId = "oboe";
target = { target, features }: (target."os" == "android");
features = [ "java-interface" ];
}
{
name = "parking_lot";
packageId = "parking_lot 0.9.0";
target = { target, features }: (target."os" == "windows");
}
{
name = "stdweb";
packageId = "stdweb 0.1.3";
usesDefaultFeatures = false;
target = { target, features }: (target."os" == "emscripten");
}
{
name = "thiserror";
packageId = "thiserror";
}
{
name = "web-sys";
packageId = "web-sys";
target = { target, features }: ((target."arch" == "wasm32") && (target."os" == "unknown"));
features = [ "AudioContext" "AudioContextOptions" "AudioBuffer" "AudioBufferSourceNode" "AudioNode" "AudioDestinationNode" "Window" "AudioContextState" ];
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: (target."os" == "windows");
features = [ "audiosessiontypes" "audioclient" "coml2api" "combaseapi" "debug" "devpkey" "handleapi" "ksmedia" "mmdeviceapi" "objbase" "profileapi" "std" "synchapi" "winbase" "winuser" ];
}
];
features = {
"asio" = [ "asio-sys" "num-traits" ];
};
};
"cranelift-bforest" = rec {
crateName = "cranelift-bforest";
version = "0.59.0";
edition = "2018";
sha256 = "062qvkik8ji15zax78w7048297wz1f8w3xlkv9xqbfa2h0gw5aa5";
authors = [
"The Cranelift Project Developers"
];
dependencies = [
{
name = "cranelift-entity";
packageId = "cranelift-entity";
usesDefaultFeatures = false;
}
];
};
"cranelift-codegen" = rec {
crateName = "cranelift-codegen";
version = "0.59.0";
edition = "2018";
sha256 = "0bivngwwrfv5ggk1fbm2qk2jvgc2p4dmw3y4d5xcccsadrxgflvq";
authors = [
"The Cranelift Project Developers"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
usesDefaultFeatures = false;
}
{
name = "cranelift-bforest";
packageId = "cranelift-bforest";
}
{
name = "cranelift-codegen-shared";
packageId = "cranelift-codegen-shared";
}
{
name = "cranelift-entity";
packageId = "cranelift-entity";
}
{
name = "gimli";
packageId = "gimli 0.20.0";
optional = true;
usesDefaultFeatures = false;
features = [ "write" ];
}
{
name = "log";
packageId = "log";
usesDefaultFeatures = false;
}
{
name = "smallvec";
packageId = "smallvec 1.4.2";
}
{
name = "target-lexicon";
packageId = "target-lexicon";
}
{
name = "thiserror";
packageId = "thiserror";
}
];
buildDependencies = [
{
name = "cranelift-codegen-meta";
packageId = "cranelift-codegen-meta";
}
];
features = {
"all-arch" = [ "x86" "arm32" "arm64" "riscv" ];
"core" = [ "hashbrown" ];
"default" = [ "std" "unwind" ];
"enable-serde" = [ "serde" ];
"unwind" = [ "gimli" ];
};
resolvedDefaultFeatures = [ "default" "gimli" "std" "unwind" ];
};
"cranelift-codegen-meta" = rec {
crateName = "cranelift-codegen-meta";
version = "0.59.0";
edition = "2018";
sha256 = "1fd3f915i68nggq3p3zc0g3sq2gv3d3rkhbjrn5a478dzgaxck08";
authors = [
"The Cranelift Project Developers"
];
dependencies = [
{
name = "cranelift-codegen-shared";
packageId = "cranelift-codegen-shared";
}
{
name = "cranelift-entity";
packageId = "cranelift-entity";
}
];
};
"cranelift-codegen-shared" = rec {
crateName = "cranelift-codegen-shared";
version = "0.59.0";
edition = "2018";
sha256 = "0pg0a56hnj2z4xvndwpkiqnrnnbb5lzxg917a315hnihhfbmj6vh";
authors = [
"The Cranelift Project Developers"
];
};
"cranelift-entity" = rec {
crateName = "cranelift-entity";
version = "0.59.0";
edition = "2018";
sha256 = "0f1zwz4i0kb036fsjccjpqx0ib8di2xaaaxphw0vrsz150mpk3mq";
authors = [
"The Cranelift Project Developers"
];
features = {
"enable-serde" = [ "serde" ];
};
};
"cranelift-native" = rec {
crateName = "cranelift-native";
version = "0.59.0";
edition = "2018";
sha256 = "02yx1rkary2jv6hqcc8z3fcw9dra5j2g8krrjdfw1h11va1g1nij";
authors = [
"The Cranelift Project Developers"
];
dependencies = [
{
name = "cranelift-codegen";
packageId = "cranelift-codegen";
usesDefaultFeatures = false;
}
{
name = "raw-cpuid";
packageId = "raw-cpuid";
target = { target, features }: ((target."arch" == "x86") || (target."arch" == "x86_64"));
}
{
name = "target-lexicon";
packageId = "target-lexicon";
}
];
features = {
"core" = [ "cranelift-codegen/core" "raw-cpuid/nightly" ];
"default" = [ "std" ];
"std" = [ "cranelift-codegen/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"crc32fast" = rec {
crateName = "crc32fast";
version = "1.2.0";
edition = "2015";
sha256 = "1c9dhkvf3brrzzplcijaywxi2w8wv5578i0ryhcm7x8dmzi5s4ms";
authors = [
"Sam Rijs <srijs@airpost.net>"
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"criterion" = rec {
crateName = "criterion";
version = "0.3.3";
edition = "2018";
sha256 = "1n24l95pgjig4nfhgm3vn9gxb49ky5ylr8390scl7wbcxk7agnkh";
authors = [
"Jorge Aparicio <japaricious@gmail.com>"
"Brook Heisler <brookheisler@gmail.com>"
];
dependencies = [
{
name = "atty";
packageId = "atty";
}
{
name = "cast";
packageId = "cast";
}
{
name = "clap";
packageId = "clap";
usesDefaultFeatures = false;
}
{
name = "criterion-plot";
packageId = "criterion-plot";
}
{
name = "csv";
packageId = "csv";
}
{
name = "itertools";
packageId = "itertools";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
{
name = "oorandom";
packageId = "oorandom";
}
{
name = "plotters";
packageId = "plotters";
usesDefaultFeatures = false;
features = [ "svg" "area_series" "line_series" ];
}
{
name = "rayon";
packageId = "rayon";
}
{
name = "regex";
packageId = "regex";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_cbor";
packageId = "serde_cbor";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "tinytemplate";
packageId = "tinytemplate";
}
{
name = "walkdir";
packageId = "walkdir 2.3.1";
}
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"criterion-plot" = rec {
crateName = "criterion-plot";
version = "0.4.3";
edition = "2018";
sha256 = "17c8v5fv064181yspagkdcfd6jhs7233ba6g94bbl7v0xjnzw8p0";
authors = [
"Jorge Aparicio <japaricious@gmail.com>"
"Brook Heisler <brookheisler@gmail.com>"
];
dependencies = [
{
name = "cast";
packageId = "cast";
}
{
name = "itertools";
packageId = "itertools";
}
];
};
"crossbeam" = rec {
crateName = "crossbeam";
version = "0.7.2";
edition = "2015";
sha256 = "0g5jysq5x4gndc1v5sq9n3f1m97k7qihwdpigw6ar6knj14qm09d";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "crossbeam-channel";
packageId = "crossbeam-channel 0.3.9";
optional = true;
}
{
name = "crossbeam-deque";
packageId = "crossbeam-deque 0.7.3";
optional = true;
}
{
name = "crossbeam-epoch";
packageId = "crossbeam-epoch 0.7.2";
usesDefaultFeatures = false;
}
{
name = "crossbeam-queue";
packageId = "crossbeam-queue 0.1.2";
optional = true;
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.6.6";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "crossbeam-epoch/alloc" "crossbeam-utils/alloc" ];
"default" = [ "std" ];
"nightly" = [ "crossbeam-epoch/nightly" "crossbeam-utils/nightly" ];
"std" = [ "crossbeam-channel" "crossbeam-deque" "crossbeam-epoch/std" "crossbeam-queue" "crossbeam-utils/std" ];
};
resolvedDefaultFeatures = [ "crossbeam-channel" "crossbeam-deque" "crossbeam-queue" "default" "std" ];
};
"crossbeam-channel 0.3.9" = rec {
crateName = "crossbeam-channel";
version = "0.3.9";
edition = "2015";
sha256 = "1ylyzb1m9qbvd1nd3vy38x9073wdmcy295ncjs7wf7ap476pzv68";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.6.6";
}
];
};
"crossbeam-channel 0.4.4" = rec {
crateName = "crossbeam-channel";
version = "0.4.4";
edition = "2015";
sha256 = "11zvmp8p94vaqp4xyhzymw8xndnpwq12x5qgvxkway7lprygwlxi";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.7.2";
}
{
name = "maybe-uninit";
packageId = "maybe-uninit";
}
];
};
"crossbeam-channel 0.5.0" = rec {
crateName = "crossbeam-channel";
version = "0.5.0";
edition = "2018";
sha256 = "0xfplw54pskl3kyf2q6kw8y2phnq6wn8pqxx003n8qfkz3hnx8nw";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 1.0.0";
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.8.0";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "crossbeam-utils/std" ];
};
resolvedDefaultFeatures = [ "crossbeam-utils" "default" "std" ];
};
"crossbeam-deque 0.7.3" = rec {
crateName = "crossbeam-deque";
version = "0.7.3";
edition = "2015";
sha256 = "11c2c0x5grdba3ah3g94yn6b8s47xi8qwm85h8hq5vmf9nbsy0lz";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "crossbeam-epoch";
packageId = "crossbeam-epoch 0.8.2";
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.7.2";
}
{
name = "maybe-uninit";
packageId = "maybe-uninit";
}
];
};
"crossbeam-deque 0.8.0" = rec {
crateName = "crossbeam-deque";
version = "0.8.0";
edition = "2018";
sha256 = "1ad995vzq74k7jd1pgn9zxbacyzj9ii6l0svhlb2dxzy8vxnxbwl";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 1.0.0";
}
{
name = "crossbeam-epoch";
packageId = "crossbeam-epoch 0.9.0";
optional = true;
usesDefaultFeatures = false;
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.8.0";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "crossbeam-epoch/std" "crossbeam-utils/std" ];
};
resolvedDefaultFeatures = [ "crossbeam-epoch" "crossbeam-utils" "default" "std" ];
};
"crossbeam-epoch 0.7.2" = rec {
crateName = "crossbeam-epoch";
version = "0.7.2";
edition = "2015";
sha256 = "1a9prma2nalqvys7f8wrazkdzh26w3mi5gzrk8mdmwrp5rvxdp7y";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "arrayvec";
packageId = "arrayvec 0.4.12";
usesDefaultFeatures = false;
}
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.6.6";
usesDefaultFeatures = false;
}
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
{
name = "memoffset";
packageId = "memoffset";
}
{
name = "scopeguard";
packageId = "scopeguard";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "crossbeam-utils/alloc" ];
"default" = [ "std" ];
"nightly" = [ "crossbeam-utils/nightly" "arrayvec/use_union" ];
"std" = [ "crossbeam-utils/std" "lazy_static" ];
};
resolvedDefaultFeatures = [ "lazy_static" "std" ];
};
"crossbeam-epoch 0.8.2" = rec {
crateName = "crossbeam-epoch";
version = "0.8.2";
edition = "2015";
sha256 = "1knsf0zz7rgzxn0nwz5gajjcrivxpw3zrdcp946gdhdgr9sd53h5";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.7.2";
usesDefaultFeatures = false;
}
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
{
name = "maybe-uninit";
packageId = "maybe-uninit";
}
{
name = "memoffset";
packageId = "memoffset";
}
{
name = "scopeguard";
packageId = "scopeguard";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = {
"alloc" = [ "crossbeam-utils/alloc" ];
"default" = [ "std" ];
"nightly" = [ "crossbeam-utils/nightly" ];
"std" = [ "crossbeam-utils/std" "lazy_static" ];
};
resolvedDefaultFeatures = [ "default" "lazy_static" "std" ];
};
"crossbeam-epoch 0.9.0" = rec {
crateName = "crossbeam-epoch";
version = "0.9.0";
edition = "2018";
sha256 = "17vxn99hcvgb8mk6qf28sr2abm76k71zxn6ny3p7c0rlhmm603zc";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 1.0.0";
}
{
name = "const_fn";
packageId = "const_fn";
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.8.0";
usesDefaultFeatures = false;
}
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
{
name = "memoffset";
packageId = "memoffset";
}
{
name = "scopeguard";
packageId = "scopeguard";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"nightly" = [ "crossbeam-utils/nightly" ];
"std" = [ "alloc" "crossbeam-utils/std" "lazy_static" ];
};
resolvedDefaultFeatures = [ "alloc" "lazy_static" "std" ];
};
"crossbeam-queue 0.1.2" = rec {
crateName = "crossbeam-queue";
version = "0.1.2";
edition = "2015";
sha256 = "0jsa9dbxnwqcxfws09vaschf92d4imlbbikmcn4ka8z7rzb9r5vw";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.6.6";
}
];
};
"crossbeam-queue 0.2.3" = rec {
crateName = "crossbeam-queue";
version = "0.2.3";
edition = "2015";
sha256 = "0w15z68nz3ac4f2s4djhwha8vmlwsh9dlfrmsl4x84y2ah5acjvp";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.7.2";
usesDefaultFeatures = false;
}
{
name = "maybe-uninit";
packageId = "maybe-uninit";
}
];
features = {
"alloc" = [ "crossbeam-utils/alloc" ];
"default" = [ "std" ];
"std" = [ "crossbeam-utils/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"crossbeam-utils 0.6.6" = rec {
crateName = "crossbeam-utils";
version = "0.6.6";
edition = "2015";
sha256 = "1rk0r9n04bmq4a3g2q5qhvvlmrmx780gc6h9lmc94mwndslkz5q4";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
];
features = {
"default" = [ "std" ];
"std" = [ "lazy_static" ];
};
resolvedDefaultFeatures = [ "default" "lazy_static" "std" ];
};
"crossbeam-utils 0.7.2" = rec {
crateName = "crossbeam-utils";
version = "0.7.2";
edition = "2015";
sha256 = "1a31wbrda1320gj2a6az1lin2d34xfc3xf88da4c17qy5lxcgiy3";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = {
"default" = [ "std" ];
"std" = [ "lazy_static" ];
};
resolvedDefaultFeatures = [ "default" "lazy_static" "std" ];
};
"crossbeam-utils 0.8.0" = rec {
crateName = "crossbeam-utils";
version = "0.8.0";
edition = "2018";
sha256 = "199ywwmkg60kqavhw8rhy9wybsfjr9p5czinhq56jprmk06m94gc";
authors = [
"The Crossbeam Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 1.0.0";
}
{
name = "const_fn";
packageId = "const_fn";
}
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = {
"default" = [ "std" ];
"std" = [ "lazy_static" ];
};
resolvedDefaultFeatures = [ "lazy_static" "std" ];
};
"crossterm" = rec {
crateName = "crossterm";
version = "0.17.7";
edition = "2018";
sha256 = "1ixna5xr211nx2n40n5hsy6bpj688sbw6g132hz27bi61zb1jjbg";
authors = [
"T. Post"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "crossterm_winapi";
packageId = "crossterm_winapi";
target = { target, features }: target."windows";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "mio";
packageId = "mio 0.7.0";
target = { target, features }: target."unix";
features = [ "os-poll" ];
}
{
name = "parking_lot";
packageId = "parking_lot 0.10.2";
}
{
name = "signal-hook";
packageId = "signal-hook";
target = { target, features }: target."unix";
features = [ "mio-0_7-support" ];
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "winuser" ];
}
];
features = {
"event-stream" = [ "futures-util" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"crossterm_winapi" = rec {
crateName = "crossterm_winapi";
version = "0.6.1";
edition = "2018";
sha256 = "0p4gnrkxykdfx173px1i53836zq9yrc53gkxzmsh3d9gs1372yq5";
authors = [
"T. Post"
];
dependencies = [
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "winbase" "consoleapi" "processenv" "handleapi" "synchapi" "impl-default" ];
}
];
};
"crypto-mac" = rec {
crateName = "crypto-mac";
version = "0.8.0";
edition = "2018";
sha256 = "1axfs4zmy74rn9666p92j7nmcv11zdp2d51yrppc2dv26cqa715m";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array 0.14.4";
}
{
name = "subtle";
packageId = "subtle";
usesDefaultFeatures = false;
}
];
features = {
"dev" = [ "blobby" ];
};
};
"csv" = rec {
crateName = "csv";
version = "1.1.3";
edition = "2018";
sha256 = "0yd2z55m2pg4al4yng4nl2y7c9dw2v7yhg5ynihxyrmmd9zzxbq0";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "bstr";
packageId = "bstr";
features = [ "serde1" ];
}
{
name = "csv-core";
packageId = "csv-core";
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "ryu";
packageId = "ryu";
}
{
name = "serde";
packageId = "serde";
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
];
};
"csv-core" = rec {
crateName = "csv-core";
version = "0.1.10";
edition = "2018";
sha256 = "145wcc3560v1kmysqqspvddppiysr2rifqzy4nnlh3r6kxanc91b";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
];
features = {
"libc" = [ "memchr/libc" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"ctor" = rec {
crateName = "ctor";
version = "0.1.16";
edition = "2018";
sha256 = "11040byxccmjc8c83mhrp90y3a5bqvjkna8i4csm0c4m5knapfkz";
procMacro = true;
authors = [
"Matt Mastracci <matthew@mastracci.com>"
];
dependencies = [
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
usesDefaultFeatures = false;
features = [ "full" "parsing" "printing" "proc-macro" ];
}
];
};
"daggy" = rec {
crateName = "daggy";
version = "0.5.0";
edition = "2015";
sha256 = "1qh9ckpbdvqzxgjh1nrd63kpp83rvvwxkr7cj00g7h8vgpda14wj";
authors = [
"mitchmindtree <mitchell.nordine@gmail.com>"
];
dependencies = [
{
name = "petgraph";
packageId = "petgraph";
usesDefaultFeatures = false;
}
];
};
"darling" = rec {
crateName = "darling";
version = "0.10.2";
edition = "2015";
sha256 = "0n7qsp6854wm3y1q1lvylhv15zvc87ibbac1nyfmcdbyv1snww0d";
authors = [
"Ted Driggs <ted.driggs@outlook.com>"
];
dependencies = [
{
name = "darling_core";
packageId = "darling_core";
}
{
name = "darling_macro";
packageId = "darling_macro";
}
];
features = {
"default" = [ "suggestions" ];
"diagnostics" = [ "darling_core/diagnostics" ];
"suggestions" = [ "darling_core/suggestions" ];
};
resolvedDefaultFeatures = [ "default" "suggestions" ];
};
"darling_core" = rec {
crateName = "darling_core";
version = "0.10.2";
edition = "2015";
sha256 = "16sija1jv0l754x4aa6b6fy01d1kf8m0r4id3flqipm45np61jgh";
authors = [
"Ted Driggs <ted.driggs@outlook.com>"
];
dependencies = [
{
name = "fnv";
packageId = "fnv";
}
{
name = "ident_case";
packageId = "ident_case";
}
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "strsim";
packageId = "strsim 0.9.3";
optional = true;
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "full" "extra-traits" ];
}
];
features = {
"suggestions" = [ "strsim" ];
};
resolvedDefaultFeatures = [ "strsim" "suggestions" ];
};
"darling_macro" = rec {
crateName = "darling_macro";
version = "0.10.2";
edition = "2015";
sha256 = "0wlv31cxkrjijz5gv13hvk55c9lmd781aj12c8n84sa9mksa5dfr";
procMacro = true;
authors = [
"Ted Driggs <ted.driggs@outlook.com>"
];
dependencies = [
{
name = "darling_core";
packageId = "darling_core";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
}
];
};
"dashmap" = rec {
crateName = "dashmap";
version = "3.11.10";
edition = "2018";
sha256 = "1ddrjj4khb0s263pw278g5dvbhaid40611h123s9w5shr0phw9hg";
authors = [
"Acrimon <joel.wejdenstal@gmail.com>"
];
dependencies = [
{
name = "ahash";
packageId = "ahash";
}
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "num_cpus";
packageId = "num_cpus";
}
];
features = {
"no_std" = [ "hashbrown" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"data-encoding" = rec {
crateName = "data-encoding";
version = "2.3.0";
edition = "2018";
sha256 = "1mp89v55gd2czpzqzw010y4hg2cprpyywf6y04xb5qsy9v9f5l6l";
authors = [
"Julien Cretin <git@ia0.eu>"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"deflate" = rec {
crateName = "deflate";
version = "0.8.6";
edition = "2018";
sha256 = "0x6iqlayg129w63999kz97m279m0jj4x4sm6gkqlvmp73y70yxvk";
authors = [
"oyvindln <oyvindln@users.noreply.github.com>"
];
dependencies = [
{
name = "adler32";
packageId = "adler32";
}
{
name = "byteorder";
packageId = "byteorder";
}
];
features = {
"gzip" = [ "gzip-header" ];
};
};
"derivative" = rec {
crateName = "derivative";
version = "2.1.1";
edition = "2015";
sha256 = "03rqx8j9q5nlrpr7w8cwwrvw916pr0ahzs3y8yln18cx6mh2nn6b";
procMacro = true;
authors = [
"mcarton <cartonmartin+git@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "visit" "extra-traits" ];
}
];
features = { };
resolvedDefaultFeatures = [ "use_core" ];
};
"deunicode" = rec {
crateName = "deunicode";
version = "1.1.1";
edition = "2018";
sha256 = "1ccd1d7bjr9z47njpsd4khnya9mywhwhli62h7hr2i70zlnml4c0";
authors = [
"Kornel Lesinski <kornel@geekhood.net>"
"Amit Chowdhury <amitc97@gmail.com>"
];
};
"diesel" = rec {
crateName = "diesel";
version = "1.4.5";
edition = "2015";
sha256 = "134dy6gdbv30q388gsp5777w2qh63hdqsim1j8s1aylpmggfjb9y";
authors = [
"Sean Griffin <sean@seantheprogrammer.com>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "diesel_derives";
packageId = "diesel_derives";
}
{
name = "libsqlite3-sys";
packageId = "libsqlite3-sys";
optional = true;
features = [ "min_sqlite_version_3_7_16" ];
}
];
features = {
"128-column-tables" = [ "64-column-tables" ];
"64-column-tables" = [ "32-column-tables" ];
"default" = [ "with-deprecated" "32-column-tables" ];
"deprecated-time" = [ "time" ];
"extras" = [ "chrono" "serde_json" "uuid" "deprecated-time" "network-address" "numeric" "r2d2" ];
"huge-tables" = [ "64-column-tables" ];
"large-tables" = [ "32-column-tables" ];
"mysql" = [ "mysqlclient-sys" "url" "diesel_derives/mysql" ];
"network-address" = [ "ipnetwork" "libc" ];
"numeric" = [ "num-bigint" "bigdecimal" "num-traits" "num-integer" ];
"postgres" = [ "pq-sys" "bitflags" "diesel_derives/postgres" ];
"sqlite" = [ "libsqlite3-sys" "diesel_derives/sqlite" ];
"unstable" = [ "diesel_derives/nightly" ];
"x128-column-tables" = [ "128-column-tables" ];
"x32-column-tables" = [ "32-column-tables" ];
"x64-column-tables" = [ "64-column-tables" ];
};
resolvedDefaultFeatures = [ "32-column-tables" "default" "libsqlite3-sys" "sqlite" "with-deprecated" ];
};
"diesel_derives" = rec {
crateName = "diesel_derives";
version = "1.4.1";
edition = "2015";
sha256 = "1lsq133fwk0zj8xvxhdxqgg0xs31zf3abnwdyshaf0ldca7hkxa5";
procMacro = true;
authors = [
"Sean Griffin <sean@seantheprogrammer.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "full" "fold" ];
}
];
features = {
"nightly" = [ "proc-macro2/nightly" ];
};
resolvedDefaultFeatures = [ "default" "sqlite" ];
};
"diesel_migrations" = rec {
crateName = "diesel_migrations";
version = "1.4.0";
edition = "2015";
sha256 = "0k4g03ciqwya2xc1xvy5s9cs6q55k45wxa1gszswfg9m2f2dwg5z";
authors = [
"Sean Griffin <sean@seantheprogrammer.com>"
];
dependencies = [
{
name = "migrations_internals";
packageId = "migrations_internals";
}
{
name = "migrations_macros";
packageId = "migrations_macros";
}
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"digest 0.8.1" = rec {
crateName = "digest";
version = "0.8.1";
edition = "2015";
sha256 = "1madjl27f3kj5ql7kwgvb9c8b7yb7bv7yfgx7rqzj4i3fp4cil7k";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array 0.12.3";
}
];
features = {
"dev" = [ "blobby" ];
};
};
"digest 0.9.0" = rec {
crateName = "digest";
version = "0.9.0";
edition = "2018";
sha256 = "0rmhvk33rgvd6ll71z8sng91a52rw14p0drjn1da0mqa138n1pfk";
authors = [
"RustCrypto Developers"
];
dependencies = [
{
name = "generic-array";
packageId = "generic-array 0.14.4";
}
];
features = {
"dev" = [ "blobby" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"directories-next" = rec {
crateName = "directories-next";
version = "2.0.0";
edition = "2018";
sha256 = "1g1vq8d8mv0vp0l317gh9y46ipqg2fxjnbc7lnjhwqbsv4qf37ik";
authors = [
"The @xdg-rs members"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 1.0.0";
}
{
name = "dirs-sys-next";
packageId = "dirs-sys-next";
}
];
};
"dirs" = rec {
crateName = "dirs";
version = "2.0.2";
edition = "2015";
sha256 = "1qymhyq7w7wlf1dirq6gsnabdyzg6yi2yyxkx6c4ldlkbjdaibhk";
authors = [
"Simon Ochsenreither <simon@ochsenreither.de>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "dirs-sys";
packageId = "dirs-sys";
}
];
};
"dirs-sys" = rec {
crateName = "dirs-sys";
version = "0.3.5";
edition = "2015";
sha256 = "0ym5843xack45b1yjahrh3q2f72shnwf1dd2jncf9qsxf3sxg4wf";
authors = [
"Simon Ochsenreither <simon@ochsenreither.de>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "redox_users";
packageId = "redox_users";
target = { target, features }: (target."os" == "redox");
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ];
}
];
};
"dirs-sys-next" = rec {
crateName = "dirs-sys-next";
version = "0.1.0";
edition = "2015";
sha256 = "16iw13jarlagihbiq3n5sd8wfl7vpra089i3h8a2cfcmm2wgfq4w";
authors = [
"The @xdg-rs members"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "redox_users";
packageId = "redox_users";
target = { target, features }: (target."os" == "redox");
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "knownfolders" "objbase" "shlobj" "winbase" "winerror" ];
}
];
};
"discard" = rec {
crateName = "discard";
version = "1.0.4";
edition = "2015";
sha256 = "1h67ni5bxvg95s91wgicily4ix7lcw7cq0a5gy9njrybaibhyb91";
authors = [
"Pauan <pcxunlimited@gmail.com>"
];
};
"dispatch 0.1.4" = rec {
crateName = "dispatch";
version = "0.1.4";
edition = "2015";
sha256 = "019nzy993hxaiazcdnayx3csv2iki34i535asw11ki96hakkrs84";
authors = [
"Steven Sheldon"
];
};
"dispatch 0.2.0" = rec {
crateName = "dispatch";
version = "0.2.0";
edition = "2018";
sha256 = "0fwjr9b7582ic5689zxj8lf7zl94iklhlns3yivrnv8c9fxr635x";
authors = [
"Steven Sheldon"
];
};
"dlib" = rec {
crateName = "dlib";
version = "0.4.2";
edition = "2015";
sha256 = "0xlsf3lrz9hd7q3ff6lp5mw4kn3nbryn746kd07i93r6wg8ia7xi";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "libloading";
packageId = "libloading 0.6.3";
}
];
features = { };
resolvedDefaultFeatures = [ "dlopen" ];
};
"dot_vox" = rec {
crateName = "dot_vox";
version = "4.1.0";
edition = "2015";
sha256 = "0hdb8h6b938y422i63h6pzkkj5is9lwwhgksnyc07pjlxw2q9hc3";
authors = [
"David Edmonds <edmonds.d.r@gmail.com>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "log";
packageId = "log";
}
{
name = "nom";
packageId = "nom 4.2.3";
}
];
};
"dotenv" = rec {
crateName = "dotenv";
version = "0.15.0";
edition = "2018";
crateBin = [ ];
sha256 = "13ysjx7n2bqxxqydvnnbdwgik7i8n6h5c1qhr9g11x6cxnnhpjbp";
authors = [
"Noemi Lapresta <noemi.lapresta@gmail.com>"
"Craig Hills <chills@gmail.com>"
"Mike Piccolo <mfpiccolo@gmail.com>"
"Alice Maz <alice@alicemaz.com>"
"Sean Griffin <sean@seantheprogrammer.com>"
"Adam Sharp <adam@sharplet.me>"
"Arpad Borsos <arpad.borsos@googlemail.com>"
];
features = {
"cli" = [ "clap" ];
};
};
"downcast-rs" = rec {
crateName = "downcast-rs";
version = "1.2.0";
edition = "2015";
sha256 = "0l36kgxqd5djhqwf5abxjmgasdw8n0qsjvw3jdvhi91nj393ba4y";
authors = [
"Ashish Myles <marcianx@gmail.com>"
"Runji Wang <wangrunji0408@163.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"draw_state" = rec {
crateName = "draw_state";
version = "0.8.0";
edition = "2015";
sha256 = "0lfng4fz9x7bwsmzv9r20ply10w0iid6vfcrhx292s6hw8vrbkrk";
authors = [
"The Gfx-rs Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
];
};
"either" = rec {
crateName = "either";
version = "1.6.1";
edition = "2015";
sha256 = "0mwl9vngqf5jvrhmhn9x60kr5hivxyjxbmby2pybncxfqhf4z3g7";
authors = [
"bluss"
];
features = {
"default" = [ "use_std" ];
};
resolvedDefaultFeatures = [ "default" "use_std" ];
};
"enum-iterator" = rec {
crateName = "enum-iterator";
version = "0.6.0";
edition = "2018";
sha256 = "1mxq9fds22paikg2c95kxkpxych4p1n3yzhca4q7fz8rl4hn76n7";
authors = [
"Stephane Raux <stephaneyfx@gmail.com>"
];
dependencies = [
{
name = "enum-iterator-derive";
packageId = "enum-iterator-derive";
}
];
};
"enum-iterator-derive" = rec {
crateName = "enum-iterator-derive";
version = "0.6.0";
edition = "2018";
sha256 = "01pc15d8l0ayrjv7xjjx1lxw2vypvlawcvc9ax7pdp60ywqsm50y";
procMacro = true;
authors = [
"Stephane Raux <stephaneyfx@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
}
];
};
"errno" = rec {
crateName = "errno";
version = "0.2.7";
edition = "2015";
sha256 = "1zj6rra8n7d7gagppvvs5pvrfblad6x4ln5knb4kg7dfkkxz4s7s";
authors = [
"Chris Wong <lambda.fairy@gmail.com>"
];
dependencies = [
{
name = "errno-dragonfly";
packageId = "errno-dragonfly";
target = { target, features }: (target."os" == "dragonfly");
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."os" == "hermit");
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."os" == "wasi");
}
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "errhandlingapi" "minwindef" "ntdef" "winbase" ];
}
];
};
"errno-dragonfly" = rec {
crateName = "errno-dragonfly";
version = "0.1.1";
edition = "2015";
sha256 = "0rshlc00nv45f14v2l1w0ma2nf1jg5j7q9pvw7hh018r6r73bjhl";
authors = [
"Michael Neumann <mneumann@ntecs.de>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
buildDependencies = [
{
name = "gcc";
packageId = "gcc";
}
];
};
"error-chain" = rec {
crateName = "error-chain";
version = "0.12.4";
edition = "2015";
sha256 = "1z6y5isg0il93jp287sv7pn10i4wrkik2cpyk376wl61rawhcbrd";
authors = [
"Brian Anderson <banderson@mozilla.com>"
"Paul Colomiets <paul@colomiets.name>"
"Colin Kiegel <kiegel@gmx.de>"
"Yamakaky <yamakaky@yamaworld.fr>"
"Andrew Gauger <andygauge@gmail.com>"
];
dependencies = [
{
name = "backtrace";
packageId = "backtrace";
optional = true;
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check 0.9.2";
}
];
features = {
"default" = [ "backtrace" "example_generated" ];
};
resolvedDefaultFeatures = [ "backtrace" "default" "example_generated" ];
};
"error-code" = rec {
crateName = "error-code";
version = "2.0.2";
edition = "2018";
sha256 = "0lmblmk2kr0cy6x3d1y2ywxg3jg6nicf8fahd3l5wb1ddzv9975l";
authors = [
"Douman <douman@gmx.se>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
}
{
name = "str-buf";
packageId = "str-buf";
}
];
features = { };
resolvedDefaultFeatures = [ "std" ];
};
"euc" = rec {
crateName = "euc";
version = "0.5.1";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://github.com/zesterer/euc.git";
rev = "c9a7c17a03d45fce00caeeca09afa1e1558cd183";
sha256 = "0qvk0bx1arkgmdc59sip39zszdw2fwv6jcy5jinv18n5m1nrclw4";
};
authors = [
"Joshua Barretto <joshua.s.barretto@gmail.com>"
"Martin Sandfuchs <martin@cluginbuehl.ch>"
];
dependencies = [
{
name = "vek";
packageId = "vek 0.11.2";
usesDefaultFeatures = false;
features = [ "rgb" "rgba" ];
}
];
features = {
"default" = [ "std" ];
"libm" = [ "vek/libm" "num-traits" ];
"std" = [ "vek/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"euclid" = rec {
crateName = "euclid";
version = "0.20.14";
edition = "2018";
sha256 = "1b87yd09cy4f4pb3pqs78yjrv5flnsszmzpf3rfk4ykpndjyzdrb";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"libm" = [ "num-traits/libm" ];
"std" = [ "num-traits/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"fehler" = rec {
crateName = "fehler";
version = "1.0.0";
edition = "2018";
sha256 = "0d9nk0nimhrqhlwsm42kmg6bwhfqscnfddj70xawsa50kgj9ywnm";
authors = [
"Without Boats <boats@mozilla.com>"
];
dependencies = [
{
name = "fehler-macros";
packageId = "fehler-macros";
}
];
};
"fehler-macros" = rec {
crateName = "fehler-macros";
version = "1.0.0";
edition = "2018";
sha256 = "1y808jbwbngji40zny0b0dvxsw9a76g6fl1c5qigmfsy0jqsrdfc";
procMacro = true;
authors = [
"Without Boats <boats@mozilla.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "default" "fold" "full" "parsing" ];
}
];
};
"fetch_unroll" = rec {
crateName = "fetch_unroll";
version = "0.2.1";
edition = "2018";
sha256 = "1jpvzs8xbp4rg84wmqpzjzf2vj0dgmcvcwrayzsibgjvx42m1idm";
authors = [
"K. <kayo@illumium.org>"
];
dependencies = [
{
name = "libflate";
packageId = "libflate";
}
{
name = "tar";
packageId = "tar";
}
{
name = "ureq";
packageId = "ureq 0.11.4";
}
];
};
"filetime" = rec {
crateName = "filetime";
version = "0.2.12";
edition = "2018";
sha256 = "17nginckcwgjm98l2ilhjfyd6s1pnai0db2hr6sl91n6vismgn1y";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "redox_syscall";
packageId = "redox_syscall";
target = { target, features }: (target."os" == "redox");
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "fileapi" "minwindef" "winbase" ];
}
];
};
"find_folder" = rec {
crateName = "find_folder";
version = "0.3.0";
edition = "2015";
sha256 = "06xr2sjiyjrwxlgjpf8ig6pq0ayfjv6qxmmfakw5j2ssp67h2vcz";
authors = [
"mitchmindtree <mitchell.nordine@gmail.com>"
"bvssvni <bvssvni@gmail.com>"
];
};
"fixedbitset" = rec {
crateName = "fixedbitset";
version = "0.1.9";
edition = "2015";
sha256 = "0czam11mi80dbyhf4rd4lz0ihcf7vkfchrdcrn45wbs0h40dxm46";
authors = [
"bluss"
];
};
"fnv" = rec {
crateName = "fnv";
version = "1.0.7";
edition = "2015";
sha256 = "1hc2mcqha06aibcaza94vbi81j6pr9a1bbxrxjfhc91zin8yr7iz";
libPath = "lib.rs";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"foreign-types" = rec {
crateName = "foreign-types";
version = "0.3.2";
edition = "2015";
sha256 = "1cgk0vyd7r45cj769jym4a6s7vwshvd0z4bqrb92q1fwibmkkwzn";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "foreign-types-shared";
packageId = "foreign-types-shared";
}
];
};
"foreign-types-shared" = rec {
crateName = "foreign-types-shared";
version = "0.1.1";
edition = "2015";
sha256 = "0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
};
"fsevent" = rec {
crateName = "fsevent";
version = "2.0.2";
edition = "2015";
sha256 = "0qsylfbhgha319q6a8yvkznbm3hf47gy3y8nq82qijcm5hh4gwwp";
authors = [
"Pierre Baillet <pierre@baillet.name>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "fsevent-sys";
packageId = "fsevent-sys";
}
];
};
"fsevent-sys" = rec {
crateName = "fsevent-sys";
version = "3.0.2";
edition = "2015";
sha256 = "0821k4yac112iwwzqd4n5ml39dxbzi6d59d9fcz4qffay5vrr8kp";
authors = [
"Pierre Baillet <pierre@baillet.name>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
};
"fuchsia-cprng" = rec {
crateName = "fuchsia-cprng";
version = "0.1.1";
edition = "2018";
sha256 = "1fnkqrbz7ixxzsb04bsz9p0zzazanma8znfdqjvh39n14vapfvx0";
authors = [
"Erick Tryzelaar <etryzelaar@google.com>"
];
};
"fuchsia-zircon" = rec {
crateName = "fuchsia-zircon";
version = "0.3.3";
edition = "2015";
sha256 = "10jxc5ks1x06gpd0xg51kcjrxr35nj6qhx2zlc5n7bmskv3675rf";
authors = [
"Raph Levien <raph@google.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "fuchsia-zircon-sys";
packageId = "fuchsia-zircon-sys";
}
];
};
"fuchsia-zircon-sys" = rec {
crateName = "fuchsia-zircon-sys";
version = "0.3.3";
edition = "2015";
sha256 = "19zp2085qsyq2bh1gvcxq1lb8w6v6jj9kbdkhpdjrl95fypakjix";
authors = [
"Raph Levien <raph@google.com>"
];
};
"futures 0.1.29" = rec {
crateName = "futures";
version = "0.1.29";
edition = "2015";
sha256 = "1vq3cw37knnd0afw3rcjzh71i2l01v5m4ysinrrqdvnn2ql0z60v";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"default" = [ "use_std" "with-deprecated" ];
};
resolvedDefaultFeatures = [ "default" "use_std" "with-deprecated" ];
};
"futures 0.3.5" = rec {
crateName = "futures";
version = "0.3.5";
edition = "2018";
sha256 = "04zn97g8rvxlsqarpfamkiznkpr3jdb4lzfv6kfc1al7q9gbh18y";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "futures-channel";
packageId = "futures-channel";
usesDefaultFeatures = false;
features = [ "sink" ];
}
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-executor";
packageId = "futures-executor";
optional = true;
usesDefaultFeatures = false;
}
{
name = "futures-io";
packageId = "futures-io";
usesDefaultFeatures = false;
}
{
name = "futures-sink";
packageId = "futures-sink";
usesDefaultFeatures = false;
}
{
name = "futures-task";
packageId = "futures-task";
usesDefaultFeatures = false;
}
{
name = "futures-util";
packageId = "futures-util";
usesDefaultFeatures = false;
features = [ "sink" ];
}
];
devDependencies = [
{
name = "futures-executor";
packageId = "futures-executor";
features = [ "thread-pool" ];
}
];
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" ];
"cfg-target-has-atomic" = [ "futures-core/cfg-target-has-atomic" "futures-task/cfg-target-has-atomic" "futures-channel/cfg-target-has-atomic" "futures-util/cfg-target-has-atomic" ];
"compat" = [ "std" "futures-util/compat" ];
"default" = [ "std" "async-await" "executor" ];
"executor" = [ "std" "futures-executor/std" ];
"io-compat" = [ "compat" "futures-util/io-compat" ];
"read-initializer" = [ "futures-io/read-initializer" "futures-util/read-initializer" ];
"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" "compat" "default" "executor" "futures-executor" "io-compat" "std" "thread-pool" ];
};
"futures-channel" = rec {
crateName = "futures-channel";
version = "0.3.6";
edition = "2018";
sha256 = "0x7bycqydi4c88xnrs91445lxycvzcw6cgcwkii4is81figx7957";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "futures-core";
packageId = "futures-core";
usesDefaultFeatures = false;
}
{
name = "futures-sink";
packageId = "futures-sink";
optional = true;
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "futures-core/alloc" ];
"cfg-target-has-atomic" = [ "futures-core/cfg-target-has-atomic" ];
"default" = [ "std" ];
"sink" = [ "futures-sink" ];
"std" = [ "alloc" "futures-core/std" ];
"unstable" = [ "futures-core/unstable" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "futures-sink" "sink" "std" ];
};
"futures-core" = rec {
crateName = "futures-core";
version = "0.3.6";
edition = "2018";
sha256 = "0jvqwbhz5qkr1lbfh8b6gdmf9lpajyzhv40rlnnxb5k80nhflx6n";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"futures-cpupool" = rec {
crateName = "futures-cpupool";
version = "0.1.8";
edition = "2015";
sha256 = "1r32456gpblzfvnkf60545v8acqk7gh5zhyhi1jn669k9gicv45b";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "futures";
packageId = "futures 0.1.29";
usesDefaultFeatures = false;
features = [ "use_std" ];
}
{
name = "num_cpus";
packageId = "num_cpus";
}
];
features = {
"default" = [ "with-deprecated" ];
"with-deprecated" = [ "futures/with-deprecated" ];
};
resolvedDefaultFeatures = [ "default" "with-deprecated" ];
};
"futures-executor" = rec {
crateName = "futures-executor";
version = "0.3.5";
edition = "2018";
sha256 = "05732bhf9q8sqf9qd8px16rfkx9cn08nn05rpqx3s5g1if4bpmhh";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
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;
}
{
name = "num_cpus";
packageId = "num_cpus";
optional = true;
}
];
features = {
"default" = [ "std" ];
"std" = [ "futures-core/std" "futures-task/std" "futures-util/std" ];
"thread-pool" = [ "std" "num_cpus" ];
};
resolvedDefaultFeatures = [ "default" "num_cpus" "std" "thread-pool" ];
};
"futures-io" = rec {
crateName = "futures-io";
version = "0.3.5";
edition = "2018";
sha256 = "128pnpcaqj9sxr1d0scy51yfk2ggvqp6szlm2jf8d3is04mi89yy";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"futures-macro" = rec {
crateName = "futures-macro";
version = "0.3.5";
edition = "2018";
sha256 = "0f8d4kmdxx0h7nca90zdpnbk429w6d3w8dw2hxrm9ar88c5a7dfh";
procMacro = true;
authors = [
"Taylor Cramer <cramertj@google.com>"
"Taiki Endo <te316e89@gmail.com>"
];
dependencies = [
{
name = "proc-macro-hack";
packageId = "proc-macro-hack";
}
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "full" ];
}
];
};
"futures-sink" = rec {
crateName = "futures-sink";
version = "0.3.6";
edition = "2018";
sha256 = "1gdbi002xczcxhh5v716234cmdaxm63cz1fikrfvqknniqjn91qd";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"futures-task" = rec {
crateName = "futures-task";
version = "0.3.5";
edition = "2018";
sha256 = "09m647nghwsg46ckys2846jfga6fbdwgfc08mfqij87215gnpdmx";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "once_cell";
packageId = "once_cell";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
];
features = {
"default" = [ "std" ];
"std" = [ "alloc" "once_cell" ];
};
resolvedDefaultFeatures = [ "alloc" "once_cell" "std" ];
};
"futures-timer 2.0.2" = rec {
crateName = "futures-timer";
version = "2.0.2";
edition = "2018";
sha256 = "1xlx22asam8g5m32avwxx4x4p5hw3gvdhbk6047rn0hqn847bpm1";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
};
"futures-timer 3.0.2" = rec {
crateName = "futures-timer";
version = "3.0.2";
edition = "2018";
sha256 = "0b5v7lk9838ix6jdcrainsyrh7xrf24pwm61dp13907qkn806jz6";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"wasm-bindgen" = [ "gloo-timers" "send_wrapper" ];
};
};
"futures-util" = rec {
crateName = "futures-util";
version = "0.3.5";
edition = "2018";
sha256 = "1iijrqcamgll0h0r6ww9mh3ln4292c1wghw28h41lw4by17mfr47";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "futures";
packageId = "futures 0.1.29";
rename = "futures_01";
optional = true;
}
{
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";
packageId = "pin-project";
}
{
name = "pin-utils";
packageId = "pin-utils";
}
{
name = "proc-macro-hack";
packageId = "proc-macro-hack";
optional = true;
}
{
name = "proc-macro-nested";
packageId = "proc-macro-nested";
optional = true;
}
{
name = "slab";
packageId = "slab";
optional = true;
}
{
name = "tokio-io";
packageId = "tokio-io";
optional = true;
}
];
features = {
"alloc" = [ "futures-core/alloc" "futures-task/alloc" ];
"async-await-macro" = [ "async-await" "futures-macro" "proc-macro-hack" "proc-macro-nested" ];
"cfg-target-has-atomic" = [ "futures-core/cfg-target-has-atomic" "futures-task/cfg-target-has-atomic" ];
"channel" = [ "std" "futures-channel" ];
"compat" = [ "std" "futures_01" ];
"default" = [ "std" "async-await" "async-await-macro" ];
"io" = [ "std" "futures-io" "memchr" ];
"io-compat" = [ "io" "compat" "tokio-io" ];
"read-initializer" = [ "io" "futures-io/read-initializer" "futures-io/unstable" ];
"sink" = [ "futures-sink" ];
"std" = [ "alloc" "futures-core/std" "futures-task/std" "slab" ];
"unstable" = [ "futures-core/unstable" "futures-task/unstable" ];
"write-all-vectored" = [ "io" ];
};
resolvedDefaultFeatures = [ "alloc" "async-await" "async-await-macro" "channel" "compat" "default" "futures-channel" "futures-io" "futures-macro" "futures-sink" "futures_01" "io" "io-compat" "memchr" "proc-macro-hack" "proc-macro-nested" "sink" "slab" "std" "tokio-io" ];
};
"fxhash" = rec {
crateName = "fxhash";
version = "0.2.1";
edition = "2015";
sha256 = "037mb9ichariqi45xm6mz0b11pa92gj38ba0409z3iz239sns6y3";
libPath = "lib.rs";
authors = [
"cbreeden <github@u.breeden.cc>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
}
];
};
"gcc" = rec {
crateName = "gcc";
version = "0.3.55";
edition = "2015";
crateBin = [ ];
sha256 = "1hng1sajn4r67hndvhjysswz8niayjwvcj42zphpxzhbz89kjpwg";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"parallel" = [ "rayon" ];
};
};
"generic-array 0.12.3" = rec {
crateName = "generic-array";
version = "0.12.3";
edition = "2015";
sha256 = "1v5jg7djicq34nbiv1dwaki71gkny002wyy9qfn3y0hfmrs053y6";
libName = "generic_array";
authors = [
"Bartłomiej Kamiński <fizyk20@gmail.com>"
"Aaron Trent <novacrazy@gmail.com>"
];
dependencies = [
{
name = "typenum";
packageId = "typenum";
}
];
};
"generic-array 0.14.4" = rec {
crateName = "generic-array";
version = "0.14.4";
edition = "2015";
sha256 = "05qqwm9v5asbil9z28wjkmpfvs1c5c99n8n9gwxis3d3r3n6c52h";
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 0.9.2";
}
];
features = { };
};
"getrandom" = rec {
crateName = "getrandom";
version = "0.1.15";
edition = "2018";
sha256 = "1rj7psnlrnmsgyj6x2ag4c6367laq4g8kfd6pzamac99xk07nn7w";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: target."unix";
}
{
name = "wasi";
packageId = "wasi 0.9.0+wasi-snapshot-preview1";
target = { target, features }: (target."os" == "wasi");
}
];
features = {
"rustc-dep-of-std" = [ "compiler_builtins" "core" ];
"test-in-browser" = [ "wasm-bindgen" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"gfx" = rec {
crateName = "gfx";
version = "0.18.2";
edition = "2015";
sha256 = "0nqmxqi3x4ni0g78g77a6aldrv8cfvzhnpqhxyd2ap4aa3wldph1";
authors = [
"The Gfx-rs Developers"
];
dependencies = [
{
name = "draw_state";
packageId = "draw_state";
}
{
name = "gfx_core";
packageId = "gfx_core";
}
{
name = "log";
packageId = "log";
}
];
features = {
"serialize" = [ "gfx_core/serialize" "draw_state/serde" ];
};
};
"gfx_core" = rec {
crateName = "gfx_core";
version = "0.9.2";
edition = "2015";
sha256 = "0haldr99n12d90vqgvl77n59hywlklhdff85j2aljaz1yapdvyvm";
authors = [
"The Gfx-rs Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "draw_state";
packageId = "draw_state";
}
{
name = "log";
packageId = "log";
}
];
features = {
"serialize" = [ "serde" "draw_state/serde" ];
};
};
"gfx_device_gl" = rec {
crateName = "gfx_device_gl";
version = "0.16.2";
edition = "2015";
sha256 = "1g5yg19jvxdmviljyakhd6253bnb2qg7v8iscf48ihc0ldgki70h";
authors = [
"The Gfx-rs Developers"
];
dependencies = [
{
name = "gfx_core";
packageId = "gfx_core";
}
{
name = "gfx_gl";
packageId = "gfx_gl";
}
{
name = "log";
packageId = "log";
}
];
};
"gfx_gl" = rec {
crateName = "gfx_gl";
version = "0.6.1";
edition = "2015";
sha256 = "0ppzj4bgjawdqz3fvnscqk8lnmgh95pwzh0v96vwy809cxj83lzj";
authors = [
"The Gfx-rs Developers"
];
buildDependencies = [
{
name = "gl_generator";
packageId = "gl_generator";
}
];
};
"gilrs" = rec {
crateName = "gilrs";
version = "0.7.4";
edition = "2015";
sha256 = "145jwryy8040zh7z0p8za6py7k765jdlnlgwffng9r84z54v4aqj";
authors = [
"Arvamer <arvamer@gmail.com>"
];
dependencies = [
{
name = "fnv";
packageId = "fnv";
}
{
name = "gilrs-core";
packageId = "gilrs-core";
}
{
name = "log";
packageId = "log";
}
{
name = "serde";
packageId = "serde";
optional = true;
features = [ "derive" ];
}
{
name = "stdweb";
packageId = "stdweb 0.4.20";
target = { target, features }: (target."arch" == "wasm32");
}
{
name = "uuid";
packageId = "uuid";
}
{
name = "vec_map";
packageId = "vec_map";
}
];
resolvedDefaultFeatures = [ "serde" ];
};
"gilrs-core" = rec {
crateName = "gilrs-core";
version = "0.2.6";
edition = "2015";
sha256 = "1k8928i2y21akdxas1ha2sd7ff937dz50mgyf9l6vwkaykd5iis3";
authors = [
"Mateusz Sieczko <arvamer@gmail.com>"
];
dependencies = [
{
name = "core-foundation";
packageId = "core-foundation 0.6.4";
target = { target, features }: (target."os" == "macos");
}
{
name = "io-kit-sys";
packageId = "io-kit-sys";
target = { target, features }: (target."os" == "macos");
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."os" == "linux");
}
{
name = "libudev-sys";
packageId = "libudev-sys";
target = { target, features }: (target."os" == "linux");
}
{
name = "log";
packageId = "log";
}
{
name = "nix";
packageId = "nix 0.15.0";
target = { target, features }: (target."os" == "linux");
}
{
name = "rusty-xinput";
packageId = "rusty-xinput";
target = { target, features }: (target."os" == "windows");
}
{
name = "stdweb";
packageId = "stdweb 0.4.20";
target = { target, features }: (target."arch" == "wasm32");
}
{
name = "uuid";
packageId = "uuid";
}
{
name = "vec_map";
packageId = "vec_map";
target = { target, features }: (target."os" == "linux");
}
{
name = "vec_map";
packageId = "vec_map";
target = { target, features }: (target."os" == "macos");
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: (target."os" == "windows");
features = [ "xinput" ];
}
];
};
"gimli 0.20.0" = rec {
crateName = "gimli";
version = "0.20.0";
edition = "2018";
sha256 = "0cz6wg1niwfqf0mk28igsdnsm92cs57cai9jpzdmvw6hma863pc1";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
"Philip Craig <philipjcraig@gmail.com>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
usesDefaultFeatures = false;
}
{
name = "indexmap";
packageId = "indexmap";
optional = true;
}
];
features = {
"default" = [ "read" "write" "std" ];
"read" = [ "arrayvec" "fallible-iterator" "smallvec" "stable_deref_trait" ];
"std" = [ "fallible-iterator/std" "stable_deref_trait/std" ];
"write" = [ "indexmap" ];
};
resolvedDefaultFeatures = [ "indexmap" "write" ];
};
"gimli 0.22.0" = rec {
crateName = "gimli";
version = "0.22.0";
edition = "2018";
sha256 = "095pi71iv1mkpjsgh151gxg7g2576xpd8323z9kp7d3c2fpizyda";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
"Philip Craig <philipjcraig@gmail.com>"
];
features = {
"default" = [ "read" "write" "std" "fallible-iterator" "endian-reader" ];
"endian-reader" = [ "stable_deref_trait" ];
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" ];
"std" = [ "fallible-iterator/std" "stable_deref_trait/std" ];
"write" = [ "indexmap" ];
};
resolvedDefaultFeatures = [ "read" ];
};
"git2" = rec {
crateName = "git2";
version = "0.13.11";
edition = "2018";
sha256 = "0rc1j6p6g2g9fwi4j5r8wnj9j3mhjgj4f8cmxsyxnzxwxwa4428y";
authors = [
"Josh Triplett <josh@joshtriplett.org>"
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "libc";
packageId = "libc";
}
{
name = "libgit2-sys";
packageId = "libgit2-sys";
}
{
name = "log";
packageId = "log";
}
{
name = "openssl-probe";
packageId = "openssl-probe";
optional = true;
target = { target, features }: (target."unix" && (!(target."os" == "macos")));
}
{
name = "openssl-sys";
packageId = "openssl-sys";
optional = true;
target = { target, features }: (target."unix" && (!(target."os" == "macos")));
}
{
name = "url";
packageId = "url 2.1.1";
}
];
features = {
"default" = [ "ssh" "https" "ssh_key_from_memory" ];
"https" = [ "libgit2-sys/https" "openssl-sys" "openssl-probe" ];
"ssh" = [ "libgit2-sys/ssh" ];
"ssh_key_from_memory" = [ "libgit2-sys/ssh_key_from_memory" ];
"vendored-openssl" = [ "openssl-sys/vendored" ];
"zlib-ng-compat" = [ "libgit2-sys/zlib-ng-compat" ];
};
resolvedDefaultFeatures = [ "default" "https" "openssl-probe" "openssl-sys" "ssh" "ssh_key_from_memory" ];
};
"gl_generator" = rec {
crateName = "gl_generator";
version = "0.14.0";
edition = "2015";
sha256 = "0k8j1hmfnff312gy7x1aqjzcm8zxid7ij7dlb8prljib7b1dz58s";
libPath = "lib.rs";
authors = [
"Brendan Zabarauskas <bjzaba@yahoo.com.au>"
"Corey Richardson"
"Arseny Kapoulkine"
];
dependencies = [
{
name = "khronos_api";
packageId = "khronos_api";
}
{
name = "log";
packageId = "log";
}
{
name = "xml-rs";
packageId = "xml-rs";
}
];
features = { };
};
"glam" = rec {
crateName = "glam";
version = "0.9.5";
edition = "2018";
sha256 = "1hdzhxr9ag71fkbffbpwwgn41r5739fhsgmbxr8nqxyh9zncfdw6";
authors = [
"Cameron Hart <cameron.hart@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"glob" = rec {
crateName = "glob";
version = "0.3.0";
edition = "2015";
sha256 = "0x25wfr7vg3mzxc9x05dcphvd3nwlcmbnxrvwcvrrdwplcrrk4cv";
authors = [
"The Rust Project Developers"
];
};
"glsl-include" = rec {
crateName = "glsl-include";
version = "0.3.1";
edition = "2018";
sha256 = "1djad0gknm961brhg778zrc9rd4bqqzhxphd7rab8yhycfqsz8ns";
authors = [
"Justin Shrake <justinshrake@gmail.com>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "regex";
packageId = "regex";
}
];
};
"glutin" = rec {
crateName = "glutin";
version = "0.25.1";
edition = "2018";
sha256 = "0vn89cavn63ghvgv8hq10pgf0zaji7m77m7sx41v0a5775mf5fnq";
authors = [
"The glutin contributors"
"Pierre Krieger <pierre.krieger1708@gmail.com>"
];
dependencies = [
{
name = "android_glue";
packageId = "android_glue";
target = { target, features }: (target."os" == "android");
}
{
name = "cgl";
packageId = "cgl";
target = { target, features }: (target."os" == "macos");
}
{
name = "cocoa";
packageId = "cocoa";
target = { target, features }: (target."os" == "macos");
}
{
name = "core-foundation";
packageId = "core-foundation 0.9.1";
target = { target, features }: (target."os" == "macos");
}
{
name = "glutin_egl_sys";
packageId = "glutin_egl_sys";
target = { target, features }: ((target."os" == "linux") || (target."os" == "freebsd") || (target."os" == "dragonfly") || (target."os" == "netbsd") || (target."os" == "openbsd"));
}
{
name = "glutin_egl_sys";
packageId = "glutin_egl_sys";
target = { target, features }: (target."os" == "android");
}
{
name = "glutin_egl_sys";
packageId = "glutin_egl_sys";
target = { target, features }: (target."os" == "windows");
}
{
name = "glutin_emscripten_sys";
packageId = "glutin_emscripten_sys";
target = { target, features }: (target."os" == "emscripten");
}
{
name = "glutin_gles2_sys";
packageId = "glutin_gles2_sys";
target = { target, features }: ((target."os" == "ios") || (target."os" == "macos"));
}
{
name = "glutin_glx_sys";
packageId = "glutin_glx_sys";
optional = true;
target = { target, features }: ((target."os" == "linux") || (target."os" == "freebsd") || (target."os" == "dragonfly") || (target."os" == "netbsd") || (target."os" == "openbsd"));
}
{
name = "glutin_wgl_sys";
packageId = "glutin_wgl_sys";
target = { target, features }: (target."os" == "windows");
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "libloading";
packageId = "libloading 0.6.3";
target = { target, features }: ((target."os" == "linux") || (target."os" == "freebsd") || (target."os" == "dragonfly") || (target."os" == "netbsd") || (target."os" == "openbsd"));
}
{
name = "libloading";
packageId = "libloading 0.6.3";
target = { target, features }: (target."os" == "windows");
}
{
name = "log";
packageId = "log";
target = { target, features }: ((target."os" == "linux") || (target."os" == "freebsd") || (target."os" == "dragonfly") || (target."os" == "netbsd") || (target."os" == "openbsd"));
}
{
name = "objc";
packageId = "objc";
target = { target, features }: ((target."os" == "ios") || (target."os" == "macos"));
}
{
name = "osmesa-sys";
packageId = "osmesa-sys";
target = { target, features }: ((target."os" == "linux") || (target."os" == "freebsd") || (target."os" == "dragonfly") || (target."os" == "netbsd") || (target."os" == "openbsd"));
}
{
name = "parking_lot";
packageId = "parking_lot 0.11.0";
target = { target, features }: ((target."os" == "linux") || (target."os" == "freebsd") || (target."os" == "dragonfly") || (target."os" == "netbsd") || (target."os" == "openbsd"));
}
{
name = "parking_lot";
packageId = "parking_lot 0.11.0";
target = { target, features }: (target."os" == "android");
}
{
name = "parking_lot";
packageId = "parking_lot 0.11.0";
target = { target, features }: (target."os" == "windows");
}
{
name = "wayland-client";
packageId = "wayland-client 0.28.1";
optional = true;
target = { target, features }: ((target."os" == "linux") || (target."os" == "freebsd") || (target."os" == "dragonfly") || (target."os" == "netbsd") || (target."os" == "openbsd"));
features = [ "dlopen" ];
}
{
name = "wayland-egl";
packageId = "wayland-egl";
optional = true;
target = { target, features }: ((target."os" == "linux") || (target."os" == "freebsd") || (target."os" == "dragonfly") || (target."os" == "netbsd") || (target."os" == "openbsd"));
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: (target."os" == "windows");
features = [ "winnt" "winuser" "wingdi" "libloaderapi" ];
}
{
name = "winit";
packageId = "winit";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "x11" "wayland" ];
"serde" = [ "winit/serde" ];
"wayland" = [ "winit/wayland" "wayland-client" "wayland-egl" ];
"x11" = [ "winit/x11" "glutin_glx_sys" ];
};
resolvedDefaultFeatures = [ "default" "glutin_glx_sys" "wayland" "wayland-client" "wayland-egl" "x11" ];
};
"glutin_egl_sys" = rec {
crateName = "glutin_egl_sys";
version = "0.1.5";
edition = "2018";
sha256 = "04f2ci9kb8q4dv4kviigvgfy54lr4jmbnmjsvi50qj13anjnmfra";
authors = [
"The glutin contributors"
"Hal Gentz <zegentzy@protonmail.com>"
];
dependencies = [
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: (target."os" == "windows");
features = [ "winnt" "winuser" "wingdi" "libloaderapi" ];
}
];
buildDependencies = [
{
name = "gl_generator";
packageId = "gl_generator";
}
];
};
"glutin_emscripten_sys" = rec {
crateName = "glutin_emscripten_sys";
version = "0.1.1";
edition = "2018";
sha256 = "1wb3qfxg3jh6ibb7bxmlmvf4jcpzck3pn0035g1sds3nvx343pl0";
authors = [
"The glutin contributors"
"Hal Gentz <zegentzy@protonmail.com>"
];
};
"glutin_gles2_sys" = rec {
crateName = "glutin_gles2_sys";
version = "0.1.5";
edition = "2018";
sha256 = "00wisv3a7818bpw5nnqwibmh1bw032izix2l3657q2kkidq4w2g8";
authors = [
"The glutin contributors"
"Hal Gentz <zegentzy@protonmail.com>"
];
dependencies = [
{
name = "objc";
packageId = "objc";
target = { target, features }: (target."os" == "ios");
}
];
buildDependencies = [
{
name = "gl_generator";
packageId = "gl_generator";
}
];
};
"glutin_glx_sys" = rec {
crateName = "glutin_glx_sys";
version = "0.1.7";
edition = "2018";
sha256 = "0l8kk60kq5v6hl1qr6ym2arzvbsgkh71aa8485cp901bq27kqfby";
authors = [
"The glutin contributors"
"Hal Gentz <zegentzy@protonmail.com>"
];
dependencies = [
{
name = "x11-dl";
packageId = "x11-dl";
target = { target, features }: ((target."os" == "linux") || (target."os" == "freebsd") || (target."os" == "dragonfly") || (target."os" == "netbsd") || (target."os" == "openbsd"));
}
];
buildDependencies = [
{
name = "gl_generator";
packageId = "gl_generator";
}
];
};
"glutin_wgl_sys" = rec {
crateName = "glutin_wgl_sys";
version = "0.1.5";
edition = "2018";
sha256 = "15hns8b3i7iy366m61dg7jlr7wgzz8z8cakgbj3apnv92ld9b99x";
authors = [
"The glutin contributors"
"Hal Gentz <zegentzy@protonmail.com>"
];
buildDependencies = [
{
name = "gl_generator";
packageId = "gl_generator";
}
];
};
"glyph_brush" = rec {
crateName = "glyph_brush";
version = "0.7.0";
edition = "2018";
sha256 = "0grl3gmgxvd60v33fmvlryks8mc6gjzshwk1sn6j3983sp7y5lxg";
authors = [
"Alex Butler <alexheretic@gmail.com>"
];
dependencies = [
{
name = "glyph_brush_draw_cache";
packageId = "glyph_brush_draw_cache";
}
{
name = "glyph_brush_layout";
packageId = "glyph_brush_layout";
}
{
name = "log";
packageId = "log";
}
{
name = "ordered-float";
packageId = "ordered-float 1.1.0";
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
{
name = "twox-hash";
packageId = "twox-hash";
}
];
};
"glyph_brush_draw_cache" = rec {
crateName = "glyph_brush_draw_cache";
version = "0.1.3";
edition = "2018";
sha256 = "0z06xv7gh3r4msb7r8l3yzcyxjqmy791zcqh5if5dr8v16d9dvwc";
authors = [
"Alex Butler <alexheretic@gmail.com>"
];
dependencies = [
{
name = "ab_glyph";
packageId = "ab_glyph";
}
{
name = "crossbeam-channel";
packageId = "crossbeam-channel 0.5.0";
target = { target, features }: (!(target."arch" == "wasm32"));
}
{
name = "crossbeam-deque";
packageId = "crossbeam-deque 0.8.0";
target = { target, features }: (!(target."arch" == "wasm32"));
}
{
name = "linked-hash-map";
packageId = "linked-hash-map";
}
{
name = "rayon";
packageId = "rayon";
target = { target, features }: (!(target."arch" == "wasm32"));
}
{
name = "rustc-hash";
packageId = "rustc-hash";
}
];
};
"glyph_brush_layout" = rec {
crateName = "glyph_brush_layout";
version = "0.2.1";
edition = "2018";
sha256 = "08482jyj2gxwn14hqxqrc4zz8brpnyd7j0hv5y8c285z63ahdg0h";
authors = [
"Alex Butler <alexheretic@gmail.com>"
];
dependencies = [
{
name = "ab_glyph";
packageId = "ab_glyph";
}
{
name = "approx";
packageId = "approx 0.4.0";
}
{
name = "xi-unicode";
packageId = "xi-unicode";
}
];
};
"guillotiere" = rec {
crateName = "guillotiere";
version = "0.5.2";
edition = "2018";
sha256 = "1hfcfhj2njb9wb0hyh1cag0zbgsm3q2sggpzqik0001g5q2ms1j7";
authors = [
"Nicolas Silva <nical@fastmail.com>"
];
dependencies = [
{
name = "euclid";
packageId = "euclid";
}
{
name = "svg_fmt";
packageId = "svg_fmt";
}
];
features = {
"serialization" = [ "serde" "euclid/serde" ];
};
};
"h2" = rec {
crateName = "h2";
version = "0.1.26";
edition = "2015";
sha256 = "0qn457y8xh03p7c7cpk76r22gqpyqxc58g5022j3iya7d0j4rcx5";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "bytes";
packageId = "bytes 0.4.12";
}
{
name = "fnv";
packageId = "fnv";
}
{
name = "futures";
packageId = "futures 0.1.29";
}
{
name = "http";
packageId = "http";
}
{
name = "indexmap";
packageId = "indexmap";
}
{
name = "log";
packageId = "log";
}
{
name = "slab";
packageId = "slab";
}
{
name = "string";
packageId = "string";
}
{
name = "tokio-io";
packageId = "tokio-io";
}
];
features = { };
};
"half" = rec {
crateName = "half";
version = "1.6.0";
edition = "2018";
sha256 = "0xq1qkbfwnxv72b2fakgi5ai0j8arw38whwxgxs3rp1fz28anvyk";
authors = [
"Kathryn Long <squeeself@gmail.com>"
];
features = {
"serialize" = [ "serde" ];
"std" = [ "alloc" ];
};
};
"hashbrown 0.7.2" = rec {
crateName = "hashbrown";
version = "0.7.2";
edition = "2018";
sha256 = "1ks110dbp81ddn3v826vnrlk5psh3vgvwf4rmb9s0gfdpyb2wa4n";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "ahash";
packageId = "ahash";
optional = true;
usesDefaultFeatures = false;
}
{
name = "rayon";
packageId = "rayon";
optional = true;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
devDependencies = [
{
name = "rayon";
packageId = "rayon";
}
];
features = {
"ahash-compile-time-rng" = [ "ahash/compile-time-rng" ];
"default" = [ "ahash" "inline-more" ];
"rustc-dep-of-std" = [ "nightly" "core" "compiler_builtins" "alloc" "rustc-internal-api" ];
};
resolvedDefaultFeatures = [ "ahash" "default" "inline-more" "nightly" "rayon" "serde" ];
};
"hashbrown 0.9.1" = rec {
crateName = "hashbrown";
version = "0.9.1";
edition = "2018";
sha256 = "016dsm9s4xmxlkw2jfikm54qlz6vyk0qr280gab7kzp342jf9byp";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
features = {
"ahash-compile-time-rng" = [ "ahash/compile-time-rng" ];
"default" = [ "ahash" "inline-more" ];
"rustc-dep-of-std" = [ "nightly" "core" "compiler_builtins" "alloc" "rustc-internal-api" ];
};
resolvedDefaultFeatures = [ "raw" ];
};
"heck" = rec {
crateName = "heck";
version = "0.3.1";
edition = "2015";
sha256 = "01a2v7yvkiqxakdqz4hw3w3g4sm52ivz9cs3qcsv2arxsmw4wmi0";
authors = [
"Without Boats <woboats@gmail.com>"
];
dependencies = [
{
name = "unicode-segmentation";
packageId = "unicode-segmentation";
}
];
};
"hermit-abi" = rec {
crateName = "hermit-abi";
version = "0.1.16";
edition = "2018";
sha256 = "0lbicrf2rzlhksj1vzqm2a2zpwjq3ga6g2in8wrnj03bpk8gcc2c";
authors = [
"Stefan Lankes"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
}
];
features = {
"rustc-dep-of-std" = [ "core" "compiler_builtins/rustc-dep-of-std" "libc/rustc-dep-of-std" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"hex 0.3.2" = rec {
crateName = "hex";
version = "0.3.2";
edition = "2015";
sha256 = "0xsdcjiik5j750j67zk42qdnmm4ahirk3gmkmcqgq7qls2jjcl40";
authors = [
"KokaKiwi <kokakiwi@kokakiwi.net>"
];
features = { };
};
"hex 0.4.2" = rec {
crateName = "hex";
version = "0.4.2";
edition = "2018";
sha256 = "0dbf00j3h3pz0lw8jp245rwypna6i23l4cpvym8gsczin9c92kv4";
authors = [
"KokaKiwi <kokakiwi@kokakiwi.net>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"hibitset" = rec {
crateName = "hibitset";
version = "0.6.3";
edition = "2015";
sha256 = "1cb4dpjbhlg88s6ac16c4fymqffpip9c8ls2s6kmji542s1vp8ck";
authors = [
"csheratt"
];
dependencies = [
{
name = "atom";
packageId = "atom";
}
{
name = "rayon";
packageId = "rayon";
optional = true;
}
];
features = {
"default" = [ "parallel" ];
"parallel" = [ "rayon" ];
};
resolvedDefaultFeatures = [ "parallel" "rayon" ];
};
"horrorshow" = rec {
crateName = "horrorshow";
version = "0.8.3";
edition = "2018";
sha256 = "1yykh6hly8dk2ghvzgjil41aa4g8cib4xjdbjsc4ir683c57xkl7";
authors = [
"Steven Allen <steven@stebalien.com>"
];
features = {
"default" = [ "ops" "std" "alloc" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "ops" "std" ];
};
"hound" = rec {
crateName = "hound";
version = "3.4.0";
edition = "2015";
sha256 = "0jbm25p2nc8758dnfjan1yk7hz2i85y89nrbai14zzxfrsr4n5la";
authors = [
"Ruud van Asseldonk <dev@veniogames.com>"
];
};
"http" = rec {
crateName = "http";
version = "0.1.21";
edition = "2015";
sha256 = "1w21xnhd8f48zvbmm5njg2y1nb4p08ppn8r0cs2xi5d8wgnzbk6n";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Carl Lerche <me@carllerche.com>"
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes 0.4.12";
}
{
name = "fnv";
packageId = "fnv";
}
{
name = "itoa";
packageId = "itoa";
}
];
};
"http-body" = rec {
crateName = "http-body";
version = "0.1.0";
edition = "2015";
sha256 = "0b99404k4mw6a92hvyr0qwzkqv4f866ykg0x7913limjq5cwhhb7";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes 0.4.12";
}
{
name = "futures";
packageId = "futures 0.1.29";
}
{
name = "http";
packageId = "http";
}
{
name = "tokio-buf";
packageId = "tokio-buf";
usesDefaultFeatures = false;
}
];
};
"http-service" = rec {
crateName = "http-service";
version = "0.4.0";
edition = "2018";
sha256 = "0267bbkwgncjk2j26iv58g42smhzwfwafi55g2zr9y7svl2zc9cn";
authors = [
"Aaron Turon <aturon@mozilla.com>"
];
dependencies = [
{
name = "async-std";
packageId = "async-std";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "bytes";
packageId = "bytes 0.4.12";
}
{
name = "futures";
packageId = "futures 0.3.5";
}
{
name = "http";
packageId = "http";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
];
};
"http-service-hyper" = rec {
crateName = "http-service-hyper";
version = "0.4.1";
edition = "2018";
sha256 = "1zwaxpyx7cycpv48qvaj9223v2s5k0mjzsi4jlpvizg0jjp5sgg3";
authors = [
"Aaron Turon <aturon@mozilla.com>"
"Yoshua Wuyts <yoshuawuyts@gmail.com>"
"Wonwoo Choi <chwo9843@gmail.com>"
];
dependencies = [
{
name = "futures";
packageId = "futures 0.3.5";
features = [ "compat" "io-compat" ];
}
{
name = "http";
packageId = "http";
}
{
name = "http-service";
packageId = "http-service";
}
{
name = "hyper";
packageId = "hyper";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "runtime" ];
"runtime" = [ "hyper/runtime" ];
};
resolvedDefaultFeatures = [ "default" "runtime" ];
};
"httparse" = rec {
crateName = "httparse";
version = "1.3.4";
edition = "2015";
sha256 = "1yf23ldnjwfkkhkca7f4w15mky9961gjz28dlwyybhphc7l9l5yd";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"hyper" = rec {
crateName = "hyper";
version = "0.12.35";
edition = "2015";
sha256 = "1xnm8zi4bdjqhlnx3238kx8yjf29jjd1ww54apcql7wf8g8nxglx";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes 0.4.12";
}
{
name = "futures";
packageId = "futures 0.1.29";
}
{
name = "futures-cpupool";
packageId = "futures-cpupool";
optional = true;
}
{
name = "h2";
packageId = "h2";
}
{
name = "http";
packageId = "http";
}
{
name = "http-body";
packageId = "http-body";
}
{
name = "httparse";
packageId = "httparse";
}
{
name = "iovec";
packageId = "iovec";
}
{
name = "itoa";
packageId = "itoa";
}
{
name = "log";
packageId = "log";
}
{
name = "net2";
packageId = "net2";
optional = true;
}
{
name = "time";
packageId = "time";
}
{
name = "tokio";
packageId = "tokio";
optional = true;
usesDefaultFeatures = false;
features = [ "rt-full" ];
}
{
name = "tokio-buf";
packageId = "tokio-buf";
}
{
name = "tokio-executor";
packageId = "tokio-executor";
optional = true;
}
{
name = "tokio-io";
packageId = "tokio-io";
}
{
name = "tokio-reactor";
packageId = "tokio-reactor";
optional = true;
}
{
name = "tokio-tcp";
packageId = "tokio-tcp";
optional = true;
}
{
name = "tokio-threadpool";
packageId = "tokio-threadpool";
optional = true;
}
{
name = "tokio-timer";
packageId = "tokio-timer";
optional = true;
}
{
name = "want";
packageId = "want";
}
];
buildDependencies = [
{
name = "rustc_version";
packageId = "rustc_version";
}
];
features = {
"default" = [ "__internal_flaky_tests" "runtime" ];
"runtime" = [ "futures-cpupool" "net2" "tokio" "tokio-executor" "tokio-reactor" "tokio-tcp" "tokio-threadpool" "tokio-timer" ];
};
resolvedDefaultFeatures = [ "futures-cpupool" "net2" "runtime" "tokio" "tokio-executor" "tokio-reactor" "tokio-tcp" "tokio-threadpool" "tokio-timer" ];
};
"iced_core" = rec {
crateName = "iced_core";
version = "0.2.1";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://github.com/hecrj/iced";
rev = "f46431600cb61d4e83e0ded1ca79525478436be3";
sha256 = "08ixcznfi6wmznjyg0ahi9zs12x5mlbw1bznifqr66gkpa25kyp1";
};
authors = [
"Héctor Ramón Jiménez <hector0193@gmail.com>"
];
};
"iced_futures" = rec {
crateName = "iced_futures";
version = "0.1.2";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://github.com/hecrj/iced";
rev = "f46431600cb61d4e83e0ded1ca79525478436be3";
sha256 = "08ixcznfi6wmznjyg0ahi9zs12x5mlbw1bznifqr66gkpa25kyp1";
};
authors = [
"Héctor Ramón Jiménez <hector0193@gmail.com>"
];
dependencies = [
{
name = "futures";
packageId = "futures 0.3.5";
}
{
name = "log";
packageId = "log";
}
{
name = "wasm-bindgen-futures";
packageId = "wasm-bindgen-futures";
target = { target, features }: (target."arch" == "wasm32");
}
];
features = {
"thread-pool" = [ "futures/thread-pool" ];
};
resolvedDefaultFeatures = [ "thread-pool" ];
};
"iced_graphics" = rec {
crateName = "iced_graphics";
version = "0.1.0";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://github.com/hecrj/iced";
rev = "f46431600cb61d4e83e0ded1ca79525478436be3";
sha256 = "08ixcznfi6wmznjyg0ahi9zs12x5mlbw1bznifqr66gkpa25kyp1";
};
authors = [
"Héctor Ramón Jiménez <hector0193@gmail.com>"
];
dependencies = [
{
name = "bytemuck";
packageId = "bytemuck";
}
{
name = "glam";
packageId = "glam";
}
{
name = "iced_native";
packageId = "iced_native";
}
{
name = "iced_style";
packageId = "iced_style";
}
{
name = "raw-window-handle";
packageId = "raw-window-handle";
}
{
name = "thiserror";
packageId = "thiserror";
}
];
features = {
"canvas" = [ "lyon" ];
"font-source" = [ "font-kit" ];
};
};
"iced_native" = rec {
crateName = "iced_native";
version = "0.2.2";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://github.com/hecrj/iced";
rev = "f46431600cb61d4e83e0ded1ca79525478436be3";
sha256 = "08ixcznfi6wmznjyg0ahi9zs12x5mlbw1bznifqr66gkpa25kyp1";
};
authors = [
"Héctor Ramón Jiménez <hector0193@gmail.com>"
];
dependencies = [
{
name = "iced_core";
packageId = "iced_core";
}
{
name = "iced_futures";
packageId = "iced_futures";
features = [ "thread-pool" ];
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
}
{
name = "twox-hash";
packageId = "twox-hash";
}
{
name = "unicode-segmentation";
packageId = "unicode-segmentation";
}
];
features = { };
};
"iced_style" = rec {
crateName = "iced_style";
version = "0.1.0";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://github.com/hecrj/iced";
rev = "f46431600cb61d4e83e0ded1ca79525478436be3";
sha256 = "08ixcznfi6wmznjyg0ahi9zs12x5mlbw1bznifqr66gkpa25kyp1";
};
authors = [
"Héctor Ramón Jiménez <hector0193@gmail.com>"
];
dependencies = [
{
name = "iced_core";
packageId = "iced_core";
}
];
};
"iced_winit" = rec {
crateName = "iced_winit";
version = "0.1.1";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://github.com/hecrj/iced";
rev = "f46431600cb61d4e83e0ded1ca79525478436be3";
sha256 = "08ixcznfi6wmznjyg0ahi9zs12x5mlbw1bznifqr66gkpa25kyp1";
};
authors = [
"Héctor Ramón Jiménez <hector0193@gmail.com>"
];
dependencies = [
{
name = "iced_futures";
packageId = "iced_futures";
}
{
name = "iced_graphics";
packageId = "iced_graphics";
}
{
name = "iced_native";
packageId = "iced_native";
}
{
name = "log";
packageId = "log";
}
{
name = "thiserror";
packageId = "thiserror";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: (target."os" == "windows");
}
{
name = "window_clipboard";
packageId = "window_clipboard";
}
{
name = "winit";
packageId = "winit";
}
];
features = {
"debug" = [ "iced_native/debug" ];
};
};
"ident_case" = rec {
crateName = "ident_case";
version = "1.0.1";
edition = "2015";
sha256 = "0fac21q6pwns8gh1hz3nbq15j8fi441ncl6w4vlnd1cmc55kiq5r";
authors = [
"Ted Driggs <ted.driggs@outlook.com>"
];
};
"idna 0.1.5" = rec {
crateName = "idna";
version = "0.1.5";
edition = "2015";
sha256 = "0kl4gs5kaydn4v07c6ka33spm9qdh2np0x7iw7g5zd8z1c7rxw1q";
authors = [
"The rust-url developers"
];
dependencies = [
{
name = "matches";
packageId = "matches";
}
{
name = "unicode-bidi";
packageId = "unicode-bidi";
}
{
name = "unicode-normalization";
packageId = "unicode-normalization";
}
];
};
"idna 0.2.0" = rec {
crateName = "idna";
version = "0.2.0";
edition = "2015";
sha256 = "1a9066imqpdrm1aavfasdyb1zahqaz8jmdcwdawvb1pf60y6gqh2";
authors = [
"The rust-url developers"
];
dependencies = [
{
name = "matches";
packageId = "matches";
}
{
name = "unicode-bidi";
packageId = "unicode-bidi";
}
{
name = "unicode-normalization";
packageId = "unicode-normalization";
}
];
};
"image" = rec {
crateName = "image";
version = "0.23.10";
edition = "2018";
sha256 = "0d1w6xi4ifd0cdkv8lq05czih5jkxxwfsqn5sll9rl842dmw0pwq";
authors = [
"The image-rs Developers"
];
dependencies = [
{
name = "bytemuck";
packageId = "bytemuck";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "num-iter";
packageId = "num-iter";
}
{
name = "num-rational";
packageId = "num-rational 0.3.0";
usesDefaultFeatures = false;
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
}
{
name = "png";
packageId = "png";
optional = true;
}
];
features = {
"avif" = [ "ravif" "rgb" ];
"dds" = [ "dxt" ];
"default" = [ "gif" "jpeg" "ico" "png" "pnm" "tga" "tiff" "webp" "bmp" "hdr" "dxt" "dds" "farbfeld" "jpeg_rayon" ];
"hdr" = [ "scoped_threadpool" ];
"ico" = [ "bmp" "png" ];
"jpeg_rayon" = [ "jpeg/rayon" ];
};
resolvedDefaultFeatures = [ "bmp" "ico" "png" ];
};
"indexmap" = rec {
crateName = "indexmap";
version = "1.6.0";
edition = "2018";
sha256 = "1wi8l3y2f3k4c2azaf3jm3pw2sksm90rzgv18x1a0lxacp3y9qjm";
authors = [
"bluss"
"Josh Stone <cuviper@gmail.com>"
];
dependencies = [
{
name = "hashbrown";
packageId = "hashbrown 0.9.1";
usesDefaultFeatures = false;
features = [ "raw" ];
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = {
"serde-1" = [ "serde" ];
};
resolvedDefaultFeatures = [ "serde" "serde-1" ];
};
"inline_tweak" = rec {
crateName = "inline_tweak";
version = "1.0.8";
edition = "2018";
sha256 = "0jzb01nhclqy8b3iyp9hs84gy6bpz901jv928g8c0z1741xyjcvh";
authors = [
"Paris DOUADY <paris.douady@hotmail.fr>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"inotify" = rec {
crateName = "inotify";
version = "0.8.3";
edition = "2018";
sha256 = "1m74znskinrvfcp0hczwwdxvc7kvnrrailngkivk1iwknfa0mpa6";
authors = [
"Hanno Braun <mail@hannobraun.de>"
"Félix Saparelli <me@passcod.name>"
"Cristian Kubis <cristian.kubis@tsunix.de>"
"Frank Denis <github@pureftpd.org>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "inotify-sys";
packageId = "inotify-sys";
}
{
name = "libc";
packageId = "libc";
}
];
features = {
"default" = [ "stream" ];
"stream" = [ "futures-core" "mio" "tokio" ];
};
};
"inotify-sys" = rec {
crateName = "inotify-sys";
version = "0.1.3";
edition = "2015";
sha256 = "1h2nwgajz80qddjm4mpma94zahxw84nscbycy9pgzbjrgjl1ljp7";
authors = [
"Hanno Braun <hb@hannobraun.de>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
};
"instant" = rec {
crateName = "instant";
version = "0.1.7";
edition = "2018";
sha256 = "0rlyrpvq27vdwgiladc3dcj2lx8rlv0smid7s36n11zaywc2lcb3";
authors = [
"sebcrozet <developer@crozet.re>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
];
features = {
"now" = [ "time" ];
"wasm-bindgen" = [ "js-sys" "wasm-bindgen_rs" "web-sys" ];
};
};
"io-kit-sys" = rec {
crateName = "io-kit-sys";
version = "0.1.0";
edition = "2015";
sha256 = "186h7gm6kf1d00cb3w5mpyf9arcdkxw7jzhl1c4wvm2xk5scq7gj";
authors = [
"Junji Takakura <j.takakura@gmail.com>"
];
dependencies = [
{
name = "core-foundation-sys";
packageId = "core-foundation-sys 0.6.2";
}
{
name = "mach";
packageId = "mach 0.2.3";
}
];
};
"iovec" = rec {
crateName = "iovec";
version = "0.1.4";
edition = "2015";
sha256 = "0ph73qygwx8i0mblrf110cj59l00gkmsgrpzz1rm85syz5pymcxj";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
];
};
"itertools" = rec {
crateName = "itertools";
version = "0.9.0";
edition = "2018";
sha256 = "0jyml7ygr7kijkcjdl3fk5f34y5h5jsavclim7l13zjiavw1hkr8";
authors = [
"bluss"
];
dependencies = [
{
name = "either";
packageId = "either";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "use_std" ];
};
resolvedDefaultFeatures = [ "default" "use_std" ];
};
"itoa" = rec {
crateName = "itoa";
version = "0.4.6";
edition = "2015";
sha256 = "1rnpb7rr8df76gnlk07b9086cn7fc0dxxy1ghh00q6nip7bklvyw";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"jni 0.14.0" = rec {
crateName = "jni";
version = "0.14.0";
edition = "2018";
sha256 = "00jl4jzzbbcf1nyziras5drp501xsk89g0132pwg194ilh6k308r";
authors = [
"Josh Chase <josh@prevoty.com>"
];
dependencies = [
{
name = "cesu8";
packageId = "cesu8";
}
{
name = "combine";
packageId = "combine 3.8.1";
}
{
name = "error-chain";
packageId = "error-chain";
usesDefaultFeatures = false;
}
{
name = "jni-sys";
packageId = "jni-sys";
}
{
name = "log";
packageId = "log";
}
];
buildDependencies = [
{
name = "walkdir";
packageId = "walkdir 2.3.1";
}
];
features = {
"backtrace" = [ "error-chain/backtrace" ];
"default" = [ "backtrace" ];
};
resolvedDefaultFeatures = [ "backtrace" "default" ];
};
"jni 0.17.0" = rec {
crateName = "jni";
version = "0.17.0";
edition = "2018";
sha256 = "0g3sjry4wdym24v1106lq1ddm0q5b5vw1i82linvhj1fcd8ckg1n";
authors = [
"Josh Chase <josh@prevoty.com>"
];
dependencies = [
{
name = "cesu8";
packageId = "cesu8";
}
{
name = "combine";
packageId = "combine 4.3.2";
}
{
name = "error-chain";
packageId = "error-chain";
usesDefaultFeatures = false;
}
{
name = "jni-sys";
packageId = "jni-sys";
}
{
name = "log";
packageId = "log";
}
];
buildDependencies = [
{
name = "walkdir";
packageId = "walkdir 2.3.1";
}
];
features = {
"backtrace" = [ "error-chain/backtrace" ];
"default" = [ "backtrace" ];
};
resolvedDefaultFeatures = [ "backtrace" "default" ];
};
"jni-sys" = rec {
crateName = "jni-sys";
version = "0.3.0";
edition = "2015";
sha256 = "0c01zb9ygvwg9wdx2fii2d39myzprnpqqhy7yizxvjqp5p04pbwf";
authors = [
"Steven Fackler <sfackler@gmail.com>"
];
};
"jobserver" = rec {
crateName = "jobserver";
version = "0.1.21";
edition = "2018";
sha256 = "1wm7h76xf7a4d0q6583agbsyl2s46vndrlnr015zffclpcz32waw";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
];
};
"js-sys" = rec {
crateName = "js-sys";
version = "0.3.45";
edition = "2018";
sha256 = "1y0ny38k4npvsgiigk9lh50bs056vak4wnj55pqnhrj8v60rw1fa";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
}
];
};
"kernel32-sys" = rec {
crateName = "kernel32-sys";
version = "0.2.2";
edition = "2015";
sha256 = "1389av0601a9yz8dvx5zha9vmkd6ik7ax0idpb032d28555n41vm";
libName = "kernel32";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
dependencies = [
{
name = "winapi";
packageId = "winapi 0.2.8";
}
];
buildDependencies = [
{
name = "winapi-build";
packageId = "winapi-build";
}
];
};
"khronos_api" = rec {
crateName = "khronos_api";
version = "3.1.0";
edition = "2015";
sha256 = "1p0xj5mlbagqyvvnv8wmv3cr7l9y1m153888pxqwg3vk3mg5inz2";
authors = [
"Brendan Zabarauskas <bjzaba@yahoo.com.au>"
"Corey Richardson"
"Arseny Kapoulkine"
"Pierre Krieger <pierre.krieger1708@gmail.com>"
];
};
"kv-log-macro" = rec {
crateName = "kv-log-macro";
version = "1.0.7";
edition = "2018";
sha256 = "0zwp4bxkkp87rl7xy2dain77z977rvcry1gmr5bssdbn541v7s0d";
authors = [
"Yoshua Wuyts <yoshuawuyts@gmail.com>"
];
dependencies = [
{
name = "log";
packageId = "log";
features = [ "kv_unstable" ];
}
];
};
"lazy-bytes-cast" = rec {
crateName = "lazy-bytes-cast";
version = "5.0.1";
edition = "2018";
sha256 = "0sr0dy1jfg7bjwm9js4hk0ngl0cmgparq2idv1m1bkc9y2cp898h";
authors = [
"Douman <douman@gmx.se>"
];
};
"lazy_static" = rec {
crateName = "lazy_static";
version = "1.4.0";
edition = "2015";
sha256 = "0in6ikhw8mgl33wjv6q6xfrb5b9jr16q8ygjy803fay4zcisvaz2";
authors = [
"Marvin Löbel <loebel.marvin@gmail.com>"
];
features = {
"spin_no_std" = [ "spin" ];
};
};
"lazycell" = rec {
crateName = "lazycell";
version = "1.3.0";
edition = "2015";
sha256 = "0m8gw7dn30i0zjjpjdyf6pc16c34nl71lpv461mix50x3p70h3c3";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Nikita Pekin <contact@nikitapek.in>"
];
features = {
"nightly-testing" = [ "clippy" "nightly" ];
};
};
"lewton" = rec {
crateName = "lewton";
version = "0.10.1";
edition = "2015";
sha256 = "03bwszwdra225y8i6061m799pzy1kg130mr13vma0jqzjykvwhmy";
type = [ "lib" "staticlib" ];
authors = [
"est31 <MTest31@outlook.com>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "ogg";
packageId = "ogg";
optional = true;
}
{
name = "tinyvec";
packageId = "tinyvec";
features = [ "alloc" ];
}
];
devDependencies = [
{
name = "ogg";
packageId = "ogg";
}
];
features = {
"async_ogg" = [ "ogg" "ogg/async" "futures" "tokio-io" ];
"default" = [ "ogg" ];
};
resolvedDefaultFeatures = [ "default" "ogg" ];
};
"libc" = rec {
crateName = "libc";
version = "0.2.77";
edition = "2015";
sha256 = "0dc2z75prvi9vgg7djzy4nkb61vish01p5knis50hq15xh86pygj";
authors = [
"The Rust Project Developers"
];
features = {
"default" = [ "std" ];
"rustc-dep-of-std" = [ "align" "rustc-std-workspace-core" ];
"use_std" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "extra_traits" "std" "use_std" ];
};
"libflate" = rec {
crateName = "libflate";
version = "0.1.27";
edition = "2015";
sha256 = "1p8z839c5lpl0g01mf8iglys9lgcjxw6xjw56crhwp8z7gs5s4yr";
authors = [
"Takeru Ohta <phjgt308@gmail.com>"
];
dependencies = [
{
name = "adler32";
packageId = "adler32";
}
{
name = "crc32fast";
packageId = "crc32fast";
}
{
name = "rle-decode-fast";
packageId = "rle-decode-fast";
}
{
name = "take_mut";
packageId = "take_mut";
}
];
};
"libgit2-sys" = rec {
crateName = "libgit2-sys";
version = "0.12.13+1.0.1";
edition = "2018";
sha256 = "1rgapm6sg1c54xjji8fhcikh3jdqrph8zxyc48l5zhbfywsfm7h6";
libName = "libgit2_sys";
libPath = "lib.rs";
authors = [
"Josh Triplett <josh@joshtriplett.org>"
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "libssh2-sys";
packageId = "libssh2-sys";
optional = true;
}
{
name = "libz-sys";
packageId = "libz-sys";
usesDefaultFeatures = false;
features = [ "libc" ];
}
{
name = "openssl-sys";
packageId = "openssl-sys";
optional = true;
target = { target, features }: target."unix";
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
features = [ "parallel" ];
}
{
name = "pkg-config";
packageId = "pkg-config";
}
];
features = {
"https" = [ "openssl-sys" ];
"ssh" = [ "libssh2-sys" ];
"zlib-ng-compat" = [ "libz-sys/zlib-ng" "libssh2-sys/zlib-ng-compat" ];
};
resolvedDefaultFeatures = [ "https" "libssh2-sys" "openssl-sys" "ssh" "ssh_key_from_memory" ];
};
"libloading 0.5.2" = rec {
crateName = "libloading";
version = "0.5.2";
edition = "2015";
sha256 = "0lyply8rcqc8agajzxs7bq6ivba9dnn1i68kgb9z2flnfjh13cgj";
authors = [
"Simonas Kazlauskas <libloading@kazlauskas.me>"
];
dependencies = [
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "winerror" "errhandlingapi" "libloaderapi" ];
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
];
};
"libloading 0.6.3" = rec {
crateName = "libloading";
version = "0.6.3";
edition = "2015";
sha256 = "1ygliqa518jjxwa5ih4b2f8m984ib596vxmjb28pa5lb8zqdhhr4";
authors = [
"Simonas Kazlauskas <libloading@kazlauskas.me>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
target = { target, features }: target."unix";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "winerror" "errhandlingapi" "libloaderapi" ];
}
];
};
"libm" = rec {
crateName = "libm";
version = "0.1.4";
edition = "2018";
sha256 = "16pc0gx4gkg0q2s1ssq8268brn14j8344623vwhadmivc4lsmivz";
authors = [
"Jorge Aparicio <jorge@japaric.io>"
];
features = {
"default" = [ "stable" ];
"musl-reference-tests" = [ "rand" ];
};
resolvedDefaultFeatures = [ "default" "stable" ];
};
"libsqlite3-sys" = rec {
crateName = "libsqlite3-sys";
version = "0.18.0";
edition = "2018";
sha256 = "1ggpbnis0rci97ln628y2v6pkgfhb6zgc8rsp444mkdfph14lw0y";
authors = [
"The rusqlite developers"
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
optional = true;
}
{
name = "pkg-config";
packageId = "pkg-config";
optional = true;
}
{
name = "vcpkg";
packageId = "vcpkg";
optional = true;
target = { target, features }: (target."env" == "msvc");
}
];
features = {
"buildtime_bindgen" = [ "bindgen" "pkg-config" "vcpkg" ];
"bundled" = [ "cc" "bundled_bindings" ];
"bundled-windows" = [ "cc" "bundled_bindings" ];
"default" = [ "min_sqlite_version_3_6_8" ];
"min_sqlite_version_3_6_23" = [ "pkg-config" "vcpkg" ];
"min_sqlite_version_3_6_8" = [ "pkg-config" "vcpkg" ];
"min_sqlite_version_3_7_16" = [ "pkg-config" "vcpkg" ];
"min_sqlite_version_3_7_7" = [ "pkg-config" "vcpkg" ];
"session" = [ "preupdate_hook" ];
};
resolvedDefaultFeatures = [ "bundled" "bundled_bindings" "cc" "default" "min_sqlite_version_3_6_8" "min_sqlite_version_3_7_16" "pkg-config" "vcpkg" ];
};
"libssh2-sys" = rec {
crateName = "libssh2-sys";
version = "0.2.19";
edition = "2015";
sha256 = "0mkhw4pksbz7gldj8hia7k6npc479n1x09i8r0pm275sac424ina";
libName = "libssh2_sys";
libPath = "lib.rs";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Wez Furlong <wez@wezfurlong.org>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "libz-sys";
packageId = "libz-sys";
usesDefaultFeatures = false;
features = [ "libc" ];
}
{
name = "openssl-sys";
packageId = "openssl-sys";
target = { target, features }: target."unix";
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "vcpkg";
packageId = "vcpkg";
target = { target, features }: (target."env" == "msvc");
}
];
features = {
"vendored-openssl" = [ "openssl-sys/vendored" ];
"zlib-ng-compat" = [ "libz-sys/zlib-ng" ];
};
};
"libudev-sys" = rec {
crateName = "libudev-sys";
version = "0.1.4";
edition = "2015";
sha256 = "09236fdzlx9l0dlrsc6xx21v5x8flpfm3d5rjq9jr5ivlas6k11w";
authors = [
"David Cuddeback <david.cuddeback@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
buildDependencies = [
{
name = "pkg-config";
packageId = "pkg-config";
}
];
};
"libz-sys" = rec {
crateName = "libz-sys";
version = "1.1.2";
edition = "2015";
sha256 = "0mcn8991kpmw320923hlcmci834nkv1qakkcg4w8znq85cci68b0";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Josh Triplett <josh@joshtriplett.org>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
optional = true;
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "vcpkg";
packageId = "vcpkg";
target = { target, features }: (target."env" == "msvc");
}
];
features = {
"default" = [ "libc" "stock-zlib" ];
"zlib-ng" = [ "libc" "cmake" ];
};
resolvedDefaultFeatures = [ "libc" ];
};
"line_drawing" = rec {
crateName = "line_drawing";
version = "0.8.0";
edition = "2015";
sha256 = "1chawny039jkj0lj6abkbykfbhk5wwilshn60fqh4c288bjh46gq";
authors = [
"Expenses <expenses@airmail.cc>"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits 0.1.43";
}
];
};
"linked-hash-map" = rec {
crateName = "linked-hash-map";
version = "0.5.3";
edition = "2015";
sha256 = "0jih3za0p1mywlnwcakc462q1byk6z8vnrzdm36hg6cxk7asdmcd";
authors = [
"Stepan Koltsov <stepan.koltsov@gmail.com>"
"Andrew Paseltiner <apaseltiner@gmail.com>"
];
features = {
"heapsize_impl" = [ "heapsize" ];
"serde_impl" = [ "serde" "serde_test" ];
};
};
"lock_api 0.3.4" = rec {
crateName = "lock_api";
version = "0.3.4";
edition = "2018";
sha256 = "0xgc5dzmajh0akbh5d6d7rj9mh5rzpk74pyrc946v2ixgakj9nn4";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "scopeguard";
packageId = "scopeguard";
usesDefaultFeatures = false;
}
];
features = { };
};
"lock_api 0.4.1" = rec {
crateName = "lock_api";
version = "0.4.1";
edition = "2018";
sha256 = "0716z2rs0kydmd1818kqp4641dfkqzr0rpbnrpxhabxylp2pq918";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "scopeguard";
packageId = "scopeguard";
usesDefaultFeatures = false;
}
];
features = { };
};
"log" = rec {
crateName = "log";
version = "0.4.11";
edition = "2015";
sha256 = "12xzqaflpiljn5cmxsbnbv9sjaj13ykhwsvll0gysbx4blbyvasg";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
];
features = {
"kv_unstable_sval" = [ "kv_unstable" "sval/fmt" ];
};
resolvedDefaultFeatures = [ "kv_unstable" "std" ];
};
"lz-fear" = rec {
crateName = "lz-fear";
version = "0.1.1";
edition = "2018";
sha256 = "078qqvxn3n9r7jdg59bla4jx5icdscx0qgnlsylggk748p7d3ah6";
authors = [
"main() <main@ehvag.de>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "fehler";
packageId = "fehler";
}
{
name = "thiserror";
packageId = "thiserror";
}
{
name = "twox-hash";
packageId = "twox-hash";
usesDefaultFeatures = false;
}
];
};
"mach 0.2.3" = rec {
crateName = "mach";
version = "0.2.3";
edition = "2015";
sha256 = "1qdhs16cl1j3w7kvy6ak7h8lbyqmr6i3i15qfzpnv9gyrn3j9pc6";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
"David Cuddeback <david.cuddeback@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "use_std" "deprecated" ];
"use_std" = [ "libc/use_std" ];
};
resolvedDefaultFeatures = [ "default" "deprecated" "use_std" ];
};
"mach 0.3.2" = rec {
crateName = "mach";
version = "0.3.2";
edition = "2015";
sha256 = "1yksa8lwzqh150gr4417rls1wk20asy9vhp8kq5g9n7z58xyh8xq";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
"David Cuddeback <david.cuddeback@gmail.com>"
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ((target."os" == "macos") || (target."os" == "ios"));
}
];
features = {
"rustc-dep-of-std" = [ "rustc-std-workspace-core" "libc/rustc-dep-of-std" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"malloc_buf" = rec {
crateName = "malloc_buf";
version = "0.0.6";
edition = "2015";
sha256 = "1jqr77j89pwszv51fmnknzvd53i1nkmcr8rjrvcxhm4dx1zr1fv2";
authors = [
"Steven Sheldon"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
};
"matchers" = rec {
crateName = "matchers";
version = "0.0.1";
edition = "2018";
sha256 = "1q8ckqmkjqkznvdi9x0z769yz2bmvlqcwx51ad2lpk4mfmgpi6gh";
authors = [
"Eliza Weisman <eliza@buoyant.io>"
];
dependencies = [
{
name = "regex-automata";
packageId = "regex-automata";
}
];
};
"matches" = rec {
crateName = "matches";
version = "0.1.8";
edition = "2015";
sha256 = "020axl4q7rk9vz90phs7f8jas4imxal9y9kxl4z4v7a6719mrz3z";
libPath = "lib.rs";
authors = [
"Simon Sapin <simon.sapin@exyr.org>"
];
};
"maybe-uninit" = rec {
crateName = "maybe-uninit";
version = "2.0.0";
edition = "2015";
sha256 = "004y0nzmpfdrhz251278341z6ql34iv1k6dp1h6af7d6nd6jwc30";
authors = [
"est31 <MTest31@outlook.com>"
"The Rust Project Developers"
];
};
"memchr" = rec {
crateName = "memchr";
version = "2.3.3";
edition = "2015";
sha256 = "0074pvsfl938ndl5js14ibc7i9q0k3zp390z843w8nlyv4bxha1p";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
"bluss"
];
features = {
"default" = [ "std" ];
"use_std" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" "use_std" ];
};
"memmap" = rec {
crateName = "memmap";
version = "0.7.0";
edition = "2015";
sha256 = "0ns7kkd1h4pijdkwfvw4qlbbmqmlmzwlq3g2676dcl5vwyazv1b5";
authors = [
"Dan Burkert <dan@danburkert.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "basetsd" "handleapi" "memoryapi" "minwindef" "std" "sysinfoapi" ];
}
];
};
"memoffset" = rec {
crateName = "memoffset";
version = "0.5.6";
edition = "2015";
sha256 = "1ahi51aa650s2p9ib1a4ifgqv0pzmsxlm9z4xdgvi9zdd7q7ac84";
authors = [
"Gilad Naaman <gilad.naaman@gmail.com>"
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"migrations_internals" = rec {
crateName = "migrations_internals";
version = "1.4.1";
edition = "2015";
sha256 = "0q2qk4jpa16mcfcmhjz6hdg2s73az1k7j0cy08vvh87h997chkrb";
authors = [
"Sean Griffin <sean@seantheprogrammer.com>"
];
dependencies = [
{
name = "diesel";
packageId = "diesel";
usesDefaultFeatures = false;
}
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"migrations_macros" = rec {
crateName = "migrations_macros";
version = "1.4.2";
edition = "2015";
sha256 = "173qgwans6n2jf6b7qajq273rvg1r9c34p5fflzr53gx14lz2lwp";
procMacro = true;
authors = [
"Sean Griffin <sean@seantheprogrammer.com>"
];
dependencies = [
{
name = "migrations_internals";
packageId = "migrations_internals";
}
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "extra-traits" ];
}
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"mime" = rec {
crateName = "mime";
version = "0.3.16";
edition = "2015";
sha256 = "13dcm9lh01hdwfjcg74ppljyjfj1c6w3a3cwkhxf0w8wa37cfq1a";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
};
"minifb" = rec {
crateName = "minifb";
version = "0.14.0";
edition = "2015";
sha256 = "0k01hl2iqvmmvdhwmmw6ij0n7crnwypi8l7aiks6kpdhir2j173r";
authors = [
"Daniel Collin <daniel@collin.com>"
];
dependencies = [
{
name = "cast";
packageId = "cast";
}
{
name = "orbclient";
packageId = "orbclient";
target = { target, features }: (stdenv.hostPlatform.config == "x86_64-unknown-redox");
}
{
name = "raw-window-handle";
packageId = "raw-window-handle";
}
{
name = "time";
packageId = "time";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "winuser" "wingdi" "libloaderapi" "errhandlingapi" ];
}
{
name = "x11-dl";
packageId = "x11-dl";
target = { target, features }: (stdenv.hostPlatform.config == "aarch64-unknown-linux-gnu");
}
{
name = "x11-dl";
packageId = "x11-dl";
target = { target, features }: (stdenv.hostPlatform.config == "arm-unknown-linux-gnueabihf");
}
{
name = "x11-dl";
packageId = "x11-dl";
target = { target, features }: (stdenv.hostPlatform.config == "armv7-unknown-linux-gnueabihf");
}
{
name = "x11-dl";
packageId = "x11-dl";
target = { target, features }: (stdenv.hostPlatform.config == "i686-unknown-linux-gnu");
}
{
name = "x11-dl";
packageId = "x11-dl";
target = { target, features }: (stdenv.hostPlatform.config == "x86_64-unknown-dragonfly");
}
{
name = "x11-dl";
packageId = "x11-dl";
target = { target, features }: (stdenv.hostPlatform.config == "x86_64-unknown-freebsd");
}
{
name = "x11-dl";
packageId = "x11-dl";
target = { target, features }: (stdenv.hostPlatform.config == "x86_64-unknown-linux-gnu");
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
];
};
"miniz_oxide 0.3.7" = rec {
crateName = "miniz_oxide";
version = "0.3.7";
edition = "2018";
sha256 = "0dblrhgbm0wa8jjl8cjp81akaj36yna92df4z1h9b26n3spal7br";
authors = [
"Frommi <daniil.liferenko@gmail.com>"
"oyvindln <oyvindln@users.noreply.github.com>"
];
dependencies = [
{
name = "adler32";
packageId = "adler32";
}
];
};
"miniz_oxide 0.4.2" = rec {
crateName = "miniz_oxide";
version = "0.4.2";
edition = "2018";
sha256 = "1fd7slw7pgy7gvm008y90a1zallcaf1zrn5s8jhl62y16bz0s366";
authors = [
"Frommi <daniil.liferenko@gmail.com>"
"oyvindln <oyvindln@users.noreply.github.com>"
];
dependencies = [
{
name = "adler";
packageId = "adler";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = {
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "adler/rustc-dep-of-std" ];
};
};
"mio 0.6.22" = rec {
crateName = "mio";
version = "0.6.22";
edition = "2015";
sha256 = "0c64razhyam9892kgxsshmkqs6smrd11087nxb48nhjn4q4lgqzw";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "fuchsia-zircon";
packageId = "fuchsia-zircon";
target = { target, features }: (target."os" == "fuchsia");
}
{
name = "fuchsia-zircon-sys";
packageId = "fuchsia-zircon-sys";
target = { target, features }: (target."os" == "fuchsia");
}
{
name = "iovec";
packageId = "iovec";
}
{
name = "kernel32-sys";
packageId = "kernel32-sys";
target = { target, features }: target."windows";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "log";
packageId = "log";
}
{
name = "miow";
packageId = "miow 0.2.1";
target = { target, features }: target."windows";
}
{
name = "net2";
packageId = "net2";
}
{
name = "slab";
packageId = "slab";
}
{
name = "winapi";
packageId = "winapi 0.2.8";
target = { target, features }: target."windows";
}
];
features = {
"default" = [ "with-deprecated" ];
};
resolvedDefaultFeatures = [ "default" "with-deprecated" ];
};
"mio 0.7.0" = rec {
crateName = "mio";
version = "0.7.0";
edition = "2018";
sha256 = "1yyp74894c0plmdlcdj4pn34c9qis3sl2algg8hn38s9hfy736bf";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
target = { target, features }: target."windows";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "log";
packageId = "log";
}
{
name = "miow";
packageId = "miow 0.3.5";
target = { target, features }: target."windows";
}
{
name = "ntapi";
packageId = "ntapi";
target = { target, features }: target."windows";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "winsock2" "mswsock" ];
}
];
features = { };
resolvedDefaultFeatures = [ "default" "os-poll" "os-util" ];
};
"mio-extras" = rec {
crateName = "mio-extras";
version = "2.0.6";
edition = "2018";
sha256 = "069gfhlv0wlwfx1k2sriwfws490kjp490rv2qivyfb01j3i3yh2j";
authors = [
"Carl Lerche <me@carllerche.com>"
"David Hotham"
];
dependencies = [
{
name = "lazycell";
packageId = "lazycell";
}
{
name = "log";
packageId = "log";
}
{
name = "mio";
packageId = "mio 0.6.22";
}
{
name = "slab";
packageId = "slab";
}
];
};
"mio-uds" = rec {
crateName = "mio-uds";
version = "0.6.8";
edition = "2015";
sha256 = "1w36w09gd8as1mah80wdy0kgpshmphmljj68gij34hvdnag6kjxg";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "iovec";
packageId = "iovec";
target = { target, features }: target."unix";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "mio";
packageId = "mio 0.6.22";
target = { target, features }: target."unix";
}
];
};
"miow 0.2.1" = rec {
crateName = "miow";
version = "0.2.1";
edition = "2015";
sha256 = "06g9b8sqlh5gxakwqq4rrib07afwanfnxgxajrldwcgk3hxjy7wc";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "kernel32-sys";
packageId = "kernel32-sys";
}
{
name = "net2";
packageId = "net2";
usesDefaultFeatures = false;
}
{
name = "winapi";
packageId = "winapi 0.2.8";
}
{
name = "ws2_32-sys";
packageId = "ws2_32-sys";
}
];
};
"miow 0.3.5" = rec {
crateName = "miow";
version = "0.3.5";
edition = "2018";
sha256 = "17lpb2754vg6vflk2vgka4kz2p4gkbsgnb815bb3ckaxg6wqzf07";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "socket2";
packageId = "socket2";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
features = [ "std" "fileapi" "handleapi" "ioapiset" "minwindef" "namedpipeapi" "ntdef" "synchapi" "winerror" "winsock2" "ws2def" "ws2ipdef" ];
}
];
};
"mopa" = rec {
crateName = "mopa";
version = "0.2.2";
edition = "2015";
sha256 = "05grm5s996fmjs7w2bq6lwrq969gwn1knba6aw7j6v15f41791d7";
authors = [
"Chris Morgan <me@chrismorgan.info>"
];
features = {
"no_std_examples" = [ "no_std" ];
};
};
"native-dialog" = rec {
crateName = "native-dialog";
version = "0.4.3";
edition = "2018";
sha256 = "11pfwnvipzwlq4hb9dxxr9hzk5zza2ql2lw471rzvhywid6k71rm";
authors = [
"balthild <ibalthild@gmail.com>"
];
dependencies = [
{
name = "osascript";
packageId = "osascript";
target = { target, features }: (target."os" == "macos");
}
{
name = "serde";
packageId = "serde";
target = { target, features }: (target."os" == "macos");
features = [ "derive" ];
}
{
name = "thiserror";
packageId = "thiserror";
}
{
name = "wfd";
packageId = "wfd";
target = { target, features }: (target."os" == "windows");
}
{
name = "which";
packageId = "which";
target = { target, features }: (target."os" == "linux");
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: (target."os" == "windows");
features = [ "winuser" ];
}
];
features = {
"windows_visual_styles" = [ "once_cell" "winapi/sysinfoapi" "winapi/winbase" "winapi/handleapi" "winapi/libloaderapi" ];
};
};
"ndk" = rec {
crateName = "ndk";
version = "0.2.0";
edition = "2018";
sha256 = "0rk3dmlkxm99akvzdlr7cxk97snhiawhzqjb4qrg4b3wsqfm3p4l";
authors = [
"The Rust Windowing contributors"
];
dependencies = [
{
name = "jni-sys";
packageId = "jni-sys";
}
{
name = "ndk-sys";
packageId = "ndk-sys";
rename = "ffi";
}
{
name = "num_enum";
packageId = "num_enum";
}
{
name = "thiserror";
packageId = "thiserror";
}
];
features = {
"aaudio" = [ "ffi/aaudio" "api-level-26" ];
"all" = [ "aaudio" "bitmap" "hardware_buffer" "media" "trace" "api-level-30" ];
"api-level-24" = [ "api-level-23" ];
"api-level-26" = [ "api-level-24" ];
"api-level-29" = [ "api-level-26" ];
"api-level-30" = [ "api-level-29" ];
"bitmap" = [ "ffi/bitmap" ];
"hardware_buffer" = [ "api-level-26" ];
"media" = [ "ffi/media" ];
"rustdoc" = [ "ffi/rustdoc" "jni" "jni-glue" "all" ];
"trace" = [ "api-level-23" ];
};
};
"ndk-glue" = rec {
crateName = "ndk-glue";
version = "0.2.0";
edition = "2018";
sha256 = "1k361cqcaagiii8dfpvyjr4jv6037bmxqbwps09yl5fd6s696v0b";
authors = [
"The Rust Windowing contributors"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "libc";
packageId = "libc";
}
{
name = "log";
packageId = "log";
}
{
name = "ndk";
packageId = "ndk";
}
{
name = "ndk-macro";
packageId = "ndk-macro";
}
{
name = "ndk-sys";
packageId = "ndk-sys";
}
];
features = {
"logger" = [ "android_logger" "ndk-macro/logger" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"ndk-macro" = rec {
crateName = "ndk-macro";
version = "0.2.0";
edition = "2018";
sha256 = "07a8vjr4fpksssgp453bf82n73i4i17yj1lvbgvd0964glqcdl85";
procMacro = true;
authors = [
"The Rust Windowing contributors"
];
dependencies = [
{
name = "darling";
packageId = "darling";
}
{
name = "proc-macro-crate";
packageId = "proc-macro-crate";
}
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "full" ];
}
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"ndk-sys" = rec {
crateName = "ndk-sys";
version = "0.2.0";
edition = "2018";
sha256 = "0zigwnnagwnm276q49yli10c8dnkg5vvrjb6pcr6f26aixf560fy";
authors = [
"The Rust Windowing contributors"
];
features = { };
};
"net2" = rec {
crateName = "net2";
version = "0.2.35";
edition = "2015";
sha256 = "0lv83nx533k3y2sggfnqam3gcsg2vq47iilnaljrlz7djb33xg1y";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: ((target."os" == "redox") || target."unix" || (target."os" == "wasi"));
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "handleapi" "winsock2" "ws2def" "ws2ipdef" "ws2tcpip" ];
}
];
features = {
"default" = [ "duration" ];
};
resolvedDefaultFeatures = [ "default" "duration" ];
};
"nix 0.15.0" = rec {
crateName = "nix";
version = "0.15.0";
edition = "2015";
sha256 = "0aa2l7wg9pzx24ks4p97gdy09a4hhs1sr9drxnm75v906d7hnbiv";
authors = [
"The nix-rust Project Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "libc";
packageId = "libc";
features = [ "extra_traits" ];
}
{
name = "void";
packageId = "void";
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
target = { target, features }: (target."os" == "dragonfly");
}
];
};
"nix 0.17.0" = rec {
crateName = "nix";
version = "0.17.0";
edition = "2015";
sha256 = "0qvk09kib3jpvpbaps0682nav20ibql61pf1s2h8jx9v5igpir2h";
authors = [
"The nix-rust Project Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "libc";
packageId = "libc";
features = [ "extra_traits" ];
}
{
name = "void";
packageId = "void";
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
target = { target, features }: (target."os" == "dragonfly");
}
];
};
"nix 0.18.0" = rec {
crateName = "nix";
version = "0.18.0";
edition = "2018";
sha256 = "0m8h9bskjjqx9sk687z8bxqg2kpwhdh78jq6zfaxsb8llvk0yic3";
authors = [
"The nix-rust Project Developers"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "libc";
packageId = "libc";
features = [ "extra_traits" ];
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
target = { target, features }: (target."os" == "dragonfly");
}
];
};
"nodrop" = rec {
crateName = "nodrop";
version = "0.1.14";
edition = "2015";
sha256 = "1fz1v9r8ijacf0hlq0pdv5l9mz8vgqg1snmhvpjmi9aci1b4mvvj";
authors = [
"bluss"
];
features = {
"default" = [ "std" ];
"use_union" = [ "nodrop-union" ];
};
};
"noise" = rec {
crateName = "noise";
version = "0.6.0";
edition = "2015";
sha256 = "0w7p5cgqwiyyjdz4n7pdwlix03pgb20ah7m02fv9g8fq9mvjax9k";
authors = [
"The Noise-rs Developers."
];
dependencies = [
{
name = "rand";
packageId = "rand 0.5.6";
}
];
features = {
"default" = [ "image" ];
};
};
"nom 4.2.3" = rec {
crateName = "nom";
version = "4.2.3";
edition = "2015";
sha256 = "1mkvby8b4m61p4g1px0pwr58yfkphyp1jcfbp4qfp7l6iqdaklia";
authors = [
"contact@geoffroycouprie.com"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check 0.1.5";
}
];
features = {
"default" = [ "std" ];
"regexp" = [ "regex" ];
"regexp_macros" = [ "regexp" "lazy_static" ];
"std" = [ "alloc" "memchr/use_std" ];
"verbose-errors" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
};
"nom 5.1.2" = rec {
crateName = "nom";
version = "5.1.2";
edition = "2018";
sha256 = "1br74rwdp3c2ddga03bphnf355spn4mzwf1slg0a30zd4qnjdd7z";
authors = [
"contact@geoffroycouprie.com"
];
dependencies = [
{
name = "memchr";
packageId = "memchr";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check 0.9.2";
}
];
features = {
"default" = [ "std" "lexical" ];
"lexical" = [ "lexical-core" ];
"regexp" = [ "regex" ];
"regexp_macros" = [ "regexp" "lazy_static" ];
"std" = [ "alloc" "memchr/use_std" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"notify" = rec {
crateName = "notify";
version = "5.0.0-pre.3";
edition = "2018";
sha256 = "03kxlcnpg8xkhp3g04y8basy7kpkzwjx97hfp9hb3d48rw3kdl3p";
authors = [
"Félix Saparelli <me@passcod.name>"
"Daniel Faust <hessijames@gmail.com>"
];
dependencies = [
{
name = "anymap";
packageId = "anymap";
}
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "crossbeam-channel";
packageId = "crossbeam-channel 0.4.4";
}
{
name = "filetime";
packageId = "filetime";
}
{
name = "fsevent";
packageId = "fsevent";
target = { target, features }: (target."os" == "macos");
}
{
name = "fsevent-sys";
packageId = "fsevent-sys";
target = { target, features }: (target."os" == "macos");
}
{
name = "inotify";
packageId = "inotify";
usesDefaultFeatures = false;
target = { target, features }: (target."os" == "linux");
}
{
name = "libc";
packageId = "libc";
}
{
name = "mio";
packageId = "mio 0.6.22";
target = { target, features }: (target."os" == "linux");
}
{
name = "mio-extras";
packageId = "mio-extras";
target = { target, features }: (target."os" == "linux");
}
{
name = "walkdir";
packageId = "walkdir 2.3.1";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "fileapi" "handleapi" "ioapiset" "minwinbase" "synchapi" "winbase" "winnt" ];
}
];
features = { };
};
"ntapi" = rec {
crateName = "ntapi";
version = "0.3.4";
edition = "2018";
sha256 = "1lm9rxl625zcmakkyj00nca19p7a3mby7q6s5p3kjd82x9yr6cbs";
authors = [
"MSxDOS <melcodos@gmail.com>"
];
dependencies = [
{
name = "winapi";
packageId = "winapi 0.3.9";
features = [ "cfg" "evntrace" "in6addr" "inaddr" "minwinbase" "ntsecapi" "windef" "winioctl" ];
}
];
features = {
"default" = [ "user" ];
"impl-default" = [ "winapi/impl-default" ];
};
resolvedDefaultFeatures = [ "default" "user" ];
};
"num 0.1.42" = rec {
crateName = "num";
version = "0.1.42";
edition = "2015";
sha256 = "0vhmyvfan380f86895z0f8rjscjc6qvwcmyvm15370ik2mjas0s7";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-integer";
packageId = "num-integer";
}
{
name = "num-iter";
packageId = "num-iter";
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
}
];
features = {
"bigint" = [ "num-bigint" ];
"complex" = [ "num-complex" ];
"default" = [ "bigint" "complex" "rational" "rustc-serialize" ];
"rational" = [ "num-rational" ];
"rustc-serialize" = [ "num-bigint/rustc-serialize" "num-complex/rustc-serialize" "num-rational/rustc-serialize" ];
"serde" = [ "num-bigint/serde" "num-complex/serde" "num-rational/serde" ];
};
};
"num 0.2.1" = rec {
crateName = "num";
version = "0.2.1";
edition = "2015";
sha256 = "0dhcvhprvvx1iaaq7sxlgxw5awmj8dibni8vhizi59zyz4q60lxq";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-bigint";
packageId = "num-bigint";
optional = true;
usesDefaultFeatures = false;
}
{
name = "num-complex";
packageId = "num-complex";
usesDefaultFeatures = false;
}
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
}
{
name = "num-iter";
packageId = "num-iter";
usesDefaultFeatures = false;
}
{
name = "num-rational";
packageId = "num-rational 0.2.4";
usesDefaultFeatures = false;
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"i128" = [ "num-bigint/i128" "num-complex/i128" "num-integer/i128" "num-iter/i128" "num-rational/i128" "num-traits/i128" ];
"rand" = [ "num-bigint/rand" "num-complex/rand" ];
"serde" = [ "num-bigint/serde" "num-complex/serde" "num-rational/serde" ];
"std" = [ "num-bigint/std" "num-complex/std" "num-integer/std" "num-iter/std" "num-rational/std" "num-rational/bigint" "num-traits/std" ];
};
resolvedDefaultFeatures = [ "default" "num-bigint" "std" ];
};
"num-bigint" = rec {
crateName = "num-bigint";
version = "0.2.6";
edition = "2015";
sha256 = "015k3wixdi4w698sappvy43pf8bvkw0f88xplmdgc3zfk2cpy309";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = {
"default" = [ "std" ];
"i128" = [ "num-integer/i128" "num-traits/i128" ];
"std" = [ "num-integer/std" "num-traits/std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"num-complex" = rec {
crateName = "num-complex";
version = "0.2.4";
edition = "2015";
sha256 = "15dwaksw729r3v14sgzc9723s3fnfixiir8jzwx7b7kim48r9cdn";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = {
"default" = [ "std" ];
"i128" = [ "num-traits/i128" ];
"std" = [ "num-traits/std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"num-derive" = rec {
crateName = "num-derive";
version = "0.3.2";
edition = "2018";
sha256 = "1czs5215ypgbwg0qgy2i515xj3vfcgm8fw7gi4gmwsyv3a2bj2bg";
procMacro = true;
libName = "num_derive";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
}
];
features = {
"full-syntax" = [ "syn/full" ];
};
};
"num-integer" = rec {
crateName = "num-integer";
version = "0.1.43";
edition = "2015";
sha256 = "0nw79ynfvw8br6yncv27pw65y2vw2z7m3kv9g2hinm1dcrz4ancd";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = {
"default" = [ "std" ];
"i128" = [ "num-traits/i128" ];
"std" = [ "num-traits/std" ];
};
resolvedDefaultFeatures = [ "default" "i128" "std" ];
};
"num-iter" = rec {
crateName = "num-iter";
version = "0.1.41";
edition = "2015";
sha256 = "17sb142lhmpsq17cf9wrffjh8vjk901axxf55565r6cgfiy6nvks";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = {
"default" = [ "std" ];
"i128" = [ "num-integer/i128" "num-traits/i128" ];
"std" = [ "num-integer/std" "num-traits/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"num-rational 0.2.4" = rec {
crateName = "num-rational";
version = "0.2.4";
edition = "2015";
sha256 = "1vsaz96chxcgpqd5a0dq8hb3b4sj6dnlhwmpbkf4mx6vnls0202w";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-bigint";
packageId = "num-bigint";
optional = true;
usesDefaultFeatures = false;
}
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = {
"bigint" = [ "num-bigint" ];
"bigint-std" = [ "bigint" "num-bigint/std" ];
"default" = [ "bigint-std" "std" ];
"i128" = [ "num-integer/i128" "num-traits/i128" ];
"std" = [ "num-integer/std" "num-traits/std" ];
};
resolvedDefaultFeatures = [ "bigint" "num-bigint" "std" ];
};
"num-rational 0.3.0" = rec {
crateName = "num-rational";
version = "0.3.0";
edition = "2018";
sha256 = "0f41j1l1kn5jj36a8xdy8kv242wlwq0ka578vm8gnb1n1wvdgd55";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
features = [ "i128" ];
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
features = [ "i128" ];
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = {
"default" = [ "num-bigint-std" "std" ];
"num-bigint-std" = [ "num-bigint/std" ];
"std" = [ "num-integer/std" "num-traits/std" ];
};
};
"num-traits 0.1.43" = rec {
crateName = "num-traits";
version = "0.1.43";
edition = "2015";
sha256 = "0c9whknf2dm74a3cqirafy6gj83a76gl56g4v3g19k6lkwz13rcj";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits 0.2.12";
}
];
};
"num-traits 0.2.12" = rec {
crateName = "num-traits";
version = "0.2.12";
edition = "2015";
sha256 = "04fnzwlnn6fcy09jjbi9l7bj5dvg657x5c2sjgwfb3pl0z67n9mc";
authors = [
"The Rust Project Developers"
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "i128" "std" ];
};
"num_cpus" = rec {
crateName = "num_cpus";
version = "1.13.0";
edition = "2015";
sha256 = "1cv6yxhz2zbnwn8pn1yn8grg7zsnd523947fby41a737aqvryj85";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "hermit-abi";
packageId = "hermit-abi";
target = { target, features }: (((target."arch" == "x86_64") || (target."arch" == "aarch64")) && (target."os" == "hermit"));
}
{
name = "libc";
packageId = "libc";
}
];
};
"num_enum" = rec {
crateName = "num_enum";
version = "0.4.3";
edition = "2018";
sha256 = "1r1nisdzm9m7xm0389nwyi85jhx1bnh5pwllai44ngbgy1ymlmna";
authors = [
"Daniel Wagner-Hall <dawagner@gmail.com>"
"Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>"
];
dependencies = [
{
name = "derivative";
packageId = "derivative";
features = [ "use_core" ];
}
{
name = "num_enum_derive";
packageId = "num_enum_derive";
usesDefaultFeatures = false;
}
];
features = {
"complex-expressions" = [ "num_enum_derive/complex-expressions" ];
"default" = [ "std" ];
"std" = [ "num_enum_derive/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"num_enum_derive" = rec {
crateName = "num_enum_derive";
version = "0.4.3";
edition = "2018";
sha256 = "17fvb7xpxq2dsqp5nsz98w1qhkk3gnc56xis53009vnzvlys79gz";
procMacro = true;
authors = [
"Daniel Wagner-Hall <dawagner@gmail.com>"
"Daniel Henry-Mantilla <daniel.henry.mantilla@gmail.com>"
];
dependencies = [
{
name = "proc-macro-crate";
packageId = "proc-macro-crate";
}
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
}
];
features = {
"complex-expressions" = [ "syn/full" ];
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"objc" = rec {
crateName = "objc";
version = "0.2.7";
edition = "2015";
sha256 = "1cbpf6kz8a244nn1qzl3xyhmp05gsg4n313c9m3567625d3innwi";
authors = [
"Steven Sheldon"
];
dependencies = [
{
name = "malloc_buf";
packageId = "malloc_buf";
}
];
features = {
"exception" = [ "objc_exception" ];
};
};
"objc-foundation" = rec {
crateName = "objc-foundation";
version = "0.1.1";
edition = "2015";
sha256 = "1y9bwb3m5fdq7w7i4bnds067dhm4qxv4m1mbg9y61j9nkrjipp8s";
authors = [
"Steven Sheldon"
];
dependencies = [
{
name = "block";
packageId = "block";
}
{
name = "objc";
packageId = "objc";
}
{
name = "objc_id";
packageId = "objc_id";
}
];
};
"objc_id" = rec {
crateName = "objc_id";
version = "0.1.1";
edition = "2015";
sha256 = "0fq71hnp2sdblaighjc82yrac3adfmqzhpr11irhvdfp9gdlsbf9";
authors = [
"Steven Sheldon"
];
dependencies = [
{
name = "objc";
packageId = "objc";
}
];
};
"object" = rec {
crateName = "object";
version = "0.20.0";
edition = "2018";
sha256 = "199cx2px61alixkxxi3mfdxl6z3z7ljjap9802m81jh04kk2pd8s";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
"Philip Craig <philipjcraig@gmail.com>"
];
features = {
"all" = [ "read" "write" "std" "compression" "default" ];
"compression" = [ "flate2" "std" ];
"default" = [ "read" "compression" ];
"pe" = [ "coff" ];
"read" = [ "read_core" "coff" "elf" "macho" "pe" "wasm" "unaligned" ];
"rustc-dep-of-std" = [ "core" "compiler_builtins" "alloc" ];
"wasm" = [ "wasmparser" ];
"write" = [ "write_core" "coff" "elf" "macho" ];
"write_core" = [ "crc32fast" "indexmap" "std" ];
};
resolvedDefaultFeatures = [ "coff" "elf" "macho" "pe" "read_core" "unaligned" ];
};
"oboe" = rec {
crateName = "oboe";
version = "0.3.0";
edition = "2018";
sha256 = "1aryvnhs4f1rmw8f4fv6rc9kxkm1kpfvhc2mxqygyiikwygkr8fn";
authors = [
"K. <kayo@illumium.org>"
];
dependencies = [
{
name = "jni";
packageId = "jni 0.14.0";
optional = true;
}
{
name = "ndk";
packageId = "ndk";
optional = true;
}
{
name = "ndk-glue";
packageId = "ndk-glue";
optional = true;
}
{
name = "num-derive";
packageId = "num-derive";
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
}
{
name = "oboe-sys";
packageId = "oboe-sys";
}
];
features = {
"compile-library" = [ "oboe-sys/compile-library" ];
"generate-bindings" = [ "oboe-sys/generate-bindings" ];
"java-interface" = [ "ndk" "ndk-glue" "jni" ];
"shared-link" = [ "oboe-sys/shared-link" ];
};
resolvedDefaultFeatures = [ "java-interface" "jni" "ndk" "ndk-glue" ];
};
"oboe-sys" = rec {
crateName = "oboe-sys";
version = "0.3.0";
edition = "2018";
sha256 = "10lvp65p7jl7ksivqpvyv7c53wb2bacmrv4y317f7aqfc18pmzv8";
authors = [
"K. <kayo@illumium.org>"
];
buildDependencies = [
{
name = "fetch_unroll";
packageId = "fetch_unroll";
}
];
features = {
"compile-library" = [ "cmake" ];
"generate-bindings" = [ "bindgen" ];
};
};
"ogg" = rec {
crateName = "ogg";
version = "0.7.0";
edition = "2015";
sha256 = "058ym6sr2k7fj5d7q9j7v4gcn3q3ys8chfmvfkhx1scb2jwiv7yp";
authors = [
"est31 <MTest31@outlook.com>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
}
];
features = {
"async" = [ "tokio-io" "futures" "bytes" ];
};
};
"old_school_gfx_glutin_ext" = rec {
crateName = "old_school_gfx_glutin_ext";
version = "0.25.0";
edition = "2018";
sha256 = "157fl39kxc7ylkwx9fzxmbclr9sh3mkw6fxadrxr8axkfxxbzlwp";
authors = [
"Alex Butler <alexheretic@gmail.com>"
];
dependencies = [
{
name = "gfx_core";
packageId = "gfx_core";
}
{
name = "gfx_device_gl";
packageId = "gfx_device_gl";
}
{
name = "glutin";
packageId = "glutin";
}
];
};
"once_cell" = rec {
crateName = "once_cell";
version = "1.4.1";
edition = "2018";
sha256 = "1ba56vr8n85xgajnn78pg6iag4inwil3mqg90wi5jaz6xzkm23i6";
authors = [
"Aleksey Kladov <aleksey.kladov@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"oorandom" = rec {
crateName = "oorandom";
version = "11.1.2";
edition = "2018";
sha256 = "0b0bmi76bfywdwllnrpc2ksmvcw05ykqbnz4jbm0i811h2ywww51";
authors = [
"Simon Heath <icefox@dreamquest.io>"
];
};
"openssl-probe" = rec {
crateName = "openssl-probe";
version = "0.1.2";
edition = "2015";
sha256 = "1pijrdifgsdwd45b08c2g0dsmnhz7c3kmagb70839ngrd7d29bvp";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
};
"openssl-sys" = rec {
crateName = "openssl-sys";
version = "0.9.58";
edition = "2015";
sha256 = "1pkq3x8w16kqvkg75g4w7nny56w9clssww0ibpzg015n153xnhm8";
build = "build/main.rs";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
{
name = "cc";
packageId = "cc";
}
{
name = "pkg-config";
packageId = "pkg-config";
}
{
name = "vcpkg";
packageId = "vcpkg";
target = { target, features }: (target."env" == "msvc");
}
];
features = {
"vendored" = [ "openssl-src" ];
};
};
"orbclient" = rec {
crateName = "orbclient";
version = "0.3.27";
edition = "2015";
sha256 = "00lldp1z1vjqdhx4ky03fjxw08y45rqpz98awdcd1ywlmdbqzcgq";
authors = [
"Jeremy Soller <jackpot51@gmail.com>"
];
dependencies = [
{
name = "redox_syscall";
packageId = "redox_syscall";
target = { target, features }: ((!(builtins.elem "no_std" features)) && (target."os" == "redox"));
}
{
name = "sdl2";
packageId = "sdl2";
target = { target, features }: ((!(builtins.elem "no_std" features)) && (!(target."os" == "redox")));
}
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"ordered-float 1.1.0" = rec {
crateName = "ordered-float";
version = "1.1.0";
edition = "2015";
sha256 = "0ya51sgwdggjg2m575vac7m8bxb6x2xvq7j6r3hpvmwlwm5r6h9p";
authors = [
"Jonathan Reem <jonathan.reem@gmail.com>"
"Matt Brubeck <mbrubeck@limpet.net>"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "num-traits/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"ordered-float 2.0.0" = rec {
crateName = "ordered-float";
version = "2.0.0";
edition = "2015";
sha256 = "198l2g8dy8s7ca69khm6xjah0aqszaifjjmw5093n0npcmqh7scz";
authors = [
"Jonathan Reem <jonathan.reem@gmail.com>"
"Matt Brubeck <mbrubeck@limpet.net>"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"std" = [ "num-traits/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"osascript" = rec {
crateName = "osascript";
version = "0.3.0";
edition = "2015";
sha256 = "1p47zqg463wrymv7yilqy91b89jr2ri9bjk6xhd9yrzgb6l1ywrq";
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>"
];
dependencies = [
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
}
];
};
"osmesa-sys" = rec {
crateName = "osmesa-sys";
version = "0.1.2";
edition = "2015";
sha256 = "0fq1q1zcgfb0qydrg9r2738jlwc4hqxgb9vj11z72bjxx7kfrkw8";
libName = "osmesa_sys";
libPath = "lib.rs";
authors = [
"Daggerbot <daggerbot@gmail.com>"
];
dependencies = [
{
name = "shared_library";
packageId = "shared_library";
}
];
};
"owned_ttf_parser 0.6.0" = rec {
crateName = "owned_ttf_parser";
version = "0.6.0";
edition = "2018";
sha256 = "1qydjksjcllf0pnm0jkjvbg4n52wfcwv59dl5b06cqn40sw3z4lz";
authors = [
"Alex Butler <alexheretic@gmail.com>"
];
dependencies = [
{
name = "ttf-parser";
packageId = "ttf-parser 0.6.2";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "ttf-parser/default" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"owned_ttf_parser 0.8.0" = rec {
crateName = "owned_ttf_parser";
version = "0.8.0";
edition = "2018";
sha256 = "1xsrvj3way7h3ifmmp1141qdzwh4kd72xjn63m7f19m3s9zpqizv";
authors = [
"Alex Butler <alexheretic@gmail.com>"
];
dependencies = [
{
name = "ttf-parser";
packageId = "ttf-parser 0.8.2";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "ttf-parser/default" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"packed_simd_2" = rec {
crateName = "packed_simd_2";
version = "0.3.4";
edition = "2018";
sha256 = "05wsm2yxxpwww6a74hi8l80qszisfar5d7whf2pd87wn5x4y0y1j";
authors = [
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>"
"Jubilee Young <workingjubilee@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "libm";
packageId = "libm";
}
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"page_size" = rec {
crateName = "page_size";
version = "0.4.2";
edition = "2015";
sha256 = "1kgdv7f626jy4i2pq8czp4ppady4g4kqfa5ik4dah7mzzd4fbggf";
authors = [
"Philip Woods <elzairthesorcerer@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "sysinfoapi" ];
}
];
features = {
"no_std" = [ "spin" ];
};
};
"parking_lot 0.10.2" = rec {
crateName = "parking_lot";
version = "0.10.2";
edition = "2018";
sha256 = "0pjhcbyk6n0g6jsr6s9nf4x8wribm1b2yf8fgc8drbqa77mh99yk";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "lock_api";
packageId = "lock_api 0.3.4";
}
{
name = "parking_lot_core";
packageId = "parking_lot_core 0.7.2";
}
];
features = {
"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 0.11.0" = rec {
crateName = "parking_lot";
version = "0.11.0";
edition = "2018";
sha256 = "0cw73942xhxb7a49mp9gkjnlwc8acr30wpfs8zk758icz92ki2d4";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "instant";
packageId = "instant";
}
{
name = "lock_api";
packageId = "lock_api 0.4.1";
}
{
name = "parking_lot_core";
packageId = "parking_lot_core 0.8.0";
}
];
features = {
"deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
"nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
"owning_ref" = [ "lock_api/owning_ref" ];
"serde" = [ "lock_api/serde" ];
"stdweb" = [ "instant/stdweb" ];
"wasm-bindgen" = [ "instant/wasm-bindgen" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"parking_lot 0.9.0" = rec {
crateName = "parking_lot";
version = "0.9.0";
edition = "2018";
sha256 = "0lk2vq3hp88ygpgsrypdr3ss71fidnqbykva0csgxhmn5scb2hpq";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "lock_api";
packageId = "lock_api 0.3.4";
}
{
name = "parking_lot_core";
packageId = "parking_lot_core 0.6.2";
}
];
buildDependencies = [
{
name = "rustc_version";
packageId = "rustc_version";
}
];
features = {
"deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
"nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
"owning_ref" = [ "lock_api/owning_ref" ];
"serde" = [ "lock_api/serde" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"parking_lot_core 0.6.2" = rec {
crateName = "parking_lot_core";
version = "0.6.2";
edition = "2018";
sha256 = "0ay67dpnrn68ryyvp720m9i8hzp189fd4d6slrs1lvmcwywv2xmq";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "cloudabi";
packageId = "cloudabi 0.0.3";
target = { target, features }: (target."os" == "cloudabi");
}
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "redox_syscall";
packageId = "redox_syscall";
target = { target, features }: (target."os" == "redox");
}
{
name = "smallvec";
packageId = "smallvec 0.6.13";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "winnt" "ntstatus" "minwindef" "winerror" "winbase" "errhandlingapi" "handleapi" ];
}
];
buildDependencies = [
{
name = "rustc_version";
packageId = "rustc_version";
}
];
features = {
"deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ];
};
};
"parking_lot_core 0.7.2" = rec {
crateName = "parking_lot_core";
version = "0.7.2";
edition = "2018";
sha256 = "18s0cw5y32447c06fhg2mp3xfng22fn1h9fpx3il98sbimv7r36m";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "cloudabi";
packageId = "cloudabi 0.0.3";
target = { target, features }: (target."os" == "cloudabi");
}
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "redox_syscall";
packageId = "redox_syscall";
target = { target, features }: (target."os" == "redox");
}
{
name = "smallvec";
packageId = "smallvec 1.4.2";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "winnt" "ntstatus" "minwindef" "winerror" "winbase" "errhandlingapi" "handleapi" ];
}
];
features = {
"deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ];
};
};
"parking_lot_core 0.8.0" = rec {
crateName = "parking_lot_core";
version = "0.8.0";
edition = "2018";
sha256 = "16yazfg3sq9mz6cfdkhgbv8yvc1kkasyhys4y7r3g16hgmralqf3";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "cloudabi";
packageId = "cloudabi 0.1.0";
target = { target, features }: (target."os" == "cloudabi");
}
{
name = "instant";
packageId = "instant";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "redox_syscall";
packageId = "redox_syscall";
target = { target, features }: (target."os" == "redox");
}
{
name = "smallvec";
packageId = "smallvec 1.4.2";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "winnt" "ntstatus" "minwindef" "winerror" "winbase" "errhandlingapi" "handleapi" ];
}
];
features = {
"deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ];
};
};
"peeking_take_while" = rec {
crateName = "peeking_take_while";
version = "0.1.2";
edition = "2015";
sha256 = "16bhqr6rdyrp12zv381cxaaqqd0pwysvm1q8h2ygihvypvfprc8r";
authors = [
"Nick Fitzgerald <fitzgen@gmail.com>"
];
};
"percent-encoding 1.0.1" = rec {
crateName = "percent-encoding";
version = "1.0.1";
edition = "2015";
sha256 = "0cgq08v1fvr6bs5fvy390cz830lq4fak8havdasdacxcw790s09i";
libPath = "lib.rs";
authors = [
"The rust-url developers"
];
};
"percent-encoding 2.1.0" = rec {
crateName = "percent-encoding";
version = "2.1.0";
edition = "2015";
sha256 = "0bp3zrsk3kr47fbpipyczidbbx4g54lzxdm77ni1i3qws10mdzfl";
libPath = "lib.rs";
authors = [
"The rust-url developers"
];
};
"petgraph" = rec {
crateName = "petgraph";
version = "0.4.13";
edition = "2015";
sha256 = "0kyfmca854s54jk26g2x1kjb04c3k7cjilaxyr0if8lhxv8mjdlw";
authors = [
"bluss"
"mitchmindtree"
];
dependencies = [
{
name = "fixedbitset";
packageId = "fixedbitset";
}
];
features = {
"all" = [ "unstable" "quickcheck" "stable_graph" "graphmap" ];
"default" = [ "graphmap" "stable_graph" ];
"graphmap" = [ "ordermap" ];
"serde-1" = [ "serde" "serde_derive" ];
"unstable" = [ "generate" ];
};
};
"pin-project" = rec {
crateName = "pin-project";
version = "0.4.24";
edition = "2018";
sha256 = "01bjlxd56laazv5qh2bzpr9izwisk5xlvxbwpqvk91gzzdyav3zl";
authors = [
"Taiki Endo <te316e89@gmail.com>"
];
dependencies = [
{
name = "pin-project-internal";
packageId = "pin-project-internal";
usesDefaultFeatures = false;
}
];
};
"pin-project-internal" = rec {
crateName = "pin-project-internal";
version = "0.4.24";
edition = "2018";
sha256 = "1bjqs6pvr9apmx3irfm0nqzy8mbqrz358y4rjwb5mjnkpn9x5ii4";
procMacro = true;
authors = [
"Taiki Endo <te316e89@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "full" "visit-mut" ];
}
];
};
"pin-project-lite" = rec {
crateName = "pin-project-lite";
version = "0.1.9";
edition = "2018";
sha256 = "1w0ryy3x3b63hqqby5kkhxkqw6djp4qxpq6cv066l58yg6blirsg";
authors = [
"Taiki Endo <te316e89@gmail.com>"
];
};
"pin-utils" = rec {
crateName = "pin-utils";
version = "0.1.0";
edition = "2018";
sha256 = "117ir7vslsl2z1a7qzhws4pd01cg2d3338c47swjyvqv2n60v1wb";
authors = [
"Josef Brandl <mail@josefbrandl.de>"
];
};
"piston-float" = rec {
crateName = "piston-float";
version = "0.3.0";
edition = "2015";
sha256 = "169i7rhi986m2s5x7v993cn1k1rin15jwlb66bvbrm7g82kc6n5h";
libName = "float";
authors = [
"bvssvni <bvssvni@gmail.com>"
];
};
"piston-viewport" = rec {
crateName = "piston-viewport";
version = "0.5.0";
edition = "2015";
sha256 = "049n07r87ww24mvkzcp0w7k6z7d3zp08wrnsgkaydavxbycxv5kx";
libName = "viewport";
authors = [
"bvssvni <bvssvni@gmail.com>"
];
dependencies = [
{
name = "piston-float";
packageId = "piston-float";
}
];
};
"pistoncore-input" = rec {
crateName = "pistoncore-input";
version = "0.24.0";
edition = "2015";
sha256 = "0bq5lkw0x10fdiycl30g8jpq1naz4wscm816cklwifn78bi2qq8c";
libName = "input";
authors = [
"bvssvni <bvssvni@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "piston-viewport";
packageId = "piston-viewport";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
];
};
"pkg-config" = rec {
crateName = "pkg-config";
version = "0.3.18";
edition = "2015";
sha256 = "0cxc4yd9qb40944a2svgci41bws68f1hqvyljhrldwbadda94r6k";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
};
"plotters" = rec {
crateName = "plotters";
version = "0.2.15";
edition = "2018";
sha256 = "1fzn4h0mk5d8z5wpnggkajypbb2mv6lrsqih0gg37fmywzxqa5hd";
authors = [
"Hao Hou <haohou302@gmail.com>"
];
dependencies = [
{
name = "js-sys";
packageId = "js-sys";
target = { target, features }: (target."arch" == "wasm32");
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
target = { target, features }: (target."arch" == "wasm32");
}
{
name = "web-sys";
packageId = "web-sys";
target = { target, features }: (target."arch" == "wasm32");
features = [ "Document" "DomRect" "Element" "HtmlElement" "Node" "Window" "HtmlCanvasElement" "CanvasRenderingContext2d" ];
}
];
features = {
"bitmap" = [ "ttf" ];
"cairo" = [ "cairo-rs" "ttf" ];
"datetime" = [ "chrono" ];
"default" = [ "image_encoder" "svg" "chrono" "palette_ext" "gif_backend" "deprecated_items" "bitmap" "ttf" "errorbar" "candlestick" "boxplot" "histogram" "area_series" "line_series" "point_series" ];
"evcxr" = [ "svg" ];
"gif_backend" = [ "gif" "bitmap" ];
"image_encoder" = [ "image" "bitmap" ];
"palette_ext" = [ "palette" ];
"piston" = [ "piston_window" "ttf" ];
"ttf" = [ "font-kit" "rusttype" "lazy_static" ];
};
resolvedDefaultFeatures = [ "area_series" "line_series" "svg" ];
};
"png" = rec {
crateName = "png";
version = "0.16.7";
edition = "2018";
sha256 = "0w5rg19apqwfnzlvql44mwql55lqa0fhwdrln40350rhqzqzkryz";
authors = [
"nwin <nwin@users.noreply.github.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "crc32fast";
packageId = "crc32fast";
}
{
name = "deflate";
packageId = "deflate";
optional = true;
}
{
name = "miniz_oxide";
packageId = "miniz_oxide 0.3.7";
}
];
features = {
"default" = [ "png-encoding" ];
"png-encoding" = [ "deflate" ];
};
resolvedDefaultFeatures = [ "default" "deflate" "png-encoding" ];
};
"portpicker" = rec {
crateName = "portpicker";
version = "0.1.0";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://github.com/xMAC94x/portpicker-rs";
rev = "9d6df36c53c94684080a64a7212dd6bfc3617ee4";
sha256 = "00vl2k3xfihxq86kf5rsknjl8dxmrxqhwajwn0hj4gzgnbssr0rx";
};
authors = [
"Hannes Karppila <hannes.karppila@gmail.com>"
];
dependencies = [
{
name = "rand";
packageId = "rand 0.7.3";
}
];
};
"ppv-lite86" = rec {
crateName = "ppv-lite86";
version = "0.2.9";
edition = "2018";
sha256 = "080sa1pllwljxyl3i5b1i7746sh1s16m8lmn6fkn4p0z253sjvy3";
authors = [
"The CryptoCorrosion Contributors"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "simd" "std" ];
};
"proc-macro-crate" = rec {
crateName = "proc-macro-crate";
version = "0.1.5";
edition = "2018";
sha256 = "11cpihdk9ba68hzw95aa8zxn0i5g6kdrfd4l2cy3d5jvb72a6vhx";
authors = [
"Bastian Köcher <git@kchr.de>"
];
dependencies = [
{
name = "toml";
packageId = "toml";
}
];
};
"proc-macro-error" = rec {
crateName = "proc-macro-error";
version = "1.0.4";
edition = "2018";
sha256 = "1373bhxaf0pagd8zkyd03kkx6bchzf6g0dkwrwzsnal9z47lj9fs";
authors = [
"CreepySkeleton <creepy-skeleton@yandex.ru>"
];
dependencies = [
{
name = "proc-macro-error-attr";
packageId = "proc-macro-error-attr";
}
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
optional = true;
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check 0.9.2";
}
];
features = {
"default" = [ "syn-error" ];
"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;
authors = [
"CreepySkeleton <creepy-skeleton@yandex.ru>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
];
buildDependencies = [
{
name = "version_check";
packageId = "version_check 0.9.2";
}
];
};
"proc-macro-hack" = rec {
crateName = "proc-macro-hack";
version = "0.5.18";
edition = "2018";
sha256 = "16055crxm9l5skrl96l5cs6xc4xnvhiggcf625r7pixdl2whbilr";
procMacro = true;
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
};
"proc-macro-nested" = rec {
crateName = "proc-macro-nested";
version = "0.1.6";
edition = "2015";
sha256 = "0nnwm9bvp1fmr8nqjp8ynrkj97yzpsdh3062li8b0f4hzgd818gb";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
};
"proc-macro2 0.4.30" = rec {
crateName = "proc-macro2";
version = "0.4.30";
edition = "2015";
sha256 = "0nd71fl24sys066jrha6j7i34nfkjv44yzw8yww9742wmc8j0gfg";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "unicode-xid";
packageId = "unicode-xid 0.1.0";
}
];
features = {
"default" = [ "proc-macro" ];
};
resolvedDefaultFeatures = [ "default" "proc-macro" ];
};
"proc-macro2 1.0.24" = rec {
crateName = "proc-macro2";
version = "1.0.24";
edition = "2018";
sha256 = "0wcabxzrddcjmryndw8fpyxcq6rw63m701vx86xxf03y3bp081qy";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "unicode-xid";
packageId = "unicode-xid 0.2.1";
}
];
features = {
"default" = [ "proc-macro" ];
};
resolvedDefaultFeatures = [ "default" "proc-macro" ];
};
"prometheus" = rec {
crateName = "prometheus";
version = "0.10.0";
edition = "2018";
sha256 = "1bi0c6rx2w4c2rvyj99m686lavm6yh37kqpzkjnbqci887s0rmrh";
authors = [
"overvenus@gmail.com"
"siddontang@gmail.com"
"vistaswx@gmail.com"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "fnv";
packageId = "fnv";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "parking_lot";
packageId = "parking_lot 0.11.0";
}
{
name = "regex";
packageId = "regex";
}
{
name = "thiserror";
packageId = "thiserror";
}
];
features = {
"default" = [ "protobuf" ];
"gen" = [ "protobuf-codegen-pure" ];
"nightly" = [ "libc" ];
"process" = [ "libc" "procfs" ];
"push" = [ "reqwest" "libc" "protobuf" ];
};
};
"qstring" = rec {
crateName = "qstring";
version = "0.7.2";
edition = "2018";
sha256 = "0khhcpwifis87r5chr4jiv3w1bkswcf226c0yjx809pzbzkglr6l";
authors = [
"Martin Algesten <martin@algesten.se>"
];
dependencies = [
{
name = "percent-encoding";
packageId = "percent-encoding 2.1.0";
}
];
};
"quote 0.6.13" = rec {
crateName = "quote";
version = "0.6.13";
edition = "2015";
sha256 = "1qgqq48jymp5h4y082aanf25hrw6bpb678xh3zw993qfhxmkpqkc";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 0.4.30";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "proc-macro" ];
"proc-macro" = [ "proc-macro2/proc-macro" ];
};
resolvedDefaultFeatures = [ "default" "proc-macro" ];
};
"quote 1.0.7" = rec {
crateName = "quote";
version = "1.0.7";
edition = "2018";
sha256 = "0drzd6pq7whq7qhdvvs8wn6pbb0hhc12pz8wv80fb05ixhbksmma";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "proc-macro" ];
"proc-macro" = [ "proc-macro2/proc-macro" ];
};
resolvedDefaultFeatures = [ "default" "proc-macro" ];
};
"radium" = rec {
crateName = "radium";
version = "0.3.0";
edition = "2018";
sha256 = "1b27ihsm5sg17nrkj475y1wymzdxzg7lxy770c98crb16230mxfy";
authors = [
"Nika Layzell <nika@thelayzells.com>"
"myrrlyn <self@myrrlyn.dev>"
];
};
"rand 0.5.6" = rec {
crateName = "rand";
version = "0.5.6";
edition = "2015";
sha256 = "1fdcgja9167hlzkf4g5daqwp498lwiyq7aqm05whklpbsdyc8666";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "cloudabi";
packageId = "cloudabi 0.0.3";
optional = true;
target = { target, features }: (target."os" == "cloudabi");
}
{
name = "fuchsia-cprng";
packageId = "fuchsia-cprng";
optional = true;
target = { target, features }: (target."os" == "fuchsia");
}
{
name = "libc";
packageId = "libc";
optional = true;
target = { target, features }: target."unix";
}
{
name = "rand_core";
packageId = "rand_core 0.3.1";
usesDefaultFeatures = false;
}
{
name = "winapi";
packageId = "winapi 0.3.9";
optional = true;
target = { target, features }: target."windows";
features = [ "minwindef" "ntsecapi" "profileapi" "winnt" ];
}
];
features = {
"alloc" = [ "rand_core/alloc" ];
"default" = [ "std" ];
"nightly" = [ "i128_support" ];
"serde1" = [ "serde" "serde_derive" "rand_core/serde1" ];
"std" = [ "rand_core/std" "alloc" "libc" "winapi" "cloudabi" "fuchsia-cprng" ];
};
resolvedDefaultFeatures = [ "alloc" "cloudabi" "default" "fuchsia-cprng" "libc" "std" "winapi" ];
};
"rand 0.6.5" = rec {
crateName = "rand";
version = "0.6.5";
edition = "2015";
sha256 = "1jl4449jcl4wgmzld6ffwqj5gwxrp8zvx8w573g1z368qg6xlwbd";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: target."unix";
}
{
name = "rand_chacha";
packageId = "rand_chacha 0.1.1";
}
{
name = "rand_core";
packageId = "rand_core 0.4.2";
}
{
name = "rand_hc";
packageId = "rand_hc 0.1.0";
}
{
name = "rand_isaac";
packageId = "rand_isaac";
}
{
name = "rand_jitter";
packageId = "rand_jitter";
}
{
name = "rand_os";
packageId = "rand_os";
optional = true;
}
{
name = "rand_pcg";
packageId = "rand_pcg 0.1.2";
}
{
name = "rand_xorshift";
packageId = "rand_xorshift";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "minwindef" "ntsecapi" "profileapi" "winnt" ];
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 0.1.7";
}
];
features = {
"alloc" = [ "rand_core/alloc" ];
"default" = [ "std" ];
"nightly" = [ "simd_support" ];
"serde1" = [ "rand_core/serde1" "rand_isaac/serde1" "rand_xorshift/serde1" ];
"simd_support" = [ "packed_simd" ];
"std" = [ "rand_core/std" "alloc" "rand_os" "rand_jitter/std" ];
"stdweb" = [ "rand_os/stdweb" ];
"wasm-bindgen" = [ "rand_os/wasm-bindgen" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "rand_os" "std" ];
};
"rand 0.7.3" = rec {
crateName = "rand";
version = "0.7.3";
edition = "2018";
sha256 = "00sdaimkbz491qgi6qxkv582yivl32m2jd401kzbn94vsiwicsva";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom";
rename = "getrandom_package";
optional = true;
}
{
name = "libc";
packageId = "libc";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: target."unix";
}
{
name = "rand_chacha";
packageId = "rand_chacha 0.2.2";
usesDefaultFeatures = false;
target = { target, features }: (!(target."os" == "emscripten"));
}
{
name = "rand_core";
packageId = "rand_core 0.5.1";
}
{
name = "rand_hc";
packageId = "rand_hc 0.2.0";
target = { target, features }: (target."os" == "emscripten");
}
{
name = "rand_pcg";
packageId = "rand_pcg 0.2.1";
optional = true;
}
];
devDependencies = [
{
name = "rand_hc";
packageId = "rand_hc 0.2.0";
}
{
name = "rand_pcg";
packageId = "rand_pcg 0.2.1";
}
];
features = {
"alloc" = [ "rand_core/alloc" ];
"default" = [ "std" ];
"getrandom" = [ "getrandom_package" "rand_core/getrandom" ];
"nightly" = [ "simd_support" ];
"simd_support" = [ "packed_simd" ];
"small_rng" = [ "rand_pcg" ];
"std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ];
"stdweb" = [ "getrandom_package/stdweb" ];
"wasm-bindgen" = [ "getrandom_package/wasm-bindgen" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "getrandom" "getrandom_package" "libc" "rand_pcg" "small_rng" "std" ];
};
"rand_chacha 0.1.1" = rec {
crateName = "rand_chacha";
version = "0.1.1";
edition = "2015";
sha256 = "1vxwyzs4fy1ffjc8l00fsyygpiss135irjf7nyxgq2v0lqf3lvam";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "rand_core";
packageId = "rand_core 0.3.1";
usesDefaultFeatures = false;
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 0.1.7";
}
];
};
"rand_chacha 0.2.2" = rec {
crateName = "rand_chacha";
version = "0.2.2";
edition = "2018";
sha256 = "00il36fkdbsmpr99p9ksmmp6dn1md7rmnwmz0rr77jbrca2yvj7l";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
"The CryptoCorrosion Contributors"
];
dependencies = [
{
name = "ppv-lite86";
packageId = "ppv-lite86";
usesDefaultFeatures = false;
features = [ "simd" ];
}
{
name = "rand_core";
packageId = "rand_core 0.5.1";
}
];
features = {
"default" = [ "std" "simd" ];
"std" = [ "ppv-lite86/std" ];
};
resolvedDefaultFeatures = [ "default" "simd" "std" ];
};
"rand_core 0.3.1" = rec {
crateName = "rand_core";
version = "0.3.1";
edition = "2015";
sha256 = "0jzdgszfa4bliigiy4hi66k7fs3gfwi2qxn8vik84ph77fwdwvvs";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "rand_core";
packageId = "rand_core 0.4.2";
}
];
features = {
"alloc" = [ "rand_core/alloc" ];
"default" = [ "std" ];
"serde1" = [ "rand_core/serde1" ];
"std" = [ "rand_core/std" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"rand_core 0.4.2" = rec {
crateName = "rand_core";
version = "0.4.2";
edition = "2015";
sha256 = "1p09ynysrq1vcdlmcqnapq4qakl2yd1ng3kxh3qscpx09k2a6cww";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
features = {
"serde1" = [ "serde" "serde_derive" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "std" ];
};
"rand_core 0.5.1" = rec {
crateName = "rand_core";
version = "0.5.1";
edition = "2018";
sha256 = "06bdvx08v3rkz451cm7z59xwwqn1rkfh6v9ay77b14f8dwlybgch";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom";
optional = true;
}
];
features = {
"serde1" = [ "serde" ];
"std" = [ "alloc" "getrandom" "getrandom/std" ];
};
resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ];
};
"rand_hc 0.1.0" = rec {
crateName = "rand_hc";
version = "0.1.0";
edition = "2015";
sha256 = "1i0vl8q5ddvvy0x8hf1zxny393miyzxkwqnw31ifg6p0gdy6fh3v";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "rand_core";
packageId = "rand_core 0.3.1";
usesDefaultFeatures = false;
}
];
};
"rand_hc 0.2.0" = rec {
crateName = "rand_hc";
version = "0.2.0";
edition = "2018";
sha256 = "0g31sqwpmsirdlwr0svnacr4dbqyz339im4ssl9738cjgfpjjcfa";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "rand_core";
packageId = "rand_core 0.5.1";
}
];
};
"rand_isaac" = rec {
crateName = "rand_isaac";
version = "0.1.1";
edition = "2015";
sha256 = "027flpjr4znx2csxk7gxb7vrf9c7y5mydmvg5az2afgisp4rgnfy";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "rand_core";
packageId = "rand_core 0.3.1";
usesDefaultFeatures = false;
}
];
features = {
"serde1" = [ "serde" "serde_derive" "rand_core/serde1" ];
};
};
"rand_jitter" = rec {
crateName = "rand_jitter";
version = "0.1.4";
edition = "2015";
sha256 = "16z387y46bfz3csc42zxbjq89vcr1axqacncvv8qhyy93p4xarhi";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ((target."os" == "macos") || (target."os" == "ios"));
}
{
name = "rand_core";
packageId = "rand_core 0.4.2";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: (target."os" == "windows");
features = [ "profileapi" ];
}
];
features = {
"std" = [ "rand_core/std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"rand_os" = rec {
crateName = "rand_os";
version = "0.1.3";
edition = "2015";
sha256 = "0wahppm0s64gkr2vmhcgwc0lij37in1lgfxg5rbgqlz0l5vgcxbv";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "cloudabi";
packageId = "cloudabi 0.0.3";
target = { target, features }: (target."os" == "cloudabi");
}
{
name = "fuchsia-cprng";
packageId = "fuchsia-cprng";
target = { target, features }: (target."os" == "fuchsia");
}
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "rand_core";
packageId = "rand_core 0.4.2";
features = [ "std" ];
}
{
name = "rdrand";
packageId = "rdrand";
target = { target, features }: (target."env" == "sgx");
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "minwindef" "ntsecapi" "winnt" ];
}
];
};
"rand_pcg 0.1.2" = rec {
crateName = "rand_pcg";
version = "0.1.2";
edition = "2015";
sha256 = "0i0bdla18a8x4jn1w0fxsbs3jg7ajllz6azmch1zw33r06dv1ydb";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "rand_core";
packageId = "rand_core 0.4.2";
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 0.1.7";
}
];
features = {
"serde1" = [ "serde" "serde_derive" ];
};
};
"rand_pcg 0.2.1" = rec {
crateName = "rand_pcg";
version = "0.2.1";
edition = "2018";
sha256 = "0ab4h6s6x3py833jk61lwadq83qd1c8bih2hgi6yps9rnv0x1aqn";
authors = [
"The Rand Project Developers"
];
dependencies = [
{
name = "rand_core";
packageId = "rand_core 0.5.1";
}
];
features = {
"serde1" = [ "serde" ];
};
};
"rand_xorshift" = rec {
crateName = "rand_xorshift";
version = "0.1.1";
edition = "2015";
sha256 = "0p2x8nr00hricpi2m6ca5vysiha7ybnghz79yqhhx6sl4gkfkxyb";
authors = [
"The Rand Project Developers"
"The Rust Project Developers"
];
dependencies = [
{
name = "rand_core";
packageId = "rand_core 0.3.1";
usesDefaultFeatures = false;
}
];
features = {
"serde1" = [ "serde" "serde_derive" ];
};
};
"raw-cpuid" = rec {
crateName = "raw-cpuid";
version = "7.0.3";
edition = "2015";
crateBin = [ ];
sha256 = "1bzfpjlsd8701m0gd9biv84clb4bwmvgsrmvdmfzlg1phg54k8xl";
authors = [
"Gerd Zellweger <mail@gerdzellweger.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
{
name = "rustc_version";
packageId = "rustc_version";
}
];
features = {
"serialize" = [ "serde" "serde_derive" ];
};
};
"raw-window-handle" = rec {
crateName = "raw-window-handle";
version = "0.3.3";
edition = "2018";
sha256 = "04c2wir7qq3g2b143yav52a1g5ack8ffqx2bpmrn9bc0dix1li0a";
authors = [
"Osspial <osspial@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
features = { };
};
"rayon" = rec {
crateName = "rayon";
version = "1.4.0";
edition = "2018";
sha256 = "0w4jmnnnclby68m6plx45pw1fsc0mg0ckqhv4nskiba5q3q1dl6g";
authors = [
"Niko Matsakis <niko@alum.mit.edu>"
"Josh Stone <cuviper@gmail.com>"
];
dependencies = [
{
name = "crossbeam-deque";
packageId = "crossbeam-deque 0.7.3";
}
{
name = "either";
packageId = "either";
usesDefaultFeatures = false;
}
{
name = "rayon-core";
packageId = "rayon-core";
}
];
buildDependencies = [
{
name = "autocfg";
packageId = "autocfg 1.0.1";
}
];
};
"rayon-core" = rec {
crateName = "rayon-core";
version = "1.8.1";
edition = "2018";
sha256 = "1gq8viz11i4ha5chxx3wi2xg0lia8dxkrkpfslnnsvpv6k4gxi78";
authors = [
"Niko Matsakis <niko@alum.mit.edu>"
"Josh Stone <cuviper@gmail.com>"
];
dependencies = [
{
name = "crossbeam-channel";
packageId = "crossbeam-channel 0.4.4";
}
{
name = "crossbeam-deque";
packageId = "crossbeam-deque 0.7.3";
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.7.2";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "num_cpus";
packageId = "num_cpus";
}
];
};
"rdrand" = rec {
crateName = "rdrand";
version = "0.4.0";
edition = "2015";
sha256 = "1cjq0kwx1bk7jx3kzyciiish5gqsj7620dm43dc52sr8fzmm9037";
authors = [
"Simonas Kazlauskas <rdrand@kazlauskas.me>"
];
dependencies = [
{
name = "rand_core";
packageId = "rand_core 0.3.1";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"redox_syscall" = rec {
crateName = "redox_syscall";
version = "0.1.57";
edition = "2015";
sha256 = "1kh59fpwy33w9nwd5iyc283yglq8pf2s41hnhvl48iax9mz0zk21";
libName = "syscall";
authors = [
"Jeremy Soller <jackpot51@gmail.com>"
];
};
"redox_users" = rec {
crateName = "redox_users";
version = "0.3.5";
edition = "2015";
sha256 = "179fxmyqaqzibp533ajgbn4ljah9lrzpqvd3i73h55bs7qrkf1yy";
authors = [
"Jose Narvaez <goyox86@gmail.com>"
"Wesley Hershberger <mggmugginsmc@gmail.com>"
];
dependencies = [
{
name = "getrandom";
packageId = "getrandom";
}
{
name = "redox_syscall";
packageId = "redox_syscall";
}
{
name = "rust-argon2";
packageId = "rust-argon2";
optional = true;
}
];
features = {
"auth" = [ "rust-argon2" ];
"default" = [ "auth" ];
};
resolvedDefaultFeatures = [ "auth" "default" "rust-argon2" ];
};
"regex" = rec {
crateName = "regex";
version = "1.3.9";
edition = "2015";
sha256 = "1rnqga94ypykl2apgj26l2j1s9bvr2ix4dlzs323n6abyky80dww";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "aho-corasick";
packageId = "aho-corasick";
optional = true;
}
{
name = "memchr";
packageId = "memchr";
optional = true;
}
{
name = "regex-syntax";
packageId = "regex-syntax";
usesDefaultFeatures = false;
}
{
name = "thread_local";
packageId = "thread_local";
optional = true;
}
];
features = {
"default" = [ "std" "perf" "unicode" "regex-syntax/default" ];
"perf" = [ "perf-cache" "perf-dfa" "perf-inline" "perf-literal" ];
"perf-cache" = [ "thread_local" ];
"perf-literal" = [ "aho-corasick" "memchr" ];
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "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" ];
"unstable" = [ "pattern" ];
"use_std" = [ "std" ];
};
resolvedDefaultFeatures = [ "aho-corasick" "default" "memchr" "perf" "perf-cache" "perf-dfa" "perf-inline" "perf-literal" "std" "thread_local" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
};
"regex-automata" = rec {
crateName = "regex-automata";
version = "0.1.9";
edition = "2015";
sha256 = "1r3aqa9c0s9sfrmd2w0mli16ldjzbar0rzb1x7srfjkasrqys7df";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
usesDefaultFeatures = false;
}
{
name = "regex-syntax";
packageId = "regex-syntax";
optional = true;
}
];
features = {
"default" = [ "std" ];
"std" = [ "regex-syntax" ];
"transducer" = [ "std" "fst" ];
};
resolvedDefaultFeatures = [ "default" "regex-syntax" "std" ];
};
"regex-syntax" = rec {
crateName = "regex-syntax";
version = "0.6.18";
edition = "2015";
sha256 = "1s648w7rwpxnq9iqwbyy43ar4al07906jpz0jxlql23bgjwjwh96";
authors = [
"The Rust Project Developers"
];
features = {
"default" = [ "unicode" ];
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
};
resolvedDefaultFeatures = [ "default" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
};
"ring" = rec {
crateName = "ring";
version = "0.16.15";
edition = "2018";
sha256 = "1r1l7qqk552vc19glzr8ng4gw4mzi8xpi98vz87c7fw5ijwxcb4m";
authors = [
"Brian Smith <brian@briansmith.org>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: ((target."os" == "android") || (target."os" == "linux"));
}
{
name = "once_cell";
packageId = "once_cell";
optional = true;
usesDefaultFeatures = false;
target = { target, features }: ((target."os" == "android") || (target."os" == "freebsd") || (target."os" == "linux") || (target."os" == "netbsd") || (target."os" == "openbsd") || (target."os" == "solaris"));
features = [ "std" ];
}
{
name = "spin";
packageId = "spin";
usesDefaultFeatures = false;
target = { target, features }: (((target."arch" == "aarch64") || (target."arch" == "arm") || (target."arch" == "x86") || (target."arch" == "x86_64")) && (!(target."os" == "ios")));
}
{
name = "untrusted";
packageId = "untrusted";
}
{
name = "web-sys";
packageId = "web-sys";
usesDefaultFeatures = false;
target = { target, features }: ((target."arch" == "wasm32") && (target."vendor" == "unknown") && (target."os" == "unknown") && (target."env" == ""));
features = [ "Crypto" "Window" ];
}
{
name = "winapi";
packageId = "winapi 0.3.9";
usesDefaultFeatures = false;
target = { target, features }: (target."os" == "windows");
features = [ "ntsecapi" "wtypesbase" ];
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
usesDefaultFeatures = false;
}
];
devDependencies = [
{
name = "libc";
packageId = "libc";
usesDefaultFeatures = false;
target = { target, features }: (target."unix" || target."windows");
}
];
features = {
"default" = [ "alloc" "dev_urandom_fallback" ];
"dev_urandom_fallback" = [ "once_cell" ];
"std" = [ "alloc" ];
};
resolvedDefaultFeatures = [ "alloc" "default" "dev_urandom_fallback" "once_cell" ];
};
"rle-decode-fast" = rec {
crateName = "rle-decode-fast";
version = "1.0.1";
edition = "2015";
sha256 = "1b4h7qs4mssc5dnlhs3f91ya8pb40bv72zzshl18gify2jllzgna";
authors = [
"Moritz Wanzenböck <moritz@wanzenbug.xyz>"
];
features = {
"bench" = [ "criterion" ];
};
};
"rodio" = rec {
crateName = "rodio";
version = "0.13.0";
edition = "2018";
sha256 = "0hv9nl0qfykbqbssbwi3v565hgwml6hqz56lg24fjiji94r3as69";
authors = [
"Pierre Krieger <pierre.krieger1708@gmail.com>"
];
dependencies = [
{
name = "cpal";
packageId = "cpal";
}
{
name = "hound";
packageId = "hound";
optional = true;
}
{
name = "lewton";
packageId = "lewton";
optional = true;
}
];
features = {
"default" = [ "flac" "vorbis" "wav" "mp3" ];
"flac" = [ "claxon" ];
"mp3" = [ "minimp3" ];
"vorbis" = [ "lewton" ];
"wav" = [ "hound" ];
};
resolvedDefaultFeatures = [ "hound" "lewton" "vorbis" "wav" ];
};
"ron" = rec {
crateName = "ron";
version = "0.6.2";
edition = "2018";
sha256 = "1r6giq99i6yrb19cmj5p601k2ppxjjlskdy353mb50xvny0819gq";
authors = [
"Christopher Durham <cad97@cad97.com>"
"Dzmitry Malyshau <kvarkus@gmail.com>"
"Thomas Schaller <torkleyy@gmail.com>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.12.3";
}
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "serde";
packageId = "serde";
features = [ "serde_derive" ];
}
];
};
"roots" = rec {
crateName = "roots";
version = "0.0.6";
edition = "2015";
sha256 = "1nx6rm5avh9m32nwa1ica6firhfdsx0456n4s0lmgm3spm288d44";
authors = [
"Mikhail Vorotilov <mikhail.vorotilov@gmail.com>"
];
};
"route-recognizer" = rec {
crateName = "route-recognizer";
version = "0.1.13";
edition = "2015";
sha256 = "1y7ln295s0sjclfyj2yw084w6zan8q6jy46hrmm48g0bxdjr0l7a";
authors = [
"wycats"
];
};
"rust-argon2" = rec {
crateName = "rust-argon2";
version = "0.8.2";
edition = "2018";
sha256 = "069syiy3ncg9yai58p3dalwvgpr1aqisqls0x1sk54vm0wjn3awx";
libName = "argon2";
authors = [
"Martijn Rijkeboer <mrr@sru-systems.com>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.12.3";
}
{
name = "blake2b_simd";
packageId = "blake2b_simd";
}
{
name = "constant_time_eq";
packageId = "constant_time_eq";
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.7.2";
optional = true;
}
];
features = {
"default" = [ "crossbeam-utils" ];
};
resolvedDefaultFeatures = [ "crossbeam-utils" "default" ];
};
"rustc-demangle" = rec {
crateName = "rustc-demangle";
version = "0.1.16";
edition = "2015";
sha256 = "10qp42sl1wrdbgbbh8rnay2grm976z7hqgz32c4y09l1c071qsac";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
features = {
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
};
};
"rustc-hash" = rec {
crateName = "rustc-hash";
version = "1.1.0";
edition = "2015";
sha256 = "1qkc5khrmv5pqi5l5ca9p5nl5hs742cagrndhbrlk3dhlrx3zm08";
authors = [
"The Rust Project Developers"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"rustc_version" = rec {
crateName = "rustc_version";
version = "0.2.3";
edition = "2015";
sha256 = "02h3x57lcr8l2pm0a645s9whdh33pn5cnrwvn5cb57vcrc53x3hk";
authors = [
"Marvin Löbel <loebel.marvin@gmail.com>"
];
dependencies = [
{
name = "semver";
packageId = "semver";
}
];
};
"rustls 0.16.0" = rec {
crateName = "rustls";
version = "0.16.0";
edition = "2018";
sha256 = "17n0fx3fpkg4fhpdplrdhkissnl003kj90vzbqag11vkpyqihnmj";
authors = [
"Joseph Birr-Pixton <jpixton@gmail.com>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.10.1";
}
{
name = "log";
packageId = "log";
optional = true;
}
{
name = "ring";
packageId = "ring";
}
{
name = "sct";
packageId = "sct";
}
{
name = "webpki";
packageId = "webpki";
}
];
devDependencies = [
{
name = "log";
packageId = "log";
}
];
features = {
"default" = [ "logging" ];
"logging" = [ "log" ];
};
resolvedDefaultFeatures = [ "default" "log" "logging" ];
};
"rustls 0.18.1" = rec {
crateName = "rustls";
version = "0.18.1";
edition = "2018";
sha256 = "108cf3bfw5high066shz9xrfv4jz7djdmnwqs3kwx4wfypf2c4ax";
authors = [
"Joseph Birr-Pixton <jpixton@gmail.com>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.12.3";
}
{
name = "log";
packageId = "log";
optional = true;
}
{
name = "ring";
packageId = "ring";
}
{
name = "sct";
packageId = "sct";
}
{
name = "webpki";
packageId = "webpki";
}
];
devDependencies = [
{
name = "log";
packageId = "log";
}
];
features = {
"default" = [ "logging" ];
"logging" = [ "log" ];
};
resolvedDefaultFeatures = [ "default" "log" "logging" ];
};
"rusttype 0.7.9" = rec {
crateName = "rusttype";
version = "0.7.9";
edition = "2018";
sha256 = "1m9ms4p94cgif74y1rzkj04rx8i1la193c0jgvnip61rd904429i";
authors = [
"Dylan Ede <dylanede@googlemail.com>"
"Jeremy Soller <jackpot51@gmail.com>"
"Alex Butler <alexheretic@gmail.com>"
];
dependencies = [
{
name = "rusttype";
packageId = "rusttype 0.8.3";
rename = "rusttype_next";
}
];
features = {
"bench" = [ "gpu_cache" ];
"gpu_cache" = [ "rusttype_next/gpu_cache" ];
};
resolvedDefaultFeatures = [ "gpu_cache" ];
};
"rusttype 0.8.3" = rec {
crateName = "rusttype";
version = "0.8.3";
edition = "2018";
sha256 = "1h5lyr61ffgg0wzp4yhc1fr5y83lzf3is17ixih7n7qhal842qcz";
authors = [
"Dylan Ede <dylanede@googlemail.com>"
"Jeremy Soller <jackpot51@gmail.com>"
"Alex Butler <alexheretic@gmail.com>"
];
dependencies = [
{
name = "approx";
packageId = "approx 0.3.2";
usesDefaultFeatures = false;
}
{
name = "crossbeam-deque";
packageId = "crossbeam-deque 0.7.3";
optional = true;
target = { target, features }: (!(target."arch" == "wasm32"));
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.7.2";
optional = true;
target = { target, features }: (!(target."arch" == "wasm32"));
}
{
name = "linked-hash-map";
packageId = "linked-hash-map";
optional = true;
}
{
name = "num_cpus";
packageId = "num_cpus";
optional = true;
target = { target, features }: (!(target."arch" == "wasm32"));
}
{
name = "ordered-float";
packageId = "ordered-float 1.1.0";
usesDefaultFeatures = false;
}
{
name = "rustc-hash";
packageId = "rustc-hash";
optional = true;
}
{
name = "stb_truetype";
packageId = "stb_truetype";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" "has-atomics" ];
"gpu_cache" = [ "std" "linked-hash-map" "rustc-hash" "crossbeam-deque" "crossbeam-utils" "num_cpus" ];
"libm-math" = [ "libm" "stb_truetype/libm" ];
"std" = [ "has-atomics" "stb_truetype/std" ];
};
resolvedDefaultFeatures = [ "crossbeam-deque" "crossbeam-utils" "default" "gpu_cache" "has-atomics" "linked-hash-map" "num_cpus" "rustc-hash" "std" ];
};
"rusttype 0.9.2" = rec {
crateName = "rusttype";
version = "0.9.2";
edition = "2018";
sha256 = "0ngcwn7d2dybjrylga3gpxm3k3mcw3m405hcp32iignhvrx74z6w";
authors = [
"Dylan Ede <dylanede@googlemail.com>"
"Jeremy Soller <jackpot51@gmail.com>"
"Alex Butler <alexheretic@gmail.com>"
];
dependencies = [
{
name = "ab_glyph_rasterizer";
packageId = "ab_glyph_rasterizer";
usesDefaultFeatures = false;
}
{
name = "owned_ttf_parser";
packageId = "owned_ttf_parser 0.6.0";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
"gpu_cache" = [ "std" "linked-hash-map" "rustc-hash" "crossbeam-deque" "crossbeam-utils" "num_cpus" ];
"libm-math" = [ "libm" "ab_glyph_rasterizer/libm" ];
"std" = [ "has-atomics" "owned_ttf_parser/default" "ab_glyph_rasterizer/default" ];
};
resolvedDefaultFeatures = [ "default" "has-atomics" "std" ];
};
"rusty-xinput" = rec {
crateName = "rusty-xinput";
version = "1.2.0";
edition = "2015";
sha256 = "1fxk5lkkjk09k8k3az2lli4kkr6zr6mq9871rhacmf9fqd5nbanj";
libName = "rusty_xinput";
authors = [
"Lokathor <zefria@gmail.com>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "log";
packageId = "log";
usesDefaultFeatures = false;
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "libloaderapi" "xinput" "winerror" ];
}
];
};
"ryu" = rec {
crateName = "ryu";
version = "1.0.5";
edition = "2018";
sha256 = "0vpqv1dj7fksa6hm3zpk5rbsjs0ifbfy7xwzsyyil0rx37a03lvi";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
features = { };
};
"same-file" = rec {
crateName = "same-file";
version = "1.0.6";
edition = "2018";
sha256 = "00h5j1w87dmhnvbv9l8bic3y7xxsnjmssvifw2ayvgx9mb1ivz4k";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "winapi-util";
packageId = "winapi-util";
target = { target, features }: target."windows";
}
];
};
"scan_fmt" = rec {
crateName = "scan_fmt";
version = "0.2.5";
edition = "2015";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://github.com/Imberflur/scan_fmt";
rev = "5f9e8eed73e93e8d19fa864d76e75bb4984cffe7";
sha256 = "1g36jm3rii6iziqpddszhdk6bqpa7jzsbmrlfzmsmi16zcisrvid";
};
authors = [
"wlentz"
];
dependencies = [
{
name = "regex";
packageId = "regex";
optional = true;
}
];
features = {
"default" = [ "regex" ];
};
resolvedDefaultFeatures = [ "default" "regex" ];
};
"scoped-tls" = rec {
crateName = "scoped-tls";
version = "1.0.0";
edition = "2015";
sha256 = "1hj8lifzvivdb1z02lfnzkshpvk85nkgzxsy2hc0zky9wf894spa";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
};
"scopeguard" = rec {
crateName = "scopeguard";
version = "1.1.0";
edition = "2015";
sha256 = "1kbqm85v43rq92vx7hfiay6pmcga03vrjbbfwqpyj3pwsg3b16nj";
authors = [
"bluss"
];
features = {
"default" = [ "use_std" ];
};
};
"sct" = rec {
crateName = "sct";
version = "0.6.0";
edition = "2018";
sha256 = "0g4dz7las43kcpi9vqv9c6l1afjkdv3g3w3s7d2w7a7w77wjl173";
authors = [
"Joseph Birr-Pixton <jpixton@gmail.com>"
];
dependencies = [
{
name = "ring";
packageId = "ring";
}
{
name = "untrusted";
packageId = "untrusted";
}
];
};
"sdl2" = rec {
crateName = "sdl2";
version = "0.32.2";
edition = "2015";
sha256 = "0yyx7sl08y241ddyyfkk9ysxbxllfdpwny6s37vza0z365ra0lfh";
libPath = "src/sdl2/lib.rs";
authors = [
"Tony Aldridge <tony@angry-lawyer.com>"
"Cobrand <cobrandw@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "libc";
packageId = "libc";
}
{
name = "num";
packageId = "num 0.1.42";
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand 0.6.5";
}
{
name = "sdl2-sys";
packageId = "sdl2-sys";
}
];
features = {
"bundled" = [ "sdl2-sys/bundled" ];
"gfx" = [ "c_vec" "sdl2-sys/gfx" ];
"image" = [ "sdl2-sys/image" ];
"mixer" = [ "sdl2-sys/mixer" ];
"static-link" = [ "sdl2-sys/static-link" ];
"ttf" = [ "sdl2-sys/ttf" ];
"use-bindgen" = [ "sdl2-sys/use-bindgen" ];
"use-pkgconfig" = [ "sdl2-sys/use-pkgconfig" ];
"use_mac_framework" = [ "sdl2-sys/use_mac_framework" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"sdl2-sys" = rec {
crateName = "sdl2-sys";
version = "0.32.6";
edition = "2018";
sha256 = "11kz2bqkpcywpyd5hyqflbszpgdmh64zxb61wibpsabx0wji3rrl";
libName = "sdl2_sys";
authors = [
"Tony Aldridge <tony@angry-lawyer.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
buildDependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
];
features = {
"bundled" = [ "cmake" "tar" "flate2" "unidiff" ];
"use-bindgen" = [ "bindgen" ];
"use-pkgconfig" = [ "pkg-config" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"semver" = rec {
crateName = "semver";
version = "0.9.0";
edition = "2015";
sha256 = "00q4lkcj0rrgbhviv9sd4p6qmdsipkwkbra7rh11jrhq5kpvjzhx";
authors = [
"Steve Klabnik <steve@steveklabnik.com>"
"The Rust Project Developers"
];
dependencies = [
{
name = "semver-parser";
packageId = "semver-parser";
}
];
features = {
"ci" = [ "serde" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"semver-parser" = rec {
crateName = "semver-parser";
version = "0.7.0";
edition = "2015";
sha256 = "18vhypw6zgccnrlm5ps1pwa0khz7ry927iznpr88b87cagr1v2iq";
authors = [
"Steve Klabnik <steve@steveklabnik.com>"
];
};
"serde" = rec {
crateName = "serde";
version = "1.0.118";
edition = "2015";
sha256 = "0028kv3dh3ix5g7jfws22zb9hcqq4cnpwn2lnlpam1wxhmil5ih6";
authors = [
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "serde_derive";
packageId = "serde_derive";
optional = true;
}
];
devDependencies = [
{
name = "serde_derive";
packageId = "serde_derive";
}
];
features = {
"default" = [ "std" ];
"derive" = [ "serde_derive" ];
};
resolvedDefaultFeatures = [ "default" "derive" "rc" "serde_derive" "std" ];
};
"serde-bench" = rec {
crateName = "serde-bench";
version = "0.0.7";
edition = "2015";
sha256 = "1za3lbp8y7g9n35lc9yl9kyl64d4k5id4cvfc4jsralzwy3xlcyp";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "serde";
packageId = "serde";
}
];
};
"serde_bytes" = rec {
crateName = "serde_bytes";
version = "0.11.5";
edition = "2018";
sha256 = "1fcb6sw8wkrj4ylm118wkb31hw124nkjnqyhbgqnd8w85zfhgbhn";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde/alloc" ];
"default" = [ "std" ];
"std" = [ "serde/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"serde_cbor" = rec {
crateName = "serde_cbor";
version = "0.11.1";
edition = "2018";
sha256 = "08m62mfqjnpa543kd9r9cyxlqc6y73avhsl3n8svgs4h5zxaq60y";
authors = [
"Pyfisch <pyfisch@gmail.com>"
"Steven Fackler <sfackler@gmail.com>"
];
dependencies = [
{
name = "half";
packageId = "half";
}
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde/alloc" ];
"default" = [ "std" ];
"std" = [ "serde/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"serde_derive" = rec {
crateName = "serde_derive";
version = "1.0.118";
edition = "2015";
sha256 = "1pvj4v8k107ichsnm7jgm9kxyi2lf971x52bmxhm5mcwd4k3akf8";
procMacro = true;
authors = [
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "visit" ];
}
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"serde_json" = rec {
crateName = "serde_json";
version = "1.0.57";
edition = "2018";
sha256 = "0p371b4618w5fb7isji9xmjhsaxjslgxa2gv8lkyq4imn6ysqkhn";
authors = [
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "itoa";
packageId = "itoa";
usesDefaultFeatures = false;
}
{
name = "ryu";
packageId = "ryu";
}
{
name = "serde";
packageId = "serde";
usesDefaultFeatures = false;
}
];
features = {
"alloc" = [ "serde/alloc" ];
"default" = [ "std" ];
"preserve_order" = [ "indexmap" ];
"std" = [ "serde/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"serde_qs" = rec {
crateName = "serde_qs";
version = "0.5.2";
edition = "2015";
sha256 = "1q83k6p21vccr5jj25xmfrxnz8gggrby2867kblidgkbk52fygnl";
authors = [
"Sam Scott <me@samjs.co.uk>"
];
dependencies = [
{
name = "data-encoding";
packageId = "data-encoding";
}
{
name = "error-chain";
packageId = "error-chain";
}
{
name = "percent-encoding";
packageId = "percent-encoding 1.0.1";
}
{
name = "serde";
packageId = "serde";
}
];
features = {
"actix" = [ "actix-web" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"serde_repr" = rec {
crateName = "serde_repr";
version = "0.1.6";
edition = "2018";
sha256 = "0xhwamlb1ax3w87mpq0awcphwchprh93y1hb47rm3c0p3favgiid";
procMacro = true;
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
}
];
};
"sha1" = rec {
crateName = "sha1";
version = "0.6.0";
edition = "2015";
sha256 = "03gs2q4m67rn2p8xcdfxhip6mpgahdwm12bnb3vh90ahv9grhy95";
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>"
];
features = { };
};
"sharded-slab" = rec {
crateName = "sharded-slab";
version = "0.0.9";
edition = "2018";
sha256 = "0gpz2zmc73w0qlhypqv1b4irw56yp7lfxwirahmb9dbg2vss7m86";
authors = [
"Eliza Weisman <eliza@buoyant.io>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
];
};
"shared_library" = rec {
crateName = "shared_library";
version = "0.1.9";
edition = "2015";
sha256 = "04fs37kdak051hm524a360978g58ayrcarjsbf54vqps5c7px7js";
authors = [
"Pierre Krieger <pierre.krieger1708@gmail.com>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "libc";
packageId = "libc";
}
];
};
"shellexpand" = rec {
crateName = "shellexpand";
version = "2.0.0";
edition = "2015";
sha256 = "00y6kf5nvrpmbsyyxic1r1w4yqr0lkz5dxjnsdj99bws58k24aws";
authors = [
"Vladimir Matveev <vmatveev@citrine.cc>"
];
dependencies = [
{
name = "dirs";
packageId = "dirs";
}
];
};
"shlex" = rec {
crateName = "shlex";
version = "0.1.1";
edition = "2015";
sha256 = "1lmv6san7g8dv6jdfp14m7bdczq9ss7j7bgsfqyqjc3jnjfippvz";
authors = [
"comex <comexk@gmail.com>"
];
};
"shred" = rec {
crateName = "shred";
version = "0.10.2";
edition = "2018";
sha256 = "0v81g5vwa8bwqm388hiinb6966nr8dcqp1zq42nr9b37wqvq5w65";
authors = [
"torkleyy <torkleyy@gmail.com>"
];
dependencies = [
{
name = "arrayvec";
packageId = "arrayvec 0.5.1";
}
{
name = "hashbrown";
packageId = "hashbrown 0.7.2";
}
{
name = "mopa";
packageId = "mopa";
}
{
name = "rayon";
packageId = "rayon";
optional = true;
}
{
name = "shred-derive";
packageId = "shred-derive";
optional = true;
}
{
name = "smallvec";
packageId = "smallvec 1.4.2";
}
{
name = "tynm";
packageId = "tynm";
}
];
devDependencies = [
{
name = "shred-derive";
packageId = "shred-derive";
}
];
features = {
"default" = [ "parallel" "shred-derive" ];
"parallel" = [ "rayon" ];
};
resolvedDefaultFeatures = [ "parallel" "rayon" "shred-derive" ];
};
"shred-derive" = rec {
crateName = "shred-derive";
version = "0.6.2";
edition = "2015";
sha256 = "1pvzfjhii1chn6b07mfi9bvxpybcpnasmsxx3l4vy7vmya071wx1";
procMacro = true;
authors = [
"torkleyy"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
}
];
};
"shrev" = rec {
crateName = "shrev";
version = "1.1.1";
edition = "2018";
sha256 = "0zs3zw5inn151jyxh17szbz91zd7nx9ry1jbbdrrvbq3gq0jwxdm";
authors = [
"Simon Rönnberg <seamonr@gmail.com>"
"torkleyy <torkleyy@gmail.com>"
];
};
"signal-hook" = rec {
crateName = "signal-hook";
version = "0.1.16";
edition = "2018";
sha256 = "1v85mgs4dbgw0765b9nx0jd8lamv55425aawjbhxz6cb870hhib0";
authors = [
"Michal 'vorner' Vaner <vorner@vorner.cz>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "mio";
packageId = "mio 0.7.0";
rename = "mio_0_7";
optional = true;
features = [ "os-util" ];
}
{
name = "signal-hook-registry";
packageId = "signal-hook-registry";
}
];
devDependencies = [
{
name = "mio";
packageId = "mio 0.7.0";
features = [ "os-poll" "os-util" ];
}
];
features = {
"mio-0_7-support" = [ "mio_0_7" ];
"mio-support" = [ "mio" ];
"tokio-support" = [ "futures" "mio-support" "tokio-reactor" ];
};
resolvedDefaultFeatures = [ "mio-0_7-support" "mio_0_7" ];
};
"signal-hook-registry" = rec {
crateName = "signal-hook-registry";
version = "1.2.1";
edition = "2015";
sha256 = "0dgh2l7diyhkf74jjyqz1jfsyqsvxgssls30cix6b7jkph823qd3";
authors = [
"Michal 'vorner' Vaner <vorner@vorner.cz>"
"Masaki Hara <ackie.h.gmai@gmail.com>"
];
dependencies = [
{
name = "arc-swap";
packageId = "arc-swap";
}
{
name = "libc";
packageId = "libc";
}
];
};
"slab" = rec {
crateName = "slab";
version = "0.4.2";
edition = "2015";
sha256 = "1y59xsa27jk84sxzswjk60xcjf8b4fm5960jwpznrrcmasyva4f1";
authors = [
"Carl Lerche <me@carllerche.com>"
];
};
"slotmap" = rec {
crateName = "slotmap";
version = "0.4.0";
edition = "2018";
sha256 = "1kajcjwbs1amxripbrp6ash4q5nf7rlq7mv4wib7j94gvf138sn4";
authors = [
"Orson Peters <orsonpeters@gmail.com>"
];
dependencies = [
{
name = "serde";
packageId = "serde";
optional = true;
features = [ "derive" ];
}
];
devDependencies = [
{
name = "serde";
packageId = "serde";
}
];
features = { };
resolvedDefaultFeatures = [ "serde" "unstable" ];
};
"smallvec 0.6.13" = rec {
crateName = "smallvec";
version = "0.6.13";
edition = "2015";
sha256 = "1dl219vnfkmsfx28lm3f83lyw24zap6fdsli6rg8nnp1aa67bc7p";
libPath = "lib.rs";
authors = [
"Simon Sapin <simon.sapin@exyr.org>"
];
dependencies = [
{
name = "maybe-uninit";
packageId = "maybe-uninit";
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"smallvec 1.4.2" = rec {
crateName = "smallvec";
version = "1.4.2";
edition = "2018";
sha256 = "0lp2ax6hfbcsqa92xkdz8vnlfc0fhpqczv62l64kvgsbp2b7dvpv";
authors = [
"The Servo Project Developers"
];
features = { };
};
"smithay-client-toolkit 0.11.0" = rec {
crateName = "smithay-client-toolkit";
version = "0.11.0";
edition = "2018";
sha256 = "0cg7s7bvyvk6k7rr9bsn0ll6i0ymmlsqn4cj5r7i8vl3y3racban";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "dlib";
packageId = "dlib";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "log";
packageId = "log";
}
{
name = "memmap";
packageId = "memmap";
}
{
name = "nix";
packageId = "nix 0.18.0";
}
{
name = "wayland-client";
packageId = "wayland-client 0.27.0";
}
{
name = "wayland-cursor";
packageId = "wayland-cursor 0.27.0";
}
{
name = "wayland-protocols";
packageId = "wayland-protocols 0.27.0";
features = [ "client" "unstable_protocols" ];
}
];
features = {
"default" = [ "frames" "calloop" ];
"frames" = [ "andrew" ];
};
};
"smithay-client-toolkit 0.12.0" = rec {
crateName = "smithay-client-toolkit";
version = "0.12.0";
edition = "2018";
sha256 = "1xspvq0sdpp20n9qyfjwc733iikrh37mzsxfnpwlkbzqvrvw1i9f";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "andrew";
packageId = "andrew";
optional = true;
}
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "calloop";
packageId = "calloop";
optional = true;
}
{
name = "dlib";
packageId = "dlib";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "log";
packageId = "log";
}
{
name = "memmap";
packageId = "memmap";
}
{
name = "nix";
packageId = "nix 0.18.0";
}
{
name = "wayland-client";
packageId = "wayland-client 0.28.1";
}
{
name = "wayland-cursor";
packageId = "wayland-cursor 0.28.1";
}
{
name = "wayland-protocols";
packageId = "wayland-protocols 0.28.1";
features = [ "client" "unstable_protocols" ];
}
];
features = {
"default" = [ "frames" "calloop" ];
"frames" = [ "andrew" ];
};
resolvedDefaultFeatures = [ "andrew" "calloop" "default" "frames" ];
};
"smithay-clipboard 0.5.2" = rec {
crateName = "smithay-clipboard";
version = "0.5.2";
edition = "2018";
sha256 = "1m9lh21fhw9qp6fh9x6y2mrl0bzjj491lwvvfs5r6wmjm58dpsdr";
authors = [
"Kirill Chibisov <contact@kchibisov.com>"
"Victor Berger <victor.berger@m4x.org>"
"Lucas Timmins <timmins.s.lucas@gmail.com>"
];
dependencies = [
{
name = "smithay-client-toolkit";
packageId = "smithay-client-toolkit 0.11.0";
rename = "sctk";
usesDefaultFeatures = false;
}
{
name = "wayland-client";
packageId = "wayland-client 0.27.0";
features = [ "dlopen" ];
}
];
devDependencies = [
{
name = "smithay-client-toolkit";
packageId = "smithay-client-toolkit 0.11.0";
}
];
};
"smithay-clipboard 0.6.1" = rec {
crateName = "smithay-clipboard";
version = "0.6.1";
edition = "2018";
sha256 = "0hncg8a57riyr6yirbiy0181xvkmjn2ch944ndvf4afrh0sfq3kf";
authors = [
"Kirill Chibisov <contact@kchibisov.com>"
"Victor Berger <victor.berger@m4x.org>"
"Lucas Timmins <timmins.s.lucas@gmail.com>"
];
dependencies = [
{
name = "smithay-client-toolkit";
packageId = "smithay-client-toolkit 0.12.0";
rename = "sctk";
usesDefaultFeatures = false;
}
{
name = "wayland-client";
packageId = "wayland-client 0.28.1";
features = [ "dlopen" ];
}
];
devDependencies = [
{
name = "smithay-client-toolkit";
packageId = "smithay-client-toolkit 0.12.0";
}
];
};
"socket2" = rec {
crateName = "socket2";
version = "0.3.15";
edition = "2018";
sha256 = "0i0wkamjq7d8v4dbl6fd7phmmlr1lbkyvrsgdw4yq141bkf71ymi";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
target = { target, features }: (target."unix" || (target."os" == "redox"));
}
{
name = "libc";
packageId = "libc";
target = { target, features }: (target."unix" || (target."os" == "redox"));
}
{
name = "redox_syscall";
packageId = "redox_syscall";
target = { target, features }: (target."os" == "redox");
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "handleapi" "ws2def" "ws2ipdef" "ws2tcpip" "minwindef" ];
}
];
features = { };
};
"specs" = rec {
crateName = "specs";
version = "0.16.1";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://github.com/amethyst/specs.git";
rev = "7a2e348ab2223818bad487695c66c43db88050a5";
sha256 = "1z7gjiq7zirg9az3ly1y2ghi5m7s3x1bp35gw5x0cyv50fsi3pjq";
};
authors = [
"slide-rs hackers"
];
dependencies = [
{
name = "crossbeam-queue";
packageId = "crossbeam-queue 0.2.3";
}
{
name = "hashbrown";
packageId = "hashbrown 0.7.2";
}
{
name = "hibitset";
packageId = "hibitset";
usesDefaultFeatures = false;
}
{
name = "log";
packageId = "log";
}
{
name = "rayon";
packageId = "rayon";
optional = true;
}
{
name = "serde";
packageId = "serde";
optional = true;
features = [ "serde_derive" ];
}
{
name = "shred";
packageId = "shred";
usesDefaultFeatures = false;
}
{
name = "shrev";
packageId = "shrev";
}
{
name = "tuple_utils";
packageId = "tuple_utils";
}
];
devDependencies = [
{
name = "shred";
packageId = "shred";
usesDefaultFeatures = false;
features = [ "shred-derive" ];
}
];
features = {
"default" = [ "parallel" ];
"derive" = [ "shred-derive" "specs-derive" ];
"parallel" = [ "rayon" "shred/parallel" "hibitset/parallel" ];
"shred-derive" = [ "shred/shred-derive" ];
"stdweb" = [ "uuid/stdweb" ];
"uuid_entity" = [ "uuid" "serde" ];
"wasm-bindgen" = [ "uuid/wasm-bindgen" ];
};
resolvedDefaultFeatures = [ "default" "parallel" "rayon" "serde" "shred-derive" "storage-event-control" ];
};
"specs-idvs" = rec {
crateName = "specs-idvs";
version = "0.1.0";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://gitlab.com/veloren/specs-idvs.git";
rev = "fcb0b2306b571f62f9f85d89e79e087454d95efd";
sha256 = "00w4kc60d7mjb5gbkcxrxzarshmhf4idqm3sk8335f7s3pn9q0s5";
};
authors = [
"Acrimon <joel.wejdenstal@gmail.com>"
];
dependencies = [
{
name = "specs";
packageId = "specs";
}
];
};
"spin" = rec {
crateName = "spin";
version = "0.5.2";
edition = "2015";
sha256 = "0b84m6dbzrwf2kxylnw82d3dr8w06av7rfkr8s85fb5f43rwyqvf";
authors = [
"Mathijs van de Nes <git@mathijs.vd-nes.nl>"
"John Ericson <git@JohnEricson.me>"
];
};
"spin_sleep" = rec {
crateName = "spin_sleep";
version = "1.0.0";
edition = "2018";
sha256 = "1ixcab0amdr1a9yakxzi3h6za516vnqg0aiwf69f2crqvhdi161a";
authors = [
"Alex Butler <alexheretic@gmail.com>"
];
dependencies = [
{
name = "once_cell";
packageId = "once_cell";
target = { target, features }: target."windows";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "minwindef" "mmsystem" "timeapi" ];
}
];
features = { };
};
"static_assertions" = rec {
crateName = "static_assertions";
version = "1.1.0";
edition = "2015";
sha256 = "0gsl6xmw10gvn3zs1rv99laj5ig7ylffnh71f9l34js4nr4r7sx2";
authors = [
"Nikolai Vazquez"
];
features = { };
};
"stb_truetype" = rec {
crateName = "stb_truetype";
version = "0.3.1";
edition = "2018";
sha256 = "0lgvnh3ma6cz811bk8imj45djz76zs47b8327sgnmik2x03nnyzp";
authors = [
"Dylan Ede <dylanede@googlemail.com>"
"Alex Butler <alexheretic@gmail.com>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "std" ];
};
"stdweb 0.1.3" = rec {
crateName = "stdweb";
version = "0.1.3";
edition = "2015";
sha256 = "0gjk7ch31a3kgdc39kj4zqinf10yqaf717wanh9kwwbbwg430m7g";
authors = [
"Jan Bujak <j@exia.io>"
];
features = {
"default" = [ "serde" "serde_json" ];
"dev" = [ "serde" "serde_json" "clippy" ];
"serde-support" = [ "serde" "serde_json" ];
};
};
"stdweb 0.4.20" = rec {
crateName = "stdweb";
version = "0.4.20";
edition = "2015";
sha256 = "1md14n9rzxzdskz3hpgln8vxfwqsw2cswc0f5nslh4r82rmlj8nh";
authors = [
"Jan Bujak <j@exia.io>"
];
dependencies = [
{
name = "discard";
packageId = "discard";
}
{
name = "serde";
packageId = "serde";
optional = true;
}
{
name = "serde_json";
packageId = "serde_json";
optional = true;
}
{
name = "stdweb-derive";
packageId = "stdweb-derive";
}
{
name = "stdweb-internal-macros";
packageId = "stdweb-internal-macros";
}
{
name = "stdweb-internal-runtime";
packageId = "stdweb-internal-runtime";
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
target = { target, features }: ((target."arch" == "wasm32") && (target."vendor" == "unknown") && (target."os" == "unknown") && (!target."cargo_web"));
}
];
buildDependencies = [
{
name = "rustc_version";
packageId = "rustc_version";
}
];
devDependencies = [
{
name = "serde_json";
packageId = "serde_json";
}
];
features = {
"default" = [ "serde" "serde_json" ];
"experimental_features_which_may_break_on_minor_version_bumps" = [ "futures-support" ];
"futures-support" = [ "futures-core-preview" "futures-channel-preview" "futures-util-preview" "futures-executor-preview" ];
};
resolvedDefaultFeatures = [ "default" "serde" "serde_json" ];
};
"stdweb-derive" = rec {
crateName = "stdweb-derive";
version = "0.5.3";
edition = "2015";
sha256 = "1vsh7g0gaxn4kxqq3knhymdn02p2pfxmnd2j0vplpj6c1yj60yn8";
procMacro = true;
authors = [
"Jan Bujak <j@exia.io>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "syn";
packageId = "syn 1.0.54";
usesDefaultFeatures = false;
features = [ "derive" "parsing" "printing" ];
}
];
};
"stdweb-internal-macros" = rec {
crateName = "stdweb-internal-macros";
version = "0.2.9";
edition = "2015";
sha256 = "049fq8fl5ny9l5if2qv7kxwng7g6ns95h4fbm3zx360dmpv5zyjq";
procMacro = true;
authors = [
"Jan Bujak <j@exia.io>"
];
dependencies = [
{
name = "base-x";
packageId = "base-x";
}
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "sha1";
packageId = "sha1";
}
{
name = "syn";
packageId = "syn 1.0.54";
usesDefaultFeatures = false;
features = [ "full" "parsing" "printing" "clone-impls" ];
}
];
};
"stdweb-internal-runtime" = rec {
crateName = "stdweb-internal-runtime";
version = "0.1.5";
edition = "2015";
sha256 = "1h0nkppb4r8dbrbms2hw9n5xdcs392m0r5hj3b6lsx3h6fx02dr1";
authors = [
"Jan Bujak <j@exia.io>"
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"str-buf" = rec {
crateName = "str-buf";
version = "1.0.5";
edition = "2018";
sha256 = "0shprf95kywspn4vbn706n8kvh6n473c5sffmdbsz77zni1kcjnl";
authors = [
"Douman <douman@gmx.se>"
];
};
"string" = rec {
crateName = "string";
version = "0.2.1";
edition = "2015";
sha256 = "0vaxz85ja52fn66akgvggb29wqa5bpj3y38syykpr1pbrjzi8hfj";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes 0.4.12";
optional = true;
}
];
features = {
"default" = [ "bytes" ];
};
resolvedDefaultFeatures = [ "bytes" "default" ];
};
"strsim 0.8.0" = rec {
crateName = "strsim";
version = "0.8.0";
edition = "2015";
sha256 = "0sjsm7hrvjdifz661pjxq5w4hf190hx53fra8dfvamacvff139cf";
authors = [
"Danny Guo <dannyguo91@gmail.com>"
];
};
"strsim 0.9.3" = rec {
crateName = "strsim";
version = "0.9.3";
edition = "2015";
sha256 = "0k497pv882qn3q977ckznm13vxx927g8s1swvcv68j3c1pccwik4";
authors = [
"Danny Guo <dannyguo91@gmail.com>"
];
};
"structopt" = rec {
crateName = "structopt";
version = "0.3.18";
edition = "2018";
sha256 = "10ifqwc7bzlb6zlylskmlcqjqq7190lrnr8m6yhhhzvx09hn8gx3";
authors = [
"Guillaume Pinot <texitoi@texitoi.eu>"
"others"
];
dependencies = [
{
name = "clap";
packageId = "clap";
usesDefaultFeatures = false;
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "structopt-derive";
packageId = "structopt-derive";
}
];
features = {
"color" = [ "clap/color" ];
"debug" = [ "clap/debug" ];
"default" = [ "clap/default" ];
"doc" = [ "clap/doc" ];
"lints" = [ "clap/lints" ];
"no_cargo" = [ "clap/no_cargo" ];
"paw" = [ "structopt-derive/paw" "paw_dep" ];
"suggestions" = [ "clap/suggestions" ];
"wrap_help" = [ "clap/wrap_help" ];
"yaml" = [ "clap/yaml" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"structopt-derive" = rec {
crateName = "structopt-derive";
version = "0.4.11";
edition = "2018";
sha256 = "1j95na20zqvs24fxz6gfkg38j0hjqm7z2n2xslylnahj5187fbn9";
procMacro = true;
authors = [
"Guillaume Pinot <texitoi@texitoi.eu>"
];
dependencies = [
{
name = "heck";
packageId = "heck";
}
{
name = "proc-macro-error";
packageId = "proc-macro-error";
}
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "full" ];
}
];
features = { };
};
"subtle" = rec {
crateName = "subtle";
version = "2.3.0";
edition = "2015";
sha256 = "1zg727iw7wh4h1fjljm6yancz75i41rg352y2n7r05991i8kygrl";
authors = [
"Isis Lovecruft <isis@patternsinthevoid.net>"
"Henry de Valence <hdevalence@hdevalence.ca>"
];
features = {
"default" = [ "std" "i128" ];
};
};
"sum_type" = rec {
crateName = "sum_type";
version = "0.2.0";
edition = "2015";
sha256 = "05ba7qldsrl0g60bcfm2pgl0iqi7crvpqnj43s4qwz1wkw64lnys";
authors = [
"Michael Bryan <michaelfbryan@gmail.com>"
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"svg_fmt" = rec {
crateName = "svg_fmt";
version = "0.4.1";
edition = "2018";
sha256 = "1qjhciyls66jw9p4m7zy20ziqp39z9h44l0wzjfjxvhjyhaxzccg";
authors = [
"Nicolas Silva <nical@fastmail.com>"
];
};
"syn 0.15.44" = rec {
crateName = "syn";
version = "0.15.44";
edition = "2015";
sha256 = "1id5g6x6zihv3j7hwrw3m1jp636bg8dpi671r7zy3jvpkavb794w";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 0.4.30";
usesDefaultFeatures = false;
}
{
name = "quote";
packageId = "quote 0.6.13";
optional = true;
usesDefaultFeatures = false;
}
{
name = "unicode-xid";
packageId = "unicode-xid 0.1.0";
}
];
features = {
"default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
"printing" = [ "quote" ];
"proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ];
};
resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "full" "parsing" "printing" "proc-macro" "quote" ];
};
"syn 1.0.54" = rec {
crateName = "syn";
version = "1.0.54";
edition = "2018";
sha256 = "0i3z22zvzzsmrsbhi0ivpmv71fgxkcywjnf3alid8srxlrbzjals";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
usesDefaultFeatures = false;
}
{
name = "quote";
packageId = "quote 1.0.7";
optional = true;
usesDefaultFeatures = false;
}
{
name = "unicode-xid";
packageId = "unicode-xid 0.2.1";
}
];
features = {
"default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
"printing" = [ "quote" ];
"proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ];
"test" = [ "syn-test-suite/all-features" ];
};
resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "fold" "full" "parsing" "printing" "proc-macro" "quote" "visit" "visit-mut" ];
};
"take_mut" = rec {
crateName = "take_mut";
version = "0.2.2";
edition = "2015";
sha256 = "0q2d7w6nd5bl7bay5csq065sjg8fw0jcx6hl1983cpzf25fh0r7p";
authors = [
"Sgeo <sgeoster@gmail.com>"
];
};
"tar" = rec {
crateName = "tar";
version = "0.4.30";
edition = "2018";
sha256 = "1452rf0y7jf4apyngvbfpszpik7a9z7gl9y5jbhl76kyanvrg6a8";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "filetime";
packageId = "filetime";
}
{
name = "libc";
packageId = "libc";
target = { target, features }: target."unix";
}
{
name = "redox_syscall";
packageId = "redox_syscall";
target = { target, features }: (target."os" == "redox");
}
{
name = "xattr";
packageId = "xattr";
optional = true;
target = { target, features }: target."unix";
}
];
features = {
"default" = [ "xattr" ];
};
resolvedDefaultFeatures = [ "default" "xattr" ];
};
"target-lexicon" = rec {
crateName = "target-lexicon";
version = "0.10.0";
edition = "2018";
sha256 = "17diw9c3d1vb5rmwwk2ghsyhfs0gj5jm78hrwxxhmd67vhw743mb";
authors = [
"Dan Gohman <sunfish@mozilla.com>"
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"termcolor" = rec {
crateName = "termcolor";
version = "1.1.2";
edition = "2018";
sha256 = "1x65i1ny4m6z1by62ra6wdcrd557p2ysm866x0pg60zby2cxizid";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "winapi-util";
packageId = "winapi-util";
target = { target, features }: target."windows";
}
];
};
"textwrap" = rec {
crateName = "textwrap";
version = "0.11.0";
edition = "2015";
sha256 = "0q5hky03ik3y50s9sz25r438bc4nwhqc6dqwynv4wylc807n29nk";
authors = [
"Martin Geisler <martin@geisler.net>"
];
dependencies = [
{
name = "unicode-width";
packageId = "unicode-width";
}
];
};
"thiserror" = rec {
crateName = "thiserror";
version = "1.0.20";
edition = "2018";
sha256 = "020d7pfq7vg2iw1bbilnyq764zy35ncg2syn9a7vgk6qriqd1zbx";
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "thiserror-impl";
packageId = "thiserror-impl";
}
];
};
"thiserror-impl" = rec {
crateName = "thiserror-impl";
version = "1.0.20";
edition = "2018";
sha256 = "14qphjwa68sfjk3404iwv6hh8kvk6vmcwan9589sqqrhyw9gr05x";
procMacro = true;
authors = [
"David Tolnay <dtolnay@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
}
];
};
"thread_local" = rec {
crateName = "thread_local";
version = "1.0.1";
edition = "2015";
sha256 = "054vlrr1vsdy1h4b7n99mr24pnj8928ig9qwzg36wnkld4dns36l";
authors = [
"Amanieu d'Antras <amanieu@gmail.com>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
];
};
"tide" = rec {
crateName = "tide";
version = "0.6.0";
edition = "2018";
sha256 = "0fdply7b4576xv9m2kh69xqgzyzl9zngw3ixf097j45f928cj6g6";
authors = [
"Aaron Turon <aturon@mozilla.com>"
"Yoshua Wuyts <yoshuawuyts@gmail.com>"
];
dependencies = [
{
name = "async-std";
packageId = "async-std";
features = [ "unstable" ];
}
{
name = "cookie";
packageId = "cookie";
features = [ "percent-encode" ];
}
{
name = "futures";
packageId = "futures 0.3.5";
}
{
name = "http";
packageId = "http";
}
{
name = "http-service";
packageId = "http-service";
}
{
name = "http-service-hyper";
packageId = "http-service-hyper";
optional = true;
}
{
name = "log";
packageId = "log";
}
{
name = "mime";
packageId = "mime";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "route-recognizer";
packageId = "route-recognizer";
}
{
name = "serde";
packageId = "serde";
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "serde_qs";
packageId = "serde_qs";
}
];
devDependencies = [
{
name = "async-std";
packageId = "async-std";
features = [ "unstable" "attributes" ];
}
{
name = "mime";
packageId = "mime";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
];
features = {
"default" = [ "hyper-server" ];
"docs" = [ "unstable" ];
"hyper-server" = [ "http-service-hyper" ];
};
resolvedDefaultFeatures = [ "default" "http-service-hyper" "hyper-server" ];
};
"time" = rec {
crateName = "time";
version = "0.1.44";
edition = "2015";
sha256 = "0m9jwy2pcmk232r3b9r80fs12mkckfjffjha4qfaxcdq9a8ydfbd";
authors = [
"The Rust Project Developers"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "wasi";
packageId = "wasi 0.10.0+wasi-snapshot-preview1";
target = { target, features }: (target."os" == "wasi");
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "std" "minwinbase" "minwindef" "ntdef" "profileapi" "sysinfoapi" "timezoneapi" ];
}
];
devDependencies = [
{
name = "winapi";
packageId = "winapi 0.3.9";
features = [ "std" "processthreadsapi" "winbase" ];
}
];
};
"tiny_http" = rec {
crateName = "tiny_http";
version = "0.7.0";
edition = "2015";
sha256 = "00if87nqzwf7nzjvvq5vnjfvcpqr76jij65vk51imsndqk1lzkhm";
authors = [
"pierre.krieger1708@gmail.com"
"Corey Farwell <coreyf@rwell.org>"
];
dependencies = [
{
name = "ascii";
packageId = "ascii 1.0.0";
}
{
name = "chrono";
packageId = "chrono";
}
{
name = "chunked_transfer";
packageId = "chunked_transfer";
}
{
name = "log";
packageId = "log";
}
{
name = "url";
packageId = "url 2.1.1";
}
];
features = {
"ssl" = [ "openssl" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"tinytemplate" = rec {
crateName = "tinytemplate";
version = "1.1.0";
edition = "2015";
sha256 = "0by1k1hdz6jgv4ykd0izirwsm6p3qb6s9g1jb4ffqg500ihcfgbd";
authors = [
"Brook Heisler <brookheisler@gmail.com>"
];
dependencies = [
{
name = "serde";
packageId = "serde";
}
{
name = "serde_json";
packageId = "serde_json";
}
];
};
"tinyvec" = rec {
crateName = "tinyvec";
version = "0.3.4";
edition = "2018";
sha256 = "05vijqpckjsnbv07rwadwcny4pkcq7z1wi9ikl7p3ib7s9qy1313";
authors = [
"Lokathor <zefria@gmail.com>"
];
features = { };
resolvedDefaultFeatures = [ "alloc" "default" ];
};
"tokio" = rec {
crateName = "tokio";
version = "0.1.22";
edition = "2015";
sha256 = "1xhaadfmm6m37f79xv5020gc3np9wqza3bq95ymp522qpfsw02as";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes 0.4.12";
optional = true;
}
{
name = "futures";
packageId = "futures 0.1.29";
}
{
name = "mio";
packageId = "mio 0.6.22";
optional = true;
}
{
name = "num_cpus";
packageId = "num_cpus";
optional = true;
}
{
name = "tokio-current-thread";
packageId = "tokio-current-thread";
optional = true;
}
{
name = "tokio-executor";
packageId = "tokio-executor";
optional = true;
}
{
name = "tokio-io";
packageId = "tokio-io";
optional = true;
}
{
name = "tokio-reactor";
packageId = "tokio-reactor";
optional = true;
}
{
name = "tokio-threadpool";
packageId = "tokio-threadpool";
optional = true;
}
{
name = "tokio-timer";
packageId = "tokio-timer";
optional = true;
}
];
devDependencies = [
{
name = "num_cpus";
packageId = "num_cpus";
}
];
features = {
"codec" = [ "io" "tokio-codec" ];
"default" = [ "codec" "fs" "io" "reactor" "rt-full" "sync" "tcp" "timer" "udp" "uds" ];
"experimental-tracing" = [ "tracing-core" ];
"fs" = [ "tokio-fs" ];
"io" = [ "bytes" "tokio-io" ];
"reactor" = [ "io" "mio" "tokio-reactor" ];
"rt-full" = [ "num_cpus" "reactor" "timer" "tokio-current-thread" "tokio-executor" "tokio-threadpool" ];
"sync" = [ "tokio-sync" ];
"tcp" = [ "tokio-tcp" ];
"timer" = [ "tokio-timer" ];
"udp" = [ "tokio-udp" ];
"uds" = [ "tokio-uds" ];
};
resolvedDefaultFeatures = [ "bytes" "io" "mio" "num_cpus" "reactor" "rt-full" "timer" "tokio-current-thread" "tokio-executor" "tokio-io" "tokio-reactor" "tokio-threadpool" "tokio-timer" ];
};
"tokio-buf" = rec {
crateName = "tokio-buf";
version = "0.1.1";
edition = "2015";
sha256 = "0inwrkh8knqy44mr9h2i305zyy4pxhfy90y0gr5rm1akdks21clg";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes 0.4.12";
}
{
name = "either";
packageId = "either";
optional = true;
}
{
name = "futures";
packageId = "futures 0.1.29";
}
];
features = {
"default" = [ "util" ];
"util" = [ "bytes/either" "either" ];
};
resolvedDefaultFeatures = [ "default" "either" "util" ];
};
"tokio-current-thread" = rec {
crateName = "tokio-current-thread";
version = "0.1.7";
edition = "2015";
sha256 = "03p2w316ha0irgzvy37njx9hl71133gcrmrq4801w4rzm0r0xpmi";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "futures";
packageId = "futures 0.1.29";
}
{
name = "tokio-executor";
packageId = "tokio-executor";
}
];
};
"tokio-executor" = rec {
crateName = "tokio-executor";
version = "0.1.10";
edition = "2015";
sha256 = "0w8n78d2vixs1vghqc4wy9w0d1h6qkli51c1yzhzbns88n7inbgv";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.7.2";
}
{
name = "futures";
packageId = "futures 0.1.29";
}
];
};
"tokio-io" = rec {
crateName = "tokio-io";
version = "0.1.13";
edition = "2015";
sha256 = "0x06zyzinans1pn90g6i150lgixijdf1cg8y2gipjd09ms58dz2p";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes 0.4.12";
}
{
name = "futures";
packageId = "futures 0.1.29";
}
{
name = "log";
packageId = "log";
}
];
};
"tokio-reactor" = rec {
crateName = "tokio-reactor";
version = "0.1.12";
edition = "2015";
sha256 = "0l8klnd41q55f3ialzz0lb7s5bfwa38nh86sa9vai2xsqh75kg09";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.7.2";
}
{
name = "futures";
packageId = "futures 0.1.29";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "log";
packageId = "log";
}
{
name = "mio";
packageId = "mio 0.6.22";
}
{
name = "num_cpus";
packageId = "num_cpus";
}
{
name = "parking_lot";
packageId = "parking_lot 0.9.0";
}
{
name = "slab";
packageId = "slab";
}
{
name = "tokio-executor";
packageId = "tokio-executor";
}
{
name = "tokio-io";
packageId = "tokio-io";
}
{
name = "tokio-sync";
packageId = "tokio-sync";
}
];
devDependencies = [
{
name = "num_cpus";
packageId = "num_cpus";
}
];
};
"tokio-sync" = rec {
crateName = "tokio-sync";
version = "0.1.8";
edition = "2015";
sha256 = "1vkxz0y7qf9sshfpxvn506pvxy4vza8piavd8p64y5n85cam1zpd";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "fnv";
packageId = "fnv";
}
{
name = "futures";
packageId = "futures 0.1.29";
}
];
};
"tokio-tcp" = rec {
crateName = "tokio-tcp";
version = "0.1.4";
edition = "2015";
sha256 = "0whzqnkyfym1ipzznibyjl3j9281walq4n0q5xs2xdz3cvniipwq";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "bytes";
packageId = "bytes 0.4.12";
}
{
name = "futures";
packageId = "futures 0.1.29";
}
{
name = "iovec";
packageId = "iovec";
}
{
name = "mio";
packageId = "mio 0.6.22";
}
{
name = "tokio-io";
packageId = "tokio-io";
}
{
name = "tokio-reactor";
packageId = "tokio-reactor";
}
];
};
"tokio-threadpool" = rec {
crateName = "tokio-threadpool";
version = "0.1.18";
edition = "2015";
sha256 = "12azq8jm71b7hdm72pxrgqm2879bn6b0fcdl1s7i2k3qh5jhnwnz";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "crossbeam-deque";
packageId = "crossbeam-deque 0.7.3";
}
{
name = "crossbeam-queue";
packageId = "crossbeam-queue 0.2.3";
}
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.7.2";
}
{
name = "futures";
packageId = "futures 0.1.29";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "log";
packageId = "log";
}
{
name = "num_cpus";
packageId = "num_cpus";
}
{
name = "slab";
packageId = "slab";
}
{
name = "tokio-executor";
packageId = "tokio-executor";
}
];
};
"tokio-timer" = rec {
crateName = "tokio-timer";
version = "0.2.13";
edition = "2015";
sha256 = "15pjjj6daks3sii8p24a509b0dapl2kyk740nwfgz59w64nly14k";
authors = [
"Carl Lerche <me@carllerche.com>"
];
dependencies = [
{
name = "crossbeam-utils";
packageId = "crossbeam-utils 0.7.2";
}
{
name = "futures";
packageId = "futures 0.1.29";
}
{
name = "slab";
packageId = "slab";
}
{
name = "tokio-executor";
packageId = "tokio-executor";
}
];
};
"toml" = rec {
crateName = "toml";
version = "0.5.7";
edition = "2018";
sha256 = "0iannv6pb226h0q9vlqg7hdn36fs146yrahw016n107g1fxlbkvm";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
];
dependencies = [
{
name = "serde";
packageId = "serde";
}
];
features = {
"preserve_order" = [ "indexmap" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"tracing" = rec {
crateName = "tracing";
version = "0.1.21";
edition = "2018";
sha256 = "09wzhxybimp4h6xkc0kcgryd70lvnmyf2q7yaf962crpvd87i65h";
authors = [
"Eliza Weisman <eliza@buoyant.io>"
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "pin-project-lite";
packageId = "pin-project-lite";
}
{
name = "tracing-attributes";
packageId = "tracing-attributes";
optional = true;
}
{
name = "tracing-core";
packageId = "tracing-core";
usesDefaultFeatures = false;
}
];
features = {
"attributes" = [ "tracing-attributes" ];
"default" = [ "std" "attributes" ];
"log-always" = [ "log" ];
"std" = [ "tracing-core/std" ];
};
resolvedDefaultFeatures = [ "attributes" "default" "std" "tracing-attributes" ];
};
"tracing-appender" = rec {
crateName = "tracing-appender";
version = "0.1.1";
edition = "2018";
sha256 = "123f1pha5gjk8g4k76fw177k7pn4xcf2l0la9rhany8drib2v9bs";
authors = [
"Zeki Sherif <zekshi@amazon.com>"
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "chrono";
packageId = "chrono";
}
{
name = "crossbeam-channel";
packageId = "crossbeam-channel 0.4.4";
}
{
name = "tracing-subscriber";
packageId = "tracing-subscriber";
usesDefaultFeatures = false;
features = [ "fmt" ];
}
];
};
"tracing-attributes" = rec {
crateName = "tracing-attributes";
version = "0.1.11";
edition = "2018";
sha256 = "1njady03jycfarjbmbhnrpsl6s9pd9knp50c4z70rnkq6gycrq40";
procMacro = true;
authors = [
"Tokio Contributors <team@tokio.rs>"
"Eliza Weisman <eliza@buoyant.io>"
"David Barsky <dbarsky@amazon.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
usesDefaultFeatures = false;
features = [ "full" "parsing" "printing" "visit-mut" "clone-impls" "extra-traits" "proc-macro" ];
}
];
features = { };
};
"tracing-core" = rec {
crateName = "tracing-core";
version = "0.1.17";
edition = "2018";
sha256 = "0pvbgv301vw6dq4krc14yqbyyixb42lcs4s57xw05llkgy9f63gm";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
];
features = {
"default" = [ "std" ];
"std" = [ "lazy_static" ];
};
resolvedDefaultFeatures = [ "default" "lazy_static" "std" ];
};
"tracing-futures" = rec {
crateName = "tracing-futures";
version = "0.2.4";
edition = "2018";
sha256 = "0k4vd3jyqz9cx8rbwbp0p93qfp1w6rfk7sc6c1jh1ai18zqvcyxb";
authors = [
"Eliza Weisman <eliza@buoyant.io>"
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "pin-project";
packageId = "pin-project";
optional = true;
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "std-future" "std" ];
"futures-01" = [ "futures_01" "std" ];
"futures-03" = [ "std-future" "futures" "futures-task" "std" ];
"std" = [ "tracing/std" ];
"std-future" = [ "pin-project" ];
};
resolvedDefaultFeatures = [ "default" "pin-project" "std" "std-future" ];
};
"tracing-log" = rec {
crateName = "tracing-log";
version = "0.1.1";
edition = "2018";
sha256 = "1fdr0az98q9m5kiybvdvsb2m9mg86fdidgb5czzq2d71g1qqq3sy";
authors = [
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "log";
packageId = "log";
}
{
name = "tracing-core";
packageId = "tracing-core";
}
];
features = {
"default" = [ "log-tracer" "trace-logger" "std" ];
"std" = [ "log/std" ];
};
resolvedDefaultFeatures = [ "default" "log-tracer" "std" "trace-logger" ];
};
"tracing-subscriber" = rec {
crateName = "tracing-subscriber";
version = "0.2.12";
edition = "2018";
sha256 = "042cy0f29c3rh6rc42vkij3vk7sjbj5dp63ihch8chvnm9wm1fw2";
authors = [
"Eliza Weisman <eliza@buoyant.io>"
"David Barsky <me@davidbarsky.com>"
"Tokio Contributors <team@tokio.rs>"
];
dependencies = [
{
name = "ansi_term";
packageId = "ansi_term 0.12.1";
optional = true;
}
{
name = "chrono";
packageId = "chrono";
optional = true;
}
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
{
name = "matchers";
packageId = "matchers";
optional = true;
}
{
name = "regex";
packageId = "regex";
optional = true;
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "sharded-slab";
packageId = "sharded-slab";
optional = true;
}
{
name = "smallvec";
packageId = "smallvec 1.4.2";
optional = true;
}
{
name = "thread_local";
packageId = "thread_local";
optional = true;
}
{
name = "tracing-core";
packageId = "tracing-core";
}
{
name = "tracing-log";
packageId = "tracing-log";
optional = true;
usesDefaultFeatures = false;
features = [ "log-tracer" "std" ];
}
];
devDependencies = [
{
name = "regex";
packageId = "regex";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "tracing-log";
packageId = "tracing-log";
}
];
features = {
"ansi" = [ "fmt" "ansi_term" ];
"default" = [ "env-filter" "smallvec" "fmt" "ansi" "chrono" "tracing-log" "json" ];
"env-filter" = [ "matchers" "regex" "lazy_static" ];
"fmt" = [ "registry" ];
"json" = [ "tracing-serde" "serde" "serde_json" ];
"registry" = [ "sharded-slab" "thread_local" ];
};
resolvedDefaultFeatures = [ "ansi" "ansi_term" "chrono" "env-filter" "fmt" "lazy_static" "matchers" "regex" "registry" "sharded-slab" "smallvec" "thread_local" "tracing-log" ];
};
"tracing-tracy" = rec {
crateName = "tracing-tracy";
version = "0.3.0";
edition = "2018";
sha256 = "06gcj6f32djxr4xcaf407wljlcl6h3k7671b0kp4l76il0dl2w3g";
authors = [
"Simonas Kazlauskas <tracing-tracy@kazlauskas.me>"
];
dependencies = [
{
name = "tracing-core";
packageId = "tracing-core";
usesDefaultFeatures = false;
features = [ "std" ];
}
{
name = "tracing-subscriber";
packageId = "tracing-subscriber";
usesDefaultFeatures = false;
features = [ "registry" ];
}
{
name = "tracy-client";
packageId = "tracy-client";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "enable" ];
"delayed-init" = [ "tracy-client/delayed-init" ];
"enable" = [ "tracy-client/enable" ];
"lowres-timer" = [ "tracy-client/lowres-timer" ];
"noexit" = [ "tracy-client/noexit" ];
};
resolvedDefaultFeatures = [ "default" "enable" ];
};
"tracy-client" = rec {
crateName = "tracy-client";
version = "0.9.0";
edition = "2018";
sha256 = "0sh6brczizbic1ljzxg18adxbs451wa15z0dpklyz37ypw1l48gb";
authors = [
"Simonas Kazlauskas <tracy-client@kazlauskas.me>"
];
dependencies = [
{
name = "tracy-client-sys";
packageId = "tracy-client-sys";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "enable" ];
"delayed-init" = [ "tracy-client-sys/delayed-init" ];
"enable" = [ "tracy-client-sys/enable" ];
"lowres-timer" = [ "tracy-client-sys/lowres-timer" ];
"noexit" = [ "tracy-client-sys/noexit" ];
};
resolvedDefaultFeatures = [ "default" "enable" ];
};
"tracy-client-sys" = rec {
crateName = "tracy-client-sys";
version = "0.10.0";
edition = "2018";
sha256 = "1wdahvk9lc6sg0sknjgn2nixfp0wfl0g89llb5kam23c6rjna6rv";
authors = [
"Simonas Kazlauskas <tracy-client-sys@kazlauskas.me>"
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "enable" ];
};
resolvedDefaultFeatures = [ "enable" ];
};
"treeculler" = rec {
crateName = "treeculler";
version = "0.1.0";
edition = "2018";
sha256 = "0jn80yhc16dclr4wbjh24g11m2yz0gsfisycbamknlbxrpsvj55a";
authors = [
"Yusuf Bera Ertan <y.bera003.06@protonmail.com>"
];
dependencies = [
{
name = "num-traits";
packageId = "num-traits 0.2.12";
}
{
name = "vek";
packageId = "vek 0.11.2";
usesDefaultFeatures = false;
}
];
};
"try-lock" = rec {
crateName = "try-lock";
version = "0.2.3";
edition = "2015";
sha256 = "0hkn1ksmg5hdqgqdw1ahy5qk69f4crh2psf0v61qphyrf777nm2r";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
};
"ttf-parser 0.6.2" = rec {
crateName = "ttf-parser";
version = "0.6.2";
edition = "2018";
sha256 = "1p4z969pwd5adayy3ijq94iiak42yfxz8hk5wnkdsirymgbpqp9y";
authors = [
"Evgeniy Reizner <razrfalcon@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"ttf-parser 0.8.2" = rec {
crateName = "ttf-parser";
version = "0.8.2";
edition = "2018";
sha256 = "09x8n0gwp13gyp03abq84p3bnh6yhmyac18i1asnch8jwshcywyr";
authors = [
"Evgeniy Reizner <razrfalcon@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"tui" = rec {
crateName = "tui";
version = "0.10.0";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://github.com/fdehau/tui-rs.git";
rev = "54b841fab6cfdb38e8dc1382176e965787964b4c";
sha256 = "0si3sp0hkjjrrfvmiynhai35pgjlnflw7qwwh268rpivdl8bd9xz";
};
authors = [
"Florian Dehau <work@fdehau.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "cassowary";
packageId = "cassowary";
}
{
name = "crossterm";
packageId = "crossterm";
optional = true;
}
{
name = "unicode-segmentation";
packageId = "unicode-segmentation";
}
{
name = "unicode-width";
packageId = "unicode-width";
}
];
features = {
"curses" = [ "easycurses" "pancurses" ];
"default" = [ "termion" ];
};
resolvedDefaultFeatures = [ "crossterm" ];
};
"tuple_utils" = rec {
crateName = "tuple_utils";
version = "0.3.0";
edition = "2015";
sha256 = "1wgl7a32a9gvcxiyxznmglc9kc4d2j7c4dfzpr3nzcf5w8c490s4";
authors = [
"Colin Sherratt <colin.sherratt@gmail.com>"
];
};
"twox-hash" = rec {
crateName = "twox-hash";
version = "1.5.0";
edition = "2018";
crateBin = [ ];
sha256 = "0mmgs93dahlsqqwy447znljcad6y787gk7lvzxwffp4jaxsmpz9v";
authors = [
"Jake Goulding <jake.goulding@gmail.com>"
];
dependencies = [
{
name = "rand";
packageId = "rand 0.7.3";
optional = true;
}
];
features = {
"default" = [ "std" ];
"serialize" = [ "serde" ];
"std" = [ "rand" ];
};
resolvedDefaultFeatures = [ "default" "rand" "std" ];
};
"tynm" = rec {
crateName = "tynm";
version = "0.1.4";
edition = "2018";
sha256 = "0knk747j6hl2fw2i008z135sxjki315waqik1alv8q9rjs0vfzrn";
authors = [
"Azriel Hoh <azriel91@gmail.com>"
];
dependencies = [
{
name = "nom";
packageId = "nom 5.1.2";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
};
"typenum" = rec {
crateName = "typenum";
version = "1.12.0";
edition = "2015";
sha256 = "0cvbksljz61ian21fnn0h51kphl0pwpzb932bv4s0rwy1wh8lg1p";
build = "build/main.rs";
authors = [
"Paho Lurie-Gregg <paho@paholg.com>"
"Andre Bogus <bogusandre@gmail.com>"
];
features = { };
};
"unicode-bidi" = rec {
crateName = "unicode-bidi";
version = "0.3.4";
edition = "2015";
sha256 = "1malx8ljgm7v1gbaazkn7iicy5wj0bwcyadj3l727a38ch6bvwj9";
libName = "unicode_bidi";
authors = [
"The Servo Project Developers"
];
dependencies = [
{
name = "matches";
packageId = "matches";
}
];
features = {
"flame_it" = [ "flame" "flamer" ];
"with_serde" = [ "serde" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"unicode-normalization" = rec {
crateName = "unicode-normalization";
version = "0.1.13";
edition = "2018";
sha256 = "0xx9k05f82yf5wmhniq6nsplvszb4536kpv2l606m37sd7vrrcbg";
authors = [
"kwantam <kwantam@gmail.com>"
];
dependencies = [
{
name = "tinyvec";
packageId = "tinyvec";
features = [ "alloc" ];
}
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"unicode-segmentation" = rec {
crateName = "unicode-segmentation";
version = "1.6.0";
edition = "2015";
sha256 = "1h7d48mzpi8hwf5cvnq07warkv86pvapzzzf32hvbjsk20yiagp8";
authors = [
"kwantam <kwantam@gmail.com>"
"Manish Goregaokar <manishsmail@gmail.com>"
];
features = { };
};
"unicode-width" = rec {
crateName = "unicode-width";
version = "0.1.8";
edition = "2015";
sha256 = "1qxizyi6xbcqyi4z79p523ywvmgsfcgfqb3zv3c8i6x1jcc5jdwk";
authors = [
"kwantam <kwantam@gmail.com>"
"Manish Goregaokar <manishsmail@gmail.com>"
];
features = {
"rustc-dep-of-std" = [ "std" "core" "compiler_builtins" ];
};
resolvedDefaultFeatures = [ "default" ];
};
"unicode-xid 0.1.0" = rec {
crateName = "unicode-xid";
version = "0.1.0";
edition = "2015";
sha256 = "1z57lqh4s18rr4x0j4fw4fmp9hf9346h0kmdgqsqx0fhjr3k0wpw";
authors = [
"erick.tryzelaar <erick.tryzelaar@gmail.com>"
"kwantam <kwantam@gmail.com>"
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"unicode-xid 0.2.1" = rec {
crateName = "unicode-xid";
version = "0.2.1";
edition = "2015";
sha256 = "0r6mknipyy9vpz8mwmxvkx65ff2ha1n2pxqjj6f46lcn8yrhpzpp";
authors = [
"erick.tryzelaar <erick.tryzelaar@gmail.com>"
"kwantam <kwantam@gmail.com>"
];
features = { };
resolvedDefaultFeatures = [ "default" ];
};
"unreachable" = rec {
crateName = "unreachable";
version = "1.0.0";
edition = "2015";
sha256 = "0mps2il4xy2mjqc3appas27hhn2xmvixc3bzzhfrjj74gy3i0a1q";
authors = [
"Jonathan Reem <jonathan.reem@gmail.com>"
];
dependencies = [
{
name = "void";
packageId = "void";
usesDefaultFeatures = false;
}
];
};
"untrusted" = rec {
crateName = "untrusted";
version = "0.7.1";
edition = "2018";
sha256 = "0jkbqaj9d3v5a91pp3wp9mffvng1nhycx6sh4qkdd9qyr62ccmm1";
libPath = "src/untrusted.rs";
authors = [
"Brian Smith <brian@briansmith.org>"
];
};
"ureq 0.11.4" = rec {
crateName = "ureq";
version = "0.11.4";
edition = "2018";
sha256 = "15ma830g7lka436s00h6wiryx8xhy2rcz4js7b7n8s5ss7k2a4c0";
authors = [
"Martin Algesten <martin@algesten.se>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.11.0";
}
{
name = "chunked_transfer";
packageId = "chunked_transfer";
}
{
name = "cookie";
packageId = "cookie";
optional = true;
features = [ "percent-encode" ];
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "qstring";
packageId = "qstring";
}
{
name = "rustls";
packageId = "rustls 0.16.0";
optional = true;
}
{
name = "url";
packageId = "url 2.1.1";
}
{
name = "webpki";
packageId = "webpki";
optional = true;
}
{
name = "webpki-roots";
packageId = "webpki-roots 0.18.0";
optional = true;
}
];
features = {
"charset" = [ "encoding" ];
"cookies" = [ "cookie" ];
"default" = [ "tls" "cookies" ];
"json" = [ "serde_json" ];
"tls" = [ "rustls" "webpki" "webpki-roots" ];
};
resolvedDefaultFeatures = [ "cookie" "cookies" "default" "rustls" "tls" "webpki" "webpki-roots" ];
};
"ureq 1.4.1" = rec {
crateName = "ureq";
version = "1.4.1";
edition = "2018";
sha256 = "00fp2aqjp2j90h8sfm04van950wv1r68cw3ppfy1398kpad6ryy7";
authors = [
"Martin Algesten <martin@algesten.se>"
];
dependencies = [
{
name = "base64";
packageId = "base64 0.12.3";
}
{
name = "chunked_transfer";
packageId = "chunked_transfer";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "qstring";
packageId = "qstring";
}
{
name = "rustls";
packageId = "rustls 0.18.1";
optional = true;
}
{
name = "url";
packageId = "url 2.1.1";
}
{
name = "webpki";
packageId = "webpki";
optional = true;
}
{
name = "webpki-roots";
packageId = "webpki-roots 0.20.0";
optional = true;
}
];
features = {
"charset" = [ "encoding" ];
"cookies" = [ "cookie" ];
"default" = [ "tls" "cookies" ];
"json" = [ "serde" "serde_json" ];
"native-certs" = [ "rustls-native-certs" ];
"socks-proxy" = [ "socks" ];
"tls" = [ "rustls" "webpki" "webpki-roots" ];
};
resolvedDefaultFeatures = [ "rustls" "tls" "webpki" "webpki-roots" ];
};
"url 1.7.2" = rec {
crateName = "url";
version = "1.7.2";
edition = "2015";
sha256 = "0nim1c90mxpi9wgdw2xh8dqd72vlklwlzam436akcrhjac6pqknx";
authors = [
"The rust-url developers"
];
dependencies = [
{
name = "idna";
packageId = "idna 0.1.5";
}
{
name = "matches";
packageId = "matches";
}
{
name = "percent-encoding";
packageId = "percent-encoding 1.0.1";
}
];
features = {
"heap_size" = [ "heapsize" ];
"query_encoding" = [ "encoding" ];
};
};
"url 2.1.1" = rec {
crateName = "url";
version = "2.1.1";
edition = "2015";
sha256 = "1jw7cw8br4xvjb92ddrrh1r7jvqhyhiknnnfpgq9np63fs24m7c2";
authors = [
"The rust-url developers"
];
dependencies = [
{
name = "idna";
packageId = "idna 0.2.0";
}
{
name = "matches";
packageId = "matches";
}
{
name = "percent-encoding";
packageId = "percent-encoding 2.1.0";
}
];
};
"uuid" = rec {
crateName = "uuid";
version = "0.8.1";
edition = "2018";
sha256 = "049w16qwk3d3b9cmpgvd7fvcnwgs75l8rlsagh06w7ga9dm2zplz";
authors = [
"Ashley Mannix<ashleymannix@live.com.au>"
"Christopher Armstrong"
"Dylan DPC<dylan.dpc@gmail.com>"
"Hunar Roop Kahlon<hunar.roop@gmail.com>"
];
dependencies = [
{
name = "rand";
packageId = "rand 0.7.3";
optional = true;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
features = [ "serde_derive" ];
}
];
features = {
"default" = [ "std" ];
"guid" = [ "winapi" ];
"stdweb" = [ "rand/stdweb" ];
"v3" = [ "md5" ];
"v4" = [ "rand" ];
"v5" = [ "sha1" ];
"wasm-bindgen" = [ "rand/wasm-bindgen" ];
};
resolvedDefaultFeatures = [ "default" "rand" "serde" "std" "v4" ];
};
"uvth 3.1.1" = rec {
crateName = "uvth";
version = "3.1.1";
edition = "2018";
sha256 = "1gxbhzrbw6cf1c9rjrfpx0d54p609nw9j6vsrl7ynwyij1w1d6p5";
authors = [
"Acrimon <joel.wejdenstal@gmail.com>"
];
dependencies = [
{
name = "crossbeam-channel";
packageId = "crossbeam-channel 0.3.9";
}
{
name = "log";
packageId = "log";
}
{
name = "num_cpus";
packageId = "num_cpus";
}
];
};
"uvth 4.0.1" = rec {
crateName = "uvth";
version = "4.0.1";
edition = "2018";
sha256 = "0sxvw57ii7r5fdzm17yaqimadgb4lxvis7xfdi6375kb23wi0n8y";
authors = [
"Acrimon <joel.wejdenstal@gmail.com>"
];
dependencies = [
{
name = "crossbeam-channel";
packageId = "crossbeam-channel 0.3.9";
}
{
name = "log";
packageId = "log";
}
{
name = "num_cpus";
packageId = "num_cpus";
}
];
};
"vcpkg" = rec {
crateName = "vcpkg";
version = "0.2.10";
edition = "2015";
sha256 = "132hlmsc4maava91vl4lh677sl1c7vr8ccl53fnr5w41y6dh4m34";
authors = [
"Jim McGrath <jimmc2@gmail.com>"
];
};
"vec_map" = rec {
crateName = "vec_map";
version = "0.8.2";
edition = "2015";
sha256 = "1481w9g1dw9rxp3l6snkdqihzyrd2f8vispzqmwjwsdyhw8xzggi";
authors = [
"Alex Crichton <alex@alexcrichton.com>"
"Jorge Aparicio <japaricious@gmail.com>"
"Alexis Beingessner <a.beingessner@gmail.com>"
"Brian Anderson <>"
"tbu- <>"
"Manish Goregaokar <>"
"Aaron Turon <aturon@mozilla.com>"
"Adolfo Ochagavía <>"
"Niko Matsakis <>"
"Steven Fackler <>"
"Chase Southwood <csouth3@illinois.edu>"
"Eduard Burtescu <>"
"Florian Wilkens <>"
"Félix Raimundo <>"
"Tibor Benke <>"
"Markus Siemens <markus@m-siemens.de>"
"Josh Branchaud <jbranchaud@gmail.com>"
"Huon Wilson <dbau.pp@gmail.com>"
"Corey Farwell <coref@rwell.org>"
"Aaron Liblong <>"
"Nick Cameron <nrc@ncameron.org>"
"Patrick Walton <pcwalton@mimiga.net>"
"Felix S Klock II <>"
"Andrew Paseltiner <apaseltiner@gmail.com>"
"Sean McArthur <sean.monstar@gmail.com>"
"Vadim Petrochenkov <>"
];
features = {
"eders" = [ "serde" ];
};
};
"vek 0.11.2" = rec {
crateName = "vek";
version = "0.11.2";
edition = "2018";
sha256 = "0k8cd6h30h65zl44b636swx2fsd2f6y8sz0mc0myh2sy9rqdhmr6";
authors = [
"Yoan Lecoq <yoanlecoq.io@gmail.com>"
"Joshua Barretto <joshua.s.barretto@gmail.com>"
"Sunjay Varma <varma.sunjay@gmail.com>"
"timokoesters <timo@koesters.xyz>"
"Imbris <imbrisf@gmail.com>"
];
dependencies = [
{
name = "approx";
packageId = "approx 0.3.2";
usesDefaultFeatures = false;
}
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "static_assertions";
packageId = "static_assertions";
}
];
buildDependencies = [
{
name = "rustc_version";
packageId = "rustc_version";
}
];
features = {
"default" = [ "repr_simd" "rgba" "rgb" "std" ];
"libm" = [ "num-traits/libm" ];
"std" = [ "num-traits/std" "serde/std" ];
};
resolvedDefaultFeatures = [ "rgb" "rgba" "serde" "std" ];
};
"vek 0.12.0" = rec {
crateName = "vek";
version = "0.12.0";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://gitlab.com/veloren/vek.git";
rev = "237a78528b505f34f6dde5dc77db3b642388fe4a";
sha256 = "1v3kxjl826zf0zbi9pbwpw75ybidr0cdsgx772l0671zmp3yrkjg";
};
authors = [
"Yoan Lecoq <yoanlecoq.io@gmail.com>"
"Joshua Barretto <joshua.s.barretto@gmail.com>"
"Sunjay Varma <varma.sunjay@gmail.com>"
"timokoesters <timo@koesters.xyz>"
"Imbris <imbrisf@gmail.com>"
];
dependencies = [
{
name = "approx";
packageId = "approx 0.3.2";
usesDefaultFeatures = false;
}
{
name = "num-integer";
packageId = "num-integer";
usesDefaultFeatures = false;
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
optional = true;
usesDefaultFeatures = false;
features = [ "derive" ];
}
{
name = "static_assertions";
packageId = "static_assertions";
}
];
buildDependencies = [
{
name = "rustc_version";
packageId = "rustc_version";
}
];
features = {
"default" = [ "repr_simd" "rgba" "rgb" "std" ];
"libm" = [ "num-traits/libm" ];
"std" = [ "num-traits/std" "serde/std" ];
};
resolvedDefaultFeatures = [ "default" "platform_intrinsics" "repr_simd" "rgb" "rgba" "serde" "std" ];
};
"veloren-client" = rec {
crateName = "veloren-client";
version = "0.8.0";
edition = "2018";
src = lib.cleanSourceWith { filter = sourceFilter; src = ../client; };
authors = [
"Joshua Barretto <joshua.s.barretto@gmail.com>"
];
dependencies = [
{
name = "authc";
packageId = "authc";
}
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "futures-executor";
packageId = "futures-executor";
}
{
name = "futures-timer";
packageId = "futures-timer 3.0.2";
}
{
name = "futures-util";
packageId = "futures-util";
}
{
name = "hashbrown";
packageId = "hashbrown 0.7.2";
features = [ "rayon" "serde" "nightly" ];
}
{
name = "image";
packageId = "image";
usesDefaultFeatures = false;
features = [ "png" ];
}
{
name = "num";
packageId = "num 0.2.1";
}
{
name = "num_cpus";
packageId = "num_cpus";
}
{
name = "rayon";
packageId = "rayon";
}
{
name = "specs";
packageId = "specs";
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
}
{
name = "uvth";
packageId = "uvth 3.1.1";
}
{
name = "vek";
packageId = "vek 0.12.0";
features = [ "serde" ];
}
{
name = "veloren-common";
packageId = "veloren-common";
rename = "common";
features = [ "no-assets" ];
}
{
name = "veloren-common-net";
packageId = "veloren-common-net";
rename = "common-net";
}
{
name = "veloren-common-sys";
packageId = "veloren-common-sys";
rename = "common-sys";
usesDefaultFeatures = false;
}
{
name = "veloren_network";
packageId = "veloren_network";
rename = "network";
usesDefaultFeatures = false;
features = [ "compression" ];
}
];
devDependencies = [
{
name = "tracing-subscriber";
packageId = "tracing-subscriber";
usesDefaultFeatures = false;
features = [ "fmt" "chrono" "ansi" "smallvec" ];
}
];
features = {
"default" = [ "simd" ];
"simd" = [ "vek/platform_intrinsics" ];
};
resolvedDefaultFeatures = [ "default" "simd" ];
};
"veloren-common" = rec {
crateName = "veloren-common";
version = "0.8.0";
edition = "2018";
crateBin = [
{ name = "csv_export"; path = "src/bin/csv_export/main.rs"; }
];
src = lib.cleanSourceWith { filter = sourceFilter; src = ../common; };
authors = [
"Joshua Barretto <joshua.s.barretto@gmail.com>"
"Maciej Ćwięka <mckol363@gmail.com>"
"Imbris <imbrisf@gmail.com>"
];
dependencies = [
{
name = "arraygen";
packageId = "arraygen";
}
{
name = "crossbeam";
packageId = "crossbeam";
}
{
name = "csv";
packageId = "csv";
# optional = true;
}
{
name = "directories-next";
packageId = "directories-next";
}
{
name = "dot_vox";
packageId = "dot_vox";
}
{
name = "enum-iterator";
packageId = "enum-iterator";
}
{
name = "hashbrown";
packageId = "hashbrown 0.7.2";
features = [ "rayon" "serde" "nightly" ];
}
{
name = "image";
packageId = "image";
usesDefaultFeatures = false;
features = [ "png" ];
}
{
name = "indexmap";
packageId = "indexmap";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "notify";
packageId = "notify";
}
{
name = "num-derive";
packageId = "num-derive";
}
{
name = "num-traits";
packageId = "num-traits 0.2.12";
}
{
name = "ordered-float";
packageId = "ordered-float 2.0.0";
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand 0.7.3";
}
{
name = "rayon";
packageId = "rayon";
}
{
name = "ron";
packageId = "ron";
usesDefaultFeatures = false;
}
{
name = "roots";
packageId = "roots";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" "rc" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "serde_repr";
packageId = "serde_repr";
}
{
name = "slab";
packageId = "slab";
}
{
name = "slotmap";
packageId = "slotmap";
features = [ "serde" "unstable" ];
}
{
name = "specs";
packageId = "specs";
features = [ "serde" "storage-event-control" ];
}
{
name = "specs-idvs";
packageId = "specs-idvs";
}
{
name = "spin_sleep";
packageId = "spin_sleep";
}
{
name = "structopt";
packageId = "structopt";
# optional = true;
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
}
{
name = "tracy-client";
packageId = "tracy-client";
optional = true;
}
{
name = "uuid";
packageId = "uuid";
usesDefaultFeatures = false;
features = [ "serde" "v4" ];
}
{
name = "vek";
packageId = "vek 0.12.0";
features = [ "serde" ];
}
];
devDependencies = [
{
name = "criterion";
packageId = "criterion";
}
];
features = {
"bin_csv_export" = [ "csv" "structopt" ];
"default" = [ "simd" ];
"simd" = [ "vek/platform_intrinsics" ];
"tracy" = [ "tracy-client" ];
};
resolvedDefaultFeatures = [ "bin_csv_export" "csv" "default" "no-assets" "simd" "structopt" "tracy" "tracy-client" ];
};
"veloren-common-net" = rec {
crateName = "veloren-common-net";
version = "0.8.0";
edition = "2018";
src = lib.cleanSourceWith { filter = sourceFilter; src = ../common/net; };
authors = [
"Marcel Märtens <marcel.cochem@googlemail.com>"
];
dependencies = [
{
name = "authc";
packageId = "authc";
}
{
name = "hashbrown";
packageId = "hashbrown 0.7.2";
features = [ "rayon" "serde" "nightly" ];
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "specs";
packageId = "specs";
features = [ "serde" "storage-event-control" ];
}
{
name = "sum_type";
packageId = "sum_type";
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
}
{
name = "tracy-client";
packageId = "tracy-client";
optional = true;
}
{
name = "vek";
packageId = "vek 0.12.0";
features = [ "serde" ];
}
{
name = "veloren-common";
packageId = "veloren-common";
rename = "common";
}
];
features = {
"default" = [ "simd" ];
"simd" = [ "vek/platform_intrinsics" ];
"tracy" = [ "tracy-client" ];
};
resolvedDefaultFeatures = [ "default" "simd" "tracy" "tracy-client" ];
};
"veloren-common-sys" = rec {
crateName = "veloren-common-sys";
version = "0.8.0";
edition = "2018";
src = lib.cleanSourceWith { filter = sourceFilter; src = ../common/sys; };
authors = [
"Marcel Märtens <marcel.cochem@googlemail.com>"
];
dependencies = [
{
name = "bincode";
packageId = "bincode";
}
{
name = "hashbrown";
packageId = "hashbrown 0.7.2";
features = [ "rayon" "serde" "nightly" ];
}
{
name = "indexmap";
packageId = "indexmap";
}
{
name = "rand";
packageId = "rand 0.7.3";
}
{
name = "rayon";
packageId = "rayon";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "slab";
packageId = "slab";
}
{
name = "specs";
packageId = "specs";
features = [ "serde" "storage-event-control" ];
}
{
name = "tar";
packageId = "tar";
}
{
name = "toml";
packageId = "toml";
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
}
{
name = "tracy-client";
packageId = "tracy-client";
optional = true;
}
{
name = "vek";
packageId = "vek 0.12.0";
features = [ "serde" ];
}
{
name = "veloren-common";
packageId = "veloren-common";
rename = "common";
}
{
name = "veloren-common-net";
packageId = "veloren-common-net";
rename = "common-net";
}
{
name = "veloren-plugin-api";
packageId = "veloren-plugin-api";
rename = "plugin-api";
}
{
name = "wasmer-runtime";
packageId = "wasmer-runtime";
}
];
features = {
"default" = [ "simd" ];
"simd" = [ "vek/platform_intrinsics" ];
"tracy" = [ "tracy-client" ];
};
resolvedDefaultFeatures = [ "default" "simd" "tracy" "tracy-client" ];
};
"veloren-plugin-api" = rec {
crateName = "veloren-plugin-api";
version = "0.1.0";
edition = "2018";
src = lib.cleanSourceWith { filter = sourceFilter; src = ../plugin/api; };
authors = [
"ccgauche <gaucheron.laurent@gmail.com>"
];
dependencies = [
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "veloren-common";
packageId = "veloren-common";
rename = "common";
features = [ "no-assets" ];
}
];
};
"veloren-plugin-derive" = rec {
crateName = "veloren-plugin-derive";
version = "0.1.0";
edition = "2018";
src = lib.cleanSourceWith { filter = sourceFilter; src = ../plugin/derive; };
procMacro = true;
authors = [
"ccgauche <gaucheron.laurent@gmail.com>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "full" "extra-traits" ];
}
];
};
"veloren-plugin-rt" = rec {
crateName = "veloren-plugin-rt";
version = "0.1.0";
edition = "2018";
src = lib.cleanSourceWith { filter = sourceFilter; src = ../plugin/rt; };
authors = [
"Joshua Barretto <joshua.s.barretto@gmail.com>"
];
dependencies = [
{
name = "bincode";
packageId = "bincode";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "veloren-plugin-api";
packageId = "veloren-plugin-api";
rename = "plugin-api";
}
{
name = "veloren-plugin-derive";
packageId = "veloren-plugin-derive";
rename = "plugin-derive";
}
];
devDependencies = [
{
name = "veloren-plugin-derive";
packageId = "veloren-plugin-derive";
}
];
};
"veloren-server" = rec {
crateName = "veloren-server";
version = "0.8.0";
edition = "2018";
src = lib.cleanSourceWith { filter = sourceFilter; src = ../server; };
authors = [
"Joshua Barretto <joshua.s.barretto@gmail.com>"
];
dependencies = [
{
name = "authc";
packageId = "authc";
}
{
name = "chrono";
packageId = "chrono";
}
{
name = "crossbeam";
packageId = "crossbeam";
}
{
name = "diesel";
packageId = "diesel";
features = [ "sqlite" ];
}
{
name = "diesel_migrations";
packageId = "diesel_migrations";
}
{
name = "dotenv";
packageId = "dotenv";
}
{
name = "futures-channel";
packageId = "futures-channel";
}
{
name = "futures-executor";
packageId = "futures-executor";
}
{
name = "futures-timer";
packageId = "futures-timer 3.0.2";
}
{
name = "futures-util";
packageId = "futures-util";
}
{
name = "hashbrown";
packageId = "hashbrown 0.7.2";
features = [ "rayon" "serde" "nightly" ];
}
{
name = "itertools";
packageId = "itertools";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "libsqlite3-sys";
packageId = "libsqlite3-sys";
features = [ "bundled" ];
}
{
name = "portpicker";
packageId = "portpicker";
}
{
name = "prometheus";
packageId = "prometheus";
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand 0.7.3";
features = [ "small_rng" ];
}
{
name = "ron";
packageId = "ron";
usesDefaultFeatures = false;
}
{
name = "scan_fmt";
packageId = "scan_fmt";
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
{
name = "slab";
packageId = "slab";
}
{
name = "specs";
packageId = "specs";
features = [ "shred-derive" ];
}
{
name = "specs-idvs";
packageId = "specs-idvs";
}
{
name = "tiny_http";
packageId = "tiny_http";
}
{
name = "tracing";
packageId = "tracing";
}
{
name = "uvth";
packageId = "uvth 3.1.1";
}
{
name = "vek";
packageId = "vek 0.12.0";
features = [ "serde" ];
}
{
name = "veloren-common";
packageId = "veloren-common";
rename = "common";
}
{
name = "veloren-common-net";
packageId = "veloren-common-net";
rename = "common-net";
}
{
name = "veloren-common-sys";
packageId = "veloren-common-sys";
rename = "common-sys";
}
{
name = "veloren-plugin-api";
packageId = "veloren-plugin-api";
rename = "plugin-api";
}
{
name = "veloren-world";
packageId = "veloren-world";
rename = "world";
}
{
name = "veloren_network";
packageId = "veloren_network";
rename = "network";
usesDefaultFeatures = false;
features = [ "metrics" "compression" ];
}
];
features = {
"default" = [ "worldgen" "simd" ];
"simd" = [ "vek/platform_intrinsics" ];
};
resolvedDefaultFeatures = [ "default" "simd" "worldgen" ];
};
"veloren-server-cli" = rec {
crateName = "veloren-server-cli";
version = "0.8.0";
edition = "2018";
crateBin = [
{ name = "veloren-server-cli"; path = "src/main.rs"; }
];
src = lib.cleanSourceWith { filter = sourceFilter; src = ../server-cli; };
authors = [
"Joshua Barretto <joshua.s.barretto@gmail.com>"
];
dependencies = [
{
name = "ansi-parser";
packageId = "ansi-parser";
}
{
name = "clap";
packageId = "clap";
}
{
name = "crossterm";
packageId = "crossterm";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "ron";
packageId = "ron";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
features = [ "rc" "derive" ];
}
{
name = "signal-hook";
packageId = "signal-hook";
}
{
name = "termcolor";
packageId = "termcolor";
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
}
{
name = "tracing-subscriber";
packageId = "tracing-subscriber";
usesDefaultFeatures = false;
features = [ "env-filter" "fmt" "chrono" "ansi" "smallvec" ];
}
{
name = "tracing-tracy";
packageId = "tracing-tracy";
optional = true;
}
{
name = "tui";
packageId = "tui";
usesDefaultFeatures = false;
features = [ "crossterm" ];
}
{
name = "veloren-common";
packageId = "veloren-common";
rename = "common";
}
{
name = "veloren-common-net";
packageId = "veloren-common-net";
rename = "common-net";
}
{
name = "veloren-server";
packageId = "veloren-server";
rename = "server";
usesDefaultFeatures = false;
}
];
features = {
"default" = [ "worldgen" ];
"tracy" = [ "common/tracy" "tracing-tracy" ];
"worldgen" = [ "server/worldgen" ];
};
resolvedDefaultFeatures = [ "default" "tracing-tracy" "tracy" "worldgen" ];
};
"veloren-voxygen" = rec {
crateName = "veloren-voxygen";
version = "0.8.0";
edition = "2018";
crateBin = [
{ name = "veloren-voxygen"; path = "src/main.rs"; }
];
src = lib.cleanSourceWith { filter = sourceFilter; src = ../voxygen; };
authors = [
"Joshua Barretto <joshua.s.barretto@gmail.com>"
"Imbris <imbrisf@gmail.com>"
];
dependencies = [
{
name = "backtrace";
packageId = "backtrace";
}
{
name = "bincode";
packageId = "bincode";
}
{
name = "chrono";
packageId = "chrono";
}
{
name = "conrod_core";
packageId = "conrod_core";
}
{
name = "conrod_winit";
packageId = "conrod_winit";
}
{
name = "const-tweaker";
packageId = "const-tweaker";
optional = true;
}
{
name = "copy_dir";
packageId = "copy_dir";
}
{
name = "cpal";
packageId = "cpal";
}
{
name = "crossbeam";
packageId = "crossbeam";
}
{
name = "deunicode";
packageId = "deunicode";
}
{
name = "directories-next";
packageId = "directories-next";
}
{
name = "dispatch";
packageId = "dispatch 0.1.4";
target = { target, features }: (target."os" == "macos");
}
{
name = "dot_vox";
packageId = "dot_vox";
}
{
name = "enum-iterator";
packageId = "enum-iterator";
}
{
name = "euc";
packageId = "euc";
}
{
name = "gfx";
packageId = "gfx";
}
{
name = "gfx_device_gl";
packageId = "gfx_device_gl";
optional = true;
}
{
name = "gfx_gl";
packageId = "gfx_gl";
optional = true;
}
{
name = "gilrs";
packageId = "gilrs";
features = [ "serde" ];
}
{
name = "glsl-include";
packageId = "glsl-include";
}
{
name = "glutin";
packageId = "glutin";
}
{
name = "glyph_brush";
packageId = "glyph_brush";
}
{
name = "guillotiere";
packageId = "guillotiere";
}
{
name = "hashbrown";
packageId = "hashbrown 0.7.2";
features = [ "rayon" "serde" "nightly" ];
}
{
name = "iced_native";
packageId = "iced_native";
rename = "iced";
}
{
name = "iced_winit";
packageId = "iced_winit";
}
{
name = "image";
packageId = "image";
usesDefaultFeatures = false;
features = [ "ico" "png" ];
}
{
name = "inline_tweak";
packageId = "inline_tweak";
}
{
name = "itertools";
packageId = "itertools";
}
{
name = "native-dialog";
packageId = "native-dialog";
optional = true;
usesDefaultFeatures = false;
}
{
name = "num";
packageId = "num 0.2.1";
}
{
name = "old_school_gfx_glutin_ext";
packageId = "old_school_gfx_glutin_ext";
}
{
name = "ordered-float";
packageId = "ordered-float 2.0.0";
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand 0.7.3";
}
{
name = "rodio";
packageId = "rodio";
usesDefaultFeatures = false;
features = [ "wav" "vorbis" ];
}
{
name = "ron";
packageId = "ron";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
features = [ "rc" "derive" ];
}
{
name = "specs";
packageId = "specs";
}
{
name = "specs-idvs";
packageId = "specs-idvs";
}
{
name = "termcolor";
packageId = "termcolor";
}
{
name = "tracing";
packageId = "tracing";
}
{
name = "tracing-appender";
packageId = "tracing-appender";
}
{
name = "tracing-log";
packageId = "tracing-log";
}
{
name = "tracing-subscriber";
packageId = "tracing-subscriber";
usesDefaultFeatures = false;
features = [ "env-filter" "fmt" "chrono" "ansi" "smallvec" "tracing-log" ];
}
{
name = "tracing-tracy";
packageId = "tracing-tracy";
optional = true;
}
{
name = "treeculler";
packageId = "treeculler";
}
{
name = "uvth";
packageId = "uvth 3.1.1";
}
{
name = "vek";
packageId = "vek 0.12.0";
features = [ "serde" ];
}
{
name = "veloren-client";
packageId = "veloren-client";
rename = "client";
}
{
name = "veloren-common";
packageId = "veloren-common";
rename = "common";
}
{
name = "veloren-common-net";
packageId = "veloren-common-net";
rename = "common-net";
}
{
name = "veloren-common-sys";
packageId = "veloren-common-sys";
rename = "common-sys";
}
{
name = "veloren-server";
packageId = "veloren-server";
rename = "server";
optional = true;
}
{
name = "veloren-voxygen-anim";
packageId = "veloren-voxygen-anim";
rename = "anim";
usesDefaultFeatures = false;
}
{
name = "window_clipboard";
packageId = "window_clipboard";
}
{
name = "winit";
packageId = "winit";
features = [ "serde" ];
}
];
buildDependencies = [
{
name = "winres";
packageId = "winres";
target = { target, features }: target."windows";
}
];
devDependencies = [
{
name = "criterion";
packageId = "criterion";
}
{
name = "git2";
packageId = "git2";
}
{
name = "veloren-world";
packageId = "veloren-world";
}
];
features = {
"default" = [ "gl" "singleplayer" "native-dialog" "simd" ];
"gl" = [ "gfx_device_gl" "gfx_gl" ];
"hot-anim" = [ "anim/use-dyn-lib" ];
"simd" = [ "vek/platform_intrinsics" ];
"singleplayer" = [ "server" ];
"tracy" = [ "tracing-tracy" "common/tracy" ];
"tweak" = [ "const-tweaker" ];
};
resolvedDefaultFeatures = [ "const-tweaker" "default" "gfx_device_gl" "gfx_gl" "gl" "hot-anim" "native-dialog" "server" "simd" "singleplayer" "tracing-tracy" "tracy" "tweak" ];
};
"veloren-voxygen-anim" = rec {
crateName = "veloren-voxygen-anim";
version = "0.8.0";
edition = "2018";
src = lib.cleanSourceWith { filter = sourceFilter; src = ../voxygen/anim; };
libName = "voxygen_anim";
type = [ "lib" "cdylib" ];
authors = [
"Joshua Barretto <joshua.s.barretto@gmail.com>"
"Imbris <imbrisf@gmail.com>"
];
dependencies = [
{
name = "find_folder";
packageId = "find_folder";
optional = true;
}
{
name = "inline_tweak";
packageId = "inline_tweak";
}
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
{
name = "libloading";
packageId = "libloading 0.6.3";
optional = true;
}
{
name = "notify";
packageId = "notify";
optional = true;
}
{
name = "tracing";
packageId = "tracing";
optional = true;
}
{
name = "vek";
packageId = "vek 0.12.0";
features = [ "serde" ];
}
{
name = "veloren-common";
packageId = "veloren-common";
rename = "common";
}
];
features = {
"default" = [ "be-dyn-lib" "simd" ];
"simd" = [ "vek/platform_intrinsics" ];
"use-dyn-lib" = [ "libloading" "notify" "lazy_static" "tracing" "find_folder" ];
};
resolvedDefaultFeatures = [ "be-dyn-lib" "default" "find_folder" "lazy_static" "libloading" "notify" "simd" "tracing" "use-dyn-lib" ];
};
"veloren-world" = rec {
crateName = "veloren-world";
version = "0.8.0";
edition = "2018";
src = lib.cleanSourceWith { filter = sourceFilter; src = ../world; };
authors = [
"Joshua Barretto <joshua.s.barretto@gmail.com>"
];
dependencies = [
{
name = "arr_macro";
packageId = "arr_macro";
}
{
name = "bincode";
packageId = "bincode";
}
{
name = "bitvec";
packageId = "bitvec";
}
{
name = "fxhash";
packageId = "fxhash";
}
{
name = "hashbrown";
packageId = "hashbrown 0.7.2";
features = [ "rayon" "serde" "nightly" ];
}
{
name = "image";
packageId = "image";
usesDefaultFeatures = false;
features = [ "png" ];
}
{
name = "itertools";
packageId = "itertools";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "noise";
packageId = "noise";
usesDefaultFeatures = false;
}
{
name = "num";
packageId = "num 0.2.1";
}
{
name = "ordered-float";
packageId = "ordered-float 2.0.0";
}
{
name = "packed_simd_2";
packageId = "packed_simd_2";
rename = "packed_simd";
}
{
name = "rand";
packageId = "rand 0.7.3";
}
{
name = "rand_chacha";
packageId = "rand_chacha 0.2.2";
}
{
name = "rayon";
packageId = "rayon";
}
{
name = "ron";
packageId = "ron";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
}
{
name = "vek";
packageId = "vek 0.12.0";
features = [ "serde" ];
}
{
name = "veloren-common";
packageId = "veloren-common";
rename = "common";
}
{
name = "veloren-common-net";
packageId = "veloren-common-net";
rename = "common-net";
}
];
devDependencies = [
{
name = "criterion";
packageId = "criterion";
}
{
name = "minifb";
packageId = "minifb";
}
{
name = "tracing-subscriber";
packageId = "tracing-subscriber";
usesDefaultFeatures = false;
features = [ "fmt" "chrono" "ansi" "smallvec" ];
}
];
features = {
"default" = [ "simd" ];
"simd" = [ "vek/platform_intrinsics" ];
};
resolvedDefaultFeatures = [ "default" "simd" ];
};
"veloren_network" = rec {
crateName = "veloren_network";
version = "0.2.0";
edition = "2018";
src = lib.cleanSourceWith { filter = sourceFilter; src = ../network; };
authors = [
"Marcel Märtens <marcel.cochem@googlemail.com>"
];
dependencies = [
{
name = "async-std";
packageId = "async-std";
usesDefaultFeatures = false;
features = [ "std" "async-task" "default" ];
}
{
name = "bincode";
packageId = "bincode";
}
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "crossbeam-channel";
packageId = "crossbeam-channel 0.4.4";
}
{
name = "futures";
packageId = "futures 0.3.5";
features = [ "thread-pool" ];
}
{
name = "lazy_static";
packageId = "lazy_static";
usesDefaultFeatures = false;
}
{
name = "lz-fear";
packageId = "lz-fear";
optional = true;
}
{
name = "prometheus";
packageId = "prometheus";
optional = true;
usesDefaultFeatures = false;
}
{
name = "rand";
packageId = "rand 0.7.3";
}
{
name = "serde";
packageId = "serde";
}
{
name = "tracing";
packageId = "tracing";
usesDefaultFeatures = false;
}
{
name = "tracing-futures";
packageId = "tracing-futures";
}
];
devDependencies = [
{
name = "clap";
packageId = "clap";
usesDefaultFeatures = false;
}
{
name = "serde";
packageId = "serde";
features = [ "derive" ];
}
{
name = "shellexpand";
packageId = "shellexpand";
}
{
name = "tiny_http";
packageId = "tiny_http";
}
{
name = "tracing-subscriber";
packageId = "tracing-subscriber";
usesDefaultFeatures = false;
features = [ "env-filter" "fmt" "chrono" "ansi" "smallvec" ];
}
{
name = "uvth";
packageId = "uvth 4.0.1";
usesDefaultFeatures = false;
}
];
features = {
"compression" = [ "lz-fear" ];
"default" = [ "metrics" "compression" ];
"metrics" = [ "prometheus" ];
};
resolvedDefaultFeatures = [ "compression" "default" "lz-fear" "metrics" "prometheus" ];
};
"version_check 0.1.5" = rec {
crateName = "version_check";
version = "0.1.5";
edition = "2015";
sha256 = "1pf91pvj8n6akh7w6j5ypka6aqz08b3qpzgs0ak2kjf4frkiljwi";
authors = [
"Sergio Benitez <sb@sergio.bz>"
];
};
"version_check 0.9.2" = rec {
crateName = "version_check";
version = "0.9.2";
edition = "2015";
sha256 = "1vbaqdf802qinsq8q20w8w0qn2pv0rkq5p73ijcblrwxcvjp5adm";
authors = [
"Sergio Benitez <sb@sergio.bz>"
];
};
"void" = rec {
crateName = "void";
version = "1.0.2";
edition = "2015";
sha256 = "0zc8f0ksxvmhvgx4fdg0zyn6vdnbxd2xv9hfx4nhzg6kbs4f80ka";
authors = [
"Jonathan Reem <jonathan.reem@gmail.com>"
];
features = {
"default" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"walkdir 0.1.8" = rec {
crateName = "walkdir";
version = "0.1.8";
edition = "2015";
sha256 = "101pdz7igbn5vkji63gk6ffxx3fjvcx5yxsjahs6b9zhjabhnv66";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "kernel32-sys";
packageId = "kernel32-sys";
}
{
name = "winapi";
packageId = "winapi 0.2.8";
}
];
};
"walkdir 2.3.1" = rec {
crateName = "walkdir";
version = "2.3.1";
edition = "2018";
sha256 = "0z9g39f49cycdm9vzjf8hnfh3f1csxgd65kmlphj8r2vffy84wbp";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "same-file";
packageId = "same-file";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "std" "winnt" ];
}
{
name = "winapi-util";
packageId = "winapi-util";
target = { target, features }: target."windows";
}
];
};
"want" = rec {
crateName = "want";
version = "0.2.0";
edition = "2015";
sha256 = "0c52g7b4hhj033jc56sx9z3krivyciz0hlblixq2gc448zx5wfdn";
authors = [
"Sean McArthur <sean@seanmonstar.com>"
];
dependencies = [
{
name = "futures";
packageId = "futures 0.1.29";
}
{
name = "log";
packageId = "log";
}
{
name = "try-lock";
packageId = "try-lock";
}
];
};
"wasi 0.10.0+wasi-snapshot-preview1" = rec {
crateName = "wasi";
version = "0.10.0+wasi-snapshot-preview1";
edition = "2018";
sha256 = "07y3l8mzfzzz4cj09c8y90yak4hpsi9g7pllyzpr6xvwrabka50s";
authors = [
"The Cranelift Project Developers"
];
features = {
"default" = [ "std" ];
"rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"wasi 0.9.0+wasi-snapshot-preview1" = rec {
crateName = "wasi";
version = "0.9.0+wasi-snapshot-preview1";
edition = "2018";
sha256 = "06g5v3vrdapfzvfq662cij7v8a1flwr2my45nnncdv2galrdzkfc";
authors = [
"The Cranelift Project Developers"
];
features = {
"default" = [ "std" ];
"rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"wasm-bindgen" = rec {
crateName = "wasm-bindgen";
version = "0.2.68";
edition = "2018";
sha256 = "0hjx4sbkl2kphjds8l7wmll8sayacmc58ay1sxrmiw55bsnlxihs";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "wasm-bindgen-macro";
packageId = "wasm-bindgen-macro";
}
];
features = {
"default" = [ "spans" "std" ];
"enable-interning" = [ "std" ];
"serde-serialize" = [ "serde" "serde_json" "std" ];
"spans" = [ "wasm-bindgen-macro/spans" ];
"strict-macro" = [ "wasm-bindgen-macro/strict-macro" ];
"xxx_debug_only_print_generated_code" = [ "wasm-bindgen-macro/xxx_debug_only_print_generated_code" ];
};
resolvedDefaultFeatures = [ "default" "spans" "std" ];
};
"wasm-bindgen-backend" = rec {
crateName = "wasm-bindgen-backend";
version = "0.2.68";
edition = "2018";
sha256 = "0s2gkqd68iwf9qi09dkcrq9gdgqjw7w0m1kl6ykkaz3m58p44azj";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "bumpalo";
packageId = "bumpalo";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "log";
packageId = "log";
}
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "full" ];
}
{
name = "wasm-bindgen-shared";
packageId = "wasm-bindgen-shared";
}
];
features = {
"extra-traits" = [ "syn/extra-traits" ];
};
resolvedDefaultFeatures = [ "spans" ];
};
"wasm-bindgen-futures" = rec {
crateName = "wasm-bindgen-futures";
version = "0.4.18";
edition = "2018";
sha256 = "1nkic4xsl7iyxyd1296fa3p9gqx771lr7mxmz3ny27d01amnr1mp";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "cfg-if";
packageId = "cfg-if 0.1.10";
}
{
name = "js-sys";
packageId = "js-sys";
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
}
{
name = "web-sys";
packageId = "web-sys";
target = { target, features }: (builtins.elem "atomics" targetFeatures);
features = [ "MessageEvent" "Worker" ];
}
];
};
"wasm-bindgen-macro" = rec {
crateName = "wasm-bindgen-macro";
version = "0.2.68";
edition = "2018";
sha256 = "0f3h817bcsgglqymj3qnyyjxn4b4rlpxv4mjy1lw822wfhm324vb";
procMacro = true;
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "wasm-bindgen-macro-support";
packageId = "wasm-bindgen-macro-support";
}
];
features = {
"spans" = [ "wasm-bindgen-macro-support/spans" ];
"strict-macro" = [ "wasm-bindgen-macro-support/strict-macro" ];
};
resolvedDefaultFeatures = [ "spans" ];
};
"wasm-bindgen-macro-support" = rec {
crateName = "wasm-bindgen-macro-support";
version = "0.2.68";
edition = "2018";
sha256 = "1zlq2hxixp4nhd4sfvfq6h7x16gc27y1n0zzp31lqczfyxpg0jgj";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "syn";
packageId = "syn 1.0.54";
features = [ "visit" "full" ];
}
{
name = "wasm-bindgen-backend";
packageId = "wasm-bindgen-backend";
}
{
name = "wasm-bindgen-shared";
packageId = "wasm-bindgen-shared";
}
];
features = {
"extra-traits" = [ "syn/extra-traits" ];
"spans" = [ "wasm-bindgen-backend/spans" ];
};
resolvedDefaultFeatures = [ "spans" ];
};
"wasm-bindgen-shared" = rec {
crateName = "wasm-bindgen-shared";
version = "0.2.68";
edition = "2018";
sha256 = "01w3w2dxi2i16l8r5j9331wkdmhvim36m2fyphzpv38h8lqrlr0x";
authors = [
"The wasm-bindgen Developers"
];
};
"wasmer-clif-backend" = rec {
crateName = "wasmer-clif-backend";
version = "0.17.1";
edition = "2018";
sha256 = "1acp03n3dw7glk2pgi14g6azhg585hykyx6nr8b96hn7n5lswbss";
authors = [
"The Wasmer Engineering Team <engineering@wasmer.io>"
];
dependencies = [
{
name = "byteorder";
packageId = "byteorder";
}
{
name = "cranelift-codegen";
packageId = "cranelift-codegen";
}
{
name = "cranelift-entity";
packageId = "cranelift-entity";
}
{
name = "cranelift-native";
packageId = "cranelift-native";
}
{
name = "libc";
packageId = "libc";
}
{
name = "nix";
packageId = "nix 0.15.0";
}
{
name = "rayon";
packageId = "rayon";
}
{
name = "serde";
packageId = "serde";
features = [ "rc" ];
}
{
name = "serde-bench";
packageId = "serde-bench";
}
{
name = "serde_bytes";
packageId = "serde_bytes";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "target-lexicon";
packageId = "target-lexicon";
}
{
name = "wasmer-clif-fork-frontend";
packageId = "wasmer-clif-fork-frontend";
rename = "cranelift-frontend";
}
{
name = "wasmer-clif-fork-wasm";
packageId = "wasmer-clif-fork-wasm";
rename = "cranelift-wasm";
}
{
name = "wasmer-runtime-core";
packageId = "wasmer-runtime-core";
}
{
name = "wasmer-win-exception-handler";
packageId = "wasmer-win-exception-handler";
target = { target, features }: target."windows";
}
{
name = "wasmparser";
packageId = "wasmparser";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "errhandlingapi" "minwindef" "minwinbase" "winnt" ];
}
];
features = {
"generate-debug-information" = [ "wasm-debug" ];
};
};
"wasmer-clif-fork-frontend" = rec {
crateName = "wasmer-clif-fork-frontend";
version = "0.59.0";
edition = "2018";
sha256 = "0nlsvvdci70rcnnkn0g9lfl9biflw7vfwh5hwivhm82lycj2hgy2";
authors = [
"Forked from work done by The Cranelift Project Developers"
];
dependencies = [
{
name = "cranelift-codegen";
packageId = "cranelift-codegen";
usesDefaultFeatures = false;
}
{
name = "log";
packageId = "log";
usesDefaultFeatures = false;
}
{
name = "smallvec";
packageId = "smallvec 1.4.2";
}
{
name = "target-lexicon";
packageId = "target-lexicon";
}
];
features = {
"core" = [ "hashbrown" "cranelift-codegen/core" ];
"default" = [ "std" ];
"std" = [ "cranelift-codegen/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"wasmer-clif-fork-wasm" = rec {
crateName = "wasmer-clif-fork-wasm";
version = "0.59.0";
edition = "2018";
sha256 = "1rcsj8182h4ds5dcdcrg931r364a8pw0r0qfpipcqldwmv9j2pm3";
authors = [
"Forked from work done by The Cranelift Project Developers"
];
dependencies = [
{
name = "cranelift-codegen";
packageId = "cranelift-codegen";
usesDefaultFeatures = false;
}
{
name = "cranelift-entity";
packageId = "cranelift-entity";
}
{
name = "log";
packageId = "log";
usesDefaultFeatures = false;
}
{
name = "thiserror";
packageId = "thiserror";
}
{
name = "wasmer-clif-fork-frontend";
packageId = "wasmer-clif-fork-frontend";
usesDefaultFeatures = false;
}
{
name = "wasmparser";
packageId = "wasmparser";
usesDefaultFeatures = false;
}
];
features = {
"core" = [ "hashbrown" "cranelift-codegen/core" "wasmer-clif-fork-frontend/core" ];
"default" = [ "std" ];
"enable-serde" = [ "serde" ];
"std" = [ "cranelift-codegen/std" "wasmer-clif-fork-frontend/std" ];
};
resolvedDefaultFeatures = [ "default" "std" ];
};
"wasmer-runtime" = rec {
crateName = "wasmer-runtime";
version = "0.17.1";
edition = "2018";
sha256 = "1ws4bmaa31xw6bgajly3xn0gjb1jk18jcaf8gz23ag0rdglrlan9";
authors = [
"The Wasmer Engineering Team <engineering@wasmer.io>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "memmap";
packageId = "memmap";
}
{
name = "serde";
packageId = "serde";
features = [ "rc" ];
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "wasmer-clif-backend";
packageId = "wasmer-clif-backend";
optional = true;
}
{
name = "wasmer-runtime-core";
packageId = "wasmer-runtime-core";
}
];
features = {
"cache" = [ "cranelift" ];
"cranelift" = [ "wasmer-clif-backend" ];
"default" = [ "cranelift" "default-backend-cranelift" ];
"default-backend-cranelift" = [ "cranelift" ];
"default-backend-llvm" = [ "llvm" ];
"default-backend-singlepass" = [ "singlepass" ];
"deterministic-execution" = [ "wasmer-singlepass-backend/deterministic-execution" "wasmer-runtime-core/deterministic-execution" ];
"llvm" = [ "wasmer-llvm-backend" ];
"singlepass" = [ "wasmer-singlepass-backend" ];
};
resolvedDefaultFeatures = [ "cranelift" "default" "default-backend-cranelift" "wasmer-clif-backend" ];
};
"wasmer-runtime-core" = rec {
crateName = "wasmer-runtime-core";
version = "0.17.1";
edition = "2018";
sha256 = "081jcicslypc80cvx9nwzqv07psmcgyn1s37lpqjqxcqb4j620bl";
authors = [
"The Wasmer Engineering Team <engineering@wasmer.io>"
];
dependencies = [
{
name = "bincode";
packageId = "bincode";
}
{
name = "blake3";
packageId = "blake3";
}
{
name = "digest";
packageId = "digest 0.8.1";
}
{
name = "errno";
packageId = "errno";
}
{
name = "hex";
packageId = "hex 0.4.2";
}
{
name = "indexmap";
packageId = "indexmap";
features = [ "serde-1" ];
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "libc";
packageId = "libc";
}
{
name = "nix";
packageId = "nix 0.15.0";
}
{
name = "page_size";
packageId = "page_size";
}
{
name = "parking_lot";
packageId = "parking_lot 0.10.2";
}
{
name = "serde";
packageId = "serde";
features = [ "rc" ];
}
{
name = "serde-bench";
packageId = "serde-bench";
}
{
name = "serde_bytes";
packageId = "serde_bytes";
}
{
name = "serde_derive";
packageId = "serde_derive";
}
{
name = "smallvec";
packageId = "smallvec 1.4.2";
}
{
name = "target-lexicon";
packageId = "target-lexicon";
}
{
name = "wasmparser";
packageId = "wasmparser";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "memoryapi" ];
}
];
buildDependencies = [
{
name = "blake3";
packageId = "blake3";
}
{
name = "cc";
packageId = "cc";
}
{
name = "rustc_version";
packageId = "rustc_version";
}
];
features = {
"deterministic-execution" = [ "wasmparser/deterministic" ];
"generate-debug-information" = [ "wasm-debug" ];
};
};
"wasmer-win-exception-handler" = rec {
crateName = "wasmer-win-exception-handler";
version = "0.17.1";
edition = "2018";
sha256 = "1n9ppf4jcgqhi38ra9jg3k4znp24m9z4m53gx8l4p5np5cxrzlqw";
authors = [
"The Wasmer Engineering Team <engineering@wasmer.io>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
target = { target, features }: target."windows";
}
{
name = "wasmer-runtime-core";
packageId = "wasmer-runtime-core";
target = { target, features }: target."windows";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "winbase" "errhandlingapi" "minwindef" "minwinbase" "winnt" ];
}
];
buildDependencies = [
{
name = "cc";
packageId = "cc";
}
];
};
"wasmparser" = rec {
crateName = "wasmparser";
version = "0.51.4";
edition = "2018";
sha256 = "02n1wrjs5y1njzqcwvziv5cgb82sgfgd4ng4cdg1r7a635mrbcdf";
authors = [
"Yury Delendik <ydelendik@mozilla.com>"
];
features = { };
};
"wayland-client 0.27.0" = rec {
crateName = "wayland-client";
version = "0.27.0";
edition = "2018";
sha256 = "1r4a0v8k16hw64aw1fqa56a2m95mlf4klvl1nmzzdmnnpkpjyw5b";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "downcast-rs";
packageId = "downcast-rs";
}
{
name = "libc";
packageId = "libc";
}
{
name = "nix";
packageId = "nix 0.17.0";
}
{
name = "scoped-tls";
packageId = "scoped-tls";
optional = true;
}
{
name = "wayland-commons";
packageId = "wayland-commons 0.27.0";
}
{
name = "wayland-sys";
packageId = "wayland-sys 0.27.0";
}
];
buildDependencies = [
{
name = "wayland-scanner";
packageId = "wayland-scanner 0.27.0";
}
];
features = {
"dlopen" = [ "wayland-sys/dlopen" "use_system_lib" ];
"use_system_lib" = [ "wayland-sys/client" "scoped-tls" ];
};
resolvedDefaultFeatures = [ "dlopen" "scoped-tls" "use_system_lib" ];
};
"wayland-client 0.28.1" = rec {
crateName = "wayland-client";
version = "0.28.1";
edition = "2018";
sha256 = "117iyf69dzvqzpr9515k3ml9r2lsc72j5zli9xw49h5jj2dlzic0";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "downcast-rs";
packageId = "downcast-rs";
}
{
name = "libc";
packageId = "libc";
}
{
name = "nix";
packageId = "nix 0.18.0";
}
{
name = "scoped-tls";
packageId = "scoped-tls";
optional = true;
}
{
name = "wayland-commons";
packageId = "wayland-commons 0.28.1";
}
{
name = "wayland-sys";
packageId = "wayland-sys 0.28.1";
}
];
buildDependencies = [
{
name = "wayland-scanner";
packageId = "wayland-scanner 0.28.1";
}
];
features = {
"dlopen" = [ "wayland-sys/dlopen" "use_system_lib" ];
"use_system_lib" = [ "wayland-sys/client" "scoped-tls" ];
};
resolvedDefaultFeatures = [ "dlopen" "scoped-tls" "use_system_lib" ];
};
"wayland-commons 0.27.0" = rec {
crateName = "wayland-commons";
version = "0.27.0";
edition = "2018";
sha256 = "1wcm3f2jyq8kk71nagc0nk3fblvimlszy8af3f3dvafmd8ryjwp9";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "nix";
packageId = "nix 0.17.0";
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "smallvec";
packageId = "smallvec 1.4.2";
}
{
name = "wayland-sys";
packageId = "wayland-sys 0.27.0";
}
];
};
"wayland-commons 0.28.1" = rec {
crateName = "wayland-commons";
version = "0.28.1";
edition = "2018";
sha256 = "1ykwmd6rvlhqk2chfl8vaihgwhl0cp79qq13qz504vzyc1axf0kn";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "nix";
packageId = "nix 0.18.0";
}
{
name = "once_cell";
packageId = "once_cell";
}
{
name = "smallvec";
packageId = "smallvec 1.4.2";
}
{
name = "wayland-sys";
packageId = "wayland-sys 0.28.1";
}
];
};
"wayland-cursor 0.27.0" = rec {
crateName = "wayland-cursor";
version = "0.27.0";
edition = "2018";
sha256 = "0h8dnvsv4pb6gp10bdp6ng4v2bqy02b13gncr0w6yw1z39p397sk";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "nix";
packageId = "nix 0.17.0";
}
{
name = "wayland-client";
packageId = "wayland-client 0.27.0";
}
{
name = "xcursor";
packageId = "xcursor";
}
];
};
"wayland-cursor 0.28.1" = rec {
crateName = "wayland-cursor";
version = "0.28.1";
edition = "2018";
sha256 = "015gbdl7aa33xaqd4h63ybcyql7brg3jy4b33z0v5d5mqmcvjih4";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "nix";
packageId = "nix 0.18.0";
}
{
name = "wayland-client";
packageId = "wayland-client 0.28.1";
}
{
name = "xcursor";
packageId = "xcursor";
}
];
};
"wayland-egl" = rec {
crateName = "wayland-egl";
version = "0.28.1";
edition = "2018";
sha256 = "0q8dz6bpz1iqva4mw9aksqrdn2b7hvs9nqfcxj5wbkabr2863jp7";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "wayland-client";
packageId = "wayland-client 0.28.1";
features = [ "use_system_lib" ];
}
{
name = "wayland-sys";
packageId = "wayland-sys 0.28.1";
features = [ "egl" ];
}
];
};
"wayland-protocols 0.27.0" = rec {
crateName = "wayland-protocols";
version = "0.27.0";
edition = "2018";
sha256 = "07bqz2y4him0qgj60wv4055wnxbd1siy66n27c4bb63vn5agrmpk";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "wayland-client";
packageId = "wayland-client 0.27.0";
optional = true;
}
{
name = "wayland-commons";
packageId = "wayland-commons 0.27.0";
}
];
buildDependencies = [
{
name = "wayland-scanner";
packageId = "wayland-scanner 0.27.0";
}
];
features = {
"client" = [ "wayland-client" ];
"server" = [ "wayland-server" ];
};
resolvedDefaultFeatures = [ "client" "unstable_protocols" "wayland-client" ];
};
"wayland-protocols 0.28.1" = rec {
crateName = "wayland-protocols";
version = "0.28.1";
edition = "2018";
sha256 = "024saslih7wdhd0hwlvlv1nai5b0bhhgz72p86shy5fvpf2rah8d";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "wayland-client";
packageId = "wayland-client 0.28.1";
optional = true;
}
{
name = "wayland-commons";
packageId = "wayland-commons 0.28.1";
}
];
buildDependencies = [
{
name = "wayland-scanner";
packageId = "wayland-scanner 0.28.1";
}
];
features = {
"client" = [ "wayland-client" ];
"server" = [ "wayland-server" ];
};
resolvedDefaultFeatures = [ "client" "unstable_protocols" "wayland-client" ];
};
"wayland-scanner 0.27.0" = rec {
crateName = "wayland-scanner";
version = "0.27.0";
edition = "2018";
sha256 = "0a03qcx98v29fp6xk0n41wdvw2c1x97pcwml1d0djawkkl05c3q3";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "xml-rs";
packageId = "xml-rs";
}
];
};
"wayland-scanner 0.28.1" = rec {
crateName = "wayland-scanner";
version = "0.28.1";
edition = "2018";
sha256 = "1qp5d0yjrxqkm4n3cn3ajqbj0kc24qxgxkpp299l6nmhyhd0kk71";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "proc-macro2";
packageId = "proc-macro2 1.0.24";
}
{
name = "quote";
packageId = "quote 1.0.7";
}
{
name = "xml-rs";
packageId = "xml-rs";
}
];
};
"wayland-sys 0.27.0" = rec {
crateName = "wayland-sys";
version = "0.27.0";
edition = "2018";
sha256 = "0sf2xl3lvf8ibln07av43is8zzp5g5saqifb5bx7sivlnjxzzplb";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "dlib";
packageId = "dlib";
optional = true;
}
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
];
buildDependencies = [
{
name = "pkg-config";
packageId = "pkg-config";
}
];
features = {
"client" = [ "dlib" ];
"cursor" = [ "client" ];
"dlopen" = [ "dlib/dlopen" "lazy_static" ];
"egl" = [ "client" ];
"server" = [ "libc" "dlib" ];
};
resolvedDefaultFeatures = [ "client" "dlib" "dlopen" "lazy_static" ];
};
"wayland-sys 0.28.1" = rec {
crateName = "wayland-sys";
version = "0.28.1";
edition = "2018";
sha256 = "0gn70ndzvv0sjizn1243rrrn2mcszqaz17vvwyialvpys59hyr75";
authors = [
"Victor Berger <victor.berger@m4x.org>"
];
dependencies = [
{
name = "dlib";
packageId = "dlib";
optional = true;
}
{
name = "lazy_static";
packageId = "lazy_static";
optional = true;
}
];
buildDependencies = [
{
name = "pkg-config";
packageId = "pkg-config";
}
];
features = {
"client" = [ "dlib" ];
"cursor" = [ "client" ];
"dlopen" = [ "dlib/dlopen" "lazy_static" ];
"egl" = [ "client" ];
"server" = [ "libc" "dlib" ];
};
resolvedDefaultFeatures = [ "client" "dlib" "dlopen" "egl" "lazy_static" ];
};
"web-sys" = rec {
crateName = "web-sys";
version = "0.3.45";
edition = "2018";
sha256 = "0b8ynm523n6gi18n08daghmh29pdddlwwmd32n701s3smn3yzxjb";
authors = [
"The wasm-bindgen Developers"
];
dependencies = [
{
name = "js-sys";
packageId = "js-sys";
}
{
name = "wasm-bindgen";
packageId = "wasm-bindgen";
}
];
features = {
"AbortSignal" = [ "EventTarget" ];
"AnalyserNode" = [ "AudioNode" "EventTarget" ];
"Animation" = [ "EventTarget" ];
"AnimationEvent" = [ "Event" ];
"AnimationPlaybackEvent" = [ "Event" ];
"Attr" = [ "EventTarget" "Node" ];
"AudioBufferSourceNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
"AudioContext" = [ "BaseAudioContext" "EventTarget" ];
"AudioDestinationNode" = [ "AudioNode" "EventTarget" ];
"AudioNode" = [ "EventTarget" ];
"AudioProcessingEvent" = [ "Event" ];
"AudioScheduledSourceNode" = [ "AudioNode" "EventTarget" ];
"AudioStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
"AudioTrackList" = [ "EventTarget" ];
"AudioWorklet" = [ "Worklet" ];
"AudioWorkletGlobalScope" = [ "WorkletGlobalScope" ];
"AudioWorkletNode" = [ "AudioNode" "EventTarget" ];
"AuthenticatorAssertionResponse" = [ "AuthenticatorResponse" ];
"AuthenticatorAttestationResponse" = [ "AuthenticatorResponse" ];
"BaseAudioContext" = [ "EventTarget" ];
"BatteryManager" = [ "EventTarget" ];
"BeforeUnloadEvent" = [ "Event" ];
"BiquadFilterNode" = [ "AudioNode" "EventTarget" ];
"BlobEvent" = [ "Event" ];
"BroadcastChannel" = [ "EventTarget" ];
"CanvasCaptureMediaStream" = [ "EventTarget" "MediaStream" ];
"CdataSection" = [ "CharacterData" "EventTarget" "Node" "Text" ];
"ChannelMergerNode" = [ "AudioNode" "EventTarget" ];
"ChannelSplitterNode" = [ "AudioNode" "EventTarget" ];
"CharacterData" = [ "EventTarget" "Node" ];
"ChromeWorker" = [ "EventTarget" "Worker" ];
"Clipboard" = [ "EventTarget" ];
"ClipboardEvent" = [ "Event" ];
"CloseEvent" = [ "Event" ];
"Comment" = [ "CharacterData" "EventTarget" "Node" ];
"CompositionEvent" = [ "Event" "UiEvent" ];
"ConstantSourceNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
"ConvolverNode" = [ "AudioNode" "EventTarget" ];
"CssAnimation" = [ "Animation" "EventTarget" ];
"CssConditionRule" = [ "CssGroupingRule" "CssRule" ];
"CssCounterStyleRule" = [ "CssRule" ];
"CssFontFaceRule" = [ "CssRule" ];
"CssFontFeatureValuesRule" = [ "CssRule" ];
"CssGroupingRule" = [ "CssRule" ];
"CssImportRule" = [ "CssRule" ];
"CssKeyframeRule" = [ "CssRule" ];
"CssKeyframesRule" = [ "CssRule" ];
"CssMediaRule" = [ "CssConditionRule" "CssGroupingRule" "CssRule" ];
"CssNamespaceRule" = [ "CssRule" ];
"CssPageRule" = [ "CssRule" ];
"CssStyleRule" = [ "CssRule" ];
"CssStyleSheet" = [ "StyleSheet" ];
"CssSupportsRule" = [ "CssConditionRule" "CssGroupingRule" "CssRule" ];
"CssTransition" = [ "Animation" "EventTarget" ];
"CustomEvent" = [ "Event" ];
"DedicatedWorkerGlobalScope" = [ "EventTarget" "WorkerGlobalScope" ];
"DelayNode" = [ "AudioNode" "EventTarget" ];
"DeviceLightEvent" = [ "Event" ];
"DeviceMotionEvent" = [ "Event" ];
"DeviceOrientationEvent" = [ "Event" ];
"DeviceProximityEvent" = [ "Event" ];
"Document" = [ "EventTarget" "Node" ];
"DocumentFragment" = [ "EventTarget" "Node" ];
"DocumentTimeline" = [ "AnimationTimeline" ];
"DocumentType" = [ "EventTarget" "Node" ];
"DomMatrix" = [ "DomMatrixReadOnly" ];
"DomPoint" = [ "DomPointReadOnly" ];
"DomRect" = [ "DomRectReadOnly" ];
"DomRequest" = [ "EventTarget" ];
"DragEvent" = [ "Event" "MouseEvent" "UiEvent" ];
"DynamicsCompressorNode" = [ "AudioNode" "EventTarget" ];
"Element" = [ "EventTarget" "Node" ];
"ErrorEvent" = [ "Event" ];
"EventSource" = [ "EventTarget" ];
"ExtendableEvent" = [ "Event" ];
"ExtendableMessageEvent" = [ "Event" "ExtendableEvent" ];
"FetchEvent" = [ "Event" "ExtendableEvent" ];
"FetchObserver" = [ "EventTarget" ];
"File" = [ "Blob" ];
"FileReader" = [ "EventTarget" ];
"FileSystemDirectoryEntry" = [ "FileSystemEntry" ];
"FileSystemFileEntry" = [ "FileSystemEntry" ];
"FocusEvent" = [ "Event" "UiEvent" ];
"FontFaceSet" = [ "EventTarget" ];
"FontFaceSetLoadEvent" = [ "Event" ];
"GainNode" = [ "AudioNode" "EventTarget" ];
"GamepadAxisMoveEvent" = [ "Event" "GamepadEvent" ];
"GamepadButtonEvent" = [ "Event" "GamepadEvent" ];
"GamepadEvent" = [ "Event" ];
"GpuDevice" = [ "EventTarget" ];
"GpuUncapturedErrorEvent" = [ "Event" ];
"HashChangeEvent" = [ "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" ];
"ImageCapture" = [ "EventTarget" ];
"ImageCaptureErrorEvent" = [ "Event" ];
"InputEvent" = [ "Event" "UiEvent" ];
"KeyboardEvent" = [ "Event" "UiEvent" ];
"KeyframeEffect" = [ "AnimationEffect" ];
"LocalMediaStream" = [ "EventTarget" "MediaStream" ];
"MediaDevices" = [ "EventTarget" ];
"MediaElementAudioSourceNode" = [ "AudioNode" "EventTarget" ];
"MediaEncryptedEvent" = [ "Event" ];
"MediaKeyError" = [ "Event" ];
"MediaKeyMessageEvent" = [ "Event" ];
"MediaKeySession" = [ "EventTarget" ];
"MediaQueryList" = [ "EventTarget" ];
"MediaQueryListEvent" = [ "Event" ];
"MediaRecorder" = [ "EventTarget" ];
"MediaRecorderErrorEvent" = [ "Event" ];
"MediaSource" = [ "EventTarget" ];
"MediaStream" = [ "EventTarget" ];
"MediaStreamAudioDestinationNode" = [ "AudioNode" "EventTarget" ];
"MediaStreamAudioSourceNode" = [ "AudioNode" "EventTarget" ];
"MediaStreamEvent" = [ "Event" ];
"MediaStreamTrack" = [ "EventTarget" ];
"MediaStreamTrackEvent" = [ "Event" ];
"MessageEvent" = [ "Event" ];
"MessagePort" = [ "EventTarget" ];
"MidiAccess" = [ "EventTarget" ];
"MidiConnectionEvent" = [ "Event" ];
"MidiInput" = [ "EventTarget" "MidiPort" ];
"MidiMessageEvent" = [ "Event" ];
"MidiOutput" = [ "EventTarget" "MidiPort" ];
"MidiPort" = [ "EventTarget" ];
"MouseEvent" = [ "Event" "UiEvent" ];
"MouseScrollEvent" = [ "Event" "MouseEvent" "UiEvent" ];
"MutationEvent" = [ "Event" ];
"NetworkInformation" = [ "EventTarget" ];
"Node" = [ "EventTarget" ];
"Notification" = [ "EventTarget" ];
"NotificationEvent" = [ "Event" "ExtendableEvent" ];
"OfflineAudioCompletionEvent" = [ "Event" ];
"OfflineAudioContext" = [ "BaseAudioContext" "EventTarget" ];
"OfflineResourceList" = [ "EventTarget" ];
"OffscreenCanvas" = [ "EventTarget" ];
"OscillatorNode" = [ "AudioNode" "AudioScheduledSourceNode" "EventTarget" ];
"PageTransitionEvent" = [ "Event" ];
"PaintWorkletGlobalScope" = [ "WorkletGlobalScope" ];
"PannerNode" = [ "AudioNode" "EventTarget" ];
"PaymentMethodChangeEvent" = [ "Event" "PaymentRequestUpdateEvent" ];
"PaymentRequestUpdateEvent" = [ "Event" ];
"Performance" = [ "EventTarget" ];
"PerformanceMark" = [ "PerformanceEntry" ];
"PerformanceMeasure" = [ "PerformanceEntry" ];
"PerformanceNavigationTiming" = [ "PerformanceEntry" "PerformanceResourceTiming" ];
"PerformanceResourceTiming" = [ "PerformanceEntry" ];
"PermissionStatus" = [ "EventTarget" ];
"PointerEvent" = [ "Event" "MouseEvent" "UiEvent" ];
"PopStateEvent" = [ "Event" ];
"PopupBlockedEvent" = [ "Event" ];
"PresentationAvailability" = [ "EventTarget" ];
"PresentationConnection" = [ "EventTarget" ];
"PresentationConnectionAvailableEvent" = [ "Event" ];
"PresentationConnectionCloseEvent" = [ "Event" ];
"PresentationConnectionList" = [ "EventTarget" ];
"PresentationRequest" = [ "EventTarget" ];
"ProcessingInstruction" = [ "CharacterData" "EventTarget" "Node" ];
"ProgressEvent" = [ "Event" ];
"PromiseRejectionEvent" = [ "Event" ];
"PublicKeyCredential" = [ "Credential" ];
"PushEvent" = [ "Event" "ExtendableEvent" ];
"RadioNodeList" = [ "NodeList" ];
"RtcDataChannel" = [ "EventTarget" ];
"RtcDataChannelEvent" = [ "Event" ];
"RtcPeerConnection" = [ "EventTarget" ];
"RtcPeerConnectionIceEvent" = [ "Event" ];
"RtcTrackEvent" = [ "Event" ];
"RtcdtmfSender" = [ "EventTarget" ];
"RtcdtmfToneChangeEvent" = [ "Event" ];
"Screen" = [ "EventTarget" ];
"ScreenOrientation" = [ "EventTarget" ];
"ScriptProcessorNode" = [ "AudioNode" "EventTarget" ];
"ScrollAreaEvent" = [ "Event" "UiEvent" ];
"SecurityPolicyViolationEvent" = [ "Event" ];
"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" ];
"SvgAnimateElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
"SvgAnimateMotionElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
"SvgAnimateTransformElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
"SvgAnimationElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgCircleElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgClipPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgComponentTransferFunctionElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgDefsElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgDescElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgElement" = [ "Element" "EventTarget" "Node" ];
"SvgEllipseElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgFilterElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgForeignObjectElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgGeometryElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgGraphicsElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgImageElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgLineElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgLinearGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGradientElement" ];
"SvgMarkerElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgMaskElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgMetadataElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgPathSegArcAbs" = [ "SvgPathSeg" ];
"SvgPathSegArcRel" = [ "SvgPathSeg" ];
"SvgPathSegClosePath" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoCubicAbs" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoCubicRel" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoCubicSmoothAbs" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoCubicSmoothRel" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoQuadraticAbs" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoQuadraticRel" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoQuadraticSmoothAbs" = [ "SvgPathSeg" ];
"SvgPathSegCurvetoQuadraticSmoothRel" = [ "SvgPathSeg" ];
"SvgPathSegLinetoAbs" = [ "SvgPathSeg" ];
"SvgPathSegLinetoHorizontalAbs" = [ "SvgPathSeg" ];
"SvgPathSegLinetoHorizontalRel" = [ "SvgPathSeg" ];
"SvgPathSegLinetoRel" = [ "SvgPathSeg" ];
"SvgPathSegLinetoVerticalAbs" = [ "SvgPathSeg" ];
"SvgPathSegLinetoVerticalRel" = [ "SvgPathSeg" ];
"SvgPathSegMovetoAbs" = [ "SvgPathSeg" ];
"SvgPathSegMovetoRel" = [ "SvgPathSeg" ];
"SvgPatternElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgPolygonElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgPolylineElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgRadialGradientElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGradientElement" ];
"SvgRectElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGeometryElement" "SvgGraphicsElement" ];
"SvgScriptElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgSetElement" = [ "Element" "EventTarget" "Node" "SvgAnimationElement" "SvgElement" ];
"SvgStopElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgStyleElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgSwitchElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgSymbolElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgTextContentElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgTextElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" "SvgTextPositioningElement" ];
"SvgTextPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" ];
"SvgTextPositioningElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" ];
"SvgTitleElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgUseElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgViewElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgaElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgfeBlendElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeColorMatrixElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeComponentTransferElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeCompositeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeConvolveMatrixElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeDiffuseLightingElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeDisplacementMapElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeDistantLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeDropShadowElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeFloodElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeFuncAElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
"SvgfeFuncBElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
"SvgfeFuncGElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
"SvgfeFuncRElement" = [ "Element" "EventTarget" "Node" "SvgComponentTransferFunctionElement" "SvgElement" ];
"SvgfeGaussianBlurElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeImageElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeMergeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeMergeNodeElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeMorphologyElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeOffsetElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfePointLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeSpecularLightingElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeSpotLightElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeTileElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgfeTurbulenceElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvggElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgmPathElement" = [ "Element" "EventTarget" "Node" "SvgElement" ];
"SvgsvgElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" ];
"SvgtSpanElement" = [ "Element" "EventTarget" "Node" "SvgElement" "SvgGraphicsElement" "SvgTextContentElement" "SvgTextPositioningElement" ];
"TcpServerSocket" = [ "EventTarget" ];
"TcpServerSocketEvent" = [ "Event" ];
"TcpSocket" = [ "EventTarget" ];
"TcpSocketErrorEvent" = [ "Event" ];
"TcpSocketEvent" = [ "Event" ];
"Text" = [ "CharacterData" "EventTarget" "Node" ];
"TextTrack" = [ "EventTarget" ];
"TextTrackCue" = [ "EventTarget" ];
"TextTrackList" = [ "EventTarget" ];
"TimeEvent" = [ "Event" ];
"TouchEvent" = [ "Event" "UiEvent" ];
"TrackEvent" = [ "Event" ];
"TransitionEvent" = [ "Event" ];
"UiEvent" = [ "Event" ];
"UserProximityEvent" = [ "Event" ];
"VideoStreamTrack" = [ "EventTarget" "MediaStreamTrack" ];
"VideoTrackList" = [ "EventTarget" ];
"VrDisplay" = [ "EventTarget" ];
"VttCue" = [ "EventTarget" "TextTrackCue" ];
"WaveShaperNode" = [ "AudioNode" "EventTarget" ];
"WebGlContextEvent" = [ "Event" ];
"WebKitCssMatrix" = [ "DomMatrix" "DomMatrixReadOnly" ];
"WebSocket" = [ "EventTarget" ];
"WheelEvent" = [ "Event" "MouseEvent" "UiEvent" ];
"Window" = [ "EventTarget" ];
"WindowClient" = [ "Client" ];
"Worker" = [ "EventTarget" ];
"WorkerDebuggerGlobalScope" = [ "EventTarget" ];
"WorkerGlobalScope" = [ "EventTarget" ];
"XmlDocument" = [ "Document" "EventTarget" "Node" ];
"XmlHttpRequest" = [ "EventTarget" "XmlHttpRequestEventTarget" ];
"XmlHttpRequestEventTarget" = [ "EventTarget" ];
"XmlHttpRequestUpload" = [ "EventTarget" "XmlHttpRequestEventTarget" ];
"Xr" = [ "EventTarget" ];
"XrBoundedReferenceSpace" = [ "EventTarget" "XrReferenceSpace" "XrSpace" ];
"XrInputSourceEvent" = [ "Event" ];
"XrInputSourcesChangeEvent" = [ "Event" ];
"XrReferenceSpace" = [ "EventTarget" "XrSpace" ];
"XrReferenceSpaceEvent" = [ "Event" ];
"XrSession" = [ "EventTarget" ];
"XrSessionEvent" = [ "Event" ];
"XrSpace" = [ "EventTarget" ];
"XrViewerPose" = [ "XrPose" ];
};
resolvedDefaultFeatures = [ "AudioBuffer" "AudioBufferSourceNode" "AudioContext" "AudioContextOptions" "AudioContextState" "AudioDestinationNode" "AudioNode" "AudioScheduledSourceNode" "BaseAudioContext" "CanvasRenderingContext2d" "Crypto" "Document" "DomRect" "DomRectReadOnly" "Element" "Event" "EventTarget" "HtmlCanvasElement" "HtmlElement" "MessageEvent" "Node" "Window" "Worker" ];
};
"webpki" = rec {
crateName = "webpki";
version = "0.21.3";
edition = "2018";
sha256 = "1bij23xq5yx637y0ji667qvp6r95bbjhksxfh9gx947pylq6255b";
libPath = "src/webpki.rs";
authors = [
"Brian Smith <brian@briansmith.org>"
];
dependencies = [
{
name = "ring";
packageId = "ring";
usesDefaultFeatures = false;
features = [ "alloc" ];
}
{
name = "untrusted";
packageId = "untrusted";
}
];
features = {
"default" = [ "std" "trust_anchor_util" ];
"trust_anchor_util" = [ "std" ];
};
resolvedDefaultFeatures = [ "default" "std" "trust_anchor_util" ];
};
"webpki-roots 0.18.0" = rec {
crateName = "webpki-roots";
version = "0.18.0";
edition = "2018";
crateBin = [ ];
sha256 = "1d4ss607rgi9pj01zzqa13c1p3m35z314yh6lmjaj4kzvwv5gkci";
authors = [
"Joseph Birr-Pixton <jpixton@gmail.com>"
];
dependencies = [
{
name = "webpki";
packageId = "webpki";
}
];
};
"webpki-roots 0.20.0" = rec {
crateName = "webpki-roots";
version = "0.20.0";
edition = "2018";
crateBin = [ ];
sha256 = "17qpmyym1lsi967b4nc3112nb13ism8731bhjqd9hlajafkxw80g";
authors = [
"Joseph Birr-Pixton <jpixton@gmail.com>"
];
dependencies = [
{
name = "webpki";
packageId = "webpki";
}
];
};
"wfd" = rec {
crateName = "wfd";
version = "0.1.4";
edition = "2018";
sha256 = "1lxix0f9fq0pmzl0mpz9k711dzrf1hrwf36kxi8dlvv1a0gk5p16";
authors = [
"Ben Wallis <atomyc+github@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "winapi";
packageId = "winapi 0.3.9";
features = [ "winuser" "objbase" "shobjidl" "shobjidl_core" "winerror" "shellapi" ];
}
];
};
"which" = rec {
crateName = "which";
version = "4.0.2";
edition = "2015";
sha256 = "1vqih4glz0kh3p08bl8mdzk4c02195ws7v6mfpyfrf5qw7vlxhc7";
authors = [
"Harry Fei <tiziyuanfang@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "thiserror";
packageId = "thiserror";
}
];
};
"winapi 0.2.8" = rec {
crateName = "winapi";
version = "0.2.8";
edition = "2015";
sha256 = "0yh816lh6lf56dpsgxy189c2ai1z3j8mw9si6izqb6wsjkbcjz8n";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
};
"winapi 0.3.9" = rec {
crateName = "winapi";
version = "0.3.9";
edition = "2015";
sha256 = "06gl025x418lchw1wxj64ycr7gha83m44cjr5sarhynd9xkrm0sw";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
dependencies = [
{
name = "winapi-i686-pc-windows-gnu";
packageId = "winapi-i686-pc-windows-gnu";
target = { target, features }: (stdenv.hostPlatform.config == "i686-pc-windows-gnu");
}
{
name = "winapi-x86_64-pc-windows-gnu";
packageId = "winapi-x86_64-pc-windows-gnu";
target = { target, features }: (stdenv.hostPlatform.config == "x86_64-pc-windows-gnu");
}
];
features = {
"debug" = [ "impl-debug" ];
};
resolvedDefaultFeatures = [ "audioclient" "audiosessiontypes" "basetsd" "cfg" "combaseapi" "coml2api" "commctrl" "consoleapi" "debug" "devpkey" "dwmapi" "errhandlingapi" "evntrace" "fileapi" "handleapi" "hidusage" "impl-debug" "impl-default" "in6addr" "inaddr" "ioapiset" "knownfolders" "ksmedia" "libloaderapi" "memoryapi" "minwinbase" "minwindef" "mmdeviceapi" "mmsystem" "mswsock" "namedpipeapi" "ntdef" "ntsecapi" "ntstatus" "objbase" "ole2" "processenv" "processthreadsapi" "profileapi" "shellapi" "shellscalingapi" "shlobj" "shobjidl" "shobjidl_core" "std" "stringapiset" "synchapi" "sysinfoapi" "timeapi" "timezoneapi" "unknwnbase" "winbase" "wincon" "windef" "windowsx" "winerror" "wingdi" "winioctl" "winnt" "winsock2" "winuser" "ws2def" "ws2ipdef" "ws2tcpip" "wtypesbase" "xinput" ];
};
"winapi-build" = rec {
crateName = "winapi-build";
version = "0.1.1";
edition = "2015";
sha256 = "1g4rqsgjky0a7530qajn2bbfcrl2v0zb39idgdws9b1l7gp5wc9d";
libName = "build";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
};
"winapi-i686-pc-windows-gnu" = rec {
crateName = "winapi-i686-pc-windows-gnu";
version = "0.4.0";
edition = "2015";
sha256 = "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
};
"winapi-util" = rec {
crateName = "winapi-util";
version = "0.1.5";
edition = "2018";
sha256 = "0y71bp7f6d536czj40dhqk0d55wfbbwqfp2ymqf1an5ibgl6rv3h";
authors = [
"Andrew Gallant <jamslam@gmail.com>"
];
dependencies = [
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: target."windows";
features = [ "std" "consoleapi" "errhandlingapi" "fileapi" "minwindef" "processenv" "winbase" "wincon" "winerror" "winnt" ];
}
];
};
"winapi-x86_64-pc-windows-gnu" = rec {
crateName = "winapi-x86_64-pc-windows-gnu";
version = "0.4.0";
edition = "2015";
sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
};
"window_clipboard" = rec {
crateName = "window_clipboard";
version = "0.1.2";
edition = "2018";
sha256 = "1r838b4aqr1w7lap7plj6qnbsq1mgy5hncm7rmdm78sf6i5y4jdq";
authors = [
"Héctor Ramón Jiménez <hector0193@gmail.com>"
];
dependencies = [
{
name = "clipboard-win";
packageId = "clipboard-win 4.0.3";
target = { target, features }: target."windows";
features = [ "std" ];
}
{
name = "clipboard_macos";
packageId = "clipboard_macos";
target = { target, features }: (target."os" == "macos");
}
{
name = "clipboard_wayland";
packageId = "clipboard_wayland";
target = { target, features }: (target."unix" && (!((target."os" == "macos") || (target."os" == "android") || (target."os" == "emscripten") || (target."os" == "ios"))));
}
{
name = "clipboard_x11";
packageId = "clipboard_x11";
target = { target, features }: (target."unix" && (!((target."os" == "macos") || (target."os" == "android") || (target."os" == "emscripten") || (target."os" == "ios"))));
}
{
name = "raw-window-handle";
packageId = "raw-window-handle";
}
];
};
"winit" = rec {
crateName = "winit";
version = "0.23.0";
edition = "2018";
workspace_member = null;
src = pkgs.fetchgit {
url = "https://gitlab.com/veloren/winit.git";
rev = "7c8c5f21384c898f50d37298d229093549b08803";
sha256 = "1amfl8xpmyh7a4sy87iz5rybdgfn598crl6y6hxyrmyamg6cbqd4";
};
authors = [
"The winit contributors"
"Pierre Krieger <pierre.krieger1708@gmail.com>"
];
dependencies = [
{
name = "bitflags";
packageId = "bitflags";
}
{
name = "cocoa";
packageId = "cocoa";
target = { target, features }: (target."os" == "macos");
}
{
name = "core-foundation";
packageId = "core-foundation 0.9.1";
target = { target, features }: (target."os" == "macos");
}
{
name = "core-graphics";
packageId = "core-graphics 0.22.1";
target = { target, features }: (target."os" == "macos");
}
{
name = "core-video-sys";
packageId = "core-video-sys";
usesDefaultFeatures = false;
target = { target, features }: (target."os" == "macos");
features = [ "display_link" ];
}
{
name = "dispatch";
packageId = "dispatch 0.2.0";
target = { target, features }: (target."os" == "macos");
}
{
name = "instant";
packageId = "instant";
}
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "libc";
packageId = "libc";
}
{
name = "log";
packageId = "log";
}
{
name = "mio";
packageId = "mio 0.6.22";
target = { target, features }: ((target."os" == "linux") || (target."os" == "dragonfly") || (target."os" == "freebsd") || (target."os" == "openbsd") || (target."os" == "netbsd"));
}
{
name = "mio-extras";
packageId = "mio-extras";
target = { target, features }: ((target."os" == "linux") || (target."os" == "dragonfly") || (target."os" == "freebsd") || (target."os" == "openbsd") || (target."os" == "netbsd"));
}
{
name = "ndk";
packageId = "ndk";
target = { target, features }: (target."os" == "android");
}
{
name = "ndk-glue";
packageId = "ndk-glue";
target = { target, features }: (target."os" == "android");
}
{
name = "ndk-sys";
packageId = "ndk-sys";
target = { target, features }: (target."os" == "android");
}
{
name = "objc";
packageId = "objc";
target = { target, features }: (target."os" == "ios");
}
{
name = "objc";
packageId = "objc";
target = { target, features }: (target."os" == "macos");
}
{
name = "parking_lot";
packageId = "parking_lot 0.11.0";
target = { target, features }: ((target."os" == "linux") || (target."os" == "dragonfly") || (target."os" == "freebsd") || (target."os" == "openbsd") || (target."os" == "netbsd") || (target."os" == "windows"));
}
{
name = "percent-encoding";
packageId = "percent-encoding 2.1.0";
target = { target, features }: ((target."os" == "linux") || (target."os" == "dragonfly") || (target."os" == "freebsd") || (target."os" == "openbsd") || (target."os" == "netbsd"));
}
{
name = "raw-window-handle";
packageId = "raw-window-handle";
}
{
name = "serde";
packageId = "serde";
optional = true;
features = [ "serde_derive" ];
}
{
name = "smithay-client-toolkit";
packageId = "smithay-client-toolkit 0.12.0";
rename = "sctk";
optional = true;
target = { target, features }: ((target."os" == "linux") || (target."os" == "dragonfly") || (target."os" == "freebsd") || (target."os" == "openbsd") || (target."os" == "netbsd"));
}
{
name = "wayland-client";
packageId = "wayland-client 0.28.1";
optional = true;
target = { target, features }: ((target."os" == "linux") || (target."os" == "dragonfly") || (target."os" == "freebsd") || (target."os" == "openbsd") || (target."os" == "netbsd"));
features = [ "dlopen" ];
}
{
name = "winapi";
packageId = "winapi 0.3.9";
target = { target, features }: (target."os" == "windows");
features = [ "combaseapi" "commctrl" "dwmapi" "errhandlingapi" "hidusage" "libloaderapi" "objbase" "ole2" "processthreadsapi" "shellapi" "shellscalingapi" "shobjidl_core" "unknwnbase" "winbase" "windowsx" "winerror" "wingdi" "winnt" "winuser" ];
}
{
name = "x11-dl";
packageId = "x11-dl";
optional = true;
target = { target, features }: ((target."os" == "linux") || (target."os" == "dragonfly") || (target."os" == "freebsd") || (target."os" == "openbsd") || (target."os" == "netbsd"));
}
];
features = {
"default" = [ "x11" "wayland" ];
"stdweb" = [ "std_web" "instant/stdweb" ];
"wayland" = [ "wayland-client" "sctk" ];
"web-sys" = [ "web_sys" "wasm-bindgen" "instant/wasm-bindgen" ];
"x11" = [ "x11-dl" ];
};
resolvedDefaultFeatures = [ "default" "sctk" "serde" "wayland" "wayland-client" "x11" "x11-dl" ];
};
"winres" = rec {
crateName = "winres";
version = "0.1.11";
edition = "2015";
sha256 = "1p55gj03m5j41w6a1vghg0l0dkz6dwp7mxqmzy98jnzypc8bakzz";
libPath = "lib.rs";
authors = [
"Max Resch <resch.max@gmail.com>"
];
dependencies = [
{
name = "toml";
packageId = "toml";
}
];
};
"ws2_32-sys" = rec {
crateName = "ws2_32-sys";
version = "0.2.1";
edition = "2015";
sha256 = "0ppscg5qfqaw0gzwv2a4nhn5bn01ff9iwn6ysqnzm4n8s3myz76m";
libName = "ws2_32";
authors = [
"Peter Atashian <retep998@gmail.com>"
];
dependencies = [
{
name = "winapi";
packageId = "winapi 0.2.8";
}
];
buildDependencies = [
{
name = "winapi-build";
packageId = "winapi-build";
}
];
};
"x11-clipboard" = rec {
crateName = "x11-clipboard";
version = "0.5.1";
edition = "2015";
sha256 = "17c5yxxhknrp7y9mc7mp85ra8q4jw12c174m9yzbfr1vs2pkgsg5";
authors = [
"quininer kel <quininer@live.com>"
];
dependencies = [
{
name = "xcb";
packageId = "xcb";
features = [ "thread" "xfixes" ];
}
];
};
"x11-dl" = rec {
crateName = "x11-dl";
version = "2.18.5";
edition = "2015";
sha256 = "1y7yq4sfvv56shk4v3s7gvlrwk9d0migj622fl4i4c5klpiq3y9b";
authors = [
"daggerbot <daggerbot@gmail.com>"
"Erle Pereira <erle@erlepereira.com>"
];
dependencies = [
{
name = "lazy_static";
packageId = "lazy_static";
}
{
name = "libc";
packageId = "libc";
}
{
name = "maybe-uninit";
packageId = "maybe-uninit";
}
];
buildDependencies = [
{
name = "pkg-config";
packageId = "pkg-config";
}
];
};
"xattr" = rec {
crateName = "xattr";
version = "0.2.2";
edition = "2015";
sha256 = "0k556fb6f5jc907975j9c8iynl2fqz3rf0w6fiig83i4yi0kfk14";
authors = [
"Steven Allen <steven@stebalien.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
];
features = {
"default" = [ "unsupported" ];
};
resolvedDefaultFeatures = [ "default" "unsupported" ];
};
"xcb" = rec {
crateName = "xcb";
version = "0.9.0";
edition = "2015";
sha256 = "19i2pm8alpn2f0m4jg8bsw6ckw8irj1wjh55h9pi2fcb2diny1b2";
authors = [
"Remi Thebault <remi.thebault@gmail.com>"
];
dependencies = [
{
name = "libc";
packageId = "libc";
}
{
name = "log";
packageId = "log";
}
];
buildDependencies = [
{
name = "libc";
packageId = "libc";
}
];
features = {
"composite" = [ "xfixes" ];
"damage" = [ "xfixes" ];
"debug_all" = [ "thread" "composite" "damage" "dpms" "dri2" "dri3" "glx" "randr" "record" "render" "res" "screensaver" "shape" "shm" "xevie" "xf86dri" "xfixes" "xinerama" "xkb" "xprint" "xselinux" "xtest" "xvmc" "xv" "xlib_xcb" ];
"present" = [ "render" "xfixes" "sync" ];
"randr" = [ "render" ];
"xfixes" = [ "render" "shape" ];
"xinput" = [ "xfixes" ];
"xlib_xcb" = [ "x11/xlib" ];
"xv" = [ "shm" ];
"xvmc" = [ "xv" ];
};
resolvedDefaultFeatures = [ "render" "shape" "thread" "xfixes" ];
};
"xcursor" = rec {
crateName = "xcursor";
version = "0.3.2";
edition = "2018";
sha256 = "008d3cqp3pf5bngnai4m0fc5qs8d02l37bkk032y2dgxvv7q396k";
authors = [
"Samuele Esposito"
];
dependencies = [
{
name = "nom";
packageId = "nom 5.1.2";
usesDefaultFeatures = false;
features = [ "std" ];
}
];
};
"xdg" = rec {
crateName = "xdg";
version = "2.2.0";
edition = "2015";
sha256 = "0mws8a0fr3cqk5nh7aq9lmkmhzghvasqy4mhw6nnza06l4d6i2fh";
authors = [
"Ben Longbons <b.r.longbons@gmail.com>"
"whitequark <whitequark@whitequark.org>"
];
};
"xi-unicode" = rec {
crateName = "xi-unicode";
version = "0.3.0";
edition = "2018";
sha256 = "12mvjgrhr7557cib69wm4q5s4srba27pg2df9l1zihrxgnbh0wx6";
authors = [
"Raph Levien <raph.levien@gmail.com>"
];
};
"xml-rs" = rec {
crateName = "xml-rs";
version = "0.8.3";
edition = "2015";
crateBin = [ ];
sha256 = "12ndxyhzxw2zdr76ql8nfdwb2vwhvdkrxwk4pbjafqfglmjv0zdh";
libName = "xml";
authors = [
"Vladimir Matveev <vmatveev@citrine.cc>"
];
};
};
#
# crate2nix/default.nix (excerpt start)
#
/* Target (platform) data for conditional dependencies.
This corresponds roughly to what buildRustCrate is setting.
*/
defaultTarget = {
unix = true;
windows = false;
fuchsia = true;
test = false;
# This doesn't appear to be officially documented anywhere yet.
# See https://github.com/rust-lang-nursery/rust-forge/issues/101.
os =
if stdenv.hostPlatform.isDarwin
then "macos"
else stdenv.hostPlatform.parsed.kernel.name;
arch = stdenv.hostPlatform.parsed.cpu.name;
family = "unix";
env = "gnu";
endian =
if stdenv.hostPlatform.parsed.cpu.significantByte.name == "littleEndian"
then "little" else "big";
pointer_width = toString stdenv.hostPlatform.parsed.cpu.bits;
vendor = stdenv.hostPlatform.parsed.vendor.name;
debug_assertions = false;
};
/* Filters common temp files and build files. */
# TODO(pkolloch): Substitute with gitignore filter
sourceFilter = name: type:
let
baseName = builtins.baseNameOf (builtins.toString name);
in
! (
# Filter out git
baseName == ".gitignore"
|| (type == "directory" && baseName == ".git")
# Filter out build results
|| (
type == "directory" && (
baseName == "target"
|| baseName == "_site"
|| baseName == ".sass-cache"
|| baseName == ".jekyll-metadata"
|| baseName == "build-artifacts"
)
)
# Filter out nix-build result symlinks
|| (
type == "symlink" && lib.hasPrefix "result" baseName
)
# Filter out IDE config
|| (
type == "directory" && (
baseName == ".idea" || baseName == ".vscode"
)
) || lib.hasSuffix ".iml" baseName
# Filter out nix build files
|| baseName == "Cargo.nix"
# Filter out editor backup / swap files.
|| lib.hasSuffix "~" baseName
|| builtins.match "^\\.sw[a-z]$$" baseName != null
|| builtins.match "^\\..*\\.sw[a-z]$$" baseName != null
|| lib.hasSuffix ".tmp" baseName
|| lib.hasSuffix ".bak" baseName
|| baseName == "tests.nix"
);
/* Returns a crate which depends on successful test execution
of crate given as the second argument.
testCrateFlags: list of flags to pass to the test exectuable
testInputs: list of packages that should be available during test execution
*/
crateWithTest = { crate, testCrate, testCrateFlags, testInputs }:
assert builtins.typeOf testCrateFlags == "list";
assert builtins.typeOf testInputs == "list";
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;
}
);
in
pkgs.runCommand "run-tests-${testCrate.name}"
{
inherit testCrateFlags;
buildInputs = testInputs;
} ''
set -ex
export RUST_BACKTRACE=1
# recreate a file hierarchy as when running tests with cargo
# the source for test data
${pkgs.xorg.lndir}/bin/lndir ${crate.src}
# build outputs
testRoot=target/debug
mkdir -p $testRoot
# executables of the crate
# we copy to prevent std::env::current_exe() to resolve to a store location
for i in ${crate}/bin/*; do
cp "$i" "$testRoot"
done
chmod +w -R .
# test harness executables are suffixed with a hash, like cargo does
# this allows to prevent name collision with the main
# executables of the crate
hash=$(basename $out)
for file in ${drv}/tests/*; do
f=$testRoot/$(basename $file)-$hash
cp $file $f
$f $testCrateFlags 2>&1 | tee -a $out
done
'';
in
pkgs.runCommand "${crate.name}-linked"
{
inherit (crate) outputs crateName;
passthru = (crate.passthru or { }) // {
inherit test;
};
} ''
echo tested by ${test}
${lib.concatMapStringsSep "\n" (output: "ln -s ${crate.${output}} ${"$"}${output}") crate.outputs}
'';
/* A restricted overridable version of builtRustCratesWithFeatures. */
buildRustCrateWithFeatures =
{ packageId
, features ? rootFeatures
, crateOverrides ? defaultCrateOverrides
, buildRustCrateFunc ? null
, runTests ? false
, testCrateFlags ? [ ]
, testInputs ? [ ]
}:
lib.makeOverridable
(
{ features
, crateOverrides
, runTests
, testCrateFlags
, testInputs
}:
let
buildRustCrateFuncOverriden =
if buildRustCrateFunc != null
then buildRustCrateFunc
else
(
if crateOverrides == pkgs.defaultCrateOverrides
then buildRustCrate
else
buildRustCrate.override {
defaultCrateOverrides = crateOverrides;
}
);
builtRustCrates = builtRustCratesWithFeatures {
inherit packageId features;
buildRustCrateFunc = buildRustCrateFuncOverriden;
runTests = false;
};
builtTestRustCrates = builtRustCratesWithFeatures {
inherit packageId features;
buildRustCrateFunc = buildRustCrateFuncOverriden;
runTests = true;
};
drv = builtRustCrates.${packageId};
testDrv = builtTestRustCrates.${packageId};
derivation =
if runTests then
crateWithTest
{
crate = drv;
testCrate = testDrv;
inherit testCrateFlags testInputs;
}
else drv;
in
derivation
)
{ inherit features crateOverrides runTests testCrateFlags testInputs; };
/* Returns an attr set with packageId mapped to the result of buildRustCrateFunc
for the corresponding crate.
*/
builtRustCratesWithFeatures =
{ packageId
, features
, crateConfigs ? crates
, buildRustCrateFunc
, runTests
, target ? defaultTarget
} @ args:
assert (builtins.isAttrs crateConfigs);
assert (builtins.isString packageId);
assert (builtins.isList features);
assert (builtins.isAttrs target);
assert (builtins.isBool runTests);
let
rootPackageId = packageId;
mergedFeatures = mergePackageFeatures
(
args // {
inherit rootPackageId;
target = target // { test = runTests; };
}
);
buildByPackageId = packageId: buildByPackageIdImpl packageId;
# Memoize built packages so that reappearing packages are only built once.
builtByPackageId =
lib.mapAttrs (packageId: value: buildByPackageId packageId) crateConfigs;
buildByPackageIdImpl = 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 builtByPackageId features target;
dependencies =
(crateConfig.dependencies or [ ])
++ devDependencies;
};
buildDependencies =
dependencyDerivations {
inherit builtByPackageId features target;
dependencies = crateConfig.buildDependencies or [ ];
};
filterEnabledDependenciesForThis = dependencies: filterEnabledDependencies {
inherit dependencies features target;
};
dependenciesWithRenames =
lib.filter (d: d ? "rename")
(
filterEnabledDependenciesForThis
(
(crateConfig.buildDependencies or [ ])
++ (crateConfig.dependencies or [ ])
++ devDependencies
)
);
# Crate renames have the form:
#
# {
# crate_name = [
# { version = "1.2.3"; rename = "crate_name01"; }
# ];
# # ...
# }
crateRenames =
let
grouped =
lib.groupBy
(dependency: dependency.name)
dependenciesWithRenames;
versionAndRename = dep:
let
package = builtByPackageId."${dep.packageId}";
in
{ inherit (dep) rename; version = package.version; };
in
lib.mapAttrs (name: choices: builtins.map versionAndRename choices) grouped;
in
buildRustCrateFunc
(
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=${stdenv.lib.concatMapStringsSep "," (x: "+${x}") targetFeatures}";
inherit features dependencies buildDependencies crateRenames release;
}
);
in
builtByPackageId;
/* Returns the actual derivations for the given dependencies. */
dependencyDerivations =
{ builtByPackageId
, features
, dependencies
, target
}:
assert (builtins.isAttrs builtByPackageId);
assert (builtins.isList features);
assert (builtins.isList dependencies);
assert (builtins.isAttrs target);
let
enabledDependencies = filterEnabledDependencies {
inherit dependencies features target;
};
depDerivation = dependency: builtByPackageId.${dependency.packageId};
in
map depDerivation enabledDependencies;
/* Returns a sanitized version of val with all values substituted that cannot
be serialized as JSON.
*/
sanitizeForJson = val:
if builtins.isAttrs val
then lib.mapAttrs (n: v: sanitizeForJson v) val
else if builtins.isList val
then builtins.map sanitizeForJson val
else if builtins.isFunction val
then "function"
else val;
/* Returns various tools to debug a crate. */
debugCrate = { packageId, target ? defaultTarget }:
assert (builtins.isString packageId);
let
debug = rec {
# The built tree as passed to buildRustCrate.
buildTree = buildRustCrateWithFeatures {
buildRustCrateFunc = lib.id;
inherit packageId;
};
sanitizedBuildTree = sanitizeForJson buildTree;
dependencyTree = sanitizeForJson
(
buildRustCrateWithFeatures {
buildRustCrateFunc = 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;
depWithResolvedFeatures = dependency:
let
packageId = dependency.packageId;
features = dependencyFeatures expandedFeatures dependency;
in
{ inherit packageId features; };
resolveDependencies = cache: path: dependencies:
assert (builtins.isAttrs cache);
assert (builtins.isList dependencies);
let
enabledDependencies = filterEnabledDependencies {
inherit dependencies target;
features = expandedFeatures;
};
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 ++ expandedFeatures);
in
featuresByPackageId // {
"${packageId}" = combinedFeatures;
};
cacheWithDependencies =
resolveDependencies cacheWithSelf "dep"
(
crateConfig.dependencies or [ ]
++ lib.optionals
(runTests && packageId == rootPackageId)
(crateConfig.devDependencies or [ ])
);
cacheWithAll =
resolveDependencies
cacheWithDependencies "build"
(crateConfig.buildDependencies or [ ]);
in
cacheWithAll;
/* Returns the enabled dependencies given the enabled features. */
filterEnabledDependencies = { dependencies, features, target }:
assert (builtins.isList dependencies);
assert (builtins.isList features);
assert (builtins.isAttrs target);
lib.filter
(
dep:
let
targetFunc = dep.target or (features: true);
in
targetFunc { inherit features target; }
&& (
!(dep.optional or false)
|| builtins.any (doesFeatureEnableDependency dep) features
)
)
dependencies;
/* Returns whether the given feature should enable the given dependency. */
doesFeatureEnableDependency = { name, rename ? null, ... }: feature:
let
prefix = "${name}/";
len = builtins.stringLength prefix;
startsWithPrefix = builtins.substring 0 len feature == prefix;
in
(rename == null && feature == name)
|| (rename != null && rename == feature)
|| startsWithPrefix;
/* Returns the expanded features for the given inputFeatures by applying the
rules in featureMap.
featureMap is an attribute set which maps feature names to lists of further
feature names to enable in case this feature is selected.
*/
expandFeatures = featureMap: inputFeatures:
assert (builtins.isAttrs featureMap);
assert (builtins.isList inputFeatures);
let
expandFeature = feature:
assert (builtins.isString feature);
[ feature ] ++ (expandFeatures featureMap (featureMap."${feature}" or [ ]));
outFeatures = lib.concatMap expandFeature inputFeatures;
in
sortedUnique outFeatures;
/*
Returns the actual features for the given dependency.
features: The features of the crate that refers this dependency.
*/
dependencyFeatures = features: dependency:
assert (builtins.isList features);
assert (builtins.isAttrs dependency);
let
defaultOrNil =
if dependency.usesDefaultFeatures or true
then [ "default" ]
else [ ];
explicitFeatures = dependency.features or [ ];
additionalDependencyFeatures =
let
dependencyPrefix = (dependency.rename or dependency.name) + "/";
dependencyFeatures =
builtins.filter (f: lib.hasPrefix dependencyPrefix f) features;
in
builtins.map (lib.removePrefix dependencyPrefix) dependencyFeatures;
in
defaultOrNil ++ explicitFeatures ++ additionalDependencyFeatures;
/* Sorts and removes duplicates from a list of strings. */
sortedUnique = features:
assert (builtins.isList features);
assert (builtins.all builtins.isString features);
let
outFeaturesSet = lib.foldl (set: feature: set // { "${feature}" = 1; }) { } features;
outFeaturesUnique = builtins.attrNames outFeaturesSet;
in
builtins.sort (a: b: a < b) outFeaturesUnique;
deprecationWarning = message: value:
if strictDeprecation
then builtins.throw "strictDeprecation enabled, aborting: ${message}"
else builtins.trace message value;
#
# crate2nix/default.nix (excerpt end)
#
};
}