2023-12-29 18:13:22 +00:00
|
|
|
|
|
|
|
# This file was @generated by crate2nix 0.11.0 with the command:
|
|
|
|
# "generate"
|
|
|
|
# See https://github.com/kolloch/crate2nix for more info.
|
|
|
|
|
|
|
|
{ nixpkgs ? <nixpkgs>
|
|
|
|
, pkgs ? import nixpkgs { config = {}; }
|
|
|
|
, lib ? pkgs.lib
|
|
|
|
, stdenv ? pkgs.stdenv
|
|
|
|
, buildRustCrateForPkgs ? pkgs: pkgs.buildRustCrate
|
|
|
|
# This is used as the `crateOverrides` argument for `buildRustCrate`.
|
|
|
|
, defaultCrateOverrides ? pkgs.defaultCrateOverrides
|
|
|
|
# The features to enable for the root_crate or the workspace_members.
|
|
|
|
, rootFeatures ? [ "default" ]
|
|
|
|
# If true, throw errors instead of issueing deprecation warnings.
|
|
|
|
, strictDeprecation ? false
|
|
|
|
# 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 = {
|
|
|
|
"authdb" = rec {
|
|
|
|
packageId = "authdb";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "authdb";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"changeset" = rec {
|
|
|
|
packageId = "changeset";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "changeset";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"config" = rec {
|
|
|
|
packageId = "config";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "config";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"config-derive" = rec {
|
|
|
|
packageId = "config-derive";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "config-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; };
|
|
|
|
};
|
|
|
|
"coordinates" = rec {
|
|
|
|
packageId = "coordinates";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "coordinates";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"cyberpunk-splash" = rec {
|
|
|
|
packageId = "cyberpunk-splash";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "cyberpunk-splash";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"dashboard" = rec {
|
|
|
|
packageId = "dashboard";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "dashboard";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"emseries" = rec {
|
|
|
|
packageId = "emseries";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "emseries";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"file-service" = rec {
|
|
|
|
packageId = "file-service";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "file-service";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"fitnesstrax" = rec {
|
|
|
|
packageId = "fitnesstrax";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "fitnesstrax";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"fluent-ergonomics" = rec {
|
|
|
|
packageId = "fluent-ergonomics";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "fluent-ergonomics";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"ft-core" = rec {
|
|
|
|
packageId = "ft-core";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "ft-core";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"geo-types" = rec {
|
|
|
|
packageId = "geo-types";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "geo-types";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"gm-control-panel" = rec {
|
|
|
|
packageId = "gm-control-panel";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "gm-control-panel";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"hex-grid" = rec {
|
|
|
|
packageId = "hex-grid";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "hex-grid";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
2024-02-09 14:48:34 +00:00
|
|
|
"icon-test" = rec {
|
|
|
|
packageId = "icon-test";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "icon-test";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
2023-12-29 18:13:22 +00:00
|
|
|
"ifc" = rec {
|
|
|
|
packageId = "ifc";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "ifc";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
2024-03-26 13:14:28 +00:00
|
|
|
"memorycache" = rec {
|
|
|
|
packageId = "memorycache";
|
2023-12-29 18:13:22 +00:00
|
|
|
build = internal.buildRustCrateWithFeatures {
|
2024-03-26 13:14:28 +00:00
|
|
|
packageId = "memorycache";
|
2023-12-29 18:13:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
2024-03-26 13:14:28 +00:00
|
|
|
"nom-training" = rec {
|
|
|
|
packageId = "nom-training";
|
2023-12-29 18:13:22 +00:00
|
|
|
build = internal.buildRustCrateWithFeatures {
|
2024-03-26 13:14:28 +00:00
|
|
|
packageId = "nom-training";
|
2023-12-29 18:13:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
2024-03-26 13:14:28 +00:00
|
|
|
"otg-core" = rec {
|
|
|
|
packageId = "otg-core";
|
2023-12-29 18:13:22 +00:00
|
|
|
build = internal.buildRustCrateWithFeatures {
|
2024-03-26 13:14:28 +00:00
|
|
|
packageId = "otg-core";
|
2023-12-29 18:13:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
2024-03-26 13:14:28 +00:00
|
|
|
"otg-gtk" = rec {
|
|
|
|
packageId = "otg-gtk";
|
2023-12-29 18:13:22 +00:00
|
|
|
build = internal.buildRustCrateWithFeatures {
|
2024-03-26 13:14:28 +00:00
|
|
|
packageId = "otg-gtk";
|
2023-12-29 18:13:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"result-extended" = rec {
|
|
|
|
packageId = "result-extended";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "result-extended";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"screenplay" = rec {
|
|
|
|
packageId = "screenplay";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "screenplay";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"sgf" = rec {
|
|
|
|
packageId = "sgf";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "sgf";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"timezone-testing" = rec {
|
|
|
|
packageId = "timezone-testing";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "timezone-testing";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"tree" = rec {
|
|
|
|
packageId = "tree";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "tree";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
"visions" = rec {
|
|
|
|
packageId = "visions";
|
|
|
|
build = internal.buildRustCrateWithFeatures {
|
|
|
|
packageId = "visions";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Debug support which might change between releases.
|
|
|
|
# File a bug if you depend on any for non-debug work!
|
|
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# A derivation that joins the outputs of all workspace members together.
|
|
|
|
allWorkspaceMembers = pkgs.symlinkJoin {
|
|
|
|
name = "all-workspace-members";
|
|
|
|
paths =
|
|
|
|
let members = builtins.attrValues workspaceMembers;
|
|
|
|
in builtins.map (m: m.build) members;
|
|
|
|
};
|
|
|
|
|
|
|
|
#
|
|
|
|
# "internal" ("private") attributes that may change in every new version of crate2nix.
|
|
|
|
#
|
|
|
|
|
|
|
|
internal = rec {
|
|
|
|
# Build and dependency information for crates.
|
|
|
|
# Many of the fields are passed one-to-one to buildRustCrate.
|
|
|
|
#
|
|
|
|
# Noteworthy:
|
|
|
|
# * `dependencies`/`buildDependencies`: similar to the corresponding fields for buildRustCrate.
|
|
|
|
# but with additional information which is used during dependency/feature resolution.
|
|
|
|
# * `resolvedDependencies`: the selected default features reported by cargo - only included for debugging.
|
|
|
|
# * `devDependencies` as of now not used by `buildRustCrate` but used to
|
|
|
|
# inject test dependencies into the build
|
|
|
|
|
|
|
|
crates = {
|
|
|
|
"addr2line" = rec {
|
|
|
|
crateName = "addr2line";
|
|
|
|
version = "0.21.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1jx0k3iwyqr8klqbzk6kjvr496yd94aspis10vwsj5wy7gib4c4a";
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "gimli";
|
|
|
|
packageId = "gimli";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
features = [ "read" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"alloc" = [ "dep:alloc" ];
|
|
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
|
|
"core" = [ "dep:core" ];
|
|
|
|
"cpp_demangle" = [ "dep:cpp_demangle" ];
|
|
|
|
"default" = [ "rustc-demangle" "cpp_demangle" "std-object" "fallible-iterator" "smallvec" "memmap2" ];
|
|
|
|
"fallible-iterator" = [ "dep:fallible-iterator" ];
|
|
|
|
"memmap2" = [ "dep:memmap2" ];
|
|
|
|
"object" = [ "dep:object" ];
|
|
|
|
"rustc-demangle" = [ "dep:rustc-demangle" ];
|
|
|
|
"rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "gimli/rustc-dep-of-std" ];
|
|
|
|
"smallvec" = [ "dep:smallvec" ];
|
|
|
|
"std" = [ "gimli/std" ];
|
|
|
|
"std-object" = [ "std" "object" "object/std" "object/compression" "gimli/endian-reader" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
"adler" = rec {
|
|
|
|
crateName = "adler";
|
|
|
|
version = "1.0.2";
|
|
|
|
edition = "2015";
|
|
|
|
sha256 = "1zim79cvzd5yrkzl3nyfx0avijwgk9fqv3yrscdy1cc79ih02qpj";
|
|
|
|
authors = [
|
|
|
|
"Jonas Schievink <jonasschievink@gmail.com>"
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
|
|
"core" = [ "dep:core" ];
|
|
|
|
"default" = [ "std" ];
|
|
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
"adler32" = rec {
|
|
|
|
crateName = "adler32";
|
|
|
|
version = "1.2.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0d7jq7jsjyhsgbhnfq5fvrlh9j0i9g1fqrl2735ibv5f75yjgqda";
|
|
|
|
authors = [
|
|
|
|
"Remi Rampin <remirampin@gmail.com>"
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
|
|
"core" = [ "dep:core" ];
|
|
|
|
"default" = [ "std" ];
|
|
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
|
|
};
|
|
|
|
"ahash" = rec {
|
|
|
|
crateName = "ahash";
|
|
|
|
version = "0.8.6";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0yn9i8nc6mmv28ig9w3dga571q09vg9f1f650mi5z8phx42r6hli";
|
|
|
|
authors = [
|
|
|
|
"Tom Kaitchuck <Tom.Kaitchuck@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "cfg-if";
|
|
|
|
packageId = "cfg-if";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "getrandom";
|
|
|
|
packageId = "getrandom";
|
|
|
|
optional = true;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "once_cell";
|
|
|
|
packageId = "once_cell";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
target = { target, features }: (!(("arm" == target."arch") && ("none" == target."os")));
|
|
|
|
features = [ "unstable" "alloc" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "zerocopy";
|
|
|
|
packageId = "zerocopy";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
features = [ "simd" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
buildDependencies = [
|
|
|
|
{
|
|
|
|
name = "version_check";
|
|
|
|
packageId = "version_check 0.9.4";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"atomic-polyfill" = [ "dep:atomic-polyfill" "once_cell/atomic-polyfill" ];
|
|
|
|
"compile-time-rng" = [ "const-random" ];
|
|
|
|
"const-random" = [ "dep:const-random" ];
|
|
|
|
"default" = [ "std" "runtime-rng" ];
|
|
|
|
"getrandom" = [ "dep:getrandom" ];
|
|
|
|
"runtime-rng" = [ "getrandom" ];
|
|
|
|
"serde" = [ "dep:serde" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" "getrandom" "runtime-rng" "std" ];
|
|
|
|
};
|
|
|
|
"aho-corasick" = rec {
|
|
|
|
crateName = "aho-corasick";
|
|
|
|
version = "1.1.2";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "1w510wnixvlgimkx1zjbvlxh6xps2vjgfqgwf5a6adlbjp5rv5mj";
|
|
|
|
libName = "aho_corasick";
|
|
|
|
authors = [
|
|
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "memchr";
|
|
|
|
packageId = "memchr";
|
|
|
|
optional = true;
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"default" = [ "std" "perf-literal" ];
|
|
|
|
"logging" = [ "dep:log" ];
|
|
|
|
"perf-literal" = [ "dep:memchr" ];
|
|
|
|
"std" = [ "memchr?/std" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" "perf-literal" "std" ];
|
|
|
|
};
|
|
|
|
"allocator-api2" = rec {
|
|
|
|
crateName = "allocator-api2";
|
|
|
|
version = "0.2.16";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1iayppgq4wqbfbfcqmsbwgamj0s65012sskfvyx07pxavk3gyhh9";
|
|
|
|
authors = [
|
|
|
|
"Zakarum <zaq.dev@icloud.com>"
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"default" = [ "std" ];
|
|
|
|
"serde" = [ "dep:serde" ];
|
|
|
|
"std" = [ "alloc" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "alloc" ];
|
|
|
|
};
|
|
|
|
"android-tzdata" = rec {
|
|
|
|
crateName = "android-tzdata";
|
|
|
|
version = "0.1.1";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1w7ynjxrfs97xg3qlcdns4kgfpwcdv824g611fq32cag4cdr96g9";
|
|
|
|
authors = [
|
|
|
|
"RumovZ"
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"android_system_properties" = rec {
|
|
|
|
crateName = "android_system_properties";
|
|
|
|
version = "0.1.5";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "04b3wrz12837j7mdczqd95b732gw5q7q66cv4yn4646lvccp57l1";
|
|
|
|
authors = [
|
|
|
|
"Nicolas Silva <nical@fastmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "libc";
|
|
|
|
packageId = "libc";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"anstream" = rec {
|
|
|
|
crateName = "anstream";
|
|
|
|
version = "0.6.5";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "1dm1mdbs1x6y3m3pz0qlamgiskb50i4q859676kx0pz8r8pajr6n";
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "anstyle";
|
|
|
|
packageId = "anstyle";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "anstyle-parse";
|
|
|
|
packageId = "anstyle-parse";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "anstyle-query";
|
|
|
|
packageId = "anstyle-query";
|
|
|
|
optional = true;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "anstyle-wincon";
|
|
|
|
packageId = "anstyle-wincon";
|
|
|
|
optional = true;
|
|
|
|
target = { target, features }: (target."windows" or false);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "colorchoice";
|
|
|
|
packageId = "colorchoice";
|
|
|
|
optional = true;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "utf8parse";
|
|
|
|
packageId = "utf8parse";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"auto" = [ "dep:anstyle-query" "dep:colorchoice" ];
|
|
|
|
"default" = [ "auto" "wincon" ];
|
|
|
|
"wincon" = [ "dep:anstyle-wincon" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "auto" "default" "wincon" ];
|
|
|
|
};
|
|
|
|
"anstyle" = rec {
|
|
|
|
crateName = "anstyle";
|
|
|
|
version = "1.0.4";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "11yxw02b6parn29s757z96rgiqbn8qy0fk9a3p3bhczm85dhfybh";
|
|
|
|
features = {
|
|
|
|
"default" = [ "std" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
|
|
};
|
|
|
|
"anstyle-parse" = rec {
|
|
|
|
crateName = "anstyle-parse";
|
|
|
|
version = "0.2.3";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "134jhzrz89labrdwxxnjxqjdg06qvaflj1wkfnmyapwyldfwcnn7";
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "utf8parse";
|
|
|
|
packageId = "utf8parse";
|
|
|
|
optional = true;
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"core" = [ "dep:arrayvec" ];
|
|
|
|
"default" = [ "utf8" ];
|
|
|
|
"utf8" = [ "dep:utf8parse" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" "utf8" ];
|
|
|
|
};
|
|
|
|
"anstyle-query" = rec {
|
|
|
|
crateName = "anstyle-query";
|
|
|
|
version = "1.0.2";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "0j3na4b1nma39g4x7cwvj009awxckjf3z2vkwhldgka44hqj72g2";
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "windows-sys";
|
|
|
|
packageId = "windows-sys 0.52.0";
|
|
|
|
target = { target, features }: (target."windows" or false);
|
|
|
|
features = [ "Win32_System_Console" "Win32_Foundation" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"anstyle-wincon" = rec {
|
|
|
|
crateName = "anstyle-wincon";
|
|
|
|
version = "3.0.2";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "19v0fv400bmp4niqpzxnhg83vz12mmqv7l2l8vi80qcdxj0lpm8w";
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "anstyle";
|
|
|
|
packageId = "anstyle";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows-sys";
|
|
|
|
packageId = "windows-sys 0.52.0";
|
|
|
|
target = { target, features }: (target."windows" or false);
|
|
|
|
features = [ "Win32_System_Console" "Win32_Foundation" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"anyhow" = rec {
|
|
|
|
crateName = "anyhow";
|
|
|
|
version = "1.0.75";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1rmcjkim91c5mw7h9wn8nv0k6x118yz0xg0z1q18svgn42mqqrm4";
|
|
|
|
authors = [
|
|
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"backtrace" = [ "dep:backtrace" ];
|
|
|
|
"default" = [ "std" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
|
|
};
|
2024-03-26 13:05:35 +00:00
|
|
|
"async-channel 1.9.0" = rec {
|
|
|
|
crateName = "async-channel";
|
|
|
|
version = "1.9.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0dbdlkzlncbibd3ij6y6jmvjd0cmdn48ydcfdpfhw09njd93r5c1";
|
|
|
|
authors = [
|
|
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "concurrent-queue";
|
|
|
|
packageId = "concurrent-queue";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "event-listener";
|
|
|
|
packageId = "event-listener 2.5.3";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "futures-core";
|
|
|
|
packageId = "futures-core";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"async-channel 2.1.1" = rec {
|
2023-12-29 18:13:22 +00:00
|
|
|
crateName = "async-channel";
|
|
|
|
version = "2.1.1";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1337ywc1paw03rdlwh100kh8pa0zyp0nrlya8bpsn6zdqi5kz8qw";
|
|
|
|
authors = [
|
|
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "concurrent-queue";
|
|
|
|
packageId = "concurrent-queue";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "event-listener";
|
|
|
|
packageId = "event-listener 4.0.1";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "event-listener-strategy";
|
|
|
|
packageId = "event-listener-strategy";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "futures-core";
|
|
|
|
packageId = "futures-core";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "pin-project-lite";
|
|
|
|
packageId = "pin-project-lite";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"default" = [ "std" ];
|
|
|
|
"std" = [ "concurrent-queue/std" "event-listener/std" "event-listener-strategy/std" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
|
|
};
|
2024-03-26 13:05:35 +00:00
|
|
|
"async-executor" = rec {
|
|
|
|
crateName = "async-executor";
|
|
|
|
version = "1.8.0";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "0z7rpayidhdqs4sdzjhh26z5155c1n94fycqni9793n4zjz5xbhp";
|
|
|
|
authors = [
|
|
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "async-lock";
|
|
|
|
packageId = "async-lock 3.3.0";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "async-task";
|
|
|
|
packageId = "async-task";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "concurrent-queue";
|
|
|
|
packageId = "concurrent-queue";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "fastrand";
|
|
|
|
packageId = "fastrand 2.0.1";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "futures-lite";
|
|
|
|
packageId = "futures-lite 2.2.0";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "futures-lite";
|
|
|
|
packageId = "futures-lite 2.2.0";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
target = { target, features }: (builtins.elem "wasm" target."family");
|
|
|
|
features = [ "std" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "slab";
|
|
|
|
packageId = "slab";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
devDependencies = [
|
|
|
|
{
|
|
|
|
name = "fastrand";
|
|
|
|
packageId = "fastrand 2.0.1";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "futures-lite";
|
|
|
|
packageId = "futures-lite 2.2.0";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"async-global-executor" = rec {
|
|
|
|
crateName = "async-global-executor";
|
|
|
|
version = "2.4.1";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "1762s45cc134d38rrv0hyp41hv4iv6nmx59vswid2p0il8rvdc85";
|
|
|
|
authors = [
|
|
|
|
"Marc-Antoine Perennou <Marc-Antoine@Perennou.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "async-channel";
|
|
|
|
packageId = "async-channel 2.1.1";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "async-executor";
|
|
|
|
packageId = "async-executor";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "async-io";
|
|
|
|
packageId = "async-io 2.3.1";
|
|
|
|
optional = true;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "async-lock";
|
|
|
|
packageId = "async-lock 3.3.0";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "blocking";
|
|
|
|
packageId = "blocking";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "futures-lite";
|
|
|
|
packageId = "futures-lite 2.2.0";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "once_cell";
|
|
|
|
packageId = "once_cell";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
features = {
|
|
|
|
"async-io" = [ "dep:async-io" ];
|
|
|
|
"default" = [ "async-io" ];
|
|
|
|
"tokio" = [ "tokio-crate" ];
|
|
|
|
"tokio-crate" = [ "dep:tokio-crate" ];
|
|
|
|
"tokio02" = [ "tokio02-crate" ];
|
|
|
|
"tokio02-crate" = [ "dep:tokio02-crate" ];
|
|
|
|
"tokio03" = [ "tokio03-crate" ];
|
|
|
|
"tokio03-crate" = [ "dep:tokio03-crate" ];
|
|
|
|
};
|
|
|
|
resolvedDefaultFeatures = [ "async-io" "default" ];
|
|
|
|
};
|
|
|
|
"async-io 1.13.0" = rec {
|
|
|
|
crateName = "async-io";
|
|
|
|
version = "1.13.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "1byj7lpw0ahk6k63sbc9859v68f28hpaab41dxsjj1ggjdfv9i8g";
|
|
|
|
authors = [
|
|
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "async-lock";
|
|
|
|
packageId = "async-lock 2.8.0";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "cfg-if";
|
|
|
|
packageId = "cfg-if";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "concurrent-queue";
|
|
|
|
packageId = "concurrent-queue";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "futures-lite";
|
|
|
|
packageId = "futures-lite 1.13.0";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "log";
|
|
|
|
packageId = "log 0.4.20";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "parking";
|
|
|
|
packageId = "parking";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "polling";
|
|
|
|
packageId = "polling 2.8.0";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "rustix";
|
|
|
|
packageId = "rustix 0.37.27";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
features = [ "std" "fs" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "slab";
|
|
|
|
packageId = "slab";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "socket2";
|
|
|
|
packageId = "socket2 0.4.10";
|
|
|
|
features = [ "all" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "waker-fn";
|
|
|
|
packageId = "waker-fn";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
buildDependencies = [
|
|
|
|
{
|
|
|
|
name = "autocfg";
|
|
|
|
packageId = "autocfg 1.1.0";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"async-io 2.3.1" = rec {
|
|
|
|
crateName = "async-io";
|
|
|
|
version = "2.3.1";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "0rggn074kbqxxajci1aq14b17gp75rw9l6rpbazcv9q0bc6ap5wg";
|
|
|
|
authors = [
|
|
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "async-lock";
|
|
|
|
packageId = "async-lock 3.3.0";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "cfg-if";
|
|
|
|
packageId = "cfg-if";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "concurrent-queue";
|
|
|
|
packageId = "concurrent-queue";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "futures-io";
|
|
|
|
packageId = "futures-io";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
features = [ "std" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "futures-lite";
|
|
|
|
packageId = "futures-lite 2.2.0";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "parking";
|
|
|
|
packageId = "parking";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "polling";
|
|
|
|
packageId = "polling 3.4.0";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "rustix";
|
|
|
|
packageId = "rustix 0.38.28";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
features = [ "fs" "net" "std" ];
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "slab";
|
|
|
|
packageId = "slab";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "tracing";
|
|
|
|
packageId = "tracing";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "windows-sys";
|
|
|
|
packageId = "windows-sys 0.52.0";
|
|
|
|
target = { target, features }: (target."windows" or false);
|
|
|
|
features = [ "Win32_Foundation" ];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"async-lock 2.8.0" = rec {
|
|
|
|
crateName = "async-lock";
|
|
|
|
version = "2.8.0";
|
|
|
|
edition = "2018";
|
|
|
|
sha256 = "0asq5xdzgp3d5m82y5rg7a0k9q0g95jy6mgc7ivl334x7qlp4wi8";
|
|
|
|
authors = [
|
|
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "event-listener";
|
|
|
|
packageId = "event-listener 2.5.3";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
"async-lock 3.3.0" = rec {
|
|
|
|
crateName = "async-lock";
|
|
|
|
version = "3.3.0";
|
|
|
|
edition = "2021";
|
|
|
|
sha256 = "0yxflkfw46rad4lv86f59b5z555dlfmg1riz1n8830rgi0qb8d6h";
|
|
|
|
authors = [
|
|
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
|
|
];
|
|
|
|
dependencies = [
|
|
|
|
{
|
|
|
|
name = "event-listener";
|
|
|
|
packageId = "event-listener 4.0.1";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "event-listener-strategy";
|
|
|
|
packageId = "event-listener-strategy";
|
|
|
|
usesDefaultFeatures = false;
|
|
|
|
}
|
|
|
|
{
|
|
|
|
name = "pin-project-lite";
|
|
|
|
packageId = "pin-project-lite";
|
|
|
|
}
|
|
|
|
];
|
|