8016 lines
264 KiB
Nix
8016 lines
264 KiB
Nix
|
|
# This file was @generated by crate2nix 0.15.0 with the command:
|
|
# "generate"
|
|
# See https://github.com/kolloch/crate2nix for more info.
|
|
|
|
{ nixpkgs ? <nixpkgs>
|
|
, pkgs ? import nixpkgs { config = {}; }
|
|
, fetchurl ? pkgs.fetchurl
|
|
, lib ? pkgs.lib
|
|
, stdenv ? pkgs.stdenv
|
|
, buildRustCrateForPkgs ? pkgs: pkgs.buildRustCrate
|
|
# This is used as the `crateOverrides` argument for `buildRustCrate`.
|
|
, defaultCrateOverrides ? pkgs.defaultCrateOverrides
|
|
# The features to enable for the root_crate or the workspace_members.
|
|
, rootFeatures ? [ "default" ]
|
|
# If true, throw errors instead of issueing deprecation warnings.
|
|
, strictDeprecation ? false
|
|
# Elements to add to the `-C target-feature=` argument passed to `rustc`
|
|
# (separated by `,`, prefixed with `+`).
|
|
# Used for conditional compilation based on CPU feature detection.
|
|
, targetFeatures ? []
|
|
# Additional target attributes for conditional dependencies.
|
|
# Use this for custom cfg flags that are passed via rustcflags but need to
|
|
# be known at Nix evaluation time for dependency resolution.
|
|
# Example: { tracing_unstable = true; } for crates using cfg(tracing_unstable).
|
|
, extraTargetFlags ? {}
|
|
# 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 = {
|
|
"improvise" = rec {
|
|
packageId = "improvise";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "improvise";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
"improvise-core" = rec {
|
|
packageId = "improvise-core";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "improvise-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; };
|
|
};
|
|
"improvise-formula" = rec {
|
|
packageId = "improvise-formula";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "improvise-formula";
|
|
};
|
|
|
|
# Debug support which might change between releases.
|
|
# File a bug if you depend on any for non-debug work!
|
|
debug = internal.debugCrate { inherit packageId; };
|
|
};
|
|
"improvise-io" = rec {
|
|
packageId = "improvise-io";
|
|
build = internal.buildRustCrateWithFeatures {
|
|
packageId = "improvise-io";
|
|
};
|
|
|
|
# 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 = {
|
|
"adler2" = rec {
|
|
crateName = "adler2";
|
|
version = "2.0.1";
|
|
edition = "2021";
|
|
sha256 = "1ymy18s9hs7ya1pjc9864l30wk8p2qfqdi7mhhcc5nfakxbij09j";
|
|
authors = [
|
|
"Jonas Schievink <jonasschievink@gmail.com>"
|
|
"oyvindln <oyvindln@users.noreply.github.com>"
|
|
];
|
|
features = {
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"rustc-dep-of-std" = [ "core" ];
|
|
};
|
|
};
|
|
"aho-corasick" = rec {
|
|
crateName = "aho-corasick";
|
|
version = "1.1.4";
|
|
edition = "2021";
|
|
sha256 = "00a32wb2h07im3skkikc495jvncf62jl6s96vwc7bhi70h9imlyx";
|
|
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 = [ "perf-literal" "std" ];
|
|
};
|
|
"allocator-api2" = rec {
|
|
crateName = "allocator-api2";
|
|
version = "0.2.21";
|
|
edition = "2018";
|
|
sha256 = "08zrzs022xwndihvzdn78yqarv2b9696y67i6h78nla3ww87jgb8";
|
|
libName = "allocator_api2";
|
|
authors = [
|
|
"Zakarum <zaq.dev@icloud.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" ];
|
|
};
|
|
"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 = "1.0.0";
|
|
edition = "2021";
|
|
sha256 = "13d2bj0xfg012s4rmq44zc8zgy1q8k9yp7yhvfnarscnmwpj2jl2";
|
|
dependencies = [
|
|
{
|
|
name = "anstyle";
|
|
packageId = "anstyle";
|
|
}
|
|
{
|
|
name = "anstyle-parse";
|
|
packageId = "anstyle-parse";
|
|
}
|
|
{
|
|
name = "anstyle-query";
|
|
packageId = "anstyle-query";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "anstyle-wincon";
|
|
packageId = "anstyle-wincon";
|
|
optional = true;
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
{
|
|
name = "colorchoice";
|
|
packageId = "colorchoice";
|
|
}
|
|
{
|
|
name = "is_terminal_polyfill";
|
|
packageId = "is_terminal_polyfill";
|
|
}
|
|
{
|
|
name = "utf8parse";
|
|
packageId = "utf8parse";
|
|
}
|
|
];
|
|
features = {
|
|
"auto" = [ "dep:anstyle-query" ];
|
|
"default" = [ "auto" "wincon" ];
|
|
"wincon" = [ "dep:anstyle-wincon" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "auto" "default" "wincon" ];
|
|
};
|
|
"anstyle" = rec {
|
|
crateName = "anstyle";
|
|
version = "1.0.14";
|
|
edition = "2021";
|
|
sha256 = "0030szmgj51fxkic1hpakxxgappxzwm6m154a3gfml83lq63l2wl";
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"anstyle-parse" = rec {
|
|
crateName = "anstyle-parse";
|
|
version = "1.0.0";
|
|
edition = "2021";
|
|
sha256 = "03hkv2690s0crssbnmfkr76kw1k7ah2i6s5amdy9yca2n8w7zkjj";
|
|
libName = "anstyle_parse";
|
|
dependencies = [
|
|
{
|
|
name = "utf8parse";
|
|
packageId = "utf8parse";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"core" = [ "dep:arrayvec" ];
|
|
"default" = [ "utf8" ];
|
|
"utf8" = [ "dep:utf8parse" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "utf8" ];
|
|
};
|
|
"anstyle-query" = rec {
|
|
crateName = "anstyle-query";
|
|
version = "1.1.5";
|
|
edition = "2021";
|
|
sha256 = "1p6shfpnbghs6jsa0vnqd8bb8gd7pjd0jr7w0j8jikakzmr8zi20";
|
|
libName = "anstyle_query";
|
|
dependencies = [
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_System_Console" "Win32_Foundation" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"anstyle-wincon" = rec {
|
|
crateName = "anstyle-wincon";
|
|
version = "3.0.11";
|
|
edition = "2021";
|
|
sha256 = "0zblannm70sk3xny337mz7c6d8q8i24vhbqi42ld8v7q1wjnl7i9";
|
|
libName = "anstyle_wincon";
|
|
dependencies = [
|
|
{
|
|
name = "anstyle";
|
|
packageId = "anstyle";
|
|
}
|
|
{
|
|
name = "once_cell_polyfill";
|
|
packageId = "once_cell_polyfill";
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_System_Console" "Win32_Foundation" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"anyhow" = rec {
|
|
crateName = "anyhow";
|
|
version = "1.0.102";
|
|
edition = "2021";
|
|
sha256 = "0b447dra1v12z474c6z4jmicdmc5yxz5bakympdnij44ckw2s83z";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"atomic" = rec {
|
|
crateName = "atomic";
|
|
version = "0.6.1";
|
|
edition = "2018";
|
|
sha256 = "0h43ljcgbl6vk62hs6yk7zg7qn3myzvpw8k7isb9nzhkbdvvz758";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bytemuck";
|
|
packageId = "bytemuck";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "bytemuck";
|
|
packageId = "bytemuck";
|
|
features = [ "derive" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "fallback" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
};
|
|
"autocfg" = rec {
|
|
crateName = "autocfg";
|
|
version = "1.5.0";
|
|
edition = "2015";
|
|
sha256 = "1s77f98id9l4af4alklmzq46f21c980v13z2r1pcxx6bqgw0d1n0";
|
|
authors = [
|
|
"Josh Stone <cuviper@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"base64" = rec {
|
|
crateName = "base64";
|
|
version = "0.22.1";
|
|
edition = "2018";
|
|
sha256 = "1imqzgh7bxcikp5vx3shqvw9j09g9ly0xr0jma0q66i52r7jbcvj";
|
|
authors = [
|
|
"Marshall Pierce <marshall@mpierce.org>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"bit-set 0.5.3" = rec {
|
|
crateName = "bit-set";
|
|
version = "0.5.3";
|
|
edition = "2015";
|
|
sha256 = "1wcm9vxi00ma4rcxkl3pzzjli6ihrpn9cfdi0c5b4cvga2mxs007";
|
|
libName = "bit_set";
|
|
authors = [
|
|
"Alexis Beingessner <a.beingessner@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bit-vec";
|
|
packageId = "bit-vec 0.6.3";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "bit-vec/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"bit-set 0.8.0" = rec {
|
|
crateName = "bit-set";
|
|
version = "0.8.0";
|
|
edition = "2015";
|
|
sha256 = "18riaa10s6n59n39vix0cr7l2dgwdhcpbcm97x1xbyfp1q47x008";
|
|
libName = "bit_set";
|
|
authors = [
|
|
"Alexis Beingessner <a.beingessner@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bit-vec";
|
|
packageId = "bit-vec 0.8.0";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" "bit-vec/serde" ];
|
|
"std" = [ "bit-vec/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"bit-vec 0.6.3" = rec {
|
|
crateName = "bit-vec";
|
|
version = "0.6.3";
|
|
edition = "2015";
|
|
sha256 = "1ywqjnv60cdh1slhz67psnp422md6jdliji6alq0gmly2xm9p7rl";
|
|
libName = "bit_vec";
|
|
authors = [
|
|
"Alexis Beingessner <a.beingessner@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde_no_std" = [ "serde/alloc" ];
|
|
"serde_std" = [ "std" "serde/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"bit-vec 0.8.0" = rec {
|
|
crateName = "bit-vec";
|
|
version = "0.8.0";
|
|
edition = "2015";
|
|
sha256 = "1xxa1s2cj291r7k1whbxq840jxvmdsq9xgh7bvrxl46m80fllxjy";
|
|
libName = "bit_vec";
|
|
authors = [
|
|
"Alexis Beingessner <a.beingessner@gmail.com>"
|
|
];
|
|
features = {
|
|
"borsh" = [ "dep:borsh" ];
|
|
"borsh_std" = [ "borsh/std" ];
|
|
"default" = [ "std" ];
|
|
"miniserde" = [ "dep:miniserde" ];
|
|
"nanoserde" = [ "dep:nanoserde" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde_no_std" = [ "serde/alloc" ];
|
|
"serde_std" = [ "std" "serde/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"bitflags 1.3.2" = rec {
|
|
crateName = "bitflags";
|
|
version = "1.3.2";
|
|
edition = "2018";
|
|
sha256 = "12ki6w8gn1ldq7yz9y680llwk5gmrhrzszaa17g1sbrw2r2qvwxy";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" "compiler_builtins" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"bitflags 2.11.1" = rec {
|
|
crateName = "bitflags";
|
|
version = "2.11.1";
|
|
edition = "2021";
|
|
sha256 = "1cvqijg3rvwgis20a66vfdxannjsxfy5fgjqkaq3l13gyfcj4lf4";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"bytemuck" = [ "dep:bytemuck" ];
|
|
"serde" = [ "serde_core" ];
|
|
"serde_core" = [ "dep:serde_core" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"block-buffer" = rec {
|
|
crateName = "block-buffer";
|
|
version = "0.10.4";
|
|
edition = "2018";
|
|
sha256 = "0w9sa2ypmrsqqvc20nhwr75wbb5cjr4kkyhpjm1z1lv2kdicfy1h";
|
|
libName = "block_buffer";
|
|
authors = [
|
|
"RustCrypto Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "generic-array";
|
|
packageId = "generic-array";
|
|
}
|
|
];
|
|
|
|
};
|
|
"bumpalo" = rec {
|
|
crateName = "bumpalo";
|
|
version = "3.20.2";
|
|
edition = "2021";
|
|
sha256 = "1jrgxlff76k9glam0akhwpil2fr1w32gbjdf5hpipc7ld2c7h82x";
|
|
authors = [
|
|
"Nick Fitzgerald <fitzgen@gmail.com>"
|
|
];
|
|
features = {
|
|
"allocator-api2" = [ "dep:allocator-api2" ];
|
|
"bench_allocator_api" = [ "allocator_api" "blink-alloc/nightly" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"bytemuck" = rec {
|
|
crateName = "bytemuck";
|
|
version = "1.25.0";
|
|
edition = "2018";
|
|
sha256 = "1v1z32igg9zq49phb3fra0ax5r2inf3aw473vldnm886sx5vdvy8";
|
|
authors = [
|
|
"Lokathor <zefria@gmail.com>"
|
|
];
|
|
features = {
|
|
"bytemuck_derive" = [ "dep:bytemuck_derive" ];
|
|
"derive" = [ "bytemuck_derive" ];
|
|
"extern_crate_std" = [ "extern_crate_alloc" ];
|
|
"latest_stable_rust" = [ "aarch64_simd" "avx512_simd" "align_offset" "alloc_uninit" "const_zeroed" "derive" "impl_core_error" "min_const_generics" "must_cast" "must_cast_extra" "pod_saturating" "track_caller" "transparentwrapper_extra" "wasm_simd" "zeroable_atomics" "zeroable_maybe_uninit" "zeroable_unwind_fn" ];
|
|
"must_cast_extra" = [ "must_cast" ];
|
|
"nightly_portable_simd" = [ "rustversion" ];
|
|
"rustversion" = [ "dep:rustversion" ];
|
|
};
|
|
};
|
|
"castaway" = rec {
|
|
crateName = "castaway";
|
|
version = "0.2.4";
|
|
edition = "2018";
|
|
sha256 = "0nn5his5f8q20nkyg1nwb40xc19a08yaj4y76a8q2y3mdsmm3ify";
|
|
authors = [
|
|
"Stephen M. Coakley <me@stephencoakley.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "rustversion";
|
|
packageId = "rustversion";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" ];
|
|
};
|
|
"cc" = rec {
|
|
crateName = "cc";
|
|
version = "1.2.61";
|
|
edition = "2018";
|
|
sha256 = "0vawvnrrsmi8dygavq3wx085cmlp10sp3fhld5842rlqkqsr0vfi";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "find-msvc-tools";
|
|
packageId = "find-msvc-tools";
|
|
}
|
|
{
|
|
name = "shlex";
|
|
packageId = "shlex";
|
|
}
|
|
];
|
|
features = {
|
|
"parallel" = [ "dep:libc" "dep:jobserver" ];
|
|
};
|
|
};
|
|
"cfg-if" = rec {
|
|
crateName = "cfg-if";
|
|
version = "1.0.4";
|
|
edition = "2018";
|
|
sha256 = "008q28ajc546z5p2hcwdnckmg0hia7rnx52fni04bwqkzyrghc4k";
|
|
libName = "cfg_if";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
features = {
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" ];
|
|
};
|
|
};
|
|
"cfg_aliases" = rec {
|
|
crateName = "cfg_aliases";
|
|
version = "0.2.1";
|
|
edition = "2018";
|
|
sha256 = "092pxdc1dbgjb6qvh83gk56rkic2n2ybm4yvy76cgynmzi3zwfk1";
|
|
authors = [
|
|
"Zicklag <zicklag@katharostech.com>"
|
|
];
|
|
|
|
};
|
|
"chrono" = rec {
|
|
crateName = "chrono";
|
|
version = "0.4.44";
|
|
edition = "2021";
|
|
sha256 = "1c64mk9a235271j5g3v4zrzqqmd43vp9vki7vqfllpqf5rd0fwy6";
|
|
dependencies = [
|
|
{
|
|
name = "iana-time-zone";
|
|
packageId = "iana-time-zone";
|
|
optional = true;
|
|
target = { target, features }: (target."unix" or false);
|
|
features = [ "fallback" ];
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
optional = true;
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && (!(("emscripten" == target."os" or null) || ("wasi" == target."os" or null))));
|
|
}
|
|
{
|
|
name = "num-traits";
|
|
packageId = "num-traits";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
optional = true;
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && (!(("emscripten" == target."os" or null) || ("wasi" == target."os" or null))));
|
|
}
|
|
{
|
|
name = "windows-link";
|
|
packageId = "windows-link";
|
|
optional = true;
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"clock" = [ "winapi" "iana-time-zone" "now" ];
|
|
"default" = [ "clock" "std" "oldtime" "wasmbind" ];
|
|
"defmt" = [ "dep:defmt" "pure-rust-locales?/defmt" ];
|
|
"iana-time-zone" = [ "dep:iana-time-zone" ];
|
|
"js-sys" = [ "dep:js-sys" ];
|
|
"now" = [ "std" ];
|
|
"pure-rust-locales" = [ "dep:pure-rust-locales" ];
|
|
"rkyv" = [ "dep:rkyv" "rkyv/size_32" ];
|
|
"rkyv-16" = [ "dep:rkyv" "rkyv?/size_16" ];
|
|
"rkyv-32" = [ "dep:rkyv" "rkyv?/size_32" ];
|
|
"rkyv-64" = [ "dep:rkyv" "rkyv?/size_64" ];
|
|
"rkyv-validation" = [ "rkyv?/validation" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"std" = [ "alloc" ];
|
|
"unstable-locales" = [ "pure-rust-locales" ];
|
|
"wasm-bindgen" = [ "dep:wasm-bindgen" ];
|
|
"wasmbind" = [ "wasm-bindgen" "js-sys" ];
|
|
"winapi" = [ "windows-link" ];
|
|
"windows-link" = [ "dep:windows-link" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "clock" "default" "iana-time-zone" "js-sys" "now" "oldtime" "serde" "std" "wasm-bindgen" "wasmbind" "winapi" "windows-link" ];
|
|
};
|
|
"clap" = rec {
|
|
crateName = "clap";
|
|
version = "4.6.1";
|
|
edition = "2024";
|
|
crateBin = [];
|
|
sha256 = "0lcf88l7vlg796rrqr7wipbbmfa5sgsgx4211b7xmxxv8dz13nqx";
|
|
dependencies = [
|
|
{
|
|
name = "clap_builder";
|
|
packageId = "clap_builder";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "clap_derive";
|
|
packageId = "clap_derive";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"cargo" = [ "clap_builder/cargo" ];
|
|
"color" = [ "clap_builder/color" ];
|
|
"debug" = [ "clap_builder/debug" "clap_derive?/debug" ];
|
|
"default" = [ "std" "color" "help" "usage" "error-context" "suggestions" ];
|
|
"deprecated" = [ "clap_builder/deprecated" "clap_derive?/deprecated" ];
|
|
"derive" = [ "dep:clap_derive" ];
|
|
"env" = [ "clap_builder/env" ];
|
|
"error-context" = [ "clap_builder/error-context" ];
|
|
"help" = [ "clap_builder/help" ];
|
|
"std" = [ "clap_builder/std" ];
|
|
"string" = [ "clap_builder/string" ];
|
|
"suggestions" = [ "clap_builder/suggestions" ];
|
|
"unicode" = [ "clap_builder/unicode" ];
|
|
"unstable-doc" = [ "clap_builder/unstable-doc" "derive" ];
|
|
"unstable-ext" = [ "clap_builder/unstable-ext" ];
|
|
"unstable-markdown" = [ "clap_derive/unstable-markdown" ];
|
|
"unstable-styles" = [ "clap_builder/unstable-styles" ];
|
|
"unstable-v5" = [ "clap_builder/unstable-v5" "clap_derive?/unstable-v5" "deprecated" ];
|
|
"usage" = [ "clap_builder/usage" ];
|
|
"wrap_help" = [ "clap_builder/wrap_help" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "color" "default" "derive" "error-context" "help" "std" "suggestions" "usage" ];
|
|
};
|
|
"clap_builder" = rec {
|
|
crateName = "clap_builder";
|
|
version = "4.6.0";
|
|
edition = "2024";
|
|
sha256 = "17q6np22yxhh5y5v53y4l31ps3hlaz45mvz2n2nicr7n3c056jki";
|
|
dependencies = [
|
|
{
|
|
name = "anstream";
|
|
packageId = "anstream";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "anstyle";
|
|
packageId = "anstyle";
|
|
}
|
|
{
|
|
name = "clap_lex";
|
|
packageId = "clap_lex";
|
|
}
|
|
{
|
|
name = "strsim";
|
|
packageId = "strsim";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"color" = [ "dep:anstream" ];
|
|
"debug" = [ "dep:backtrace" ];
|
|
"default" = [ "std" "color" "help" "usage" "error-context" "suggestions" ];
|
|
"std" = [ "anstyle/std" ];
|
|
"suggestions" = [ "dep:strsim" "error-context" ];
|
|
"unicode" = [ "dep:unicode-width" "dep:unicase" ];
|
|
"unstable-doc" = [ "cargo" "wrap_help" "env" "unicode" "string" "unstable-ext" ];
|
|
"unstable-styles" = [ "color" ];
|
|
"unstable-v5" = [ "deprecated" ];
|
|
"wrap_help" = [ "help" "dep:terminal_size" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "color" "error-context" "help" "std" "suggestions" "usage" ];
|
|
};
|
|
"clap_derive" = rec {
|
|
crateName = "clap_derive";
|
|
version = "4.6.1";
|
|
edition = "2024";
|
|
sha256 = "1acpz49hi00iv9jkapixjzcv7s51x8qkfaqscjm36rqgf428dkpj";
|
|
procMacro = true;
|
|
dependencies = [
|
|
{
|
|
name = "heck";
|
|
packageId = "heck";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
features = {
|
|
"raw-deprecated" = [ "deprecated" ];
|
|
"unstable-markdown" = [ "dep:pulldown-cmark" "dep:anstyle" ];
|
|
"unstable-v5" = [ "deprecated" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"clap_lex" = rec {
|
|
crateName = "clap_lex";
|
|
version = "1.1.0";
|
|
edition = "2024";
|
|
sha256 = "1ycqkpygnlqnndghhcxjb44lzl0nmgsia64x9581030yifxs7m68";
|
|
|
|
};
|
|
"colorchoice" = rec {
|
|
crateName = "colorchoice";
|
|
version = "1.0.5";
|
|
edition = "2021";
|
|
sha256 = "0w75k89hw39p0mnnhlrwr23q50rza1yjki44qvh2mgrnj065a1qx";
|
|
|
|
};
|
|
"compact_str" = rec {
|
|
crateName = "compact_str";
|
|
version = "0.9.0";
|
|
edition = "2021";
|
|
sha256 = "0ykhh2scg32lmzxak107pmby6fmnz7qbhsi9i8g9iknfl4ji7nrz";
|
|
authors = [
|
|
"Parker Timmerman <parker@parkertimmerman.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "castaway";
|
|
packageId = "castaway";
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" ];
|
|
}
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
}
|
|
{
|
|
name = "rustversion";
|
|
packageId = "rustversion";
|
|
}
|
|
{
|
|
name = "ryu";
|
|
packageId = "ryu";
|
|
}
|
|
{
|
|
name = "static_assertions";
|
|
packageId = "static_assertions";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"borsh" = [ "dep:borsh" ];
|
|
"bytes" = [ "dep:bytes" ];
|
|
"default" = [ "std" ];
|
|
"diesel" = [ "dep:diesel" ];
|
|
"markup" = [ "dep:markup" ];
|
|
"proptest" = [ "dep:proptest" ];
|
|
"quickcheck" = [ "dep:quickcheck" ];
|
|
"rkyv" = [ "dep:rkyv" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"smallvec" = [ "dep:smallvec" ];
|
|
"sqlx" = [ "dep:sqlx" "std" ];
|
|
"sqlx-mysql" = [ "sqlx" "sqlx/mysql" ];
|
|
"sqlx-postgres" = [ "sqlx" "sqlx/postgres" ];
|
|
"sqlx-sqlite" = [ "sqlx" "sqlx/sqlite" ];
|
|
"zeroize" = [ "dep:zeroize" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"convert_case" = rec {
|
|
crateName = "convert_case";
|
|
version = "0.10.0";
|
|
edition = "2021";
|
|
sha256 = "1fff1x78mp2c233g68my0ag0zrmjdbym8bfyahjbfy4cxza5hd33";
|
|
authors = [
|
|
"rutrum <dave@rutrum.net>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "unicode-segmentation";
|
|
packageId = "unicode-segmentation";
|
|
}
|
|
];
|
|
|
|
};
|
|
"core-foundation-sys" = rec {
|
|
crateName = "core-foundation-sys";
|
|
version = "0.8.7";
|
|
edition = "2018";
|
|
sha256 = "12w8j73lazxmr1z0h98hf3z623kl8ms7g07jch7n4p8f9nwlhdkp";
|
|
libName = "core_foundation_sys";
|
|
authors = [
|
|
"The Servo Project Developers"
|
|
];
|
|
features = {
|
|
"default" = [ "link" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "link" ];
|
|
};
|
|
"cpufeatures" = rec {
|
|
crateName = "cpufeatures";
|
|
version = "0.2.17";
|
|
edition = "2018";
|
|
sha256 = "10023dnnaghhdl70xcds12fsx2b966sxbxjq5sxs49mvxqw5ivar";
|
|
authors = [
|
|
"RustCrypto Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target.name == "aarch64-linux-android");
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("aarch64" == target."arch" or null) && ("linux" == target."os" or null));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("aarch64" == target."arch" or null) && ("apple" == target."vendor" or null));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("loongarch64" == target."arch" or null) && ("linux" == target."os" or null));
|
|
}
|
|
];
|
|
|
|
};
|
|
"crc32fast" = rec {
|
|
crateName = "crc32fast";
|
|
version = "1.5.0";
|
|
edition = "2021";
|
|
sha256 = "04d51liy8rbssra92p0qnwjw8i9rm9c4m3bwy19wjamz1k4w30cl";
|
|
authors = [
|
|
"Sam Rijs <srijs@airpost.net>"
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"crossterm" = rec {
|
|
crateName = "crossterm";
|
|
version = "0.29.0";
|
|
edition = "2021";
|
|
sha256 = "0yzqxxd90k7d2ac26xq1awsznsaq0qika2nv1ik3p0vzqvjg5ffq";
|
|
authors = [
|
|
"T. Post"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 2.11.1";
|
|
}
|
|
{
|
|
name = "crossterm_winapi";
|
|
packageId = "crossterm_winapi";
|
|
optional = true;
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
{
|
|
name = "derive_more";
|
|
packageId = "derive_more";
|
|
optional = true;
|
|
features = [ "is_variant" ];
|
|
}
|
|
{
|
|
name = "document-features";
|
|
packageId = "document-features";
|
|
}
|
|
{
|
|
name = "mio";
|
|
packageId = "mio";
|
|
optional = true;
|
|
target = { target, features }: (target."unix" or false);
|
|
features = [ "os-poll" ];
|
|
}
|
|
{
|
|
name = "parking_lot";
|
|
packageId = "parking_lot";
|
|
}
|
|
{
|
|
name = "rustix";
|
|
packageId = "rustix";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target."unix" or false);
|
|
features = [ "std" "stdio" "termios" ];
|
|
}
|
|
{
|
|
name = "signal-hook";
|
|
packageId = "signal-hook";
|
|
optional = true;
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "signal-hook-mio";
|
|
packageId = "signal-hook-mio";
|
|
optional = true;
|
|
target = { target, features }: (target."unix" or false);
|
|
features = [ "support-v1_0" ];
|
|
}
|
|
{
|
|
name = "winapi";
|
|
packageId = "winapi";
|
|
optional = true;
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "winuser" "winerror" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "bracketed-paste" "events" "windows" "derive-more" ];
|
|
"derive-more" = [ "dep:derive_more" ];
|
|
"event-stream" = [ "dep:futures-core" "events" ];
|
|
"events" = [ "dep:mio" "dep:signal-hook" "dep:signal-hook-mio" ];
|
|
"filedescriptor" = [ "dep:filedescriptor" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"osc52" = [ "dep:base64" ];
|
|
"serde" = [ "dep:serde" "bitflags/serde" ];
|
|
"use-dev-tty" = [ "filedescriptor" "rustix/process" ];
|
|
"windows" = [ "dep:winapi" "dep:crossterm_winapi" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "bracketed-paste" "default" "derive-more" "events" "windows" ];
|
|
};
|
|
"crossterm_winapi" = rec {
|
|
crateName = "crossterm_winapi";
|
|
version = "0.9.1";
|
|
edition = "2018";
|
|
sha256 = "0axbfb2ykbwbpf1hmxwpawwfs8wvmkcka5m561l7yp36ldi7rpdc";
|
|
authors = [
|
|
"T. Post"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "winapi";
|
|
packageId = "winapi";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "winbase" "consoleapi" "processenv" "handleapi" "synchapi" "impl-default" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"crypto-common" = rec {
|
|
crateName = "crypto-common";
|
|
version = "0.1.7";
|
|
edition = "2018";
|
|
sha256 = "02nn2rhfy7kvdkdjl457q2z0mklcvj9h662xrq6dzhfialh2kj3q";
|
|
libName = "crypto_common";
|
|
authors = [
|
|
"RustCrypto Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "generic-array";
|
|
packageId = "generic-array";
|
|
features = [ "more_lengths" ];
|
|
}
|
|
{
|
|
name = "typenum";
|
|
packageId = "typenum";
|
|
}
|
|
];
|
|
features = {
|
|
"getrandom" = [ "rand_core/getrandom" ];
|
|
"rand_core" = [ "dep:rand_core" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"csscolorparser" = rec {
|
|
crateName = "csscolorparser";
|
|
version = "0.6.2";
|
|
edition = "2018";
|
|
sha256 = "1gxh11hajx96mf5sd0az6mfsxdryfqvcfcphny3yfbfscqq7sapb";
|
|
authors = [
|
|
"Nor Khasyatillah <mazznoer@ymail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "lab";
|
|
packageId = "lab";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "phf";
|
|
packageId = "phf";
|
|
optional = true;
|
|
features = [ "macros" ];
|
|
}
|
|
];
|
|
features = {
|
|
"cint" = [ "dep:cint" ];
|
|
"default" = [ "named-colors" ];
|
|
"lab" = [ "dep:lab" ];
|
|
"named-colors" = [ "phf" ];
|
|
"phf" = [ "dep:phf" ];
|
|
"rgb" = [ "dep:rgb" ];
|
|
"rust-rgb" = [ "rgb" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "lab" "named-colors" "phf" ];
|
|
};
|
|
"csv" = rec {
|
|
crateName = "csv";
|
|
version = "1.4.0";
|
|
edition = "2021";
|
|
sha256 = "0f7r2ip0rbi7k377c3xmsh9xd69sillffhpfmbgnvz3yrxl9vkaj";
|
|
authors = [
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "csv-core";
|
|
packageId = "csv-core";
|
|
}
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
}
|
|
{
|
|
name = "ryu";
|
|
packageId = "ryu";
|
|
}
|
|
{
|
|
name = "serde_core";
|
|
packageId = "serde_core";
|
|
}
|
|
];
|
|
|
|
};
|
|
"csv-core" = rec {
|
|
crateName = "csv-core";
|
|
version = "0.1.13";
|
|
edition = "2018";
|
|
sha256 = "10lppd3fdb1i5npgx9xqjs5mjmy2qbdi8n16i48lg03ak4k3qjkh";
|
|
libName = "csv_core";
|
|
authors = [
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"libc" = [ "memchr/libc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"darling" = rec {
|
|
crateName = "darling";
|
|
version = "0.23.0";
|
|
edition = "2021";
|
|
sha256 = "179fj6p6ajw4dnkrik51wjhifxwy02x5zhligyymcb905zd17bi5";
|
|
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" ];
|
|
"serde" = [ "darling_core/serde" ];
|
|
"suggestions" = [ "darling_core/suggestions" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "suggestions" ];
|
|
};
|
|
"darling_core" = rec {
|
|
crateName = "darling_core";
|
|
version = "0.23.0";
|
|
edition = "2021";
|
|
sha256 = "1c033vrks38vpw8kwgd5w088dsr511kfz55n9db56prkgh7sarcq";
|
|
authors = [
|
|
"Ted Driggs <ted.driggs@outlook.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "ident_case";
|
|
packageId = "ident_case";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "strsim";
|
|
packageId = "strsim";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
features = [ "full" "extra-traits" ];
|
|
}
|
|
];
|
|
features = {
|
|
"serde" = [ "dep:serde" ];
|
|
"strsim" = [ "dep:strsim" ];
|
|
"suggestions" = [ "strsim" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "strsim" "suggestions" ];
|
|
};
|
|
"darling_macro" = rec {
|
|
crateName = "darling_macro";
|
|
version = "0.23.0";
|
|
edition = "2021";
|
|
sha256 = "13fvzji9xyp304mgq720z5l0xgm54qj68jibwscagkynggn88fdc";
|
|
procMacro = true;
|
|
authors = [
|
|
"Ted Driggs <ted.driggs@outlook.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "darling_core";
|
|
packageId = "darling_core";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
}
|
|
];
|
|
|
|
};
|
|
"deltae" = rec {
|
|
crateName = "deltae";
|
|
version = "0.3.2";
|
|
edition = "2018";
|
|
sha256 = "1d3hw9hpvicl9x0x34jr2ybjk5g5ym1lhbyz6zj31110gq8zaaap";
|
|
authors = [
|
|
"Ryan O'Beirne <ryanobeirne@ryanobeirne.com>"
|
|
];
|
|
|
|
};
|
|
"deranged" = rec {
|
|
crateName = "deranged";
|
|
version = "0.5.8";
|
|
edition = "2021";
|
|
sha256 = "0711df3w16vx80k55ivkwzwswziinj4dz05xci3rvmn15g615n3w";
|
|
authors = [
|
|
"Jacob Pratt <jacob@jhpratt.dev>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "powerfmt";
|
|
packageId = "powerfmt";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"macros" = [ "dep:deranged-macros" ];
|
|
"num" = [ "dep:num-traits" ];
|
|
"powerfmt" = [ "dep:powerfmt" ];
|
|
"quickcheck" = [ "dep:quickcheck" "alloc" ];
|
|
"rand" = [ "rand08" "rand09" "rand010" ];
|
|
"rand010" = [ "dep:rand010" ];
|
|
"rand08" = [ "dep:rand08" ];
|
|
"rand09" = [ "dep:rand09" ];
|
|
"serde" = [ "dep:serde_core" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "powerfmt" ];
|
|
};
|
|
"derive_more" = rec {
|
|
crateName = "derive_more";
|
|
version = "2.1.1";
|
|
edition = "2021";
|
|
sha256 = "0d5i10l4aff744jw7v4n8g6cv15rjk5mp0f1z522pc2nj7jfjlfp";
|
|
authors = [
|
|
"Jelte Fennema <github-tech@jeltef.nl>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "derive_more-impl";
|
|
packageId = "derive_more-impl";
|
|
}
|
|
];
|
|
features = {
|
|
"add" = [ "derive_more-impl/add" ];
|
|
"add_assign" = [ "derive_more-impl/add_assign" ];
|
|
"as_ref" = [ "derive_more-impl/as_ref" ];
|
|
"constructor" = [ "derive_more-impl/constructor" ];
|
|
"debug" = [ "derive_more-impl/debug" ];
|
|
"default" = [ "std" ];
|
|
"deref" = [ "derive_more-impl/deref" ];
|
|
"deref_mut" = [ "derive_more-impl/deref_mut" ];
|
|
"display" = [ "derive_more-impl/display" ];
|
|
"eq" = [ "derive_more-impl/eq" ];
|
|
"error" = [ "derive_more-impl/error" ];
|
|
"from" = [ "derive_more-impl/from" ];
|
|
"from_str" = [ "derive_more-impl/from_str" ];
|
|
"full" = [ "add" "add_assign" "as_ref" "constructor" "debug" "deref" "deref_mut" "display" "eq" "error" "from" "from_str" "index" "index_mut" "into" "into_iterator" "is_variant" "mul" "mul_assign" "not" "sum" "try_from" "try_into" "try_unwrap" "unwrap" ];
|
|
"index" = [ "derive_more-impl/index" ];
|
|
"index_mut" = [ "derive_more-impl/index_mut" ];
|
|
"into" = [ "derive_more-impl/into" ];
|
|
"into_iterator" = [ "derive_more-impl/into_iterator" ];
|
|
"is_variant" = [ "derive_more-impl/is_variant" ];
|
|
"mul" = [ "derive_more-impl/mul" ];
|
|
"mul_assign" = [ "derive_more-impl/mul_assign" ];
|
|
"not" = [ "derive_more-impl/not" ];
|
|
"sum" = [ "derive_more-impl/sum" ];
|
|
"testing-helpers" = [ "derive_more-impl/testing-helpers" "dep:rustc_version" ];
|
|
"try_from" = [ "derive_more-impl/try_from" ];
|
|
"try_into" = [ "derive_more-impl/try_into" ];
|
|
"try_unwrap" = [ "derive_more-impl/try_unwrap" ];
|
|
"unwrap" = [ "derive_more-impl/unwrap" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "is_variant" "std" ];
|
|
};
|
|
"derive_more-impl" = rec {
|
|
crateName = "derive_more-impl";
|
|
version = "2.1.1";
|
|
edition = "2021";
|
|
sha256 = "1jwdp836vymp35d7mfvvalplkdgk2683nv3zjlx65n1194k9g6kr";
|
|
procMacro = true;
|
|
libName = "derive_more_impl";
|
|
authors = [
|
|
"Jelte Fennema <github-tech@jeltef.nl>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "convert_case";
|
|
packageId = "convert_case";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "rustc_version";
|
|
packageId = "rustc_version";
|
|
}
|
|
];
|
|
features = {
|
|
"add" = [ "syn/extra-traits" "syn/visit" ];
|
|
"add_assign" = [ "syn/extra-traits" "syn/visit" ];
|
|
"as_ref" = [ "syn/extra-traits" "syn/visit" ];
|
|
"debug" = [ "syn/extra-traits" "dep:unicode-xid" ];
|
|
"display" = [ "syn/extra-traits" "dep:unicode-xid" "dep:convert_case" ];
|
|
"eq" = [ "syn/extra-traits" "syn/visit" ];
|
|
"error" = [ "syn/extra-traits" ];
|
|
"from" = [ "syn/extra-traits" ];
|
|
"from_str" = [ "syn/full" "syn/visit" "dep:convert_case" ];
|
|
"full" = [ "add" "add_assign" "as_ref" "constructor" "debug" "deref" "deref_mut" "display" "eq" "error" "from" "from_str" "index" "index_mut" "into" "into_iterator" "is_variant" "mul" "mul_assign" "not" "sum" "try_from" "try_into" "try_unwrap" "unwrap" ];
|
|
"into" = [ "syn/extra-traits" "syn/visit-mut" ];
|
|
"is_variant" = [ "dep:convert_case" ];
|
|
"mul" = [ "syn/extra-traits" "syn/visit" ];
|
|
"mul_assign" = [ "syn/extra-traits" "syn/visit" ];
|
|
"not" = [ "syn/extra-traits" ];
|
|
"testing-helpers" = [ "syn/full" ];
|
|
"try_into" = [ "syn/extra-traits" "syn/full" "syn/visit-mut" ];
|
|
"try_unwrap" = [ "dep:convert_case" ];
|
|
"unwrap" = [ "dep:convert_case" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "is_variant" ];
|
|
};
|
|
"digest" = rec {
|
|
crateName = "digest";
|
|
version = "0.10.7";
|
|
edition = "2018";
|
|
sha256 = "14p2n6ih29x81akj097lvz7wi9b6b9hvls0lwrv7b6xwyy0s5ncy";
|
|
authors = [
|
|
"RustCrypto Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "block-buffer";
|
|
packageId = "block-buffer";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "crypto-common";
|
|
packageId = "crypto-common";
|
|
}
|
|
];
|
|
features = {
|
|
"blobby" = [ "dep:blobby" ];
|
|
"block-buffer" = [ "dep:block-buffer" ];
|
|
"const-oid" = [ "dep:const-oid" ];
|
|
"core-api" = [ "block-buffer" ];
|
|
"default" = [ "core-api" ];
|
|
"dev" = [ "blobby" ];
|
|
"mac" = [ "subtle" ];
|
|
"oid" = [ "const-oid" ];
|
|
"rand_core" = [ "crypto-common/rand_core" ];
|
|
"std" = [ "alloc" "crypto-common/std" ];
|
|
"subtle" = [ "dep:subtle" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "block-buffer" "core-api" "default" "std" ];
|
|
};
|
|
"dirs" = rec {
|
|
crateName = "dirs";
|
|
version = "6.0.0";
|
|
edition = "2015";
|
|
sha256 = "0knfikii29761g22pwfrb8d0nqpbgw77sni9h2224haisyaams63";
|
|
authors = [
|
|
"Simon Ochsenreither <simon@ochsenreither.de>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "dirs-sys";
|
|
packageId = "dirs-sys";
|
|
}
|
|
];
|
|
|
|
};
|
|
"dirs-sys" = rec {
|
|
crateName = "dirs-sys";
|
|
version = "0.5.0";
|
|
edition = "2015";
|
|
sha256 = "1aqzpgq6ampza6v012gm2dppx9k35cdycbj54808ksbys9k366p0";
|
|
libName = "dirs_sys";
|
|
authors = [
|
|
"Simon Ochsenreither <simon@ochsenreither.de>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "option-ext";
|
|
packageId = "option-ext";
|
|
}
|
|
{
|
|
name = "redox_users";
|
|
packageId = "redox_users";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("redox" == target."os" or null);
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_UI_Shell" "Win32_Foundation" "Win32_Globalization" "Win32_System_Com" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"document-features" = rec {
|
|
crateName = "document-features";
|
|
version = "0.2.12";
|
|
edition = "2018";
|
|
sha256 = "0qcgpialq3zgvjmsvar9n6v10rfbv6mk6ajl46dd4pj5hn3aif6l";
|
|
procMacro = true;
|
|
libName = "document_features";
|
|
libPath = "lib.rs";
|
|
authors = [
|
|
"Slint Developers <info@slint.dev>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "litrs";
|
|
packageId = "litrs";
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"either" = rec {
|
|
crateName = "either";
|
|
version = "1.15.0";
|
|
edition = "2021";
|
|
sha256 = "069p1fknsmzn9llaizh77kip0pqmcwpdsykv2x30xpjyija5gis8";
|
|
authors = [
|
|
"bluss"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"use_std" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" "use_std" ];
|
|
};
|
|
"enum_dispatch" = rec {
|
|
crateName = "enum_dispatch";
|
|
version = "0.3.13";
|
|
edition = "2018";
|
|
sha256 = "1kby2jz173ggg7wk41vjsskmkdyx7749ll8lhqhv6mb5qqmww65a";
|
|
procMacro = true;
|
|
authors = [
|
|
"Anton Lazarev <https://antonok.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"equivalent" = rec {
|
|
crateName = "equivalent";
|
|
version = "1.0.2";
|
|
edition = "2015";
|
|
sha256 = "03swzqznragy8n0x31lqc78g2af054jwivp7lkrbrc0khz74lyl7";
|
|
|
|
};
|
|
"errno" = rec {
|
|
crateName = "errno";
|
|
version = "0.3.14";
|
|
edition = "2018";
|
|
sha256 = "1szgccmh8vgryqyadg8xd58mnwwicf39zmin3bsn63df2wbbgjir";
|
|
authors = [
|
|
"Chris Wong <lambda.fairy@gmail.com>"
|
|
"Dan Gohman <dev@sunfishcode.online>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("hermit" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("wasi" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Foundation" "Win32_System_Diagnostics_Debug" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "libc/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"euclid" = rec {
|
|
crateName = "euclid";
|
|
version = "0.22.14";
|
|
edition = "2021";
|
|
sha256 = "01ksjl4vb8ms89laswnjpld3z4n6c1s7qlqq0djx3imiwdjm787i";
|
|
authors = [
|
|
"The Servo Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "num-traits";
|
|
packageId = "num-traits";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"bytemuck" = [ "dep:bytemuck" ];
|
|
"default" = [ "std" ];
|
|
"libm" = [ "num-traits/libm" ];
|
|
"malloc_size_of" = [ "dep:malloc_size_of" ];
|
|
"mint" = [ "dep:mint" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"std" = [ "num-traits/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"fancy-regex" = rec {
|
|
crateName = "fancy-regex";
|
|
version = "0.11.0";
|
|
edition = "2018";
|
|
sha256 = "18j0mmzfycibhxhhhfja00dxd1vf8x5c28lbry224574h037qpxr";
|
|
libName = "fancy_regex";
|
|
authors = [
|
|
"Raph Levien <raph@google.com>"
|
|
"Robin Stocker <robin@nibor.org>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bit-set";
|
|
packageId = "bit-set 0.5.3";
|
|
}
|
|
{
|
|
name = "regex";
|
|
packageId = "regex";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "unicode" "perf" ];
|
|
"perf" = [ "regex/perf" ];
|
|
"perf-cache" = [ "regex/perf-cache" ];
|
|
"perf-dfa" = [ "regex/perf-dfa" ];
|
|
"perf-inline" = [ "regex/perf-inline" ];
|
|
"perf-literal" = [ "regex/perf-literal" ];
|
|
"unicode" = [ "regex/unicode" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "perf" "unicode" ];
|
|
};
|
|
"fastrand" = rec {
|
|
crateName = "fastrand";
|
|
version = "2.4.1";
|
|
edition = "2018";
|
|
sha256 = "1mnqxxnxvd69ma9mczabpbbsgwlhd6l78yv3vd681453a9s247wz";
|
|
authors = [
|
|
"Stjepan Glavina <stjepang@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"getrandom" = [ "dep:getrandom" ];
|
|
"js" = [ "std" "getrandom" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"filedescriptor" = rec {
|
|
crateName = "filedescriptor";
|
|
version = "0.8.3";
|
|
edition = "2018";
|
|
sha256 = "0bb8qqa9h9sj2mzf09yqxn260qkcqvmhmyrmdjvyxcn94knmh1z4";
|
|
authors = [
|
|
"Wez Furlong"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
{
|
|
name = "winapi";
|
|
packageId = "winapi";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "winuser" "handleapi" "fileapi" "namedpipeapi" "processthreadsapi" "winsock2" "processenv" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"find-msvc-tools" = rec {
|
|
crateName = "find-msvc-tools";
|
|
version = "0.1.9";
|
|
edition = "2018";
|
|
sha256 = "10nmi0qdskq6l7zwxw5g56xny7hb624iki1c39d907qmfh3vrbjv";
|
|
libName = "find_msvc_tools";
|
|
|
|
};
|
|
"finl_unicode" = rec {
|
|
crateName = "finl_unicode";
|
|
version = "1.4.0";
|
|
edition = "2021";
|
|
sha256 = "1md4j32sa8g6y7q9yphpslhhjdjxig1bczkjp8mxccz5lv1xsi4q";
|
|
features = {
|
|
"default" = [ "categories" "grapheme_clusters" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "categories" "default" "grapheme_clusters" ];
|
|
};
|
|
"fixedbitset" = rec {
|
|
crateName = "fixedbitset";
|
|
version = "0.4.2";
|
|
edition = "2015";
|
|
sha256 = "101v41amgv5n9h4hcghvrbfk5vrncx1jwm35rn5szv4rk55i7rqc";
|
|
authors = [
|
|
"bluss"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"flate2" = rec {
|
|
crateName = "flate2";
|
|
version = "1.1.9";
|
|
edition = "2018";
|
|
sha256 = "0g2pb7cxnzcbzrj8bw4v6gpqqp21aycmf6d84rzb6j748qkvlgw4";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
"Josh Triplett <josh@joshtriplett.org>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "crc32fast";
|
|
packageId = "crc32fast";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "miniz_oxide";
|
|
packageId = "miniz_oxide";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "with-alloc" "simd" ];
|
|
}
|
|
{
|
|
name = "miniz_oxide";
|
|
packageId = "miniz_oxide";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && (!("emscripten" == target."os" or null)));
|
|
features = [ "with-alloc" "simd" ];
|
|
}
|
|
];
|
|
features = {
|
|
"any_c_zlib" = [ "any_zlib" ];
|
|
"any_zlib" = [ "any_impl" ];
|
|
"cloudflare-zlib-sys" = [ "dep:cloudflare-zlib-sys" ];
|
|
"cloudflare_zlib" = [ "any_c_zlib" "cloudflare-zlib-sys" "dep:crc32fast" ];
|
|
"default" = [ "rust_backend" ];
|
|
"document-features" = [ "dep:document-features" ];
|
|
"libz-ng-sys" = [ "dep:libz-ng-sys" ];
|
|
"libz-sys" = [ "dep:libz-sys" ];
|
|
"miniz-sys" = [ "rust_backend" ];
|
|
"miniz_oxide" = [ "any_impl" "dep:miniz_oxide" "dep:crc32fast" ];
|
|
"rust_backend" = [ "miniz_oxide" "any_impl" ];
|
|
"zlib" = [ "any_c_zlib" "libz-sys" "dep:crc32fast" ];
|
|
"zlib-default" = [ "any_c_zlib" "libz-sys/default" "dep:crc32fast" ];
|
|
"zlib-ng" = [ "any_c_zlib" "libz-ng-sys" "dep:crc32fast" ];
|
|
"zlib-ng-compat" = [ "zlib" "libz-sys/zlib-ng" "dep:crc32fast" ];
|
|
"zlib-rs" = [ "any_zlib" "dep:zlib-rs" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "any_impl" "default" "miniz_oxide" "rust_backend" ];
|
|
};
|
|
"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" ];
|
|
};
|
|
"foldhash 0.1.5" = rec {
|
|
crateName = "foldhash";
|
|
version = "0.1.5";
|
|
edition = "2021";
|
|
sha256 = "1wisr1xlc2bj7hk4rgkcjkz3j2x4dhd1h9lwk7mj8p71qpdgbi6r";
|
|
authors = [
|
|
"Orson Peters <orsonpeters@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
};
|
|
"foldhash 0.2.0" = rec {
|
|
crateName = "foldhash";
|
|
version = "0.2.0";
|
|
edition = "2021";
|
|
sha256 = "1nvgylb099s11xpfm1kn2wcsql080nqmnhj1l25bp3r2b35j9kkp";
|
|
authors = [
|
|
"Orson Peters <orsonpeters@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
};
|
|
"generic-array" = rec {
|
|
crateName = "generic-array";
|
|
version = "0.14.7";
|
|
edition = "2015";
|
|
sha256 = "16lyyrzrljfq424c3n8kfwkqihlimmsg5nhshbbp48np3yjrqr45";
|
|
libName = "generic_array";
|
|
authors = [
|
|
"Bartłomiej Kamiński <fizyk20@gmail.com>"
|
|
"Aaron Trent <novacrazy@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "typenum";
|
|
packageId = "typenum";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "version_check";
|
|
packageId = "version_check";
|
|
}
|
|
];
|
|
features = {
|
|
"serde" = [ "dep:serde" ];
|
|
"zeroize" = [ "dep:zeroize" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "more_lengths" ];
|
|
};
|
|
"getrandom 0.2.17" = rec {
|
|
crateName = "getrandom";
|
|
version = "0.2.17";
|
|
edition = "2018";
|
|
sha256 = "1l2ac6jfj9xhpjjgmcx6s1x89bbnw9x6j9258yy6xjkzpq0bqapz";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "wasi";
|
|
packageId = "wasi";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("wasi" == target."os" or null);
|
|
}
|
|
];
|
|
features = {
|
|
"compiler_builtins" = [ "dep:compiler_builtins" ];
|
|
"core" = [ "dep:core" ];
|
|
"js" = [ "wasm-bindgen" "js-sys" ];
|
|
"js-sys" = [ "dep:js-sys" ];
|
|
"rustc-dep-of-std" = [ "compiler_builtins" "core" "libc/rustc-dep-of-std" "wasi/rustc-dep-of-std" ];
|
|
"wasm-bindgen" = [ "dep:wasm-bindgen" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"getrandom 0.3.4" = rec {
|
|
crateName = "getrandom";
|
|
version = "0.3.4";
|
|
edition = "2021";
|
|
sha256 = "1zbpvpicry9lrbjmkd4msgj3ihff1q92i334chk7pzf46xffz7c9";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((("linux" == target."os" or null) || ("android" == target."os" or null)) && (!((("linux" == target."os" or null) && ("" == target."env" or null)) || ("custom" == target."getrandom_backend" or null) || ("linux_raw" == target."getrandom_backend" or null) || ("rdrand" == target."getrandom_backend" or null) || ("rndr" == target."getrandom_backend" or null))));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("dragonfly" == target."os" or null) || ("freebsd" == target."os" or null) || ("hurd" == target."os" or null) || ("illumos" == target."os" or null) || ("cygwin" == target."os" or null) || (("horizon" == target."os" or null) && ("arm" == target."arch" or null)));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("haiku" == target."os" or null) || ("redox" == target."os" or null) || ("nto" == target."os" or null) || ("aix" == target."os" or null));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("ios" == target."os" or null) || ("visionos" == target."os" or null) || ("watchos" == target."os" or null) || ("tvos" == target."os" or null));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("macos" == target."os" or null) || ("openbsd" == target."os" or null) || ("vita" == target."os" or null) || ("emscripten" == target."os" or null));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("netbsd" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("solaris" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("vxworks" == target."os" or null);
|
|
}
|
|
{
|
|
name = "r-efi";
|
|
packageId = "r-efi 5.3.0";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("uefi" == target."os" or null) && ("efi_rng" == target."getrandom_backend" or null));
|
|
}
|
|
{
|
|
name = "wasip2";
|
|
packageId = "wasip2";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p2" == target."env" or null));
|
|
}
|
|
];
|
|
features = {
|
|
"wasm_js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"getrandom 0.4.2" = rec {
|
|
crateName = "getrandom";
|
|
version = "0.4.2";
|
|
edition = "2024";
|
|
sha256 = "0mb5833hf9pvn9dhvxjgfg5dx0m77g8wavvjdpvpnkp9fil1xr8d";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((("linux" == target."os" or null) || ("android" == target."os" or null)) && (!((("linux" == target."os" or null) && ("" == target."env" or null)) || ("custom" == target."getrandom_backend" or null) || ("linux_raw" == target."getrandom_backend" or null) || ("rdrand" == target."getrandom_backend" or null) || ("rndr" == target."getrandom_backend" or null))));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("dragonfly" == target."os" or null) || ("freebsd" == target."os" or null) || ("hurd" == target."os" or null) || ("illumos" == target."os" or null) || ("cygwin" == target."os" or null) || (("horizon" == target."os" or null) && ("arm" == target."arch" or null)));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("haiku" == target."os" or null) || ("redox" == target."os" or null) || ("nto" == target."os" or null) || ("aix" == target."os" or null));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("ios" == target."os" or null) || ("visionos" == target."os" or null) || ("watchos" == target."os" or null) || ("tvos" == target."os" or null));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("macos" == target."os" or null) || ("openbsd" == target."os" or null) || ("vita" == target."os" or null) || ("emscripten" == target."os" or null));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("netbsd" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("solaris" == target."os" or null);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ("vxworks" == target."os" or null);
|
|
}
|
|
{
|
|
name = "r-efi";
|
|
packageId = "r-efi 6.0.0";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("uefi" == target."os" or null) && ("efi_rng" == target."getrandom_backend" or null));
|
|
}
|
|
{
|
|
name = "wasip2";
|
|
packageId = "wasip2";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p2" == target."env" or null));
|
|
}
|
|
{
|
|
name = "wasip3";
|
|
packageId = "wasip3";
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("wasi" == target."os" or null) && ("p3" == target."env" or null));
|
|
}
|
|
];
|
|
features = {
|
|
"sys_rng" = [ "dep:rand_core" ];
|
|
"wasm_js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
|
|
};
|
|
};
|
|
"hashbrown 0.15.5" = rec {
|
|
crateName = "hashbrown";
|
|
version = "0.15.5";
|
|
edition = "2021";
|
|
sha256 = "189qaczmjxnikm9db748xyhiw04kpmhm9xj9k9hg0sgx7pjwyacj";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "foldhash";
|
|
packageId = "foldhash 0.1.5";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"allocator-api2" = [ "dep:allocator-api2" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
|
|
"default-hasher" = [ "dep:foldhash" ];
|
|
"equivalent" = [ "dep:equivalent" ];
|
|
"nightly" = [ "bumpalo/allocator_api" ];
|
|
"rayon" = [ "dep:rayon" ];
|
|
"rustc-dep-of-std" = [ "nightly" "core" "alloc" "rustc-internal-api" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default-hasher" ];
|
|
};
|
|
"hashbrown 0.16.1" = rec {
|
|
crateName = "hashbrown";
|
|
version = "0.16.1";
|
|
edition = "2021";
|
|
sha256 = "004i3njw38ji3bzdp9z178ba9x3k0c1pgy8x69pj7yfppv4iq7c4";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "allocator-api2";
|
|
packageId = "allocator-api2";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" ];
|
|
}
|
|
{
|
|
name = "equivalent";
|
|
packageId = "equivalent";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "foldhash";
|
|
packageId = "foldhash 0.2.0";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"allocator-api2" = [ "dep:allocator-api2" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
|
|
"default-hasher" = [ "dep:foldhash" ];
|
|
"equivalent" = [ "dep:equivalent" ];
|
|
"nightly" = [ "foldhash?/nightly" "bumpalo/allocator_api" ];
|
|
"rayon" = [ "dep:rayon" ];
|
|
"rustc-dep-of-std" = [ "nightly" "core" "alloc" "rustc-internal-api" ];
|
|
"serde" = [ "dep:serde_core" "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "allocator-api2" "default" "default-hasher" "equivalent" "inline-more" "raw-entry" ];
|
|
};
|
|
"hashbrown 0.17.0" = rec {
|
|
crateName = "hashbrown";
|
|
version = "0.17.0";
|
|
edition = "2024";
|
|
sha256 = "0l8gvcz80lvinb7x22h53cqbi2y1fm603y2jhhh9qwygvkb7sijg";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"allocator-api2" = [ "dep:allocator-api2" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "default-hasher" "inline-more" "allocator-api2" "equivalent" "raw-entry" ];
|
|
"default-hasher" = [ "dep:foldhash" ];
|
|
"equivalent" = [ "dep:equivalent" ];
|
|
"nightly" = [ "foldhash?/nightly" "bumpalo/allocator_api" ];
|
|
"rayon" = [ "dep:rayon" ];
|
|
"rustc-dep-of-std" = [ "nightly" "core" "alloc" "rustc-internal-api" ];
|
|
"serde" = [ "dep:serde_core" "dep:serde" ];
|
|
};
|
|
};
|
|
"heck" = rec {
|
|
crateName = "heck";
|
|
version = "0.5.0";
|
|
edition = "2021";
|
|
sha256 = "1sjmpsdl8czyh9ywl3qcsfsq9a307dg4ni2vnlwgnzzqhc4y0113";
|
|
|
|
};
|
|
"hex" = rec {
|
|
crateName = "hex";
|
|
version = "0.4.3";
|
|
edition = "2018";
|
|
sha256 = "0w1a4davm1lgzpamwnba907aysmlrnygbqmfis2mqjx5m552a93z";
|
|
authors = [
|
|
"KokaKiwi <kokakiwi@kokakiwi.net>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"iana-time-zone" = rec {
|
|
crateName = "iana-time-zone";
|
|
version = "0.1.65";
|
|
edition = "2021";
|
|
sha256 = "0w64khw5p8s4nzwcf36bwnsmqzf61vpwk9ca1920x82bk6nwj6z3";
|
|
libName = "iana_time_zone";
|
|
authors = [
|
|
"Andrew Straw <strawman@astraw.com>"
|
|
"René Kijewski <rene.kijewski@fu-berlin.de>"
|
|
"Ryan Lopopolo <rjl@hyperbo.la>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "android_system_properties";
|
|
packageId = "android_system_properties";
|
|
target = { target, features }: ("android" == target."os" or null);
|
|
}
|
|
{
|
|
name = "core-foundation-sys";
|
|
packageId = "core-foundation-sys";
|
|
target = { target, features }: ("apple" == target."vendor" or null);
|
|
}
|
|
{
|
|
name = "iana-time-zone-haiku";
|
|
packageId = "iana-time-zone-haiku";
|
|
target = { target, features }: ("haiku" == target."os" or null);
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."os" or null));
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."os" or null));
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && ("unknown" == target."os" or null));
|
|
}
|
|
{
|
|
name = "windows-core";
|
|
packageId = "windows-core";
|
|
target = { target, features }: ("windows" == target."os" or null);
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "fallback" ];
|
|
};
|
|
"iana-time-zone-haiku" = rec {
|
|
crateName = "iana-time-zone-haiku";
|
|
version = "0.1.2";
|
|
edition = "2018";
|
|
sha256 = "17r6jmj31chn7xs9698r122mapq85mfnv98bb4pg6spm0si2f67k";
|
|
libName = "iana_time_zone_haiku";
|
|
authors = [
|
|
"René Kijewski <crates.io@k6i.de>"
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "cc";
|
|
packageId = "cc";
|
|
}
|
|
];
|
|
|
|
};
|
|
"id-arena" = rec {
|
|
crateName = "id-arena";
|
|
version = "2.3.0";
|
|
edition = "2021";
|
|
sha256 = "0m6rs0jcaj4mg33gkv98d71w3hridghp5c4yr928hplpkgbnfc1x";
|
|
libName = "id_arena";
|
|
authors = [
|
|
"Nick Fitzgerald <fitzgen@gmail.com>"
|
|
"Aleksey Kladov <aleksey.kladov@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"rayon" = [ "dep:rayon" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"ident_case" = rec {
|
|
crateName = "ident_case";
|
|
version = "1.0.1";
|
|
edition = "2015";
|
|
sha256 = "0fac21q6pwns8gh1hz3nbq15j8fi441ncl6w4vlnd1cmc55kiq5r";
|
|
authors = [
|
|
"Ted Driggs <ted.driggs@outlook.com>"
|
|
];
|
|
|
|
};
|
|
"improvise" = rec {
|
|
crateName = "improvise";
|
|
version = "0.1.0-rc2";
|
|
edition = "2024";
|
|
crateBin = [
|
|
{
|
|
name = "improvise";
|
|
path = "src/main.rs";
|
|
requiredFeatures = [ ];
|
|
}
|
|
];
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./.; };
|
|
dependencies = [
|
|
{
|
|
name = "anyhow";
|
|
packageId = "anyhow";
|
|
}
|
|
{
|
|
name = "chrono";
|
|
packageId = "chrono";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "clap";
|
|
packageId = "clap";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "crossterm";
|
|
packageId = "crossterm";
|
|
}
|
|
{
|
|
name = "csv";
|
|
packageId = "csv";
|
|
}
|
|
{
|
|
name = "dirs";
|
|
packageId = "dirs";
|
|
}
|
|
{
|
|
name = "enum_dispatch";
|
|
packageId = "enum_dispatch";
|
|
}
|
|
{
|
|
name = "flate2";
|
|
packageId = "flate2";
|
|
}
|
|
{
|
|
name = "improvise-core";
|
|
packageId = "improvise-core";
|
|
}
|
|
{
|
|
name = "improvise-formula";
|
|
packageId = "improvise-formula";
|
|
}
|
|
{
|
|
name = "improvise-io";
|
|
packageId = "improvise-io";
|
|
}
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "pest";
|
|
packageId = "pest";
|
|
}
|
|
{
|
|
name = "pest_derive";
|
|
packageId = "pest_derive";
|
|
}
|
|
{
|
|
name = "ratatui";
|
|
packageId = "ratatui";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 2.0.18";
|
|
}
|
|
{
|
|
name = "unicode-width";
|
|
packageId = "unicode-width";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "pest";
|
|
packageId = "pest";
|
|
}
|
|
{
|
|
name = "pest_derive";
|
|
packageId = "pest_derive";
|
|
}
|
|
{
|
|
name = "pest_meta";
|
|
packageId = "pest_meta";
|
|
}
|
|
{
|
|
name = "proptest";
|
|
packageId = "proptest";
|
|
}
|
|
{
|
|
name = "tempfile";
|
|
packageId = "tempfile";
|
|
}
|
|
];
|
|
|
|
};
|
|
"improvise-core" = rec {
|
|
crateName = "improvise-core";
|
|
version = "0.1.0-rc2";
|
|
edition = "2024";
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./crates/improvise-core; };
|
|
libName = "improvise_core";
|
|
dependencies = [
|
|
{
|
|
name = "anyhow";
|
|
packageId = "anyhow";
|
|
}
|
|
{
|
|
name = "improvise-formula";
|
|
packageId = "improvise-formula";
|
|
}
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "proptest";
|
|
packageId = "proptest";
|
|
}
|
|
];
|
|
|
|
};
|
|
"improvise-formula" = rec {
|
|
crateName = "improvise-formula";
|
|
version = "0.1.0-rc2";
|
|
edition = "2024";
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./crates/improvise-formula; };
|
|
libName = "improvise_formula";
|
|
dependencies = [
|
|
{
|
|
name = "anyhow";
|
|
packageId = "anyhow";
|
|
}
|
|
{
|
|
name = "pest";
|
|
packageId = "pest";
|
|
}
|
|
{
|
|
name = "pest_derive";
|
|
packageId = "pest_derive";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "pest_meta";
|
|
packageId = "pest_meta";
|
|
}
|
|
{
|
|
name = "proptest";
|
|
packageId = "proptest";
|
|
}
|
|
];
|
|
|
|
};
|
|
"improvise-io" = rec {
|
|
crateName = "improvise-io";
|
|
version = "0.1.0-rc2";
|
|
edition = "2024";
|
|
src = lib.cleanSourceWith { filter = sourceFilter; src = ./crates/improvise-io; };
|
|
libName = "improvise_io";
|
|
dependencies = [
|
|
{
|
|
name = "anyhow";
|
|
packageId = "anyhow";
|
|
}
|
|
{
|
|
name = "chrono";
|
|
packageId = "chrono";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "csv";
|
|
packageId = "csv";
|
|
}
|
|
{
|
|
name = "flate2";
|
|
packageId = "flate2";
|
|
}
|
|
{
|
|
name = "improvise-core";
|
|
packageId = "improvise-core";
|
|
}
|
|
{
|
|
name = "improvise-formula";
|
|
packageId = "improvise-formula";
|
|
}
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "pest";
|
|
packageId = "pest";
|
|
}
|
|
{
|
|
name = "pest_derive";
|
|
packageId = "pest_derive";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "pest_meta";
|
|
packageId = "pest_meta";
|
|
}
|
|
{
|
|
name = "proptest";
|
|
packageId = "proptest";
|
|
}
|
|
{
|
|
name = "tempfile";
|
|
packageId = "tempfile";
|
|
}
|
|
];
|
|
|
|
};
|
|
"indexmap" = rec {
|
|
crateName = "indexmap";
|
|
version = "2.14.0";
|
|
edition = "2024";
|
|
sha256 = "1na9z6f0d5pkjr1lgsni470v98gv2r7c41j8w48skr089x2yjrnl";
|
|
dependencies = [
|
|
{
|
|
name = "equivalent";
|
|
packageId = "equivalent";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "hashbrown";
|
|
packageId = "hashbrown 0.17.0";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: false;
|
|
}
|
|
{
|
|
name = "serde_core";
|
|
packageId = "serde_core";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
usesDefaultFeatures = false;
|
|
features = [ "derive" ];
|
|
}
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"borsh" = [ "dep:borsh" ];
|
|
"default" = [ "std" ];
|
|
"quickcheck" = [ "dep:quickcheck" ];
|
|
"rayon" = [ "dep:rayon" ];
|
|
"serde" = [ "dep:serde_core" "dep:serde" ];
|
|
"sval" = [ "dep:sval" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "serde" "std" ];
|
|
};
|
|
"indoc" = rec {
|
|
crateName = "indoc";
|
|
version = "2.0.7";
|
|
edition = "2021";
|
|
sha256 = "01np60qdq6lvgh8ww2caajn9j4dibx9n58rvzf7cya1jz69mrkvr";
|
|
procMacro = true;
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "rustversion";
|
|
packageId = "rustversion";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "rustversion";
|
|
packageId = "rustversion";
|
|
}
|
|
];
|
|
|
|
};
|
|
"instability" = rec {
|
|
crateName = "instability";
|
|
version = "0.3.12";
|
|
edition = "2021";
|
|
sha256 = "0wc98mr44w5k1y6pib2x0kydmhbff8gkfgiw36ls684ry47ddcjy";
|
|
procMacro = true;
|
|
authors = [
|
|
"Stephen M. Coakley <me@stephencoakley.com>"
|
|
"The Ratatui Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "darling";
|
|
packageId = "darling";
|
|
}
|
|
{
|
|
name = "indoc";
|
|
packageId = "indoc";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
features = [ "derive" "full" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"is_terminal_polyfill" = rec {
|
|
crateName = "is_terminal_polyfill";
|
|
version = "1.70.2";
|
|
edition = "2021";
|
|
sha256 = "15anlc47sbz0jfs9q8fhwf0h3vs2w4imc030shdnq54sny5i7jx6";
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"itertools" = rec {
|
|
crateName = "itertools";
|
|
version = "0.14.0";
|
|
edition = "2018";
|
|
sha256 = "118j6l1vs2mx65dqhwyssbrxpawa90886m3mzafdvyip41w2q69b";
|
|
authors = [
|
|
"bluss"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "either";
|
|
packageId = "either";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "use_std" ];
|
|
"use_std" = [ "use_alloc" "either/use_std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "use_alloc" "use_std" ];
|
|
};
|
|
"itoa" = rec {
|
|
crateName = "itoa";
|
|
version = "1.0.18";
|
|
edition = "2021";
|
|
sha256 = "10jnd1vpfkb8kj38rlkn2a6k02afvj3qmw054dfpzagrpl6achlg";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
features = {
|
|
"no-panic" = [ "dep:no-panic" ];
|
|
};
|
|
};
|
|
"js-sys" = rec {
|
|
crateName = "js-sys";
|
|
version = "0.3.95";
|
|
edition = "2021";
|
|
sha256 = "1jhj3kgxxgwm0cpdjiz7i2qapqr7ya9qswadmr63dhwx3lnyjr19";
|
|
libName = "js_sys";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" "unsafe-eval" ];
|
|
"futures" = [ "dep:cfg-if" "dep:futures-util" ];
|
|
"futures-core-03-stream" = [ "futures" "dep:futures-core" ];
|
|
"std" = [ "wasm-bindgen/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" "unsafe-eval" ];
|
|
};
|
|
"kasuari" = rec {
|
|
crateName = "kasuari";
|
|
version = "0.4.12";
|
|
edition = "2021";
|
|
sha256 = "1688q59qh1mxa28k00lnddn73mh3jcdmj3yrc7l99k23c5yhbrdx";
|
|
authors = [
|
|
"Dylan Ede <dylanede@googlemail.com>"
|
|
"The Ratatui Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "hashbrown";
|
|
packageId = "hashbrown 0.16.1";
|
|
}
|
|
{
|
|
name = "portable-atomic";
|
|
packageId = "portable-atomic";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "require-cas" ];
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 2.0.18";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"document-features" = [ "dep:document-features" ];
|
|
"portable-atomic" = [ "dep:portable-atomic" "dep:portable-atomic-util" ];
|
|
"std" = [ "thiserror/std" "portable-atomic?/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"lab" = rec {
|
|
crateName = "lab";
|
|
version = "0.11.0";
|
|
edition = "2015";
|
|
sha256 = "13ymsn5cwl5i9pmp5mfmbap7q688dcp9a17q82crkvb784yifdmz";
|
|
authors = [
|
|
"Jesse Bees <jesse@toomanybees.com>"
|
|
];
|
|
|
|
};
|
|
"lazy_static" = rec {
|
|
crateName = "lazy_static";
|
|
version = "1.5.0";
|
|
edition = "2015";
|
|
sha256 = "1zk6dqqni0193xg6iijh7i3i44sryglwgvx20spdvwk3r6sbrlmv";
|
|
authors = [
|
|
"Marvin Löbel <loebel.marvin@gmail.com>"
|
|
];
|
|
features = {
|
|
"spin" = [ "dep:spin" ];
|
|
"spin_no_std" = [ "spin" ];
|
|
};
|
|
};
|
|
"leb128fmt" = rec {
|
|
crateName = "leb128fmt";
|
|
version = "0.1.0";
|
|
edition = "2021";
|
|
sha256 = "1chxm1484a0bly6anh6bd7a99sn355ymlagnwj3yajafnpldkv89";
|
|
authors = [
|
|
"Bryant Luk <code@bryantluk.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
};
|
|
"libc" = rec {
|
|
crateName = "libc";
|
|
version = "0.2.186";
|
|
edition = "2021";
|
|
sha256 = "0rnyhzjyqq9x56skkllbjzzzwym3r61lq3l4hqj64v71gw0r3av8";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"rustc-dep-of-std" = [ "align" "rustc-std-workspace-core" ];
|
|
"rustc-std-workspace-core" = [ "dep:rustc-std-workspace-core" ];
|
|
"use_std" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "extra_traits" "std" ];
|
|
};
|
|
"libredox" = rec {
|
|
crateName = "libredox";
|
|
version = "0.1.16";
|
|
edition = "2021";
|
|
sha256 = "0v54zvgknag9310wcjykgv86pgq02qr3mzgkdg4r6m1k7ns3nbz0";
|
|
authors = [
|
|
"4lDO2 <4lDO2@protonmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"base" = [ "libc" ];
|
|
"bitflags" = [ "dep:bitflags" ];
|
|
"call" = [ "base" ];
|
|
"default" = [ "base" "call" "std" "redox_syscall" "protocol" ];
|
|
"ioslice" = [ "dep:ioslice" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"mkns" = [ "ioslice" ];
|
|
"plain" = [ "dep:plain" ];
|
|
"protocol" = [ "plain" "bitflags" "redox_syscall" ];
|
|
"redox_syscall" = [ "dep:redox_syscall" ];
|
|
"std" = [ "base" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "base" "call" "libc" "std" ];
|
|
};
|
|
"line-clipping" = rec {
|
|
crateName = "line-clipping";
|
|
version = "0.3.7";
|
|
edition = "2024";
|
|
sha256 = "1y19rla4ivdwagf0y4yahvb8jzsddj3jcb8r0xa8n9i3fvsfhl1z";
|
|
libName = "line_clipping";
|
|
authors = [
|
|
"Josh McKinney"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 2.11.1";
|
|
}
|
|
];
|
|
|
|
};
|
|
"linux-raw-sys" = rec {
|
|
crateName = "linux-raw-sys";
|
|
version = "0.12.1";
|
|
edition = "2021";
|
|
sha256 = "0lwasljrqxjjfk9l2j8lyib1babh2qjlnhylqzl01nihw14nk9ij";
|
|
libName = "linux_raw_sys";
|
|
authors = [
|
|
"Dan Gohman <dev@sunfishcode.online>"
|
|
];
|
|
features = {
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" "general" "errno" ];
|
|
"rustc-dep-of-std" = [ "core" "no_std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "auxvec" "elf" "errno" "general" "ioctl" "no_std" ];
|
|
};
|
|
"litrs" = rec {
|
|
crateName = "litrs";
|
|
version = "1.0.0";
|
|
edition = "2021";
|
|
sha256 = "14p0kzzkavnngvybl88nvfwv031cc2qx4vaxpfwsiifm8grdglqi";
|
|
authors = [
|
|
"Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"
|
|
];
|
|
features = {
|
|
"check_suffix" = [ "unicode-xid" ];
|
|
"proc-macro2" = [ "dep:proc-macro2" ];
|
|
"unicode-xid" = [ "dep:unicode-xid" ];
|
|
};
|
|
};
|
|
"lock_api" = rec {
|
|
crateName = "lock_api";
|
|
version = "0.4.14";
|
|
edition = "2021";
|
|
sha256 = "0rg9mhx7vdpajfxvdjmgmlyrn20ligzqvn8ifmaz7dc79gkrjhr2";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "scopeguard";
|
|
packageId = "scopeguard";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "atomic_usize" ];
|
|
"owning_ref" = [ "dep:owning_ref" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "atomic_usize" "default" ];
|
|
};
|
|
"log" = rec {
|
|
crateName = "log";
|
|
version = "0.4.29";
|
|
edition = "2021";
|
|
sha256 = "15q8j9c8g5zpkcw0hnd6cf2z7fxqnvsjh3rw5mv5q10r83i34l2y";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"kv_serde" = [ "kv_std" "value-bag/serde" "serde" ];
|
|
"kv_std" = [ "std" "kv" "value-bag/error" ];
|
|
"kv_sval" = [ "kv" "value-bag/sval" "sval" "sval_ref" ];
|
|
"kv_unstable" = [ "kv" "value-bag" ];
|
|
"kv_unstable_serde" = [ "kv_serde" "kv_unstable_std" ];
|
|
"kv_unstable_std" = [ "kv_std" "kv_unstable" ];
|
|
"kv_unstable_sval" = [ "kv_sval" "kv_unstable" ];
|
|
"serde" = [ "serde_core" ];
|
|
"serde_core" = [ "dep:serde_core" ];
|
|
"sval" = [ "dep:sval" ];
|
|
"sval_ref" = [ "dep:sval_ref" ];
|
|
"value-bag" = [ "dep:value-bag" ];
|
|
};
|
|
};
|
|
"lru" = rec {
|
|
crateName = "lru";
|
|
version = "0.16.4";
|
|
edition = "2015";
|
|
sha256 = "0fgg35wrpfdrkv9hcabkg92g3sv4867g1rir7ay9lq1zs3ayhrkz";
|
|
authors = [
|
|
"Jerome Froelich <jeromefroelic@hotmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "hashbrown";
|
|
packageId = "hashbrown 0.16.1";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "hashbrown" ];
|
|
"hashbrown" = [ "dep:hashbrown" ];
|
|
"nightly" = [ "hashbrown" "hashbrown/nightly" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "hashbrown" ];
|
|
};
|
|
"mac_address" = rec {
|
|
crateName = "mac_address";
|
|
version = "1.1.8";
|
|
edition = "2018";
|
|
sha256 = "00r3n18mxglq1dzshnm0vxk1fgsp3c2hd08w6hfcqdp8ymmv5bn0";
|
|
authors = [
|
|
"rep-nop <repnop@outlook.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "nix";
|
|
packageId = "nix";
|
|
target = { target, features }: (("linux" == target."os" or null) || ("macos" == target."os" or null) || ("freebsd" == target."os" or null) || ("netbsd" == target."os" or null) || ("openbsd" == target."os" or null) || ("android" == target."os" or null) || ("illumos" == target."os" or null));
|
|
features = [ "net" ];
|
|
}
|
|
{
|
|
name = "winapi";
|
|
packageId = "winapi";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "winerror" "ws2def" "iphlpapi" ];
|
|
}
|
|
];
|
|
features = {
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
};
|
|
"memchr" = rec {
|
|
crateName = "memchr";
|
|
version = "2.8.0";
|
|
edition = "2021";
|
|
sha256 = "0y9zzxcqxvdqg6wyag7vc3h0blhdn7hkq164bxyx2vph8zs5ijpq";
|
|
authors = [
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
"bluss"
|
|
];
|
|
features = {
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"logging" = [ "dep:log" ];
|
|
"rustc-dep-of-std" = [ "core" ];
|
|
"std" = [ "alloc" ];
|
|
"use_std" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "std" ];
|
|
};
|
|
"memmem" = rec {
|
|
crateName = "memmem";
|
|
version = "0.1.1";
|
|
edition = "2015";
|
|
sha256 = "05ccifqgxdfxk6yls41ljabcccsz3jz6549l1h3cwi17kr494jm6";
|
|
authors = [
|
|
"Joe Neeman <joeneeman@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"memoffset" = rec {
|
|
crateName = "memoffset";
|
|
version = "0.9.1";
|
|
edition = "2015";
|
|
sha256 = "12i17wh9a9plx869g7j4whf62xw68k5zd4k0k5nh6ys5mszid028";
|
|
authors = [
|
|
"Gilad Naaman <gilad.naaman@gmail.com>"
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "autocfg";
|
|
packageId = "autocfg";
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"minimal-lexical" = rec {
|
|
crateName = "minimal-lexical";
|
|
version = "0.2.1";
|
|
edition = "2018";
|
|
sha256 = "16ppc5g84aijpri4jzv14rvcnslvlpphbszc7zzp6vfkddf4qdb8";
|
|
libName = "minimal_lexical";
|
|
authors = [
|
|
"Alex Huszagh <ahuszagh@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"miniz_oxide" = rec {
|
|
crateName = "miniz_oxide";
|
|
version = "0.8.9";
|
|
edition = "2021";
|
|
sha256 = "05k3pdg8bjjzayq3rf0qhpirq9k37pxnasfn4arbs17phqn6m9qz";
|
|
authors = [
|
|
"Frommi <daniil.liferenko@gmail.com>"
|
|
"oyvindln <oyvindln@users.noreply.github.com>"
|
|
"Rich Geldreich richgel99@gmail.com"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "adler2";
|
|
packageId = "adler2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "simd-adler32";
|
|
packageId = "simd-adler32";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "with-alloc" ];
|
|
"rustc-dep-of-std" = [ "core" "alloc" "adler2/rustc-dep-of-std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"simd" = [ "simd-adler32" ];
|
|
"simd-adler32" = [ "dep:simd-adler32" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "simd" "simd-adler32" "with-alloc" ];
|
|
};
|
|
"mio" = rec {
|
|
crateName = "mio";
|
|
version = "1.2.0";
|
|
edition = "2021";
|
|
sha256 = "1hanrh4fwsfkdqdaqfidz48zz1wdix23zwn3r2x78am0garfbdsh";
|
|
authors = [
|
|
"Carl Lerche <me@carllerche.com>"
|
|
"Thomas de Zeeuw <thomasdezeeuw@gmail.com>"
|
|
"Tokio Contributors <team@tokio.rs>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: ((target."unix" or false) || ("hermit" == target."os" or null) || ("wasi" == target."os" or null));
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "wasi";
|
|
packageId = "wasi";
|
|
target = { target, features }: ("wasi" == target."os" or null);
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Wdk_Foundation" "Wdk_Storage_FileSystem" "Wdk_System_IO" "Win32_Foundation" "Win32_Networking_WinSock" "Win32_Storage_FileSystem" "Win32_Security" "Win32_System_IO" "Win32_System_WindowsProgramming" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "log" ];
|
|
"log" = [ "dep:log" ];
|
|
"os-ext" = [ "os-poll" "windows-sys/Win32_System_Pipes" "windows-sys/Win32_Security" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "log" "net" "os-ext" "os-poll" ];
|
|
};
|
|
"nix" = rec {
|
|
crateName = "nix";
|
|
version = "0.29.0";
|
|
edition = "2021";
|
|
sha256 = "0ikvn7s9r2lrfdm3mx1h7nbfjvcc6s9vxdzw7j5xfkd2qdnp9qki";
|
|
authors = [
|
|
"The nix-rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 2.11.1";
|
|
}
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
features = [ "extra_traits" ];
|
|
}
|
|
{
|
|
name = "memoffset";
|
|
packageId = "memoffset";
|
|
optional = true;
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "cfg_aliases";
|
|
packageId = "cfg_aliases";
|
|
}
|
|
];
|
|
features = {
|
|
"aio" = [ "pin-utils" ];
|
|
"dir" = [ "fs" ];
|
|
"memoffset" = [ "dep:memoffset" ];
|
|
"mount" = [ "uio" ];
|
|
"mqueue" = [ "fs" ];
|
|
"net" = [ "socket" ];
|
|
"pin-utils" = [ "dep:pin-utils" ];
|
|
"ptrace" = [ "process" ];
|
|
"sched" = [ "process" ];
|
|
"signal" = [ "process" ];
|
|
"socket" = [ "memoffset" ];
|
|
"ucontext" = [ "signal" ];
|
|
"user" = [ "feature" ];
|
|
"zerocopy" = [ "fs" "uio" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "fs" "memoffset" "mman" "net" "socket" ];
|
|
};
|
|
"nom" = rec {
|
|
crateName = "nom";
|
|
version = "7.1.3";
|
|
edition = "2018";
|
|
sha256 = "0jha9901wxam390jcf5pfa0qqfrgh8li787jx2ip0yk5b8y9hwyj";
|
|
authors = [
|
|
"contact@geoffroycouprie.com"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "minimal-lexical";
|
|
packageId = "minimal-lexical";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "alloc" "memchr/std" "minimal-lexical/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "std" ];
|
|
};
|
|
"num-conv" = rec {
|
|
crateName = "num-conv";
|
|
version = "0.2.1";
|
|
edition = "2021";
|
|
sha256 = "0rqrr29brafaa2za352pbmhkk556n7f8z9rrkgmjp1idvdl3fry6";
|
|
libName = "num_conv";
|
|
authors = [
|
|
"Jacob Pratt <jacob@jhpratt.dev>"
|
|
];
|
|
|
|
};
|
|
"num-derive" = rec {
|
|
crateName = "num-derive";
|
|
version = "0.4.2";
|
|
edition = "2021";
|
|
sha256 = "00p2am9ma8jgd2v6xpsz621wc7wbn1yqi71g15gc3h67m7qmafgd";
|
|
procMacro = true;
|
|
libName = "num_derive";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
}
|
|
];
|
|
|
|
};
|
|
"num-traits" = rec {
|
|
crateName = "num-traits";
|
|
version = "0.2.19";
|
|
edition = "2021";
|
|
sha256 = "0h984rhdkkqd4ny9cif7y2azl3xdfb7768hb9irhpsch4q3gq787";
|
|
libName = "num_traits";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "autocfg";
|
|
packageId = "autocfg";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"libm" = [ "dep:libm" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"num_threads" = rec {
|
|
crateName = "num_threads";
|
|
version = "0.1.7";
|
|
edition = "2015";
|
|
sha256 = "1ngajbmhrgyhzrlc4d5ga9ych1vrfcvfsiqz6zv0h2dpr2wrhwsw";
|
|
authors = [
|
|
"Jacob Pratt <open-source@jhpratt.dev>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (("macos" == target."os" or null) || ("ios" == target."os" or null) || ("freebsd" == target."os" or null));
|
|
}
|
|
];
|
|
|
|
};
|
|
"once_cell" = rec {
|
|
crateName = "once_cell";
|
|
version = "1.21.4";
|
|
edition = "2021";
|
|
sha256 = "0l1v676wf71kjg2khch4dphwh1jp3291ffiymr2mvy1kxd5kwz4z";
|
|
authors = [
|
|
"Aleksey Kladov <aleksey.kladov@gmail.com>"
|
|
];
|
|
features = {
|
|
"alloc" = [ "race" ];
|
|
"atomic-polyfill" = [ "critical-section" ];
|
|
"critical-section" = [ "dep:critical-section" "portable-atomic" ];
|
|
"default" = [ "std" ];
|
|
"parking_lot" = [ "dep:parking_lot_core" ];
|
|
"portable-atomic" = [ "dep:portable-atomic" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "race" "std" ];
|
|
};
|
|
"once_cell_polyfill" = rec {
|
|
crateName = "once_cell_polyfill";
|
|
version = "1.70.2";
|
|
edition = "2021";
|
|
sha256 = "1zmla628f0sk3fhjdjqzgxhalr2xrfna958s632z65bjsfv8ljrq";
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"option-ext" = rec {
|
|
crateName = "option-ext";
|
|
version = "0.2.0";
|
|
edition = "2015";
|
|
sha256 = "0zbf7cx8ib99frnlanpyikm1bx8qn8x602sw1n7bg6p9x94lyx04";
|
|
libName = "option_ext";
|
|
authors = [
|
|
"Simon Ochsenreither <simon@ochsenreither.de>"
|
|
];
|
|
|
|
};
|
|
"ordered-float" = rec {
|
|
crateName = "ordered-float";
|
|
version = "4.6.0";
|
|
edition = "2021";
|
|
sha256 = "0ldrcgilsiijd141vw51fbkziqmh5fpllil3ydhirjm67wdixdvv";
|
|
libName = "ordered_float";
|
|
authors = [
|
|
"Jonathan Reem <jonathan.reem@gmail.com>"
|
|
"Matt Brubeck <mbrubeck@limpet.net>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "num-traits";
|
|
packageId = "num-traits";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"borsh" = [ "dep:borsh" ];
|
|
"bytemuck" = [ "dep:bytemuck" ];
|
|
"default" = [ "std" ];
|
|
"derive-visitor" = [ "dep:derive-visitor" ];
|
|
"libm" = [ "num-traits/libm" ];
|
|
"num-cmp" = [ "dep:num-cmp" ];
|
|
"proptest" = [ "dep:proptest" ];
|
|
"rand" = [ "dep:rand" ];
|
|
"randtest" = [ "rand/std" "rand/std_rng" ];
|
|
"rkyv" = [ "rkyv_32" ];
|
|
"rkyv_16" = [ "dep:rkyv" "rkyv?/size_16" ];
|
|
"rkyv_32" = [ "dep:rkyv" "rkyv?/size_32" ];
|
|
"rkyv_64" = [ "dep:rkyv" "rkyv?/size_64" ];
|
|
"rkyv_ck" = [ "rkyv?/validation" ];
|
|
"schemars" = [ "dep:schemars" ];
|
|
"serde" = [ "dep:serde" "rand?/serde1" ];
|
|
"speedy" = [ "dep:speedy" ];
|
|
"std" = [ "num-traits/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"parking_lot" = rec {
|
|
crateName = "parking_lot";
|
|
version = "0.12.5";
|
|
edition = "2021";
|
|
sha256 = "06jsqh9aqmc94j2rlm8gpccilqm6bskbd67zf6ypfc0f4m9p91ck";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "lock_api";
|
|
packageId = "lock_api";
|
|
}
|
|
{
|
|
name = "parking_lot_core";
|
|
packageId = "parking_lot_core";
|
|
}
|
|
];
|
|
features = {
|
|
"arc_lock" = [ "lock_api/arc_lock" ];
|
|
"deadlock_detection" = [ "parking_lot_core/deadlock_detection" ];
|
|
"nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ];
|
|
"owning_ref" = [ "lock_api/owning_ref" ];
|
|
"serde" = [ "lock_api/serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"parking_lot_core" = rec {
|
|
crateName = "parking_lot_core";
|
|
version = "0.9.12";
|
|
edition = "2021";
|
|
sha256 = "1hb4rggy70fwa1w9nb0svbyflzdc69h047482v2z3sx2hmcnh896";
|
|
authors = [
|
|
"Amanieu d'Antras <amanieu@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "redox_syscall";
|
|
packageId = "redox_syscall";
|
|
target = { target, features }: ("redox" == target."os" or null);
|
|
}
|
|
{
|
|
name = "smallvec";
|
|
packageId = "smallvec";
|
|
}
|
|
{
|
|
name = "windows-link";
|
|
packageId = "windows-link";
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
];
|
|
features = {
|
|
"backtrace" = [ "dep:backtrace" ];
|
|
"deadlock_detection" = [ "petgraph" "backtrace" ];
|
|
"petgraph" = [ "dep:petgraph" ];
|
|
};
|
|
};
|
|
"pest" = rec {
|
|
crateName = "pest";
|
|
version = "2.8.6";
|
|
edition = "2021";
|
|
sha256 = "0qm6kpqsbn2p6vkd7v4j3g7wsjby2ip6di1h6kx7vlq921h8r170";
|
|
authors = [
|
|
"Dragoș Tiselice <dragostiselice@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "ucd-trie";
|
|
packageId = "ucd-trie";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" "memchr" ];
|
|
"memchr" = [ "dep:memchr" ];
|
|
"miette-error" = [ "std" "pretty-print" "dep:miette" ];
|
|
"pretty-print" = [ "dep:serde" "dep:serde_json" ];
|
|
"std" = [ "ucd-trie/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "memchr" "std" ];
|
|
};
|
|
"pest_derive" = rec {
|
|
crateName = "pest_derive";
|
|
version = "2.8.6";
|
|
edition = "2021";
|
|
sha256 = "0xzysvcyfs0pkn2801rg811y83jx2rvpqnjxs47c3ri1xbqqdx0i";
|
|
procMacro = true;
|
|
authors = [
|
|
"Dragoș Tiselice <dragostiselice@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "pest";
|
|
packageId = "pest";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "pest_generator";
|
|
packageId = "pest_generator";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"grammar-extras" = [ "pest_generator/grammar-extras" ];
|
|
"not-bootstrap-in-src" = [ "pest_generator/not-bootstrap-in-src" ];
|
|
"std" = [ "pest/std" "pest_generator/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"pest_generator" = rec {
|
|
crateName = "pest_generator";
|
|
version = "2.8.6";
|
|
edition = "2021";
|
|
sha256 = "0kzrcik2ww0qh84jlv8xqc0zmzgl3xy41vf1cfli1chkgdjc8h40";
|
|
authors = [
|
|
"Dragoș Tiselice <dragostiselice@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "pest";
|
|
packageId = "pest";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "pest_meta";
|
|
packageId = "pest_meta";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"grammar-extras" = [ "pest_meta/grammar-extras" ];
|
|
"not-bootstrap-in-src" = [ "pest_meta/not-bootstrap-in-src" ];
|
|
"std" = [ "pest/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"pest_meta" = rec {
|
|
crateName = "pest_meta";
|
|
version = "2.8.6";
|
|
edition = "2021";
|
|
sha256 = "08126skq2lxysinp6v917niszhnnh6d6a9kg2i0a28b0sdlmr0c9";
|
|
authors = [
|
|
"Dragoș Tiselice <dragostiselice@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "pest";
|
|
packageId = "pest";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "sha2";
|
|
packageId = "sha2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"not-bootstrap-in-src" = [ "dep:cargo" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"phf" = rec {
|
|
crateName = "phf";
|
|
version = "0.11.3";
|
|
edition = "2021";
|
|
sha256 = "0y6hxp1d48rx2434wgi5g8j1pr8s5jja29ha2b65435fh057imhz";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "phf_macros";
|
|
packageId = "phf_macros";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "phf_shared";
|
|
packageId = "phf_shared";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"macros" = [ "phf_macros" ];
|
|
"phf_macros" = [ "dep:phf_macros" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"std" = [ "phf_shared/std" ];
|
|
"uncased" = [ "phf_shared/uncased" ];
|
|
"unicase" = [ "phf_macros?/unicase" "phf_shared/unicase" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "macros" "phf_macros" "std" ];
|
|
};
|
|
"phf_codegen" = rec {
|
|
crateName = "phf_codegen";
|
|
version = "0.11.3";
|
|
edition = "2021";
|
|
sha256 = "0si1n6zr93kzjs3wah04ikw8z6npsr39jw4dam8yi9czg2609y5f";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "phf_generator";
|
|
packageId = "phf_generator";
|
|
}
|
|
{
|
|
name = "phf_shared";
|
|
packageId = "phf_shared";
|
|
}
|
|
];
|
|
|
|
};
|
|
"phf_generator" = rec {
|
|
crateName = "phf_generator";
|
|
version = "0.11.3";
|
|
edition = "2021";
|
|
crateBin = [];
|
|
sha256 = "0gc4np7s91ynrgw73s2i7iakhb4lzdv1gcyx7yhlc0n214a2701w";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "phf_shared";
|
|
packageId = "phf_shared";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "rand";
|
|
packageId = "rand 0.8.6";
|
|
usesDefaultFeatures = false;
|
|
features = [ "small_rng" ];
|
|
}
|
|
];
|
|
features = {
|
|
"criterion" = [ "dep:criterion" ];
|
|
};
|
|
};
|
|
"phf_macros" = rec {
|
|
crateName = "phf_macros";
|
|
version = "0.11.3";
|
|
edition = "2021";
|
|
sha256 = "05kjfbyb439344rhmlzzw0f9bwk9fp95mmw56zs7yfn1552c0jpq";
|
|
procMacro = true;
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "phf_generator";
|
|
packageId = "phf_generator";
|
|
}
|
|
{
|
|
name = "phf_shared";
|
|
packageId = "phf_shared";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
features = {
|
|
"unicase" = [ "unicase_" "phf_shared/unicase" ];
|
|
"unicase_" = [ "dep:unicase_" ];
|
|
};
|
|
};
|
|
"phf_shared" = rec {
|
|
crateName = "phf_shared";
|
|
version = "0.11.3";
|
|
edition = "2021";
|
|
sha256 = "1rallyvh28jqd9i916gk5gk2igdmzlgvv5q0l3xbf3m6y8pbrsk7";
|
|
authors = [
|
|
"Steven Fackler <sfackler@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "siphasher";
|
|
packageId = "siphasher";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"uncased" = [ "dep:uncased" ];
|
|
"unicase" = [ "dep:unicase" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"portable-atomic" = rec {
|
|
crateName = "portable-atomic";
|
|
version = "1.13.1";
|
|
edition = "2018";
|
|
sha256 = "0j8vlar3n5acyigq8q6f4wjx3k3s5yz0rlpqrv76j73gi5qr8fn3";
|
|
libName = "portable_atomic";
|
|
features = {
|
|
"critical-section" = [ "dep:critical-section" ];
|
|
"default" = [ "fallback" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "require-cas" "std" ];
|
|
};
|
|
"powerfmt" = rec {
|
|
crateName = "powerfmt";
|
|
version = "0.2.0";
|
|
edition = "2021";
|
|
sha256 = "14ckj2xdpkhv3h6l5sdmb9f1d57z8hbfpdldjc2vl5givq2y77j3";
|
|
authors = [
|
|
"Jacob Pratt <jacob@jhpratt.dev>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" "macros" ];
|
|
"macros" = [ "dep:powerfmt-macros" ];
|
|
"std" = [ "alloc" ];
|
|
};
|
|
};
|
|
"ppv-lite86" = rec {
|
|
crateName = "ppv-lite86";
|
|
version = "0.2.21";
|
|
edition = "2021";
|
|
sha256 = "1abxx6qz5qnd43br1dd9b2savpihzjza8gb4fbzdql1gxp2f7sl5";
|
|
libName = "ppv_lite86";
|
|
authors = [
|
|
"The CryptoCorrosion Contributors"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "zerocopy";
|
|
packageId = "zerocopy";
|
|
features = [ "simd" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "simd" "std" ];
|
|
};
|
|
"prettyplease" = rec {
|
|
crateName = "prettyplease";
|
|
version = "0.2.37";
|
|
edition = "2021";
|
|
links = "prettyplease02";
|
|
sha256 = "0azn11i1kh0byabhsgab6kqs74zyrg69xkirzgqyhz6xmjnsi727";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
usesDefaultFeatures = false;
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
usesDefaultFeatures = false;
|
|
features = [ "clone-impls" "extra-traits" "parsing" "printing" "visit-mut" ];
|
|
}
|
|
];
|
|
features = {
|
|
"verbatim" = [ "syn/parsing" ];
|
|
};
|
|
};
|
|
"proc-macro2" = rec {
|
|
crateName = "proc-macro2";
|
|
version = "1.0.106";
|
|
edition = "2021";
|
|
sha256 = "0d09nczyaj67x4ihqr5p7gxbkz38gxhk4asc0k8q23g9n85hzl4g";
|
|
libName = "proc_macro2";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "unicode-ident";
|
|
packageId = "unicode-ident";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "proc-macro" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "proc-macro" ];
|
|
};
|
|
"proptest" = rec {
|
|
crateName = "proptest";
|
|
version = "1.11.0";
|
|
edition = "2021";
|
|
sha256 = "0i27rr5drw4ic8hjzx6i1c6q8s7kmsgpfmzy4m80ys2c6k1gqiab";
|
|
authors = [
|
|
"Jason Lingle"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bit-set";
|
|
packageId = "bit-set 0.8.0";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "bit-vec";
|
|
packageId = "bit-vec 0.8.0";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 2.11.1";
|
|
}
|
|
{
|
|
name = "num-traits";
|
|
packageId = "num-traits";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "rand";
|
|
packageId = "rand 0.9.4";
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" ];
|
|
}
|
|
{
|
|
name = "rand_chacha";
|
|
packageId = "rand_chacha";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "rand_xorshift";
|
|
packageId = "rand_xorshift";
|
|
}
|
|
{
|
|
name = "regex-syntax";
|
|
packageId = "regex-syntax";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "rusty-fork";
|
|
packageId = "rusty-fork";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "tempfile";
|
|
packageId = "tempfile";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "unarray";
|
|
packageId = "unarray";
|
|
}
|
|
];
|
|
features = {
|
|
"attr-macro" = [ "proptest-macro" ];
|
|
"bit-set" = [ "dep:bit-set" "dep:bit-vec" ];
|
|
"default" = [ "std" "fork" "timeout" "bit-set" ];
|
|
"default-code-coverage" = [ "std" "fork" "timeout" "bit-set" ];
|
|
"fork" = [ "std" "rusty-fork" "tempfile" ];
|
|
"handle-panics" = [ "std" ];
|
|
"hardware-rng" = [ "x86" ];
|
|
"no_std" = [ "num-traits/libm" ];
|
|
"proptest-macro" = [ "dep:proptest-macro" ];
|
|
"regex-syntax" = [ "dep:regex-syntax" ];
|
|
"rusty-fork" = [ "dep:rusty-fork" ];
|
|
"std" = [ "rand/std" "rand/os_rng" "regex-syntax" "num-traits/std" ];
|
|
"tempfile" = [ "dep:tempfile" ];
|
|
"timeout" = [ "fork" "rusty-fork/timeout" ];
|
|
"unstable" = [ "f16" ];
|
|
"x86" = [ "dep:x86" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "bit-set" "default" "fork" "regex-syntax" "rusty-fork" "std" "tempfile" "timeout" ];
|
|
};
|
|
"quick-error" = rec {
|
|
crateName = "quick-error";
|
|
version = "1.2.3";
|
|
edition = "2015";
|
|
sha256 = "1q6za3v78hsspisc197bg3g7rpc989qycy8ypr8ap8igv10ikl51";
|
|
libName = "quick_error";
|
|
authors = [
|
|
"Paul Colomiets <paul@colomiets.name>"
|
|
"Colin Kiegel <kiegel@gmx.de>"
|
|
];
|
|
|
|
};
|
|
"quote" = rec {
|
|
crateName = "quote";
|
|
version = "1.0.45";
|
|
edition = "2021";
|
|
sha256 = "095rb5rg7pbnwdp6v8w5jw93wndwyijgci1b5lw8j1h5cscn3wj1";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "proc-macro" ];
|
|
"proc-macro" = [ "proc-macro2/proc-macro" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "proc-macro" ];
|
|
};
|
|
"r-efi 5.3.0" = rec {
|
|
crateName = "r-efi";
|
|
version = "5.3.0";
|
|
edition = "2018";
|
|
sha256 = "03sbfm3g7myvzyylff6qaxk4z6fy76yv860yy66jiswc2m6b7kb9";
|
|
libName = "r_efi";
|
|
features = {
|
|
"core" = [ "dep:core" ];
|
|
"examples" = [ "native" ];
|
|
"rustc-dep-of-std" = [ "core" ];
|
|
};
|
|
};
|
|
"r-efi 6.0.0" = rec {
|
|
crateName = "r-efi";
|
|
version = "6.0.0";
|
|
edition = "2018";
|
|
sha256 = "1gyrl2k5fyzj9k7kchg2n296z5881lg7070msabid09asp3wkp7q";
|
|
libName = "r_efi";
|
|
features = {
|
|
"core" = [ "dep:core" ];
|
|
"rustc-dep-of-std" = [ "core" ];
|
|
};
|
|
};
|
|
"rand 0.8.6" = rec {
|
|
crateName = "rand";
|
|
version = "0.8.6";
|
|
edition = "2018";
|
|
sha256 = "12kd4rljn86m00rcaz4c1rcya4mb4gk5ig6i8xq00a8wjgxfr82w";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
"The Rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "rand_core";
|
|
packageId = "rand_core 0.6.4";
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "rand_core/alloc" ];
|
|
"default" = [ "std" "std_rng" ];
|
|
"getrandom" = [ "rand_core/getrandom" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"rand_chacha" = [ "dep:rand_chacha" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde1" = [ "serde" "rand_core/serde1" ];
|
|
"std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ];
|
|
"std_rng" = [ "rand_chacha" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "small_rng" ];
|
|
};
|
|
"rand 0.9.4" = rec {
|
|
crateName = "rand";
|
|
version = "0.9.4";
|
|
edition = "2021";
|
|
sha256 = "1sknbxgs6nfg0nxdd7689lwbyr2i4vaswchrv4b34z8vpc3azia4";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
"The Rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "rand_chacha";
|
|
packageId = "rand_chacha";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "rand_core";
|
|
packageId = "rand_core 0.9.5";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" "std_rng" "os_rng" "small_rng" "thread_rng" ];
|
|
"os_rng" = [ "rand_core/os_rng" ];
|
|
"serde" = [ "dep:serde" "rand_core/serde" ];
|
|
"std" = [ "rand_core/std" "rand_chacha?/std" "alloc" ];
|
|
"std_rng" = [ "dep:rand_chacha" ];
|
|
"thread_rng" = [ "std" "std_rng" "os_rng" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "os_rng" "std" ];
|
|
};
|
|
"rand_chacha" = rec {
|
|
crateName = "rand_chacha";
|
|
version = "0.9.0";
|
|
edition = "2021";
|
|
sha256 = "1jr5ygix7r60pz0s1cv3ms1f6pd1i9pcdmnxzzhjc3zn3mgjn0nk";
|
|
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.9.5";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "rand_core";
|
|
packageId = "rand_core 0.9.5";
|
|
features = [ "os_rng" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"os_rng" = [ "rand_core/os_rng" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"std" = [ "ppv-lite86/std" "rand_core/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"rand_core 0.6.4" = rec {
|
|
crateName = "rand_core";
|
|
version = "0.6.4";
|
|
edition = "2018";
|
|
sha256 = "0b4j2v4cb5krak1pv6kakv4sz6xcwbrmy2zckc32hsigbrwy82zc";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
"The Rust Project Developers"
|
|
];
|
|
features = {
|
|
"getrandom" = [ "dep:getrandom" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde1" = [ "serde" ];
|
|
"std" = [ "alloc" "getrandom" "getrandom/std" ];
|
|
};
|
|
};
|
|
"rand_core 0.9.5" = rec {
|
|
crateName = "rand_core";
|
|
version = "0.9.5";
|
|
edition = "2021";
|
|
sha256 = "0g6qc5r3f0hdmz9b11nripyp9qqrzb0xqk9piip8w8qlvqkcibvn";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
"The Rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "getrandom";
|
|
packageId = "getrandom 0.3.4";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"os_rng" = [ "dep:getrandom" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"std" = [ "getrandom?/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "os_rng" "std" ];
|
|
};
|
|
"rand_xorshift" = rec {
|
|
crateName = "rand_xorshift";
|
|
version = "0.4.0";
|
|
edition = "2021";
|
|
sha256 = "0njsn25pis742gb6b89cpq7jp48v9n23a9fvks10yczwks8n4fai";
|
|
authors = [
|
|
"The Rand Project Developers"
|
|
"The Rust Project Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "rand_core";
|
|
packageId = "rand_core 0.9.5";
|
|
}
|
|
];
|
|
features = {
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
};
|
|
"ratatui" = rec {
|
|
crateName = "ratatui";
|
|
version = "0.30.0";
|
|
edition = "2024";
|
|
sha256 = "1g36h96fnr8ay7bmwplxsfa5xzsp0pdaxny8s5a68i54igxngkni";
|
|
authors = [
|
|
"Florian Dehau <work@fdehau.com>"
|
|
"The Ratatui Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "instability";
|
|
packageId = "instability";
|
|
}
|
|
{
|
|
name = "ratatui-core";
|
|
packageId = "ratatui-core";
|
|
}
|
|
{
|
|
name = "ratatui-crossterm";
|
|
packageId = "ratatui-crossterm";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "ratatui-macros";
|
|
packageId = "ratatui-macros";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "ratatui-termwiz";
|
|
packageId = "ratatui-termwiz";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "ratatui-widgets";
|
|
packageId = "ratatui-widgets";
|
|
}
|
|
];
|
|
features = {
|
|
"all-widgets" = [ "widget-calendar" ];
|
|
"crossterm" = [ "std" "dep:ratatui-crossterm" ];
|
|
"crossterm_0_28" = [ "crossterm" "ratatui-crossterm/crossterm_0_28" ];
|
|
"crossterm_0_29" = [ "crossterm" "ratatui-crossterm/crossterm_0_29" ];
|
|
"default" = [ "crossterm" "underline-color" "all-widgets" "macros" "layout-cache" ];
|
|
"document-features" = [ "dep:document-features" ];
|
|
"layout-cache" = [ "std" "ratatui-core/layout-cache" ];
|
|
"macros" = [ "dep:ratatui-macros" ];
|
|
"palette" = [ "std" "ratatui-core/palette" "dep:palette" ];
|
|
"portable-atomic" = [ "ratatui-core/portable-atomic" ];
|
|
"scrolling-regions" = [ "ratatui-core/scrolling-regions" "ratatui-crossterm?/scrolling-regions" "ratatui-termion?/scrolling-regions" "ratatui-termwiz?/scrolling-regions" ];
|
|
"serde" = [ "std" "dep:serde" "ratatui-core/serde" "ratatui-widgets/serde" "ratatui-crossterm?/serde" "ratatui-termion?/serde" "ratatui-termwiz?/serde" ];
|
|
"std" = [ "ratatui-core/std" "ratatui-widgets/std" ];
|
|
"termion" = [ "std" "dep:ratatui-termion" ];
|
|
"termwiz" = [ "std" "dep:ratatui-termwiz" ];
|
|
"underline-color" = [ "ratatui-core/underline-color" "ratatui-crossterm?/underline-color" "ratatui-termwiz?/underline-color" ];
|
|
"unstable" = [ "unstable-rendered-line-info" "unstable-widget-ref" "unstable-backend-writer" ];
|
|
"unstable-backend-writer" = [ "ratatui-crossterm?/unstable-backend-writer" "ratatui-termion?/unstable-backend-writer" ];
|
|
"unstable-rendered-line-info" = [ "ratatui-widgets/unstable-rendered-line-info" ];
|
|
"widget-calendar" = [ "ratatui-widgets/calendar" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "all-widgets" "crossterm" "default" "layout-cache" "macros" "std" "underline-color" "widget-calendar" ];
|
|
};
|
|
"ratatui-core" = rec {
|
|
crateName = "ratatui-core";
|
|
version = "0.1.0";
|
|
edition = "2024";
|
|
sha256 = "14y2pv5njy7kpzjsfn20a8vmjbhnfq5vgbgppxrszjljkahdxy2y";
|
|
libName = "ratatui_core";
|
|
authors = [
|
|
"Florian Dehau <work@fdehau.com>"
|
|
"The Ratatui Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 2.11.1";
|
|
}
|
|
{
|
|
name = "compact_str";
|
|
packageId = "compact_str";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "hashbrown";
|
|
packageId = "hashbrown 0.16.1";
|
|
}
|
|
{
|
|
name = "indoc";
|
|
packageId = "indoc";
|
|
}
|
|
{
|
|
name = "itertools";
|
|
packageId = "itertools";
|
|
usesDefaultFeatures = false;
|
|
features = [ "use_alloc" ];
|
|
}
|
|
{
|
|
name = "kasuari";
|
|
packageId = "kasuari";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "lru";
|
|
packageId = "lru";
|
|
}
|
|
{
|
|
name = "strum";
|
|
packageId = "strum";
|
|
usesDefaultFeatures = false;
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 2.0.18";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "unicode-segmentation";
|
|
packageId = "unicode-segmentation";
|
|
}
|
|
{
|
|
name = "unicode-truncate";
|
|
packageId = "unicode-truncate";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "unicode-width";
|
|
packageId = "unicode-width";
|
|
}
|
|
];
|
|
features = {
|
|
"anstyle" = [ "dep:anstyle" ];
|
|
"document-features" = [ "dep:document-features" ];
|
|
"layout-cache" = [ "std" ];
|
|
"palette" = [ "std" "dep:palette" ];
|
|
"portable-atomic" = [ "kasuari/portable-atomic" ];
|
|
"serde" = [ "std" "dep:serde" "bitflags/serde" "compact_str/serde" ];
|
|
"std" = [ "itertools/use_std" "thiserror/std" "kasuari/std" "compact_str/std" "unicode-truncate/std" "strum/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "layout-cache" "std" "underline-color" ];
|
|
};
|
|
"ratatui-crossterm" = rec {
|
|
crateName = "ratatui-crossterm";
|
|
version = "0.1.0";
|
|
edition = "2024";
|
|
sha256 = "1cslvh75a29gdmz84s5sjaqd61k4s0fkjsjwn8gi4k1bcngrnz2p";
|
|
libName = "ratatui_crossterm";
|
|
authors = [
|
|
"Florian Dehau <work@fdehau.com>"
|
|
"The Ratatui Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "crossterm";
|
|
packageId = "crossterm";
|
|
rename = "crossterm_0_29";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "instability";
|
|
packageId = "instability";
|
|
}
|
|
{
|
|
name = "ratatui-core";
|
|
packageId = "ratatui-core";
|
|
}
|
|
];
|
|
features = {
|
|
"crossterm_0_28" = [ "dep:crossterm_0_28" ];
|
|
"crossterm_0_29" = [ "dep:crossterm_0_29" ];
|
|
"default" = [ "underline-color" "crossterm_0_29" ];
|
|
"document-features" = [ "dep:document-features" ];
|
|
"scrolling-regions" = [ "ratatui-core/scrolling-regions" ];
|
|
"serde" = [ "crossterm_0_28?/serde" "crossterm_0_29?/serde" ];
|
|
"underline-color" = [ "ratatui-core/underline-color" ];
|
|
"unstable" = [ "unstable-backend-writer" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "crossterm_0_29" "default" "underline-color" ];
|
|
};
|
|
"ratatui-macros" = rec {
|
|
crateName = "ratatui-macros";
|
|
version = "0.7.0";
|
|
edition = "2024";
|
|
sha256 = "1x1nr4wyyhchms9chj10b3wk7ribfvmd14xps2wlngp82cm39wd7";
|
|
libName = "ratatui_macros";
|
|
authors = [
|
|
"The Ratatui Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "ratatui-core";
|
|
packageId = "ratatui-core";
|
|
}
|
|
{
|
|
name = "ratatui-widgets";
|
|
packageId = "ratatui-widgets";
|
|
}
|
|
];
|
|
|
|
};
|
|
"ratatui-termwiz" = rec {
|
|
crateName = "ratatui-termwiz";
|
|
version = "0.1.0";
|
|
edition = "2024";
|
|
sha256 = "0p2l7pymlcfv9n802pd32m604m145rrpc5hv6bq9ahpds05zwxhg";
|
|
libName = "ratatui_termwiz";
|
|
authors = [
|
|
"Florian Dehau <work@fdehau.com>"
|
|
"The Ratatui Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "ratatui-core";
|
|
packageId = "ratatui-core";
|
|
}
|
|
{
|
|
name = "termwiz";
|
|
packageId = "termwiz";
|
|
}
|
|
];
|
|
features = {
|
|
"document-features" = [ "dep:document-features" ];
|
|
"scrolling-regions" = [ "ratatui-core/scrolling-regions" ];
|
|
"serde" = [ "termwiz/use_serde" ];
|
|
"underline-color" = [ "ratatui-core/underline-color" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "underline-color" ];
|
|
};
|
|
"ratatui-widgets" = rec {
|
|
crateName = "ratatui-widgets";
|
|
version = "0.3.0";
|
|
edition = "2024";
|
|
sha256 = "1nqjcrskazvfgjkmmsifliqrvap8bw6850rlap109rnl7h1gmnyp";
|
|
libName = "ratatui_widgets";
|
|
authors = [
|
|
"Florian Dehau <work@fdehau.com>"
|
|
"The Ratatui Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 2.11.1";
|
|
}
|
|
{
|
|
name = "hashbrown";
|
|
packageId = "hashbrown 0.16.1";
|
|
}
|
|
{
|
|
name = "indoc";
|
|
packageId = "indoc";
|
|
}
|
|
{
|
|
name = "instability";
|
|
packageId = "instability";
|
|
}
|
|
{
|
|
name = "itertools";
|
|
packageId = "itertools";
|
|
usesDefaultFeatures = false;
|
|
features = [ "use_alloc" ];
|
|
}
|
|
{
|
|
name = "line-clipping";
|
|
packageId = "line-clipping";
|
|
}
|
|
{
|
|
name = "ratatui-core";
|
|
packageId = "ratatui-core";
|
|
}
|
|
{
|
|
name = "strum";
|
|
packageId = "strum";
|
|
usesDefaultFeatures = false;
|
|
features = [ "derive" ];
|
|
}
|
|
{
|
|
name = "time";
|
|
packageId = "time";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "unicode-segmentation";
|
|
packageId = "unicode-segmentation";
|
|
}
|
|
{
|
|
name = "unicode-width";
|
|
packageId = "unicode-width";
|
|
}
|
|
];
|
|
features = {
|
|
"all-widgets" = [ "calendar" ];
|
|
"calendar" = [ "dep:time" ];
|
|
"default" = [ "all-widgets" ];
|
|
"document-features" = [ "dep:document-features" ];
|
|
"serde" = [ "dep:serde" "ratatui-core/serde" ];
|
|
"std" = [ "time/local-offset" ];
|
|
"unstable" = [ "unstable-rendered-line-info" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "all-widgets" "calendar" "default" "std" ];
|
|
};
|
|
"redox_syscall" = rec {
|
|
crateName = "redox_syscall";
|
|
version = "0.5.18";
|
|
edition = "2021";
|
|
sha256 = "0b9n38zsxylql36vybw18if68yc9jczxmbyzdwyhb9sifmag4azd";
|
|
libName = "syscall";
|
|
authors = [
|
|
"Jeremy Soller <jackpot51@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 2.11.1";
|
|
}
|
|
];
|
|
features = {
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "userspace" ];
|
|
"rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "userspace" ];
|
|
};
|
|
"redox_users" = rec {
|
|
crateName = "redox_users";
|
|
version = "0.5.2";
|
|
edition = "2021";
|
|
sha256 = "1b17q7gf7w8b1vvl53bxna24xl983yn7bd00gfbii74bcg30irm4";
|
|
authors = [
|
|
"Jose Narvaez <goyox86@gmail.com>"
|
|
"Wesley Hershberger <mggmugginsmc@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "getrandom";
|
|
packageId = "getrandom 0.2.17";
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "libredox";
|
|
packageId = "libredox";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" "call" ];
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 2.0.18";
|
|
}
|
|
];
|
|
features = {
|
|
"auth" = [ "rust-argon2" "zeroize" ];
|
|
"default" = [ "auth" ];
|
|
"rust-argon2" = [ "dep:rust-argon2" ];
|
|
"zeroize" = [ "dep:zeroize" ];
|
|
};
|
|
};
|
|
"regex" = rec {
|
|
crateName = "regex";
|
|
version = "1.12.3";
|
|
edition = "2021";
|
|
sha256 = "0xp2q0x7ybmpa5zlgaz00p8zswcirj9h8nry3rxxsdwi9fhm81z1";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "aho-corasick";
|
|
packageId = "aho-corasick";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "regex-automata";
|
|
packageId = "regex-automata";
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" "syntax" "meta" "nfa-pikevm" ];
|
|
}
|
|
{
|
|
name = "regex-syntax";
|
|
packageId = "regex-syntax";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" "perf" "unicode" "regex-syntax/default" ];
|
|
"logging" = [ "aho-corasick?/logging" "memchr?/logging" "regex-automata/logging" ];
|
|
"perf" = [ "perf-cache" "perf-dfa" "perf-onepass" "perf-backtrack" "perf-inline" "perf-literal" ];
|
|
"perf-backtrack" = [ "regex-automata/nfa-backtrack" ];
|
|
"perf-dfa" = [ "regex-automata/hybrid" ];
|
|
"perf-dfa-full" = [ "regex-automata/dfa-build" "regex-automata/dfa-search" ];
|
|
"perf-inline" = [ "regex-automata/perf-inline" ];
|
|
"perf-literal" = [ "dep:aho-corasick" "dep:memchr" "regex-automata/perf-literal" ];
|
|
"perf-onepass" = [ "regex-automata/dfa-onepass" ];
|
|
"std" = [ "aho-corasick?/std" "memchr?/std" "regex-automata/std" "regex-syntax/std" ];
|
|
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "regex-automata/unicode" "regex-syntax/unicode" ];
|
|
"unicode-age" = [ "regex-automata/unicode-age" "regex-syntax/unicode-age" ];
|
|
"unicode-bool" = [ "regex-automata/unicode-bool" "regex-syntax/unicode-bool" ];
|
|
"unicode-case" = [ "regex-automata/unicode-case" "regex-syntax/unicode-case" ];
|
|
"unicode-gencat" = [ "regex-automata/unicode-gencat" "regex-syntax/unicode-gencat" ];
|
|
"unicode-perl" = [ "regex-automata/unicode-perl" "regex-automata/unicode-word-boundary" "regex-syntax/unicode-perl" ];
|
|
"unicode-script" = [ "regex-automata/unicode-script" "regex-syntax/unicode-script" ];
|
|
"unicode-segment" = [ "regex-automata/unicode-segment" "regex-syntax/unicode-segment" ];
|
|
"unstable" = [ "pattern" ];
|
|
"use_std" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "perf" "perf-backtrack" "perf-cache" "perf-dfa" "perf-inline" "perf-literal" "perf-onepass" "std" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
|
|
};
|
|
"regex-automata" = rec {
|
|
crateName = "regex-automata";
|
|
version = "0.4.14";
|
|
edition = "2021";
|
|
sha256 = "13xf7hhn4qmgfh784llcp2kzrvljd13lb2b1ca0mwnf15w9d87bf";
|
|
libName = "regex_automata";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "aho-corasick";
|
|
packageId = "aho-corasick";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "regex-syntax";
|
|
packageId = "regex-syntax";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" "syntax" "perf" "unicode" "meta" "nfa" "dfa" "hybrid" ];
|
|
"dfa" = [ "dfa-build" "dfa-search" "dfa-onepass" ];
|
|
"dfa-build" = [ "nfa-thompson" "dfa-search" ];
|
|
"dfa-onepass" = [ "nfa-thompson" ];
|
|
"hybrid" = [ "alloc" "nfa-thompson" ];
|
|
"internal-instrument" = [ "internal-instrument-pikevm" ];
|
|
"internal-instrument-pikevm" = [ "logging" "std" ];
|
|
"logging" = [ "dep:log" "aho-corasick?/logging" "memchr?/logging" ];
|
|
"meta" = [ "syntax" "nfa-pikevm" ];
|
|
"nfa" = [ "nfa-thompson" "nfa-pikevm" "nfa-backtrack" ];
|
|
"nfa-backtrack" = [ "nfa-thompson" ];
|
|
"nfa-pikevm" = [ "nfa-thompson" ];
|
|
"nfa-thompson" = [ "alloc" ];
|
|
"perf" = [ "perf-inline" "perf-literal" ];
|
|
"perf-literal" = [ "perf-literal-substring" "perf-literal-multisubstring" ];
|
|
"perf-literal-multisubstring" = [ "dep:aho-corasick" ];
|
|
"perf-literal-substring" = [ "aho-corasick?/perf-literal" "dep:memchr" ];
|
|
"std" = [ "regex-syntax?/std" "memchr?/std" "aho-corasick?/std" "alloc" ];
|
|
"syntax" = [ "dep:regex-syntax" "alloc" ];
|
|
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" "regex-syntax?/unicode" ];
|
|
"unicode-age" = [ "regex-syntax?/unicode-age" ];
|
|
"unicode-bool" = [ "regex-syntax?/unicode-bool" ];
|
|
"unicode-case" = [ "regex-syntax?/unicode-case" ];
|
|
"unicode-gencat" = [ "regex-syntax?/unicode-gencat" ];
|
|
"unicode-perl" = [ "regex-syntax?/unicode-perl" ];
|
|
"unicode-script" = [ "regex-syntax?/unicode-script" ];
|
|
"unicode-segment" = [ "regex-syntax?/unicode-segment" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "dfa-onepass" "hybrid" "meta" "nfa-backtrack" "nfa-pikevm" "nfa-thompson" "perf-inline" "perf-literal" "perf-literal-multisubstring" "perf-literal-substring" "std" "syntax" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" ];
|
|
};
|
|
"regex-syntax" = rec {
|
|
crateName = "regex-syntax";
|
|
version = "0.8.10";
|
|
edition = "2021";
|
|
sha256 = "02jx311ka0daxxc7v45ikzhcl3iydjbbb0mdrpc1xgg8v7c7v2fw";
|
|
libName = "regex_syntax";
|
|
authors = [
|
|
"The Rust Project Developers"
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"default" = [ "std" "unicode" ];
|
|
"unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ];
|
|
};
|
|
"rustc_version" = rec {
|
|
crateName = "rustc_version";
|
|
version = "0.4.1";
|
|
edition = "2018";
|
|
sha256 = "14lvdsmr5si5qbqzrajgb6vfn69k0sfygrvfvr2mps26xwi3mjyg";
|
|
dependencies = [
|
|
{
|
|
name = "semver";
|
|
packageId = "semver";
|
|
}
|
|
];
|
|
|
|
};
|
|
"rustix" = rec {
|
|
crateName = "rustix";
|
|
version = "1.1.4";
|
|
edition = "2021";
|
|
sha256 = "14511f9yjqh0ix07xjrjpllah3325774gfwi9zpq72sip5jlbzmn";
|
|
authors = [
|
|
"Dan Gohman <dev@sunfishcode.online>"
|
|
"Jakub Konka <kubkon@jakubkonka.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 2.11.1";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
|
|
}
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
|
|
}
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (target."windows" or false);
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
|
|
}
|
|
{
|
|
name = "linux-raw-sys";
|
|
packageId = "linux-raw-sys";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((("linux" == target."os" or null) || ("android" == target."os" or null)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))))));
|
|
features = [ "general" "ioctl" "no_std" ];
|
|
}
|
|
{
|
|
name = "linux-raw-sys";
|
|
packageId = "linux-raw-sys";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && (("little" == target."endian" or null) || (("s390x" == target."arch" or null) || ("powerpc" == target."arch" or null))) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("s390x" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))));
|
|
features = [ "auxvec" "general" "errno" "ioctl" "no_std" "elf" ];
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Foundation" "Win32_Networking_WinSock" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
rename = "libc_errno";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
features = {
|
|
"all-apis" = [ "event" "fs" "io_uring" "mm" "mount" "net" "param" "pipe" "process" "pty" "rand" "runtime" "shm" "stdio" "system" "termios" "thread" "time" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"io_uring" = [ "event" "fs" "net" "thread" "linux-raw-sys/io_uring" ];
|
|
"libc" = [ "dep:libc" ];
|
|
"libc_errno" = [ "dep:libc_errno" ];
|
|
"linux_5_1" = [ "linux_4_11" ];
|
|
"linux_5_11" = [ "linux_5_1" ];
|
|
"linux_latest" = [ "linux_5_11" ];
|
|
"net" = [ "linux-raw-sys/net" "linux-raw-sys/netlink" "linux-raw-sys/if_ether" "linux-raw-sys/xdp" ];
|
|
"process" = [ "linux-raw-sys/prctl" ];
|
|
"pty" = [ "fs" ];
|
|
"runtime" = [ "linux-raw-sys/prctl" ];
|
|
"rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" ];
|
|
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
|
|
"shm" = [ "fs" ];
|
|
"std" = [ "bitflags/std" "alloc" "libc?/std" "libc_errno?/std" ];
|
|
"system" = [ "linux-raw-sys/system" ];
|
|
"thread" = [ "linux-raw-sys/prctl" ];
|
|
"use-libc" = [ "libc_errno" "libc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "fs" "std" "stdio" "termios" ];
|
|
};
|
|
"rustversion" = rec {
|
|
crateName = "rustversion";
|
|
version = "1.0.22";
|
|
edition = "2018";
|
|
sha256 = "0vfl70jhv72scd9rfqgr2n11m5i9l1acnk684m2w83w0zbqdx75k";
|
|
procMacro = true;
|
|
build = "build/build.rs";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"rusty-fork" = rec {
|
|
crateName = "rusty-fork";
|
|
version = "0.3.1";
|
|
edition = "2018";
|
|
sha256 = "1qkf9rvz2irb1wlbkrhrns8n9hnax48z1lgql5nqyr2fyagzfsyc";
|
|
libName = "rusty_fork";
|
|
authors = [
|
|
"Jason Lingle"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "fnv";
|
|
packageId = "fnv";
|
|
}
|
|
{
|
|
name = "quick-error";
|
|
packageId = "quick-error";
|
|
}
|
|
{
|
|
name = "tempfile";
|
|
packageId = "tempfile";
|
|
}
|
|
{
|
|
name = "wait-timeout";
|
|
packageId = "wait-timeout";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "timeout" ];
|
|
"timeout" = [ "wait-timeout" ];
|
|
"wait-timeout" = [ "dep:wait-timeout" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "timeout" "wait-timeout" ];
|
|
};
|
|
"ryu" = rec {
|
|
crateName = "ryu";
|
|
version = "1.0.23";
|
|
edition = "2021";
|
|
sha256 = "0zs70sg00l2fb9jwrf6cbkdyscjs53anrvai2hf7npyyfi5blx4p";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
features = {
|
|
"no-panic" = [ "dep:no-panic" ];
|
|
};
|
|
};
|
|
"scopeguard" = rec {
|
|
crateName = "scopeguard";
|
|
version = "1.2.0";
|
|
edition = "2015";
|
|
sha256 = "0jcz9sd47zlsgcnm1hdw0664krxwb5gczlif4qngj2aif8vky54l";
|
|
authors = [
|
|
"bluss"
|
|
];
|
|
features = {
|
|
"default" = [ "use_std" ];
|
|
};
|
|
};
|
|
"semver" = rec {
|
|
crateName = "semver";
|
|
version = "1.0.28";
|
|
edition = "2021";
|
|
sha256 = "1kaimrpy876bcgi8bfj0qqfxk77zm9iz2zhn1hp9hj685z854y4a";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"serde" = rec {
|
|
crateName = "serde";
|
|
version = "1.0.228";
|
|
edition = "2021";
|
|
sha256 = "17mf4hhjxv5m90g42wmlbc61hdhlm6j9hwfkpcnd72rpgzm993ls";
|
|
authors = [
|
|
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "serde_core";
|
|
packageId = "serde_core";
|
|
usesDefaultFeatures = false;
|
|
features = [ "result" ];
|
|
}
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "serde_core/alloc" ];
|
|
"default" = [ "std" ];
|
|
"derive" = [ "serde_derive" ];
|
|
"rc" = [ "serde_core/rc" ];
|
|
"serde_derive" = [ "dep:serde_derive" ];
|
|
"std" = [ "serde_core/std" ];
|
|
"unstable" = [ "serde_core/unstable" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "derive" "rc" "serde_derive" "std" ];
|
|
};
|
|
"serde_core" = rec {
|
|
crateName = "serde_core";
|
|
version = "1.0.228";
|
|
edition = "2021";
|
|
sha256 = "1bb7id2xwx8izq50098s5j2sqrrvk31jbbrjqygyan6ask3qbls1";
|
|
authors = [
|
|
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
target = { target, features }: false;
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" "result" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "default" "rc" "result" "std" ];
|
|
};
|
|
"serde_derive" = rec {
|
|
crateName = "serde_derive";
|
|
version = "1.0.228";
|
|
edition = "2021";
|
|
sha256 = "0y8xm7fvmr2kjcd029g9fijpndh8csv5m20g4bd76w8qschg4h6m";
|
|
procMacro = true;
|
|
authors = [
|
|
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
features = [ "proc-macro" ];
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
usesDefaultFeatures = false;
|
|
features = [ "proc-macro" ];
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
usesDefaultFeatures = false;
|
|
features = [ "clone-impls" "derive" "parsing" "printing" "proc-macro" ];
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"serde_json" = rec {
|
|
crateName = "serde_json";
|
|
version = "1.0.149";
|
|
edition = "2021";
|
|
sha256 = "11jdx4vilzrjjd1dpgy67x5lgzr0laplz30dhv75lnf5ffa07z43";
|
|
authors = [
|
|
"Erick Tryzelaar <erick.tryzelaar@gmail.com>"
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "itoa";
|
|
packageId = "itoa";
|
|
}
|
|
{
|
|
name = "memchr";
|
|
packageId = "memchr";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: false;
|
|
}
|
|
{
|
|
name = "serde_core";
|
|
packageId = "serde_core";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "zmij";
|
|
packageId = "zmij";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
features = [ "derive" ];
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "serde_core/alloc" ];
|
|
"default" = [ "std" ];
|
|
"indexmap" = [ "dep:indexmap" ];
|
|
"preserve_order" = [ "indexmap" "std" ];
|
|
"std" = [ "memchr/std" "serde_core/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"sha2" = rec {
|
|
crateName = "sha2";
|
|
version = "0.10.9";
|
|
edition = "2018";
|
|
sha256 = "10xjj843v31ghsksd9sl9y12qfc48157j1xpb8v1ml39jy0psl57";
|
|
authors = [
|
|
"RustCrypto Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "cpufeatures";
|
|
packageId = "cpufeatures";
|
|
target = { target, features }: (("aarch64" == target."arch" or null) || ("x86_64" == target."arch" or null) || ("x86" == target."arch" or null));
|
|
}
|
|
{
|
|
name = "digest";
|
|
packageId = "digest";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "digest";
|
|
packageId = "digest";
|
|
features = [ "dev" ];
|
|
}
|
|
];
|
|
features = {
|
|
"asm" = [ "sha2-asm" ];
|
|
"asm-aarch64" = [ "asm" ];
|
|
"default" = [ "std" ];
|
|
"oid" = [ "digest/oid" ];
|
|
"sha2-asm" = [ "dep:sha2-asm" ];
|
|
"std" = [ "digest/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"shlex" = rec {
|
|
crateName = "shlex";
|
|
version = "1.3.0";
|
|
edition = "2015";
|
|
sha256 = "0r1y6bv26c1scpxvhg2cabimrmwgbp4p3wy6syj9n0c4s3q2znhg";
|
|
authors = [
|
|
"comex <comexk@gmail.com>"
|
|
"Fenhl <fenhl@fenhl.net>"
|
|
"Adrian Taylor <adetaylor@chromium.org>"
|
|
"Alex Touchet <alextouchet@outlook.com>"
|
|
"Daniel Parks <dp+git@oxidized.org>"
|
|
"Garrett Berg <googberg@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"signal-hook" = rec {
|
|
crateName = "signal-hook";
|
|
version = "0.3.18";
|
|
edition = "2018";
|
|
sha256 = "1qnnbq4g2vixfmlv28i1whkr0hikrf1bsc4xjy2aasj2yina30fq";
|
|
libName = "signal_hook";
|
|
authors = [
|
|
"Michal 'vorner' Vaner <vorner@vorner.cz>"
|
|
"Thomas Himmelstoss <thimm@posteo.de>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "signal-hook-registry";
|
|
packageId = "signal-hook-registry";
|
|
}
|
|
];
|
|
features = {
|
|
"cc" = [ "dep:cc" ];
|
|
"default" = [ "channel" "iterator" ];
|
|
"extended-siginfo" = [ "channel" "iterator" "extended-siginfo-raw" ];
|
|
"extended-siginfo-raw" = [ "cc" ];
|
|
"iterator" = [ "channel" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "channel" "default" "iterator" ];
|
|
};
|
|
"signal-hook-mio" = rec {
|
|
crateName = "signal-hook-mio";
|
|
version = "0.2.5";
|
|
edition = "2018";
|
|
sha256 = "1k20rr76ngvmzr6kskkl7dv8iyb84cbydpjbjk3mpcj0lykijnmp";
|
|
libName = "signal_hook_mio";
|
|
authors = [
|
|
"Michal 'vorner' Vaner <vorner@vorner.cz>"
|
|
"Thomas Himmelstoss <thimm@posteo.de>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "mio";
|
|
packageId = "mio";
|
|
rename = "mio-1_0";
|
|
optional = true;
|
|
features = [ "net" "os-ext" ];
|
|
}
|
|
{
|
|
name = "signal-hook";
|
|
packageId = "signal-hook";
|
|
}
|
|
];
|
|
features = {
|
|
"mio-0_6" = [ "dep:mio-0_6" ];
|
|
"mio-0_7" = [ "dep:mio-0_7" ];
|
|
"mio-0_8" = [ "dep:mio-0_8" ];
|
|
"mio-1_0" = [ "dep:mio-1_0" ];
|
|
"mio-uds" = [ "dep:mio-uds" ];
|
|
"support-v0_6" = [ "mio-0_6" "mio-uds" ];
|
|
"support-v0_7" = [ "mio-0_7" ];
|
|
"support-v0_8" = [ "mio-0_8" ];
|
|
"support-v1_0" = [ "mio-1_0" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "mio-1_0" "support-v1_0" ];
|
|
};
|
|
"signal-hook-registry" = rec {
|
|
crateName = "signal-hook-registry";
|
|
version = "1.4.8";
|
|
edition = "2015";
|
|
sha256 = "06vc7pmnki6lmxar3z31gkyg9cw7py5x9g7px70gy2hil75nkny4";
|
|
libName = "signal_hook_registry";
|
|
authors = [
|
|
"Michal 'vorner' Vaner <vorner@vorner.cz>"
|
|
"Masaki Hara <ackie.h.gmai@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "errno";
|
|
packageId = "errno";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
|
|
};
|
|
"simd-adler32" = rec {
|
|
crateName = "simd-adler32";
|
|
version = "0.3.9";
|
|
edition = "2018";
|
|
sha256 = "0532ysdwcvzyp2bwpk8qz0hijplcdwpssr5gy5r7qwqqy5z5qgbh";
|
|
libName = "simd_adler32";
|
|
authors = [
|
|
"Marvin Countryman <me@maar.vin>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" "const-generics" ];
|
|
};
|
|
};
|
|
"siphasher" = rec {
|
|
crateName = "siphasher";
|
|
version = "1.0.2";
|
|
edition = "2018";
|
|
sha256 = "13k7cfbpcm8qgj9p2n8dwg9skv9s0hxk5my30j5chy1p4l78bamj";
|
|
authors = [
|
|
"Frank Denis <github@pureftpd.org>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde_json" = [ "dep:serde_json" ];
|
|
"serde_no_std" = [ "serde/alloc" ];
|
|
"serde_std" = [ "std" "serde/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"smallvec" = rec {
|
|
crateName = "smallvec";
|
|
version = "1.15.1";
|
|
edition = "2018";
|
|
sha256 = "00xxdxxpgyq5vjnpljvkmy99xij5rxgh913ii1v16kzynnivgcb7";
|
|
authors = [
|
|
"The Servo Project Developers"
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"bincode" = [ "dep:bincode" ];
|
|
"const_new" = [ "const_generics" ];
|
|
"drain_keep_rest" = [ "drain_filter" ];
|
|
"impl_bincode" = [ "bincode" "unty" ];
|
|
"malloc_size_of" = [ "dep:malloc_size_of" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"unty" = [ "dep:unty" ];
|
|
};
|
|
};
|
|
"static_assertions" = rec {
|
|
crateName = "static_assertions";
|
|
version = "1.1.0";
|
|
edition = "2015";
|
|
sha256 = "0gsl6xmw10gvn3zs1rv99laj5ig7ylffnh71f9l34js4nr4r7sx2";
|
|
authors = [
|
|
"Nikolai Vazquez"
|
|
];
|
|
features = {
|
|
};
|
|
};
|
|
"strsim" = rec {
|
|
crateName = "strsim";
|
|
version = "0.11.1";
|
|
edition = "2015";
|
|
sha256 = "0kzvqlw8hxqb7y598w1s0hxlnmi84sg5vsipp3yg5na5d1rvba3x";
|
|
authors = [
|
|
"Danny Guo <danny@dannyguo.com>"
|
|
"maxbachmann <oss@maxbachmann.de>"
|
|
];
|
|
|
|
};
|
|
"strum" = rec {
|
|
crateName = "strum";
|
|
version = "0.27.2";
|
|
edition = "2021";
|
|
sha256 = "1ksb9jssw4bg9kmv9nlgp2jqa4vnsa3y4q9zkppvl952q7vdc8xg";
|
|
authors = [
|
|
"Peter Glotfelty <peter.glotfelty@microsoft.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "strum_macros";
|
|
packageId = "strum_macros";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"derive" = [ "strum_macros" ];
|
|
"phf" = [ "dep:phf" ];
|
|
"strum_macros" = [ "dep:strum_macros" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "derive" "std" "strum_macros" ];
|
|
};
|
|
"strum_macros" = rec {
|
|
crateName = "strum_macros";
|
|
version = "0.27.2";
|
|
edition = "2021";
|
|
sha256 = "19xwikxma0yi70fxkcy1yxcv0ica8gf3jnh5gj936jza8lwcx5bn";
|
|
procMacro = true;
|
|
authors = [
|
|
"Peter Glotfelty <peter.glotfelty@microsoft.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "heck";
|
|
packageId = "heck";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
features = [ "parsing" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"syn 1.0.109" = rec {
|
|
crateName = "syn";
|
|
version = "1.0.109";
|
|
edition = "2018";
|
|
sha256 = "0ds2if4600bd59wsv7jjgfkayfzy3hnazs394kz6zdkmna8l3dkj";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "unicode-ident";
|
|
packageId = "unicode-ident";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
|
|
"printing" = [ "quote" ];
|
|
"proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ];
|
|
"quote" = [ "dep:quote" ];
|
|
"test" = [ "syn-test-suite/all-features" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "parsing" "printing" "proc-macro" "quote" ];
|
|
};
|
|
"syn 2.0.117" = rec {
|
|
crateName = "syn";
|
|
version = "2.0.117";
|
|
edition = "2021";
|
|
sha256 = "16cv7c0wbn8amxc54n4w15kxlx5ypdmla8s0gxr2l7bv7s0bhrg6";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "unicode-ident";
|
|
packageId = "unicode-ident";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ];
|
|
"printing" = [ "dep:quote" ];
|
|
"proc-macro" = [ "proc-macro2/proc-macro" "quote?/proc-macro" ];
|
|
"test" = [ "syn-test-suite/all-features" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "full" "parsing" "printing" "proc-macro" "visit" "visit-mut" ];
|
|
};
|
|
"tempfile" = rec {
|
|
crateName = "tempfile";
|
|
version = "3.27.0";
|
|
edition = "2021";
|
|
sha256 = "1gblhnyfjsbg9wjg194n89wrzah7jy3yzgnyzhp56f3v9jd7wj9j";
|
|
authors = [
|
|
"Steven Allen <steven@stebalien.com>"
|
|
"The Rust Project Developers"
|
|
"Ashley Mannix <ashleymannix@live.com.au>"
|
|
"Jason White <me@jasonwhite.io>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "fastrand";
|
|
packageId = "fastrand";
|
|
}
|
|
{
|
|
name = "getrandom";
|
|
packageId = "getrandom 0.4.2";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: ((target."unix" or false) || (target."windows" or false) || ("wasi" == target."os" or null));
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "rustix";
|
|
packageId = "rustix";
|
|
target = { target, features }: ((target."unix" or false) || ("wasi" == target."os" or null));
|
|
features = [ "fs" ];
|
|
}
|
|
{
|
|
name = "windows-sys";
|
|
packageId = "windows-sys";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "Win32_Storage_FileSystem" "Win32_Foundation" ];
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "getrandom" ];
|
|
"getrandom" = [ "dep:getrandom" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "getrandom" ];
|
|
};
|
|
"terminfo" = rec {
|
|
crateName = "terminfo";
|
|
version = "0.9.0";
|
|
edition = "2021";
|
|
sha256 = "0qp6rrzkxcg08vjzsim2bw7mid3vi29mizrg70dzbycj0q7q3snl";
|
|
authors = [
|
|
"meh. <meh@schizofreni.co>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "fnv";
|
|
packageId = "fnv";
|
|
}
|
|
{
|
|
name = "nom";
|
|
packageId = "nom";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "phf";
|
|
packageId = "phf";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "phf_codegen";
|
|
packageId = "phf_codegen";
|
|
}
|
|
];
|
|
|
|
};
|
|
"termios" = rec {
|
|
crateName = "termios";
|
|
version = "0.3.3";
|
|
edition = "2015";
|
|
sha256 = "0sxcs0g00538jqh5xbdqakkzijadr8nj7zmip0c7jz3k83vmn721";
|
|
authors = [
|
|
"David Cuddeback <david.cuddeback@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
];
|
|
|
|
};
|
|
"termwiz" = rec {
|
|
crateName = "termwiz";
|
|
version = "0.23.3";
|
|
edition = "2018";
|
|
sha256 = "1xzq6l7rx285ax57dz8gdh44kp1790x0knvfynmimgfc89rb6xj6";
|
|
authors = [
|
|
"Wez Furlong"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "anyhow";
|
|
packageId = "anyhow";
|
|
}
|
|
{
|
|
name = "base64";
|
|
packageId = "base64";
|
|
}
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 2.11.1";
|
|
}
|
|
{
|
|
name = "fancy-regex";
|
|
packageId = "fancy-regex";
|
|
}
|
|
{
|
|
name = "filedescriptor";
|
|
packageId = "filedescriptor";
|
|
}
|
|
{
|
|
name = "finl_unicode";
|
|
packageId = "finl_unicode";
|
|
}
|
|
{
|
|
name = "fixedbitset";
|
|
packageId = "fixedbitset";
|
|
}
|
|
{
|
|
name = "hex";
|
|
packageId = "hex";
|
|
}
|
|
{
|
|
name = "lazy_static";
|
|
packageId = "lazy_static";
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
}
|
|
{
|
|
name = "memmem";
|
|
packageId = "memmem";
|
|
}
|
|
{
|
|
name = "nix";
|
|
packageId = "nix";
|
|
target = { target, features }: (target."unix" or false);
|
|
features = [ "mman" "fs" ];
|
|
}
|
|
{
|
|
name = "num-derive";
|
|
packageId = "num-derive";
|
|
}
|
|
{
|
|
name = "num-traits";
|
|
packageId = "num-traits";
|
|
}
|
|
{
|
|
name = "ordered-float";
|
|
packageId = "ordered-float";
|
|
}
|
|
{
|
|
name = "pest";
|
|
packageId = "pest";
|
|
}
|
|
{
|
|
name = "pest_derive";
|
|
packageId = "pest_derive";
|
|
}
|
|
{
|
|
name = "phf";
|
|
packageId = "phf";
|
|
}
|
|
{
|
|
name = "sha2";
|
|
packageId = "sha2";
|
|
}
|
|
{
|
|
name = "signal-hook";
|
|
packageId = "signal-hook";
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "siphasher";
|
|
packageId = "siphasher";
|
|
}
|
|
{
|
|
name = "terminfo";
|
|
packageId = "terminfo";
|
|
}
|
|
{
|
|
name = "termios";
|
|
packageId = "termios";
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
{
|
|
name = "ucd-trie";
|
|
packageId = "ucd-trie";
|
|
}
|
|
{
|
|
name = "unicode-segmentation";
|
|
packageId = "unicode-segmentation";
|
|
}
|
|
{
|
|
name = "vtparse";
|
|
packageId = "vtparse";
|
|
}
|
|
{
|
|
name = "wezterm-bidi";
|
|
packageId = "wezterm-bidi";
|
|
}
|
|
{
|
|
name = "wezterm-blob-leases";
|
|
packageId = "wezterm-blob-leases";
|
|
}
|
|
{
|
|
name = "wezterm-color-types";
|
|
packageId = "wezterm-color-types";
|
|
}
|
|
{
|
|
name = "wezterm-dynamic";
|
|
packageId = "wezterm-dynamic";
|
|
}
|
|
{
|
|
name = "wezterm-input-types";
|
|
packageId = "wezterm-input-types";
|
|
}
|
|
{
|
|
name = "winapi";
|
|
packageId = "winapi";
|
|
target = { target, features }: (target."windows" or false);
|
|
features = [ "winbase" "winerror" "winnls" "winuser" "consoleapi" "handleapi" "fileapi" "synchapi" "memoryapi" "winnt" "impl-default" ];
|
|
}
|
|
];
|
|
features = {
|
|
"cassowary" = [ "dep:cassowary" ];
|
|
"docs" = [ "widgets" "use_serde" ];
|
|
"fnv" = [ "dep:fnv" ];
|
|
"image" = [ "dep:image" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"use_image" = [ "image" ];
|
|
"use_serde" = [ "serde" "wezterm-color-types/use_serde" "wezterm-blob-leases/serde" "bitflags/serde" "wezterm-input-types/serde" ];
|
|
"widgets" = [ "cassowary" "fnv" ];
|
|
};
|
|
};
|
|
"thiserror 1.0.69" = rec {
|
|
crateName = "thiserror";
|
|
version = "1.0.69";
|
|
edition = "2021";
|
|
sha256 = "0lizjay08agcr5hs9yfzzj6axs53a2rgx070a1dsi3jpkcrzbamn";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "thiserror-impl";
|
|
packageId = "thiserror-impl 1.0.69";
|
|
}
|
|
];
|
|
|
|
};
|
|
"thiserror 2.0.18" = rec {
|
|
crateName = "thiserror";
|
|
version = "2.0.18";
|
|
edition = "2021";
|
|
sha256 = "1i7vcmw9900bvsmay7mww04ahahab7wmr8s925xc083rpjybb222";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "thiserror-impl";
|
|
packageId = "thiserror-impl 2.0.18";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"thiserror-impl 1.0.69" = rec {
|
|
crateName = "thiserror-impl";
|
|
version = "1.0.69";
|
|
edition = "2021";
|
|
sha256 = "1h84fmn2nai41cxbhk6pqf46bxqq1b344v8yz089w1chzi76rvjg";
|
|
procMacro = true;
|
|
libName = "thiserror_impl";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
}
|
|
];
|
|
|
|
};
|
|
"thiserror-impl 2.0.18" = rec {
|
|
crateName = "thiserror-impl";
|
|
version = "2.0.18";
|
|
edition = "2021";
|
|
sha256 = "1mf1vrbbimj1g6dvhdgzjmn6q09yflz2b92zs1j9n3k7cxzyxi7b";
|
|
procMacro = true;
|
|
libName = "thiserror_impl";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
}
|
|
];
|
|
|
|
};
|
|
"time" = rec {
|
|
crateName = "time";
|
|
version = "0.3.47";
|
|
edition = "2024";
|
|
sha256 = "0b7g9ly2iabrlgizliz6v5x23yq5d6bpp0mqz6407z1s526d8fvl";
|
|
authors = [
|
|
"Jacob Pratt <open-source@jhpratt.dev>"
|
|
"Time contributors"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "deranged";
|
|
packageId = "deranged";
|
|
features = [ "powerfmt" ];
|
|
}
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
optional = true;
|
|
target = { target, features }: (builtins.elem "unix" target."family");
|
|
}
|
|
{
|
|
name = "num-conv";
|
|
packageId = "num-conv";
|
|
}
|
|
{
|
|
name = "num_threads";
|
|
packageId = "num_threads";
|
|
optional = true;
|
|
target = { target, features }: (builtins.elem "unix" target."family");
|
|
}
|
|
{
|
|
name = "powerfmt";
|
|
packageId = "powerfmt";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "serde_core";
|
|
packageId = "serde_core";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "time-core";
|
|
packageId = "time-core";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "num-conv";
|
|
packageId = "num-conv";
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "serde_core?/alloc" ];
|
|
"default" = [ "std" ];
|
|
"formatting" = [ "dep:itoa" "std" "time-macros?/formatting" ];
|
|
"large-dates" = [ "time-core/large-dates" "time-macros?/large-dates" ];
|
|
"local-offset" = [ "std" "dep:libc" "dep:num_threads" ];
|
|
"macros" = [ "dep:time-macros" ];
|
|
"parsing" = [ "time-macros?/parsing" ];
|
|
"quickcheck" = [ "dep:quickcheck" "alloc" "deranged/quickcheck" ];
|
|
"rand" = [ "rand08" "rand09" ];
|
|
"rand08" = [ "dep:rand08" "deranged/rand08" ];
|
|
"rand09" = [ "dep:rand09" "deranged/rand09" ];
|
|
"serde" = [ "dep:serde_core" "time-macros?/serde" "deranged/serde" ];
|
|
"serde-human-readable" = [ "serde" "formatting" "parsing" ];
|
|
"serde-well-known" = [ "serde" "formatting" "parsing" ];
|
|
"std" = [ "alloc" ];
|
|
"wasm-bindgen" = [ "dep:js-sys" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "alloc" "local-offset" "std" ];
|
|
};
|
|
"time-core" = rec {
|
|
crateName = "time-core";
|
|
version = "0.1.8";
|
|
edition = "2024";
|
|
sha256 = "1jidl426mw48i7hjj4hs9vxgd9lwqq4vyalm4q8d7y4iwz7y353n";
|
|
libName = "time_core";
|
|
authors = [
|
|
"Jacob Pratt <open-source@jhpratt.dev>"
|
|
"Time contributors"
|
|
];
|
|
features = {
|
|
};
|
|
};
|
|
"typenum" = rec {
|
|
crateName = "typenum";
|
|
version = "1.20.0";
|
|
edition = "2018";
|
|
sha256 = "1pj35y6q11d3y55gdl6g1h2dfhmybjming0jdi9bh0bpnqm11kj0";
|
|
authors = [
|
|
"Paho Lurie-Gregg <paho@paholg.com>"
|
|
"Andre Bogus <bogusandre@gmail.com>"
|
|
];
|
|
features = {
|
|
"scale-info" = [ "dep:scale-info" ];
|
|
"scale_info" = [ "scale-info/derive" ];
|
|
};
|
|
};
|
|
"ucd-trie" = rec {
|
|
crateName = "ucd-trie";
|
|
version = "0.1.7";
|
|
edition = "2021";
|
|
sha256 = "0wc9p07sqwz320848i52nvyjvpsxkx3kv5bfbmm6s35809fdk5i8";
|
|
libName = "ucd_trie";
|
|
authors = [
|
|
"Andrew Gallant <jamslam@gmail.com>"
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"unarray" = rec {
|
|
crateName = "unarray";
|
|
version = "0.1.4";
|
|
edition = "2018";
|
|
sha256 = "154smf048k84prsdgh09nkm2n0w0336v84jd4zikyn6v6jrqbspa";
|
|
|
|
};
|
|
"unicode-ident" = rec {
|
|
crateName = "unicode-ident";
|
|
version = "1.0.24";
|
|
edition = "2021";
|
|
sha256 = "0xfs8y1g7syl2iykji8zk5hgfi5jw819f5zsrbaxmlzwsly33r76";
|
|
libName = "unicode_ident";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"unicode-segmentation" = rec {
|
|
crateName = "unicode-segmentation";
|
|
version = "1.13.2";
|
|
edition = "2018";
|
|
sha256 = "135a26m4a0wj319gcw28j6a5aqvz00jmgwgmcs6szgxjf942facn";
|
|
libName = "unicode_segmentation";
|
|
authors = [
|
|
"kwantam <kwantam@gmail.com>"
|
|
"Manish Goregaokar <manishsmail@gmail.com>"
|
|
];
|
|
features = {
|
|
};
|
|
};
|
|
"unicode-truncate" = rec {
|
|
crateName = "unicode-truncate";
|
|
version = "2.0.1";
|
|
edition = "2018";
|
|
sha256 = "19g9af5v0a8xaigqbs9hi9csxkg1fff07ycilvwfaqw64fhq1cqn";
|
|
libName = "unicode_truncate";
|
|
authors = [
|
|
"Aetf <aetf@unlimitedcodeworks.xyz>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "itertools";
|
|
packageId = "itertools";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "unicode-segmentation";
|
|
packageId = "unicode-segmentation";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "unicode-width";
|
|
packageId = "unicode-width";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"unicode-width" = rec {
|
|
crateName = "unicode-width";
|
|
version = "0.2.2";
|
|
edition = "2021";
|
|
sha256 = "0m7jjzlcccw716dy9423xxh0clys8pfpllc5smvfxrzdf66h9b5l";
|
|
libName = "unicode_width";
|
|
authors = [
|
|
"kwantam <kwantam@gmail.com>"
|
|
"Manish Goregaokar <manishsmail@gmail.com>"
|
|
];
|
|
features = {
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "cjk" ];
|
|
"rustc-dep-of-std" = [ "std" "core" ];
|
|
"std" = [ "dep:std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "cjk" "default" ];
|
|
};
|
|
"unicode-xid" = rec {
|
|
crateName = "unicode-xid";
|
|
version = "0.2.6";
|
|
edition = "2015";
|
|
sha256 = "0lzqaky89fq0bcrh6jj6bhlz37scfd8c7dsj5dq7y32if56c1hgb";
|
|
libName = "unicode_xid";
|
|
authors = [
|
|
"erick.tryzelaar <erick.tryzelaar@gmail.com>"
|
|
"kwantam <kwantam@gmail.com>"
|
|
"Manish Goregaokar <manishsmail@gmail.com>"
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"utf8parse" = rec {
|
|
crateName = "utf8parse";
|
|
version = "0.2.2";
|
|
edition = "2018";
|
|
sha256 = "088807qwjq46azicqwbhlmzwrbkz7l4hpw43sdkdyyk524vdxaq6";
|
|
authors = [
|
|
"Joe Wilm <joe@jwilm.com>"
|
|
"Christian Duerr <contact@christianduerr.com>"
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"uuid" = rec {
|
|
crateName = "uuid";
|
|
version = "1.23.1";
|
|
edition = "2021";
|
|
sha256 = "0xlwg23rmsfl3gx98qsyzpl24pf4bs9wi3mqx5c6i319hyb4mmyx";
|
|
authors = [
|
|
"Ashley Mannix<ashleymannix@live.com.au>"
|
|
"Dylan DPC<dylan.dpc@gmail.com>"
|
|
"Hunar Roop Kahlon<hunar.roop@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "atomic";
|
|
packageId = "atomic";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "getrandom";
|
|
packageId = "getrandom 0.4.2";
|
|
optional = true;
|
|
target = { target, features }: (!(("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null))));
|
|
}
|
|
{
|
|
name = "js-sys";
|
|
packageId = "js-sys";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null)) && (builtins.elem "atomics" targetFeatures));
|
|
}
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null)));
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "wasm-bindgen";
|
|
packageId = "wasm-bindgen";
|
|
target = { target, features }: (("wasm32" == target."arch" or null) && (("unknown" == target."os" or null) || ("none" == target."os" or null)));
|
|
}
|
|
];
|
|
features = {
|
|
"arbitrary" = [ "dep:arbitrary" ];
|
|
"atomic" = [ "dep:atomic" ];
|
|
"borsh" = [ "dep:borsh" "dep:borsh-derive" ];
|
|
"bytemuck" = [ "dep:bytemuck" ];
|
|
"default" = [ "std" ];
|
|
"fast-rng" = [ "rng" "dep:rand" ];
|
|
"js" = [ "dep:wasm-bindgen" "dep:js-sys" ];
|
|
"md5" = [ "dep:md-5" ];
|
|
"rng" = [ "dep:getrandom" ];
|
|
"rng-getrandom" = [ "rng" "dep:getrandom" "uuid-rng-internal-lib" "uuid-rng-internal-lib/getrandom" ];
|
|
"rng-rand" = [ "rng" "dep:rand" "uuid-rng-internal-lib" "uuid-rng-internal-lib/rand" ];
|
|
"serde" = [ "dep:serde_core" ];
|
|
"sha1" = [ "dep:sha1_smol" ];
|
|
"slog" = [ "dep:slog" ];
|
|
"std" = [ "wasm-bindgen?/std" "js-sys?/std" ];
|
|
"uuid-rng-internal-lib" = [ "dep:uuid-rng-internal-lib" ];
|
|
"v1" = [ "atomic" ];
|
|
"v3" = [ "md5" ];
|
|
"v4" = [ "rng" ];
|
|
"v5" = [ "sha1" ];
|
|
"v6" = [ "atomic" ];
|
|
"v7" = [ "rng" ];
|
|
"zerocopy" = [ "dep:zerocopy" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "atomic" "default" "rng" "std" "v1" ];
|
|
};
|
|
"version_check" = rec {
|
|
crateName = "version_check";
|
|
version = "0.9.5";
|
|
edition = "2015";
|
|
sha256 = "0nhhi4i5x89gm911azqbn7avs9mdacw2i3vcz3cnmz3mv4rqz4hb";
|
|
authors = [
|
|
"Sergio Benitez <sb@sergio.bz>"
|
|
];
|
|
|
|
};
|
|
"vtparse" = rec {
|
|
crateName = "vtparse";
|
|
version = "0.6.2";
|
|
edition = "2018";
|
|
sha256 = "1l5yz9650zhkaffxn28cvfys7plcw2wd6drajyf41pshn37jm6vd";
|
|
authors = [
|
|
"Wez Furlong <wez@wezfurlong.org>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "utf8parse";
|
|
packageId = "utf8parse";
|
|
}
|
|
];
|
|
|
|
};
|
|
"wait-timeout" = rec {
|
|
crateName = "wait-timeout";
|
|
version = "0.2.1";
|
|
edition = "2015";
|
|
crateBin = [];
|
|
sha256 = "04azqv9mnfxgvnc8j2wp362xraybakh2dy1nj22gj51rdl93pb09";
|
|
libName = "wait_timeout";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "libc";
|
|
packageId = "libc";
|
|
target = { target, features }: (target."unix" or false);
|
|
}
|
|
];
|
|
|
|
};
|
|
"wasi" = rec {
|
|
crateName = "wasi";
|
|
version = "0.11.1+wasi-snapshot-preview1";
|
|
edition = "2018";
|
|
sha256 = "0jx49r7nbkbhyfrfyhz0bm4817yrnxgd3jiwwwfv0zl439jyrwyc";
|
|
authors = [
|
|
"The Cranelift Project Developers"
|
|
];
|
|
features = {
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" ];
|
|
"rustc-dep-of-std" = [ "core" "rustc-std-workspace-alloc" ];
|
|
"rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"wasip2" = rec {
|
|
crateName = "wasip2";
|
|
version = "1.0.3+wasi-0.2.9";
|
|
edition = "2021";
|
|
sha256 = "1mi3w855dz99xzjqc4aa8c9q5b6z1y5c963pkk4cvmr6vdr4c1i0";
|
|
dependencies = [
|
|
{
|
|
name = "wit-bindgen";
|
|
packageId = "wit-bindgen 0.57.1";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"alloc" = [ "dep:alloc" ];
|
|
"bitflags" = [ "wit-bindgen/bitflags" ];
|
|
"core" = [ "dep:core" ];
|
|
"default" = [ "std" "bitflags" ];
|
|
"rustc-dep-of-std" = [ "core" "alloc" "wit-bindgen/rustc-dep-of-std" ];
|
|
};
|
|
};
|
|
"wasip3" = rec {
|
|
crateName = "wasip3";
|
|
version = "0.4.0+wasi-0.3.0-rc-2026-01-06";
|
|
edition = "2021";
|
|
sha256 = "19dc8p0y2mfrvgk3qw3c3240nfbylv22mvyxz84dqpgai2zzha2l";
|
|
dependencies = [
|
|
{
|
|
name = "wit-bindgen";
|
|
packageId = "wit-bindgen 0.51.0";
|
|
usesDefaultFeatures = false;
|
|
features = [ "async" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "wit-bindgen";
|
|
packageId = "wit-bindgen 0.51.0";
|
|
usesDefaultFeatures = false;
|
|
features = [ "async-spawn" ];
|
|
}
|
|
];
|
|
features = {
|
|
"http-compat" = [ "dep:bytes" "dep:http-body" "dep:http" "dep:thiserror" "wit-bindgen/async-spawn" ];
|
|
};
|
|
};
|
|
"wasm-bindgen" = rec {
|
|
crateName = "wasm-bindgen";
|
|
version = "0.2.118";
|
|
edition = "2021";
|
|
sha256 = "129s5r14fx4v4xrzpx2c6l860nkxpl48j50y7kl6j16bpah3iy8b";
|
|
libName = "wasm_bindgen";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "cfg-if";
|
|
packageId = "cfg-if";
|
|
}
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "wasm-bindgen-macro";
|
|
packageId = "wasm-bindgen-macro";
|
|
}
|
|
{
|
|
name = "wasm-bindgen-shared";
|
|
packageId = "wasm-bindgen-shared";
|
|
}
|
|
];
|
|
buildDependencies = [
|
|
{
|
|
name = "rustversion";
|
|
packageId = "rustversion";
|
|
rename = "rustversion-compat";
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "once_cell";
|
|
packageId = "once_cell";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"enable-interning" = [ "std" ];
|
|
"serde" = [ "dep:serde" ];
|
|
"serde-serialize" = [ "serde" "serde_json" "std" ];
|
|
"serde_json" = [ "dep:serde_json" ];
|
|
"strict-macro" = [ "wasm-bindgen-macro/strict-macro" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"wasm-bindgen-macro" = rec {
|
|
crateName = "wasm-bindgen-macro";
|
|
version = "0.2.118";
|
|
edition = "2021";
|
|
sha256 = "1v98r8vs17cj8918qsg0xx4nlg4nxk1g0jd4nwnyrh1687w29zzf";
|
|
procMacro = true;
|
|
libName = "wasm_bindgen_macro";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "wasm-bindgen-macro-support";
|
|
packageId = "wasm-bindgen-macro-support";
|
|
}
|
|
];
|
|
features = {
|
|
"strict-macro" = [ "wasm-bindgen-macro-support/strict-macro" ];
|
|
};
|
|
};
|
|
"wasm-bindgen-macro-support" = rec {
|
|
crateName = "wasm-bindgen-macro-support";
|
|
version = "0.2.118";
|
|
edition = "2021";
|
|
sha256 = "0169jr0q469hfx5zqxfyywf2h2f4aj17vn4zly02nfwqmxghc24x";
|
|
libName = "wasm_bindgen_macro_support";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bumpalo";
|
|
packageId = "bumpalo";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
features = [ "visit" "visit-mut" "full" "extra-traits" ];
|
|
}
|
|
{
|
|
name = "wasm-bindgen-shared";
|
|
packageId = "wasm-bindgen-shared";
|
|
}
|
|
];
|
|
features = {
|
|
"extra-traits" = [ "syn/extra-traits" ];
|
|
};
|
|
};
|
|
"wasm-bindgen-shared" = rec {
|
|
crateName = "wasm-bindgen-shared";
|
|
version = "0.2.118";
|
|
edition = "2021";
|
|
links = "wasm_bindgen";
|
|
sha256 = "0ag1vvdzi4334jlzilsy14y3nyzwddf1ndn62fyhf6bg62g4vl2z";
|
|
libName = "wasm_bindgen_shared";
|
|
authors = [
|
|
"The wasm-bindgen Developers"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "unicode-ident";
|
|
packageId = "unicode-ident";
|
|
}
|
|
];
|
|
|
|
};
|
|
"wasm-encoder" = rec {
|
|
crateName = "wasm-encoder";
|
|
version = "0.244.0";
|
|
edition = "2021";
|
|
sha256 = "06c35kv4h42vk3k51xjz1x6hn3mqwfswycmr6ziky033zvr6a04r";
|
|
libName = "wasm_encoder";
|
|
authors = [
|
|
"Nick Fitzgerald <fitzgen@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "leb128fmt";
|
|
packageId = "leb128fmt";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "wasmparser";
|
|
packageId = "wasmparser";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "simd" "simd" ];
|
|
}
|
|
];
|
|
features = {
|
|
"component-model" = [ "wasmparser?/component-model" ];
|
|
"default" = [ "std" "component-model" ];
|
|
"std" = [ "wasmparser?/std" ];
|
|
"wasmparser" = [ "dep:wasmparser" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "component-model" "std" "wasmparser" ];
|
|
};
|
|
"wasm-metadata" = rec {
|
|
crateName = "wasm-metadata";
|
|
version = "0.244.0";
|
|
edition = "2021";
|
|
sha256 = "02f9dhlnryd2l7zf03whlxai5sv26x4spfibjdvc3g9gd8z3a3mv";
|
|
libName = "wasm_metadata";
|
|
dependencies = [
|
|
{
|
|
name = "anyhow";
|
|
packageId = "anyhow";
|
|
}
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
usesDefaultFeatures = false;
|
|
features = [ "serde" ];
|
|
}
|
|
{
|
|
name = "wasm-encoder";
|
|
packageId = "wasm-encoder";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" "component-model" ];
|
|
}
|
|
{
|
|
name = "wasmparser";
|
|
packageId = "wasmparser";
|
|
usesDefaultFeatures = false;
|
|
features = [ "simd" "std" "component-model" "hash-collections" ];
|
|
}
|
|
];
|
|
features = {
|
|
"clap" = [ "dep:clap" ];
|
|
"default" = [ "oci" "serde" ];
|
|
"oci" = [ "dep:auditable-serde" "dep:flate2" "dep:url" "dep:spdx" "dep:serde_json" "serde" ];
|
|
"serde" = [ "dep:serde_derive" "dep:serde" ];
|
|
};
|
|
};
|
|
"wasmparser" = rec {
|
|
crateName = "wasmparser";
|
|
version = "0.244.0";
|
|
edition = "2021";
|
|
sha256 = "1zi821hrlsxfhn39nqpmgzc0wk7ax3dv6vrs5cw6kb0v5v3hgf27";
|
|
authors = [
|
|
"Yury Delendik <ydelendik@mozilla.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 2.11.1";
|
|
}
|
|
{
|
|
name = "hashbrown";
|
|
packageId = "hashbrown 0.15.5";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "default-hasher" ];
|
|
}
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "semver";
|
|
packageId = "semver";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"component-model" = [ "dep:semver" ];
|
|
"default" = [ "std" "validate" "serde" "features" "component-model" "hash-collections" "simd" ];
|
|
"hash-collections" = [ "dep:hashbrown" "dep:indexmap" ];
|
|
"serde" = [ "dep:serde" "indexmap?/serde" "hashbrown?/serde" ];
|
|
"std" = [ "indexmap?/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "component-model" "features" "hash-collections" "simd" "std" "validate" ];
|
|
};
|
|
"wezterm-bidi" = rec {
|
|
crateName = "wezterm-bidi";
|
|
version = "0.2.3";
|
|
edition = "2021";
|
|
sha256 = "1v7kwmnxfplv9kgdmamn6csbn2ag5xjr0y6gs797slk0alsnw2hc";
|
|
libName = "wezterm_bidi";
|
|
dependencies = [
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
}
|
|
{
|
|
name = "wezterm-dynamic";
|
|
packageId = "wezterm-dynamic";
|
|
}
|
|
];
|
|
|
|
};
|
|
"wezterm-blob-leases" = rec {
|
|
crateName = "wezterm-blob-leases";
|
|
version = "0.1.1";
|
|
edition = "2021";
|
|
sha256 = "1dwf8bm3cwdi37fandwbk7nsfhn9spv4wm0l86gf551xv7vaybb9";
|
|
libName = "wezterm_blob_leases";
|
|
dependencies = [
|
|
{
|
|
name = "getrandom";
|
|
packageId = "getrandom 0.3.4";
|
|
}
|
|
{
|
|
name = "mac_address";
|
|
packageId = "mac_address";
|
|
}
|
|
{
|
|
name = "sha2";
|
|
packageId = "sha2";
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
{
|
|
name = "uuid";
|
|
packageId = "uuid";
|
|
features = [ "v1" "rng" ];
|
|
}
|
|
];
|
|
features = {
|
|
"serde" = [ "dep:serde" "uuid/serde" ];
|
|
"simple_tempdir" = [ "dep:tempfile" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" ];
|
|
};
|
|
"wezterm-color-types" = rec {
|
|
crateName = "wezterm-color-types";
|
|
version = "0.3.0";
|
|
edition = "2018";
|
|
sha256 = "15j29f60p1dc0msx50x940niyv9d5zpynavpcc6jf44hbkrixs3x";
|
|
libName = "wezterm_color_types";
|
|
authors = [
|
|
"Wez Furlong"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "csscolorparser";
|
|
packageId = "csscolorparser";
|
|
features = [ "lab" ];
|
|
}
|
|
{
|
|
name = "deltae";
|
|
packageId = "deltae";
|
|
}
|
|
{
|
|
name = "lazy_static";
|
|
packageId = "lazy_static";
|
|
}
|
|
{
|
|
name = "wezterm-dynamic";
|
|
packageId = "wezterm-dynamic";
|
|
}
|
|
];
|
|
features = {
|
|
"serde" = [ "dep:serde" ];
|
|
"use_serde" = [ "serde" ];
|
|
};
|
|
};
|
|
"wezterm-dynamic" = rec {
|
|
crateName = "wezterm-dynamic";
|
|
version = "0.2.1";
|
|
edition = "2021";
|
|
sha256 = "1b6mrk09xxiz66dj3912kmiq8rl7dqig6rwminkfmmhg287bcajz";
|
|
libName = "wezterm_dynamic";
|
|
dependencies = [
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
}
|
|
{
|
|
name = "ordered-float";
|
|
packageId = "ordered-float";
|
|
}
|
|
{
|
|
name = "strsim";
|
|
packageId = "strsim";
|
|
}
|
|
{
|
|
name = "thiserror";
|
|
packageId = "thiserror 1.0.69";
|
|
}
|
|
{
|
|
name = "wezterm-dynamic-derive";
|
|
packageId = "wezterm-dynamic-derive";
|
|
}
|
|
];
|
|
|
|
};
|
|
"wezterm-dynamic-derive" = rec {
|
|
crateName = "wezterm-dynamic-derive";
|
|
version = "0.1.1";
|
|
edition = "2021";
|
|
sha256 = "0nspip7gwzmfn66fbnbpa2yik2sb97nckzmgir25nr4wacnwzh26";
|
|
procMacro = true;
|
|
libName = "wezterm_dynamic_derive";
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 1.0.109";
|
|
features = [ "extra-traits" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"wezterm-input-types" = rec {
|
|
crateName = "wezterm-input-types";
|
|
version = "0.1.0";
|
|
edition = "2021";
|
|
sha256 = "0zp557014d458a69yqn9dxfy270b6kyfdiynr5p4algrb7aas4kh";
|
|
libName = "wezterm_input_types";
|
|
authors = [
|
|
"Wez Furlong <wez@wezfurlong.org>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 1.3.2";
|
|
}
|
|
{
|
|
name = "euclid";
|
|
packageId = "euclid";
|
|
}
|
|
{
|
|
name = "lazy_static";
|
|
packageId = "lazy_static";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
features = [ "rc" "derive" ];
|
|
}
|
|
{
|
|
name = "wezterm-dynamic";
|
|
packageId = "wezterm-dynamic";
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "serde" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "serde" ];
|
|
};
|
|
"winapi" = rec {
|
|
crateName = "winapi";
|
|
version = "0.3.9";
|
|
edition = "2015";
|
|
sha256 = "06gl025x418lchw1wxj64ycr7gha83m44cjr5sarhynd9xkrm0sw";
|
|
authors = [
|
|
"Peter Atashian <retep998@gmail.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "winapi-i686-pc-windows-gnu";
|
|
packageId = "winapi-i686-pc-windows-gnu";
|
|
target = { target, features }: (target.name == "i686-pc-windows-gnu");
|
|
}
|
|
{
|
|
name = "winapi-x86_64-pc-windows-gnu";
|
|
packageId = "winapi-x86_64-pc-windows-gnu";
|
|
target = { target, features }: (target.name == "x86_64-pc-windows-gnu");
|
|
}
|
|
];
|
|
features = {
|
|
"debug" = [ "impl-debug" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "consoleapi" "fileapi" "handleapi" "impl-default" "iphlpapi" "memoryapi" "namedpipeapi" "processenv" "processthreadsapi" "synchapi" "winbase" "winerror" "winnls" "winnt" "winsock2" "winuser" "ws2def" ];
|
|
};
|
|
"winapi-i686-pc-windows-gnu" = rec {
|
|
crateName = "winapi-i686-pc-windows-gnu";
|
|
version = "0.4.0";
|
|
edition = "2015";
|
|
sha256 = "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc";
|
|
libName = "winapi_i686_pc_windows_gnu";
|
|
authors = [
|
|
"Peter Atashian <retep998@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"winapi-x86_64-pc-windows-gnu" = rec {
|
|
crateName = "winapi-x86_64-pc-windows-gnu";
|
|
version = "0.4.0";
|
|
edition = "2015";
|
|
sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki";
|
|
libName = "winapi_x86_64_pc_windows_gnu";
|
|
authors = [
|
|
"Peter Atashian <retep998@gmail.com>"
|
|
];
|
|
|
|
};
|
|
"windows-core" = rec {
|
|
crateName = "windows-core";
|
|
version = "0.62.2";
|
|
edition = "2021";
|
|
sha256 = "1swxpv1a8qvn3bkxv8cn663238h2jccq35ff3nsj61jdsca3ms5q";
|
|
libName = "windows_core";
|
|
dependencies = [
|
|
{
|
|
name = "windows-implement";
|
|
packageId = "windows-implement";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "windows-interface";
|
|
packageId = "windows-interface";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "windows-link";
|
|
packageId = "windows-link";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "windows-result";
|
|
packageId = "windows-result";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "windows-strings";
|
|
packageId = "windows-strings";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
"std" = [ "windows-result/std" "windows-strings/std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "default" "std" ];
|
|
};
|
|
"windows-implement" = rec {
|
|
crateName = "windows-implement";
|
|
version = "0.60.2";
|
|
edition = "2021";
|
|
sha256 = "1psxhmklzcf3wjs4b8qb42qb6znvc142cb5pa74rsyxm1822wgh5";
|
|
procMacro = true;
|
|
libName = "windows_implement";
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
usesDefaultFeatures = false;
|
|
features = [ "parsing" "proc-macro" "printing" "full" "clone-impls" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"windows-interface" = rec {
|
|
crateName = "windows-interface";
|
|
version = "0.59.3";
|
|
edition = "2021";
|
|
sha256 = "0n73cwrn4247d0axrk7gjp08p34x1723483jxjxjdfkh4m56qc9z";
|
|
procMacro = true;
|
|
libName = "windows_interface";
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
usesDefaultFeatures = false;
|
|
features = [ "parsing" "proc-macro" "printing" "full" "clone-impls" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"windows-link" = rec {
|
|
crateName = "windows-link";
|
|
version = "0.2.1";
|
|
edition = "2021";
|
|
sha256 = "1rag186yfr3xx7piv5rg8b6im2dwcf8zldiflvb22xbzwli5507h";
|
|
libName = "windows_link";
|
|
|
|
};
|
|
"windows-result" = rec {
|
|
crateName = "windows-result";
|
|
version = "0.4.1";
|
|
edition = "2021";
|
|
sha256 = "1d9yhmrmmfqh56zlj751s5wfm9a2aa7az9rd7nn5027nxa4zm0bp";
|
|
libName = "windows_result";
|
|
dependencies = [
|
|
{
|
|
name = "windows-link";
|
|
packageId = "windows-link";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"windows-strings" = rec {
|
|
crateName = "windows-strings";
|
|
version = "0.5.1";
|
|
edition = "2021";
|
|
sha256 = "14bhng9jqv4fyl7lqjz3az7vzh8pw0w4am49fsqgcz67d67x0dvq";
|
|
libName = "windows_strings";
|
|
dependencies = [
|
|
{
|
|
name = "windows-link";
|
|
packageId = "windows-link";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"default" = [ "std" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "std" ];
|
|
};
|
|
"windows-sys" = rec {
|
|
crateName = "windows-sys";
|
|
version = "0.61.2";
|
|
edition = "2021";
|
|
sha256 = "1z7k3y9b6b5h52kid57lvmvm05362zv1v8w0gc7xyv5xphlp44xf";
|
|
libName = "windows_sys";
|
|
dependencies = [
|
|
{
|
|
name = "windows-link";
|
|
packageId = "windows-link";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
];
|
|
features = {
|
|
"Wdk" = [ "Win32_Foundation" ];
|
|
"Wdk_Devices" = [ "Wdk" ];
|
|
"Wdk_Devices_Bluetooth" = [ "Wdk_Devices" ];
|
|
"Wdk_Devices_HumanInterfaceDevice" = [ "Wdk_Devices" ];
|
|
"Wdk_Foundation" = [ "Wdk" ];
|
|
"Wdk_Graphics" = [ "Wdk" ];
|
|
"Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ];
|
|
"Wdk_NetworkManagement" = [ "Wdk" ];
|
|
"Wdk_NetworkManagement_Ndis" = [ "Wdk_NetworkManagement" ];
|
|
"Wdk_NetworkManagement_WindowsFilteringPlatform" = [ "Wdk_NetworkManagement" ];
|
|
"Wdk_Storage" = [ "Wdk" ];
|
|
"Wdk_Storage_FileSystem" = [ "Wdk_Storage" ];
|
|
"Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ];
|
|
"Wdk_System" = [ "Wdk" ];
|
|
"Wdk_System_IO" = [ "Wdk_System" ];
|
|
"Wdk_System_Memory" = [ "Wdk_System" ];
|
|
"Wdk_System_OfflineRegistry" = [ "Wdk_System" ];
|
|
"Wdk_System_Registry" = [ "Wdk_System" ];
|
|
"Wdk_System_SystemInformation" = [ "Wdk_System" ];
|
|
"Wdk_System_SystemServices" = [ "Wdk_System" ];
|
|
"Wdk_System_Threading" = [ "Wdk_System" ];
|
|
"Win32" = [ "Win32_Foundation" ];
|
|
"Win32_Data" = [ "Win32" ];
|
|
"Win32_Data_HtmlHelp" = [ "Win32_Data" ];
|
|
"Win32_Data_RightsManagement" = [ "Win32_Data" ];
|
|
"Win32_Devices" = [ "Win32" ];
|
|
"Win32_Devices_AllJoyn" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Beep" = [ "Win32_Devices" ];
|
|
"Win32_Devices_BiometricFramework" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Bluetooth" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Cdrom" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Communication" = [ "Win32_Devices" ];
|
|
"Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ];
|
|
"Win32_Devices_DeviceQuery" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Display" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Dvd" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Enumeration" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ];
|
|
"Win32_Devices_Fax" = [ "Win32_Devices" ];
|
|
"Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Nfc" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Nfp" = [ "Win32_Devices" ];
|
|
"Win32_Devices_PortableDevices" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Properties" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Pwm" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Sensors" = [ "Win32_Devices" ];
|
|
"Win32_Devices_SerialCommunication" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Tapi" = [ "Win32_Devices" ];
|
|
"Win32_Devices_Usb" = [ "Win32_Devices" ];
|
|
"Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ];
|
|
"Win32_Foundation" = [ "Win32" ];
|
|
"Win32_Gaming" = [ "Win32" ];
|
|
"Win32_Globalization" = [ "Win32" ];
|
|
"Win32_Graphics" = [ "Win32" ];
|
|
"Win32_Graphics_Dwm" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Gdi" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Hlsl" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_OpenGL" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Printing" = [ "Win32_Graphics" ];
|
|
"Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ];
|
|
"Win32_Management" = [ "Win32" ];
|
|
"Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ];
|
|
"Win32_Media" = [ "Win32" ];
|
|
"Win32_Media_Audio" = [ "Win32_Media" ];
|
|
"Win32_Media_DxMediaObjects" = [ "Win32_Media" ];
|
|
"Win32_Media_KernelStreaming" = [ "Win32_Media" ];
|
|
"Win32_Media_Multimedia" = [ "Win32_Media" ];
|
|
"Win32_Media_Streaming" = [ "Win32_Media" ];
|
|
"Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ];
|
|
"Win32_NetworkManagement" = [ "Win32" ];
|
|
"Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ];
|
|
"Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ];
|
|
"Win32_Networking" = [ "Win32" ];
|
|
"Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ];
|
|
"Win32_Networking_Clustering" = [ "Win32_Networking" ];
|
|
"Win32_Networking_HttpServer" = [ "Win32_Networking" ];
|
|
"Win32_Networking_Ldap" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WebSocket" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinHttp" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinInet" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WinSock" = [ "Win32_Networking" ];
|
|
"Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ];
|
|
"Win32_Security" = [ "Win32" ];
|
|
"Win32_Security_AppLocker" = [ "Win32_Security" ];
|
|
"Win32_Security_Authentication" = [ "Win32_Security" ];
|
|
"Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ];
|
|
"Win32_Security_Authorization" = [ "Win32_Security" ];
|
|
"Win32_Security_Credentials" = [ "Win32_Security" ];
|
|
"Win32_Security_Cryptography" = [ "Win32_Security" ];
|
|
"Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ];
|
|
"Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ];
|
|
"Win32_Security_DirectoryServices" = [ "Win32_Security" ];
|
|
"Win32_Security_EnterpriseData" = [ "Win32_Security" ];
|
|
"Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ];
|
|
"Win32_Security_Isolation" = [ "Win32_Security" ];
|
|
"Win32_Security_LicenseProtection" = [ "Win32_Security" ];
|
|
"Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ];
|
|
"Win32_Security_WinTrust" = [ "Win32_Security" ];
|
|
"Win32_Security_WinWlx" = [ "Win32_Security" ];
|
|
"Win32_Storage" = [ "Win32" ];
|
|
"Win32_Storage_Cabinets" = [ "Win32_Storage" ];
|
|
"Win32_Storage_CloudFilters" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Compression" = [ "Win32_Storage" ];
|
|
"Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_FileHistory" = [ "Win32_Storage" ];
|
|
"Win32_Storage_FileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Imapi" = [ "Win32_Storage" ];
|
|
"Win32_Storage_IndexServer" = [ "Win32_Storage" ];
|
|
"Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ];
|
|
"Win32_Storage_IscsiDisc" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Jet" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Nvme" = [ "Win32_Storage" ];
|
|
"Win32_Storage_OfflineFiles" = [ "Win32_Storage" ];
|
|
"Win32_Storage_OperationRecorder" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Packaging" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ];
|
|
"Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ];
|
|
"Win32_Storage_StructuredStorage" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Vhd" = [ "Win32_Storage" ];
|
|
"Win32_Storage_Xps" = [ "Win32_Storage" ];
|
|
"Win32_System" = [ "Win32" ];
|
|
"Win32_System_AddressBook" = [ "Win32_System" ];
|
|
"Win32_System_Antimalware" = [ "Win32_System" ];
|
|
"Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ];
|
|
"Win32_System_ApplicationVerifier" = [ "Win32_System" ];
|
|
"Win32_System_ClrHosting" = [ "Win32_System" ];
|
|
"Win32_System_Com" = [ "Win32_System" ];
|
|
"Win32_System_Com_Marshal" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ];
|
|
"Win32_System_Com_Urlmon" = [ "Win32_System_Com" ];
|
|
"Win32_System_ComponentServices" = [ "Win32_System" ];
|
|
"Win32_System_Console" = [ "Win32_System" ];
|
|
"Win32_System_CorrelationVector" = [ "Win32_System" ];
|
|
"Win32_System_DataExchange" = [ "Win32_System" ];
|
|
"Win32_System_DeploymentServices" = [ "Win32_System" ];
|
|
"Win32_System_DeveloperLicensing" = [ "Win32_System" ];
|
|
"Win32_System_Diagnostics" = [ "Win32_System" ];
|
|
"Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ];
|
|
"Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_Diagnostics_TraceLogging" = [ "Win32_System_Diagnostics" ];
|
|
"Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ];
|
|
"Win32_System_Environment" = [ "Win32_System" ];
|
|
"Win32_System_ErrorReporting" = [ "Win32_System" ];
|
|
"Win32_System_EventCollector" = [ "Win32_System" ];
|
|
"Win32_System_EventLog" = [ "Win32_System" ];
|
|
"Win32_System_EventNotificationService" = [ "Win32_System" ];
|
|
"Win32_System_GroupPolicy" = [ "Win32_System" ];
|
|
"Win32_System_HostCompute" = [ "Win32_System" ];
|
|
"Win32_System_HostComputeNetwork" = [ "Win32_System" ];
|
|
"Win32_System_HostComputeSystem" = [ "Win32_System" ];
|
|
"Win32_System_Hypervisor" = [ "Win32_System" ];
|
|
"Win32_System_IO" = [ "Win32_System" ];
|
|
"Win32_System_Iis" = [ "Win32_System" ];
|
|
"Win32_System_Ioctl" = [ "Win32_System" ];
|
|
"Win32_System_JobObjects" = [ "Win32_System" ];
|
|
"Win32_System_Js" = [ "Win32_System" ];
|
|
"Win32_System_Kernel" = [ "Win32_System" ];
|
|
"Win32_System_LibraryLoader" = [ "Win32_System" ];
|
|
"Win32_System_Mailslots" = [ "Win32_System" ];
|
|
"Win32_System_Mapi" = [ "Win32_System" ];
|
|
"Win32_System_Memory" = [ "Win32_System" ];
|
|
"Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ];
|
|
"Win32_System_MessageQueuing" = [ "Win32_System" ];
|
|
"Win32_System_MixedReality" = [ "Win32_System" ];
|
|
"Win32_System_Ole" = [ "Win32_System" ];
|
|
"Win32_System_PasswordManagement" = [ "Win32_System" ];
|
|
"Win32_System_Performance" = [ "Win32_System" ];
|
|
"Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ];
|
|
"Win32_System_Pipes" = [ "Win32_System" ];
|
|
"Win32_System_Power" = [ "Win32_System" ];
|
|
"Win32_System_ProcessStatus" = [ "Win32_System" ];
|
|
"Win32_System_Recovery" = [ "Win32_System" ];
|
|
"Win32_System_Registry" = [ "Win32_System" ];
|
|
"Win32_System_RemoteDesktop" = [ "Win32_System" ];
|
|
"Win32_System_RemoteManagement" = [ "Win32_System" ];
|
|
"Win32_System_RestartManager" = [ "Win32_System" ];
|
|
"Win32_System_Restore" = [ "Win32_System" ];
|
|
"Win32_System_Rpc" = [ "Win32_System" ];
|
|
"Win32_System_Search" = [ "Win32_System" ];
|
|
"Win32_System_Search_Common" = [ "Win32_System_Search" ];
|
|
"Win32_System_SecurityCenter" = [ "Win32_System" ];
|
|
"Win32_System_Services" = [ "Win32_System" ];
|
|
"Win32_System_SetupAndMigration" = [ "Win32_System" ];
|
|
"Win32_System_Shutdown" = [ "Win32_System" ];
|
|
"Win32_System_StationsAndDesktops" = [ "Win32_System" ];
|
|
"Win32_System_SubsystemForLinux" = [ "Win32_System" ];
|
|
"Win32_System_SystemInformation" = [ "Win32_System" ];
|
|
"Win32_System_SystemServices" = [ "Win32_System" ];
|
|
"Win32_System_Threading" = [ "Win32_System" ];
|
|
"Win32_System_Time" = [ "Win32_System" ];
|
|
"Win32_System_TpmBaseServices" = [ "Win32_System" ];
|
|
"Win32_System_UserAccessLogging" = [ "Win32_System" ];
|
|
"Win32_System_Variant" = [ "Win32_System" ];
|
|
"Win32_System_VirtualDosMachines" = [ "Win32_System" ];
|
|
"Win32_System_WindowsProgramming" = [ "Win32_System" ];
|
|
"Win32_System_Wmi" = [ "Win32_System" ];
|
|
"Win32_UI" = [ "Win32" ];
|
|
"Win32_UI_Accessibility" = [ "Win32_UI" ];
|
|
"Win32_UI_ColorSystem" = [ "Win32_UI" ];
|
|
"Win32_UI_Controls" = [ "Win32_UI" ];
|
|
"Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ];
|
|
"Win32_UI_HiDpi" = [ "Win32_UI" ];
|
|
"Win32_UI_Input" = [ "Win32_UI" ];
|
|
"Win32_UI_Input_Ime" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_Touch" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ];
|
|
"Win32_UI_InteractionContext" = [ "Win32_UI" ];
|
|
"Win32_UI_Magnification" = [ "Win32_UI" ];
|
|
"Win32_UI_Shell" = [ "Win32_UI" ];
|
|
"Win32_UI_Shell_Common" = [ "Win32_UI_Shell" ];
|
|
"Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ];
|
|
"Win32_UI_TabletPC" = [ "Win32_UI" ];
|
|
"Win32_UI_TextServices" = [ "Win32_UI" ];
|
|
"Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ];
|
|
"Win32_Web" = [ "Win32" ];
|
|
"Win32_Web_InternetExplorer" = [ "Win32_Web" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "Wdk" "Wdk_Foundation" "Wdk_Storage" "Wdk_Storage_FileSystem" "Wdk_System" "Wdk_System_IO" "Win32" "Win32_Foundation" "Win32_Globalization" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Com" "Win32_System_Console" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "Win32_System_IO" "Win32_System_Pipes" "Win32_System_WindowsProgramming" "Win32_UI" "Win32_UI_Shell" "default" ];
|
|
};
|
|
"wit-bindgen 0.51.0" = rec {
|
|
crateName = "wit-bindgen";
|
|
version = "0.51.0";
|
|
edition = "2024";
|
|
sha256 = "19fazgch8sq5cvjv3ynhhfh5d5x08jq2pkw8jfb05vbcyqcr496p";
|
|
libName = "wit_bindgen";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "wit-bindgen-rust-macro";
|
|
packageId = "wit-bindgen-rust-macro";
|
|
optional = true;
|
|
}
|
|
];
|
|
features = {
|
|
"async" = [ "std" "wit-bindgen-rust-macro?/async" ];
|
|
"async-spawn" = [ "async" "dep:futures" ];
|
|
"bitflags" = [ "dep:bitflags" ];
|
|
"default" = [ "macros" "realloc" "async" "std" "bitflags" ];
|
|
"inter-task-wakeup" = [ "async" ];
|
|
"macros" = [ "dep:wit-bindgen-rust-macro" ];
|
|
"rustc-dep-of-std" = [ "dep:core" "dep:alloc" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "async" "std" ];
|
|
};
|
|
"wit-bindgen 0.57.1" = rec {
|
|
crateName = "wit-bindgen";
|
|
version = "0.57.1";
|
|
edition = "2024";
|
|
sha256 = "0vjk2jb593ri9k1aq4iqs2si9mrw5q46wxnn78im7hm7hx799gqy";
|
|
libName = "wit_bindgen";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
features = {
|
|
"async-spawn" = [ "async" "dep:futures" "std" ];
|
|
"bitflags" = [ "dep:bitflags" ];
|
|
"default" = [ "macros" "realloc" "async" "std" "bitflags" "macro-string" ];
|
|
"futures-stream" = [ "async" "dep:futures" ];
|
|
"inter-task-wakeup" = [ "async" ];
|
|
"macro-string" = [ "wit-bindgen-rust-macro?/macro-string" ];
|
|
"macros" = [ "dep:wit-bindgen-rust-macro" ];
|
|
"rustc-dep-of-std" = [ "dep:core" "dep:alloc" ];
|
|
};
|
|
};
|
|
"wit-bindgen-core" = rec {
|
|
crateName = "wit-bindgen-core";
|
|
version = "0.51.0";
|
|
edition = "2024";
|
|
sha256 = "1p2jszqsqbx8k7y8nwvxg65wqzxjm048ba5phaq8r9iy9ildwqga";
|
|
libName = "wit_bindgen_core";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "anyhow";
|
|
packageId = "anyhow";
|
|
}
|
|
{
|
|
name = "heck";
|
|
packageId = "heck";
|
|
}
|
|
{
|
|
name = "wit-parser";
|
|
packageId = "wit-parser";
|
|
}
|
|
];
|
|
features = {
|
|
"clap" = [ "dep:clap" ];
|
|
"serde" = [ "dep:serde" ];
|
|
};
|
|
};
|
|
"wit-bindgen-rust" = rec {
|
|
crateName = "wit-bindgen-rust";
|
|
version = "0.51.0";
|
|
edition = "2024";
|
|
sha256 = "08bzn5fsvkb9x9wyvyx98qglknj2075xk1n7c5jxv15jykh6didp";
|
|
libName = "wit_bindgen_rust";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "anyhow";
|
|
packageId = "anyhow";
|
|
}
|
|
{
|
|
name = "heck";
|
|
packageId = "heck";
|
|
}
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
}
|
|
{
|
|
name = "prettyplease";
|
|
packageId = "prettyplease";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
features = [ "printing" ];
|
|
}
|
|
{
|
|
name = "wasm-metadata";
|
|
packageId = "wasm-metadata";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "wit-bindgen-core";
|
|
packageId = "wit-bindgen-core";
|
|
}
|
|
{
|
|
name = "wit-component";
|
|
packageId = "wit-component";
|
|
}
|
|
];
|
|
features = {
|
|
"clap" = [ "dep:clap" "wit-bindgen-core/clap" ];
|
|
"serde" = [ "dep:serde" "wit-bindgen-core/serde" ];
|
|
};
|
|
};
|
|
"wit-bindgen-rust-macro" = rec {
|
|
crateName = "wit-bindgen-rust-macro";
|
|
version = "0.51.0";
|
|
edition = "2024";
|
|
sha256 = "0ymizapzv2id89igxsz2n587y2hlfypf6n8kyp68x976fzyrn3qc";
|
|
procMacro = true;
|
|
libName = "wit_bindgen_rust_macro";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "anyhow";
|
|
packageId = "anyhow";
|
|
}
|
|
{
|
|
name = "prettyplease";
|
|
packageId = "prettyplease";
|
|
}
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
features = [ "printing" ];
|
|
}
|
|
{
|
|
name = "wit-bindgen-core";
|
|
packageId = "wit-bindgen-core";
|
|
}
|
|
{
|
|
name = "wit-bindgen-rust";
|
|
packageId = "wit-bindgen-rust";
|
|
}
|
|
];
|
|
features = {
|
|
};
|
|
resolvedDefaultFeatures = [ "async" ];
|
|
};
|
|
"wit-component" = rec {
|
|
crateName = "wit-component";
|
|
version = "0.244.0";
|
|
edition = "2021";
|
|
sha256 = "1clwxgsgdns3zj2fqnrjcp8y5gazwfa1k0sy5cbk0fsmx4hflrlx";
|
|
libName = "wit_component";
|
|
authors = [
|
|
"Peter Huene <peter@huene.dev>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "anyhow";
|
|
packageId = "anyhow";
|
|
}
|
|
{
|
|
name = "bitflags";
|
|
packageId = "bitflags 2.11.1";
|
|
}
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" ];
|
|
}
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
}
|
|
{
|
|
name = "wasm-encoder";
|
|
packageId = "wasm-encoder";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" "wasmparser" ];
|
|
}
|
|
{
|
|
name = "wasm-metadata";
|
|
packageId = "wasm-metadata";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "wasmparser";
|
|
packageId = "wasmparser";
|
|
usesDefaultFeatures = false;
|
|
features = [ "simd" "std" "component-model" "simd" ];
|
|
}
|
|
{
|
|
name = "wit-parser";
|
|
packageId = "wit-parser";
|
|
features = [ "decoding" "serde" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "wasm-metadata";
|
|
packageId = "wasm-metadata";
|
|
usesDefaultFeatures = false;
|
|
features = [ "oci" ];
|
|
}
|
|
{
|
|
name = "wasmparser";
|
|
packageId = "wasmparser";
|
|
usesDefaultFeatures = false;
|
|
features = [ "simd" "std" "component-model" "features" ];
|
|
}
|
|
];
|
|
features = {
|
|
"dummy-module" = [ "dep:wat" ];
|
|
"semver-check" = [ "dummy-module" ];
|
|
"wat" = [ "dep:wast" "dep:wat" ];
|
|
};
|
|
};
|
|
"wit-parser" = rec {
|
|
crateName = "wit-parser";
|
|
version = "0.244.0";
|
|
edition = "2021";
|
|
sha256 = "0dm7avvdxryxd5b02l0g5h6933z1cw5z0d4wynvq2cywq55srj7c";
|
|
libName = "wit_parser";
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "anyhow";
|
|
packageId = "anyhow";
|
|
}
|
|
{
|
|
name = "id-arena";
|
|
packageId = "id-arena";
|
|
}
|
|
{
|
|
name = "indexmap";
|
|
packageId = "indexmap";
|
|
usesDefaultFeatures = false;
|
|
features = [ "std" ];
|
|
}
|
|
{
|
|
name = "log";
|
|
packageId = "log";
|
|
}
|
|
{
|
|
name = "semver";
|
|
packageId = "semver";
|
|
usesDefaultFeatures = false;
|
|
}
|
|
{
|
|
name = "serde";
|
|
packageId = "serde";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "alloc" ];
|
|
}
|
|
{
|
|
name = "serde_derive";
|
|
packageId = "serde_derive";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "unicode-xid";
|
|
packageId = "unicode-xid";
|
|
}
|
|
{
|
|
name = "wasmparser";
|
|
packageId = "wasmparser";
|
|
optional = true;
|
|
usesDefaultFeatures = false;
|
|
features = [ "simd" "std" "validate" "component-model" "features" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "serde_json";
|
|
packageId = "serde_json";
|
|
}
|
|
];
|
|
features = {
|
|
"decoding" = [ "dep:wasmparser" ];
|
|
"default" = [ "serde" "decoding" ];
|
|
"serde" = [ "dep:serde" "dep:serde_derive" "indexmap/serde" "serde_json" ];
|
|
"serde_json" = [ "dep:serde_json" ];
|
|
"wat" = [ "decoding" "dep:wat" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "decoding" "default" "serde" "serde_json" ];
|
|
};
|
|
"zerocopy" = rec {
|
|
crateName = "zerocopy";
|
|
version = "0.8.48";
|
|
edition = "2021";
|
|
sha256 = "1sb8plax8jbrsng1jdval7bdhk7hhrx40dz3hwh074k6knzkgm7f";
|
|
authors = [
|
|
"Joshua Liebow-Feeser <joshlf@google.com>"
|
|
"Jack Wrenn <jswrenn@amazon.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "zerocopy-derive";
|
|
packageId = "zerocopy-derive";
|
|
optional = true;
|
|
}
|
|
{
|
|
name = "zerocopy-derive";
|
|
packageId = "zerocopy-derive";
|
|
target = { target, features }: false;
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "zerocopy-derive";
|
|
packageId = "zerocopy-derive";
|
|
}
|
|
];
|
|
features = {
|
|
"__internal_use_only_features_that_work_on_stable" = [ "alloc" "derive" "simd" "std" ];
|
|
"derive" = [ "zerocopy-derive" ];
|
|
"simd-nightly" = [ "simd" ];
|
|
"std" = [ "alloc" ];
|
|
"zerocopy-derive" = [ "dep:zerocopy-derive" ];
|
|
};
|
|
resolvedDefaultFeatures = [ "simd" ];
|
|
};
|
|
"zerocopy-derive" = rec {
|
|
crateName = "zerocopy-derive";
|
|
version = "0.8.48";
|
|
edition = "2021";
|
|
sha256 = "1m5s0g92cxggqc74j83k1priz24k3z93sj5gadppd20p9c4cvqvh";
|
|
procMacro = true;
|
|
libName = "zerocopy_derive";
|
|
authors = [
|
|
"Joshua Liebow-Feeser <joshlf@google.com>"
|
|
"Jack Wrenn <jswrenn@amazon.com>"
|
|
];
|
|
dependencies = [
|
|
{
|
|
name = "proc-macro2";
|
|
packageId = "proc-macro2";
|
|
}
|
|
{
|
|
name = "quote";
|
|
packageId = "quote";
|
|
}
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
features = [ "full" ];
|
|
}
|
|
];
|
|
devDependencies = [
|
|
{
|
|
name = "syn";
|
|
packageId = "syn 2.0.117";
|
|
features = [ "visit" ];
|
|
}
|
|
];
|
|
|
|
};
|
|
"zmij" = rec {
|
|
crateName = "zmij";
|
|
version = "1.0.21";
|
|
edition = "2021";
|
|
sha256 = "1amb5i6gz7yjb0dnmz5y669674pqmwbj44p4yfxfv2ncgvk8x15q";
|
|
authors = [
|
|
"David Tolnay <dtolnay@gmail.com>"
|
|
];
|
|
features = {
|
|
"no-panic" = [ "dep:no-panic" ];
|
|
};
|
|
};
|
|
};
|
|
|
|
#
|
|
# crate2nix/default.nix (excerpt start)
|
|
#
|
|
|
|
/*
|
|
Target (platform) data for conditional dependencies.
|
|
This corresponds roughly to what buildRustCrate is setting.
|
|
*/
|
|
makeDefaultTarget = platform: {
|
|
name = platform.rust.rustcTarget;
|
|
|
|
unix = platform.isUnix;
|
|
windows = platform.isWindows;
|
|
fuchsia = true;
|
|
test = false;
|
|
|
|
inherit (platform.rust.platform)
|
|
arch
|
|
os
|
|
vendor
|
|
;
|
|
family = platform.rust.platform.target-family;
|
|
env = "gnu";
|
|
endian = if platform.parsed.cpu.significantByte.name == "littleEndian" then "little" else "big";
|
|
pointer_width = toString platform.parsed.cpu.bits;
|
|
debug_assertions = false;
|
|
} // extraTargetFlags;
|
|
|
|
registryUrl =
|
|
{ registries
|
|
, url
|
|
, crate
|
|
, version
|
|
, sha256
|
|
,
|
|
}:
|
|
let
|
|
dl = registries.${url}.dl;
|
|
tmpl = [
|
|
"{crate}"
|
|
"{version}"
|
|
"{prefix}"
|
|
"{lowerprefix}"
|
|
"{sha256-checksum}"
|
|
];
|
|
in
|
|
with lib.strings;
|
|
if lib.lists.any (i: hasInfix "{}" dl) tmpl then
|
|
let
|
|
prefix =
|
|
if builtins.stringLength crate == 1 then
|
|
"1"
|
|
else if builtins.stringLength crate == 2 then
|
|
"2"
|
|
else
|
|
"${builtins.substring 0 2 crate}/${builtins.substring 2 (builtins.stringLength crate - 2) crate}";
|
|
in
|
|
builtins.replaceStrings tmpl [
|
|
crate
|
|
version
|
|
prefix
|
|
(lib.strings.toLower prefix)
|
|
sha256
|
|
]
|
|
else
|
|
"${dl}/${crate}/${version}/download";
|
|
|
|
# Filters common temp files and build files.
|
|
# TODO(pkolloch): Substitute with gitignore filter
|
|
sourceFilter =
|
|
name: type:
|
|
let
|
|
baseName = builtins.baseNameOf (builtins.toString name);
|
|
in
|
|
!(
|
|
# Filter out git
|
|
baseName == ".gitignore"
|
|
|| (type == "directory" && baseName == ".git")
|
|
|
|
# Filter out build results
|
|
|| (
|
|
type == "directory"
|
|
&& (
|
|
baseName == "target"
|
|
|| baseName == "_site"
|
|
|| baseName == ".sass-cache"
|
|
|| baseName == ".jekyll-metadata"
|
|
|| baseName == "build-artifacts"
|
|
)
|
|
)
|
|
|
|
# Filter out nix-build result symlinks
|
|
|| (type == "symlink" && lib.hasPrefix "result" baseName)
|
|
|
|
# Filter out IDE config
|
|
|| (type == "directory" && (baseName == ".idea" || baseName == ".vscode"))
|
|
|| lib.hasSuffix ".iml" baseName
|
|
|
|
# Filter out nix build files
|
|
|| baseName == "Cargo.nix"
|
|
|
|
# Filter out editor backup / swap files.
|
|
|| lib.hasSuffix "~" baseName
|
|
|| builtins.match "^\\.sw[a-z]$$" baseName != null
|
|
|| builtins.match "^\\..*\\.sw[a-z]$$" baseName != null
|
|
|| lib.hasSuffix ".tmp" baseName
|
|
|| lib.hasSuffix ".bak" baseName
|
|
|| baseName == "tests.nix"
|
|
);
|
|
|
|
/*
|
|
Returns a crate which depends on successful test execution
|
|
of crate given as the second argument.
|
|
|
|
testCrateFlags: list of flags to pass to the test exectuable
|
|
testInputs: list of packages that should be available during test execution
|
|
*/
|
|
crateWithTest =
|
|
{ crate
|
|
, testCrate
|
|
, testCrateFlags
|
|
, testInputs
|
|
, testPreRun
|
|
, testPostRun
|
|
,
|
|
}:
|
|
assert builtins.typeOf testCrateFlags == "list";
|
|
assert builtins.typeOf testInputs == "list";
|
|
assert builtins.typeOf testPreRun == "string";
|
|
assert builtins.typeOf testPostRun == "string";
|
|
let
|
|
# override the `crate` so that it will build and execute tests instead of
|
|
# building the actual lib and bin targets We just have to pass `--test`
|
|
# to rustc and it will do the right thing. We execute the tests and copy
|
|
# their log and the test executables to $out for later inspection.
|
|
test =
|
|
let
|
|
drv = testCrate.override (_: {
|
|
buildTests = true;
|
|
});
|
|
# If the user hasn't set any pre/post commands, we don't want to
|
|
# insert empty lines. This means that any existing users of crate2nix
|
|
# don't get a spurious rebuild unless they set these explicitly.
|
|
testCommand = pkgs.lib.concatStringsSep "\n" (
|
|
pkgs.lib.filter (s: s != "") [
|
|
testPreRun
|
|
"$f $testCrateFlags 2>&1 | tee -a $out"
|
|
testPostRun
|
|
]
|
|
);
|
|
in
|
|
pkgs.stdenvNoCC.mkDerivation {
|
|
name = "run-tests-${testCrate.name}";
|
|
|
|
inherit (crate) src;
|
|
|
|
inherit testCrateFlags;
|
|
|
|
buildInputs = testInputs;
|
|
|
|
buildPhase = ''
|
|
set -e
|
|
export RUST_BACKTRACE=1
|
|
|
|
# build outputs
|
|
testRoot=target/debug
|
|
mkdir -p $testRoot
|
|
|
|
# executables of the crate
|
|
# we copy to prevent std::env::current_exe() to resolve to a store location
|
|
for i in ${crate}/bin/*; do
|
|
cp "$i" "$testRoot"
|
|
done
|
|
chmod +w -R .
|
|
|
|
# test harness executables are suffixed with a hash, like cargo does
|
|
# this allows to prevent name collision with the main
|
|
# executables of the crate
|
|
hash=$(basename $out)
|
|
for file in ${drv}/tests/*; do
|
|
f=$testRoot/$(basename $file)-$hash
|
|
cp $file $f
|
|
${testCommand}
|
|
done
|
|
'';
|
|
};
|
|
in
|
|
pkgs.runCommand "${crate.name}-linked"
|
|
{
|
|
inherit (crate) outputs crateName meta;
|
|
passthru = (crate.passthru or { }) // {
|
|
inherit test;
|
|
};
|
|
}
|
|
(
|
|
lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
echo tested by ${test}
|
|
''
|
|
+ ''
|
|
${lib.concatMapStringsSep "\n" (output: "ln -s ${crate.${output}} ${"$"}${output}") crate.outputs}
|
|
''
|
|
);
|
|
|
|
# A restricted overridable version of builtRustCratesWithFeatures.
|
|
buildRustCrateWithFeatures =
|
|
{ packageId
|
|
, features ? rootFeatures
|
|
, crateOverrides ? defaultCrateOverrides
|
|
, buildRustCrateForPkgsFunc ? null
|
|
, runTests ? false
|
|
, testCrateFlags ? [ ]
|
|
, testInputs ? [ ]
|
|
, # Any command to run immediatelly before a test is executed.
|
|
testPreRun ? ""
|
|
, # Any command run immediatelly after a test is executed.
|
|
testPostRun ? ""
|
|
,
|
|
}:
|
|
lib.makeOverridable
|
|
(
|
|
{ features
|
|
, crateOverrides
|
|
, runTests
|
|
, testCrateFlags
|
|
, testInputs
|
|
, testPreRun
|
|
, testPostRun
|
|
,
|
|
}:
|
|
let
|
|
buildRustCrateForPkgsFuncOverriden =
|
|
if buildRustCrateForPkgsFunc != null then
|
|
buildRustCrateForPkgsFunc
|
|
else
|
|
(
|
|
if crateOverrides == pkgs.defaultCrateOverrides then
|
|
buildRustCrateForPkgs
|
|
else
|
|
pkgs:
|
|
(buildRustCrateForPkgs pkgs).override {
|
|
defaultCrateOverrides = crateOverrides;
|
|
}
|
|
);
|
|
builtRustCrates = builtRustCratesWithFeatures {
|
|
inherit packageId features;
|
|
buildRustCrateForPkgsFunc = buildRustCrateForPkgsFuncOverriden;
|
|
runTests = false;
|
|
};
|
|
builtTestRustCrates = builtRustCratesWithFeatures {
|
|
inherit packageId features;
|
|
buildRustCrateForPkgsFunc = buildRustCrateForPkgsFuncOverriden;
|
|
runTests = true;
|
|
};
|
|
drv = builtRustCrates.crates.${packageId};
|
|
testDrv = builtTestRustCrates.crates.${packageId};
|
|
derivation =
|
|
if runTests then
|
|
crateWithTest
|
|
{
|
|
crate = drv;
|
|
testCrate = testDrv;
|
|
inherit
|
|
testCrateFlags
|
|
testInputs
|
|
testPreRun
|
|
testPostRun
|
|
;
|
|
}
|
|
else
|
|
drv;
|
|
in
|
|
derivation
|
|
)
|
|
{
|
|
inherit
|
|
features
|
|
crateOverrides
|
|
runTests
|
|
testCrateFlags
|
|
testInputs
|
|
testPreRun
|
|
testPostRun
|
|
;
|
|
};
|
|
|
|
/*
|
|
Returns an attr set with packageId mapped to the result of buildRustCrateForPkgsFunc
|
|
for the corresponding crate.
|
|
*/
|
|
builtRustCratesWithFeatures =
|
|
{ packageId
|
|
, features
|
|
, crateConfigs ? crates
|
|
, buildRustCrateForPkgsFunc
|
|
, runTests
|
|
, makeTarget ? makeDefaultTarget
|
|
,
|
|
}@args:
|
|
assert (builtins.isAttrs crateConfigs);
|
|
assert (builtins.isString packageId);
|
|
assert (builtins.isList features);
|
|
assert (builtins.isAttrs (makeTarget stdenv.hostPlatform));
|
|
assert (builtins.isBool runTests);
|
|
let
|
|
rootPackageId = packageId;
|
|
mergedFeatures = mergePackageFeatures (
|
|
args
|
|
// {
|
|
inherit rootPackageId;
|
|
target = makeTarget stdenv.hostPlatform // {
|
|
test = runTests;
|
|
};
|
|
}
|
|
);
|
|
# Memoize built packages so that reappearing packages are only built once.
|
|
builtByPackageIdByPkgs = mkBuiltByPackageIdByPkgs pkgs;
|
|
mkBuiltByPackageIdByPkgs =
|
|
pkgs:
|
|
let
|
|
self = {
|
|
crates = lib.mapAttrs
|
|
(
|
|
packageId: value: buildByPackageIdForPkgsImpl self pkgs packageId
|
|
)
|
|
crateConfigs;
|
|
target = makeTarget pkgs.stdenv.hostPlatform;
|
|
build = mkBuiltByPackageIdByPkgs pkgs.buildPackages;
|
|
};
|
|
in
|
|
self;
|
|
buildByPackageIdForPkgsImpl =
|
|
self: pkgs: packageId:
|
|
let
|
|
features = mergedFeatures."${packageId}" or [ ];
|
|
crateConfig' = crateConfigs."${packageId}";
|
|
crateConfig = builtins.removeAttrs crateConfig' [
|
|
"resolvedDefaultFeatures"
|
|
"devDependencies"
|
|
];
|
|
devDependencies = lib.optionals (runTests && packageId == rootPackageId) (
|
|
crateConfig'.devDependencies or [ ]
|
|
);
|
|
dependencies = dependencyDerivations {
|
|
inherit features;
|
|
inherit (self) target;
|
|
buildByPackageId =
|
|
depPackageId:
|
|
# proc_macro crates must be compiled for the build architecture
|
|
if crateConfigs.${depPackageId}.procMacro or false then
|
|
self.build.crates.${depPackageId}
|
|
else
|
|
self.crates.${depPackageId};
|
|
dependencies = (crateConfig.dependencies or [ ]) ++ devDependencies;
|
|
};
|
|
buildDependencies = dependencyDerivations {
|
|
inherit features;
|
|
inherit (self.build) target;
|
|
buildByPackageId = depPackageId: self.build.crates.${depPackageId};
|
|
dependencies = crateConfig.buildDependencies or [ ];
|
|
};
|
|
dependenciesWithRenames =
|
|
let
|
|
buildDeps = filterEnabledDependencies {
|
|
inherit features;
|
|
inherit (self) target;
|
|
dependencies = crateConfig.dependencies or [ ] ++ devDependencies;
|
|
};
|
|
hostDeps = filterEnabledDependencies {
|
|
inherit features;
|
|
inherit (self.build) target;
|
|
dependencies = crateConfig.buildDependencies or [ ];
|
|
};
|
|
in
|
|
lib.filter (d: d ? "rename") (hostDeps ++ buildDeps);
|
|
# Crate renames have the form:
|
|
#
|
|
# {
|
|
# crate_name = [
|
|
# { version = "1.2.3"; rename = "crate_name01"; }
|
|
# ];
|
|
# # ...
|
|
# }
|
|
crateRenames =
|
|
let
|
|
grouped = lib.groupBy (dependency: dependency.name) dependenciesWithRenames;
|
|
versionAndRename =
|
|
dep:
|
|
let
|
|
package = crateConfigs."${dep.packageId}";
|
|
in
|
|
{
|
|
inherit (dep) rename;
|
|
inherit (package) version;
|
|
};
|
|
in
|
|
lib.mapAttrs (name: builtins.map versionAndRename) grouped;
|
|
in
|
|
buildRustCrateForPkgsFunc pkgs (
|
|
crateConfig
|
|
// {
|
|
src =
|
|
crateConfig.src or (fetchurl rec {
|
|
name = "${crateConfig.crateName}-${crateConfig.version}.tar.gz";
|
|
# https://www.pietroalbini.org/blog/downloading-crates-io/
|
|
# Not rate-limited, CDN URL.
|
|
url = "https://static.crates.io/crates/${crateConfig.crateName}/${crateConfig.crateName}-${crateConfig.version}.crate";
|
|
sha256 =
|
|
assert (lib.assertMsg (crateConfig ? sha256) "Missing sha256 for ${name}");
|
|
crateConfig.sha256;
|
|
});
|
|
extraRustcOpts =
|
|
lib.lists.optional (targetFeatures != [ ])
|
|
"-C target-feature=${lib.concatMapStringsSep "," (x: "+${x}") targetFeatures}";
|
|
inherit
|
|
features
|
|
dependencies
|
|
buildDependencies
|
|
crateRenames
|
|
release
|
|
;
|
|
}
|
|
);
|
|
in
|
|
builtByPackageIdByPkgs;
|
|
|
|
# Returns the actual derivations for the given dependencies.
|
|
dependencyDerivations =
|
|
{ buildByPackageId
|
|
, features
|
|
, dependencies
|
|
, target
|
|
,
|
|
}:
|
|
assert (builtins.isList features);
|
|
assert (builtins.isList dependencies);
|
|
assert (builtins.isAttrs target);
|
|
let
|
|
enabledDependencies = filterEnabledDependencies {
|
|
inherit dependencies features target;
|
|
};
|
|
depDerivation = dependency: buildByPackageId dependency.packageId;
|
|
in
|
|
map depDerivation enabledDependencies;
|
|
|
|
/*
|
|
Returns a sanitized version of val with all values substituted that cannot
|
|
be serialized as JSON.
|
|
*/
|
|
sanitizeForJson =
|
|
val:
|
|
if builtins.isAttrs val then
|
|
lib.mapAttrs (n: sanitizeForJson) val
|
|
else if builtins.isList val then
|
|
builtins.map sanitizeForJson val
|
|
else if builtins.isFunction val then
|
|
"function"
|
|
else
|
|
val;
|
|
|
|
# Returns various tools to debug a crate.
|
|
debugCrate =
|
|
{ packageId
|
|
, target ? makeDefaultTarget stdenv.hostPlatform
|
|
,
|
|
}:
|
|
assert (builtins.isString packageId);
|
|
let
|
|
debug = rec {
|
|
# The built tree as passed to buildRustCrate.
|
|
buildTree = buildRustCrateWithFeatures {
|
|
buildRustCrateForPkgsFunc = _: lib.id;
|
|
inherit packageId;
|
|
};
|
|
sanitizedBuildTree = sanitizeForJson buildTree;
|
|
dependencyTree = sanitizeForJson (buildRustCrateWithFeatures {
|
|
buildRustCrateForPkgsFunc = _: crate: {
|
|
"01_crateName" = crate.crateName or false;
|
|
"02_features" = crate.features or [ ];
|
|
"03_dependencies" = crate.dependencies or [ ];
|
|
};
|
|
inherit packageId;
|
|
});
|
|
mergedPackageFeatures = mergePackageFeatures {
|
|
features = rootFeatures;
|
|
inherit packageId target;
|
|
};
|
|
diffedDefaultPackageFeatures = diffDefaultPackageFeatures {
|
|
inherit packageId target;
|
|
};
|
|
};
|
|
in
|
|
{
|
|
internal = debug;
|
|
};
|
|
|
|
/*
|
|
Returns differences between cargo default features and crate2nix default
|
|
features.
|
|
|
|
This is useful for verifying the feature resolution in crate2nix.
|
|
*/
|
|
diffDefaultPackageFeatures =
|
|
{ crateConfigs ? crates
|
|
, packageId
|
|
, target
|
|
,
|
|
}:
|
|
assert (builtins.isAttrs crateConfigs);
|
|
let
|
|
prefixValues = prefix: lib.mapAttrs (n: v: { "${prefix}" = v; });
|
|
mergedFeatures = prefixValues "crate2nix" (mergePackageFeatures {
|
|
inherit crateConfigs packageId target;
|
|
features = [ "default" ];
|
|
});
|
|
configs = prefixValues "cargo" crateConfigs;
|
|
combined = lib.foldAttrs (a: b: a // b) { } [
|
|
mergedFeatures
|
|
configs
|
|
];
|
|
onlyInCargo = builtins.attrNames (
|
|
lib.filterAttrs (n: v: !(v ? "crate2nix") && (v ? "cargo")) combined
|
|
);
|
|
onlyInCrate2Nix = builtins.attrNames (
|
|
lib.filterAttrs (n: v: (v ? "crate2nix") && !(v ? "cargo")) combined
|
|
);
|
|
differentFeatures = lib.filterAttrs
|
|
(
|
|
n: v:
|
|
(v ? "crate2nix")
|
|
&& (v ? "cargo")
|
|
&& (v.crate2nix.features or [ ]) != (v."cargo".resolved_default_features or [ ])
|
|
)
|
|
combined;
|
|
in
|
|
builtins.toJSON {
|
|
inherit onlyInCargo onlyInCrate2Nix differentFeatures;
|
|
};
|
|
|
|
/*
|
|
Returns an attrset mapping packageId to the list of enabled features.
|
|
|
|
If multiple paths to a dependency enable different features, the
|
|
corresponding feature sets are merged. Features in rust are additive.
|
|
*/
|
|
mergePackageFeatures =
|
|
{ crateConfigs ? crates
|
|
, packageId
|
|
, rootPackageId ? packageId
|
|
, features ? rootFeatures
|
|
, dependencyPath ? [ crates.${packageId}.crateName ]
|
|
, featuresByPackageId ? { }
|
|
, target
|
|
, # Adds devDependencies to the crate with rootPackageId.
|
|
runTests ? false
|
|
, ...
|
|
}@args:
|
|
assert (builtins.isAttrs crateConfigs);
|
|
assert (builtins.isString packageId);
|
|
assert (builtins.isString rootPackageId);
|
|
assert (builtins.isList features);
|
|
assert (builtins.isList dependencyPath);
|
|
assert (builtins.isAttrs featuresByPackageId);
|
|
assert (builtins.isAttrs target);
|
|
assert (builtins.isBool runTests);
|
|
let
|
|
crateConfig = crateConfigs."${packageId}" or (builtins.throw "Package not found: ${packageId}");
|
|
expandedFeatures = expandFeatures (crateConfig.features or { }) features;
|
|
enabledFeatures = enableFeatures (crateConfig.dependencies or [ ]) expandedFeatures;
|
|
depWithResolvedFeatures =
|
|
dependency:
|
|
let
|
|
inherit (dependency) packageId;
|
|
features = dependencyFeatures enabledFeatures dependency;
|
|
in
|
|
{
|
|
inherit packageId features;
|
|
};
|
|
resolveDependencies =
|
|
cache: path: dependencies:
|
|
assert (builtins.isAttrs cache);
|
|
assert (builtins.isList dependencies);
|
|
let
|
|
enabledDependencies = filterEnabledDependencies {
|
|
inherit dependencies target;
|
|
features = enabledFeatures;
|
|
};
|
|
directDependencies = map depWithResolvedFeatures enabledDependencies;
|
|
foldOverCache = op: lib.foldl op cache directDependencies;
|
|
in
|
|
foldOverCache (
|
|
cache:
|
|
{ packageId, features }:
|
|
let
|
|
cacheFeatures = cache.${packageId} or [ ];
|
|
combinedFeatures = sortedUnique (cacheFeatures ++ features);
|
|
in
|
|
if cache ? ${packageId} && cache.${packageId} == combinedFeatures then
|
|
cache
|
|
else
|
|
mergePackageFeatures {
|
|
features = combinedFeatures;
|
|
featuresByPackageId = cache;
|
|
inherit
|
|
crateConfigs
|
|
packageId
|
|
target
|
|
runTests
|
|
rootPackageId
|
|
;
|
|
}
|
|
);
|
|
cacheWithSelf =
|
|
let
|
|
cacheFeatures = featuresByPackageId.${packageId} or [ ];
|
|
combinedFeatures = sortedUnique (cacheFeatures ++ enabledFeatures);
|
|
in
|
|
featuresByPackageId
|
|
// {
|
|
"${packageId}" = combinedFeatures;
|
|
};
|
|
cacheWithDependencies = resolveDependencies cacheWithSelf "dep" (
|
|
crateConfig.dependencies or [ ]
|
|
++ lib.optionals (runTests && packageId == rootPackageId) (crateConfig.devDependencies or [ ])
|
|
);
|
|
cacheWithAll = resolveDependencies cacheWithDependencies "build" (
|
|
crateConfig.buildDependencies or [ ]
|
|
);
|
|
in
|
|
cacheWithAll;
|
|
|
|
# Returns the enabled dependencies given the enabled features.
|
|
filterEnabledDependencies =
|
|
{ dependencies
|
|
, features
|
|
, target
|
|
,
|
|
}:
|
|
assert (builtins.isList dependencies);
|
|
assert (builtins.isList features);
|
|
assert (builtins.isAttrs target);
|
|
|
|
lib.filter
|
|
(
|
|
dep:
|
|
let
|
|
targetFunc = dep.target or (features: true);
|
|
in
|
|
targetFunc { inherit features target; }
|
|
&& (!(dep.optional or false) || builtins.any (doesFeatureEnableDependency dep) features)
|
|
)
|
|
dependencies;
|
|
|
|
# Returns whether the given feature should enable the given dependency.
|
|
doesFeatureEnableDependency =
|
|
dependency: feature:
|
|
let
|
|
name = dependency.rename or dependency.name;
|
|
prefix = "${name}/";
|
|
len = builtins.stringLength prefix;
|
|
startsWithPrefix = builtins.substring 0 len feature == prefix;
|
|
in
|
|
feature == name || feature == "dep:" + name || startsWithPrefix;
|
|
|
|
/*
|
|
Returns the expanded features for the given inputFeatures by applying the
|
|
rules in featureMap.
|
|
|
|
featureMap is an attribute set which maps feature names to lists of further
|
|
feature names to enable in case this feature is selected.
|
|
*/
|
|
expandFeatures =
|
|
featureMap: inputFeatures:
|
|
assert (builtins.isAttrs featureMap);
|
|
assert (builtins.isList inputFeatures);
|
|
let
|
|
expandFeaturesNoCycle =
|
|
oldSeen: inputFeatures:
|
|
if inputFeatures != [ ] then
|
|
let
|
|
# The feature we're currently expanding.
|
|
feature = builtins.head inputFeatures;
|
|
# All the features we've seen/expanded so far, including the one
|
|
# we're currently processing.
|
|
seen = oldSeen // {
|
|
${feature} = 1;
|
|
};
|
|
# Expand the feature but be careful to not re-introduce a feature
|
|
# that we've already seen: this can easily cause a cycle, see issue
|
|
# #209.
|
|
enables = builtins.filter (f: !(seen ? "${f}")) (featureMap."${feature}" or [ ]);
|
|
in
|
|
[ feature ] ++ (expandFeaturesNoCycle seen (builtins.tail inputFeatures ++ enables))
|
|
# No more features left, nothing to expand to.
|
|
else
|
|
[ ];
|
|
outFeatures = expandFeaturesNoCycle { } inputFeatures;
|
|
in
|
|
sortedUnique outFeatures;
|
|
|
|
/*
|
|
This function adds optional dependencies as features if they are enabled
|
|
indirectly by dependency features. This function mimics Cargo's behavior
|
|
described in a note at:
|
|
https://doc.rust-lang.org/nightly/cargo/reference/features.html#dependency-features
|
|
*/
|
|
enableFeatures =
|
|
dependencies: features:
|
|
assert (builtins.isList features);
|
|
assert (builtins.isList dependencies);
|
|
let
|
|
additionalFeatures = lib.concatMap
|
|
(
|
|
dependency:
|
|
assert (builtins.isAttrs dependency);
|
|
let
|
|
enabled = builtins.any (doesFeatureEnableDependency dependency) features;
|
|
in
|
|
if (dependency.optional or false) && enabled then
|
|
[ (dependency.rename or dependency.name) ]
|
|
else
|
|
[ ]
|
|
)
|
|
dependencies;
|
|
in
|
|
sortedUnique (features ++ additionalFeatures);
|
|
|
|
/*
|
|
Returns the actual features for the given dependency.
|
|
|
|
features: The features of the crate that refers this dependency.
|
|
*/
|
|
dependencyFeatures =
|
|
features: dependency:
|
|
assert (builtins.isList features);
|
|
assert (builtins.isAttrs dependency);
|
|
let
|
|
defaultOrNil = if dependency.usesDefaultFeatures or true then [ "default" ] else [ ];
|
|
explicitFeatures = dependency.features or [ ];
|
|
additionalDependencyFeatures =
|
|
let
|
|
name = dependency.rename or dependency.name;
|
|
stripPrefixMatch = prefix: s: if lib.hasPrefix prefix s then lib.removePrefix prefix s else null;
|
|
extractFeature =
|
|
feature:
|
|
lib.findFirst (f: f != null) null (
|
|
map (prefix: stripPrefixMatch prefix feature) [
|
|
(name + "/")
|
|
(name + "?/")
|
|
]
|
|
);
|
|
dependencyFeatures = lib.filter (f: f != null) (map extractFeature features);
|
|
in
|
|
dependencyFeatures;
|
|
in
|
|
defaultOrNil ++ explicitFeatures ++ additionalDependencyFeatures;
|
|
|
|
# Sorts and removes duplicates from a list of strings.
|
|
sortedUnique =
|
|
features:
|
|
assert (builtins.isList features);
|
|
assert (builtins.all builtins.isString features);
|
|
let
|
|
outFeaturesSet = lib.foldl (set: feature: set // { "${feature}" = 1; }) { } features;
|
|
outFeaturesUnique = builtins.attrNames outFeaturesSet;
|
|
in
|
|
builtins.sort (a: b: a < b) outFeaturesUnique;
|
|
|
|
deprecationWarning =
|
|
message: value:
|
|
if strictDeprecation then
|
|
builtins.throw "strictDeprecation enabled, aborting: ${message}"
|
|
else
|
|
builtins.trace message value;
|
|
|
|
#
|
|
# crate2nix/default.nix (excerpt end)
|
|
#
|
|
};
|
|
}
|
|
|