quicfs/Cargo.nix

2072 lines
120 KiB
Nix
Raw Normal View History

2023-09-21 12:17:01 +01:00
# This file was @generated by cargo2nix 0.11.0.
# It is not intended to be manually edited.
args@{
release ? true,
rootFeatures ? [
"quicfs/default"
],
rustPackages,
buildRustPackages,
hostPlatform,
hostPlatformCpu ? null,
hostPlatformFeatures ? [],
target ? null,
codegenOpts ? null,
profileOpts ? null,
2024-01-26 12:07:51 +00:00
cargoUnstableFlags ? null,
2023-09-21 12:17:01 +01:00
rustcLinkFlags ? null,
rustcBuildFlags ? null,
mkRustCrate,
rustLib,
lib,
workspaceSrc,
2024-01-26 12:07:51 +00:00
ignoreLockHash,
2023-09-21 12:17:01 +01:00
}:
let
2024-07-27 11:22:21 +01:00
nixifiedLockHash = "2bb30cb4ca33872562961e68a5e700eb0e8f3acb730c4e4c9ed612d2bac28908";
2023-09-21 12:17:01 +01:00
workspaceSrc = if args.workspaceSrc == null then ./. else args.workspaceSrc;
2024-01-26 12:07:51 +00:00
currentLockHash = builtins.hashFile "sha256" (workspaceSrc + /Cargo.lock);
lockHashIgnored = if ignoreLockHash
then builtins.trace "Ignoring lock hash" ignoreLockHash
else ignoreLockHash;
in if !lockHashIgnored && (nixifiedLockHash != currentLockHash) then
throw ("Cargo.nix ${nixifiedLockHash} is out of sync with Cargo.lock ${currentLockHash}")
else let
2023-09-21 12:17:01 +01:00
inherit (rustLib) fetchCratesIo fetchCrateLocal fetchCrateGit fetchCrateAlternativeRegistry expandFeatures decideProfile genDrvsByProfile;
profilesByName = {
};
rootFeatures' = expandFeatures rootFeatures;
overridableMkRustCrate = f:
let
2024-01-26 12:07:51 +00:00
drvs = genDrvsByProfile profilesByName ({ profile, profileName }: mkRustCrate ({ inherit release profile hostPlatformCpu hostPlatformFeatures target profileOpts codegenOpts cargoUnstableFlags rustcLinkFlags rustcBuildFlags; } // (f profileName)));
2023-09-21 12:17:01 +01:00
in { compileMode ? null, profileName ? decideProfile compileMode release }:
let drv = drvs.${profileName}; in if compileMode == null then drv else drv.override { inherit compileMode; };
in
{
cargo2nixVersion = "0.11.0";
workspace = {
quicfs = rustPackages.unknown.quicfs."0.1.0";
};
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".addr2line."0.22.0" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "addr2line";
2024-06-26 22:21:14 +01:00
version = "0.22.0";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
gimli = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".gimli."0.29.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
"registry+https://github.com/rust-lang/crates.io-index".adler."1.0.2" = overridableMkRustCrate (profileName: rec {
name = "adler";
version = "1.0.2";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"; };
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".aho-corasick."1.1.3" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "aho-corasick";
2024-06-26 22:21:14 +01:00
version = "1.1.3";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "perf-literal" ]
[ "std" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
memchr = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".memchr."2.7.4" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".anstream."0.6.15" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "anstream";
2024-07-27 11:22:21 +01:00
version = "0.6.15";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "auto" ]
[ "default" ]
[ "wincon" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
anstyle = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".anstyle."1.0.8" { inherit profileName; }).out;
anstyle_parse = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".anstyle-parse."0.2.5" { inherit profileName; }).out;
anstyle_query = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".anstyle-query."1.1.1" { inherit profileName; }).out;
${ if hostPlatform.isWindows then "anstyle_wincon" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".anstyle-wincon."3.0.4" { inherit profileName; }).out;
colorchoice = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".colorchoice."1.0.2" { inherit profileName; }).out;
is_terminal_polyfill = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".is_terminal_polyfill."1.70.1" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
utf8parse = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".utf8parse."0.2.2" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".anstyle."1.0.8" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "anstyle";
2024-07-27 11:22:21 +01:00
version = "1.0.8";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "default" ]
[ "std" ]
];
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".anstyle-parse."0.2.5" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "anstyle-parse";
2024-07-27 11:22:21 +01:00
version = "0.2.5";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "default" ]
[ "utf8" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
utf8parse = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".utf8parse."0.2.2" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".anstyle-query."1.1.1" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "anstyle-query";
2024-07-27 11:22:21 +01:00
version = "1.1.1";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-01-26 12:07:51 +00:00
${ if hostPlatform.isWindows then "windows_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".anstyle-wincon."3.0.4" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "anstyle-wincon";
2024-07-27 11:22:21 +01:00
version = "3.0.4";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-07-27 11:22:21 +01:00
anstyle = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".anstyle."1.0.8" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
${ if hostPlatform.isWindows then "windows_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".anyhow."1.0.86" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "anyhow";
2024-06-26 22:21:14 +01:00
version = "1.0.86";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "default" ]
[ "std" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".autocfg."1.3.0" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "autocfg";
2024-06-26 22:21:14 +01:00
version = "1.3.0";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"; };
2023-09-24 10:41:54 +01:00
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".backtrace."0.3.73" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "backtrace";
2024-06-26 22:21:14 +01:00
version = "0.3.73";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "default" ]
[ "std" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
${ if !(hostPlatform.isWindows && hostPlatform.parsed.abi.name == "msvc" && !(hostPlatform.parsed.vendor.name == "uwp")) then "addr2line" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".addr2line."0.22.0" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
cfg_if = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".cfg-if."1.0.0" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
${ if !(hostPlatform.isWindows && hostPlatform.parsed.abi.name == "msvc" && !(hostPlatform.parsed.vendor.name == "uwp")) then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
${ if !(hostPlatform.isWindows && hostPlatform.parsed.abi.name == "msvc" && !(hostPlatform.parsed.vendor.name == "uwp")) then "miniz_oxide" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".miniz_oxide."0.7.4" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
${ if !(hostPlatform.isWindows && hostPlatform.parsed.abi.name == "msvc" && !(hostPlatform.parsed.vendor.name == "uwp")) then "object" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".object."0.36.2" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
rustc_demangle = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustc-demangle."0.1.24" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
buildDependencies = {
2024-07-27 11:22:21 +01:00
cc = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".cc."1.1.6" { profileName = "__noProfile"; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".base64."0.22.1" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "base64";
2024-06-26 22:21:14 +01:00
version = "0.22.1";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
2024-01-26 12:07:51 +00:00
[ "alloc" ]
2023-09-24 10:41:54 +01:00
[ "std" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".bitflags."2.6.0" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "bitflags";
2024-06-26 22:21:14 +01:00
version = "2.6.0";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "std" ]
];
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".byteorder."1.5.0" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "byteorder";
2024-01-26 12:07:51 +00:00
version = "1.5.0";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-01-26 12:07:51 +00:00
src = fetchCratesIo { inherit name version; sha256 = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"; };
2023-09-24 10:41:54 +01:00
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".bytes."1.6.1" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "bytes";
2024-07-27 11:22:21 +01:00
version = "1.6.1";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "default" ]
[ "std" ]
];
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".cc."1.1.6" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "cc";
2024-07-27 11:22:21 +01:00
version = "1.1.6";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "2aba8f4e9906c7ce3c73463f62a7f0c65183ada1a2d47e397cc8810827f9694f"; };
2024-06-26 22:21:14 +01:00
});
"registry+https://github.com/rust-lang/crates.io-index".cesu8."1.1.0" = overridableMkRustCrate (profileName: rec {
name = "cesu8";
version = "1.1.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"; };
2023-09-24 10:41:54 +01:00
});
"registry+https://github.com/rust-lang/crates.io-index".cfg-if."1.0.0" = overridableMkRustCrate (profileName: rec {
name = "cfg-if";
version = "1.0.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"; };
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".clap."4.5.11" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "clap";
2024-07-27 11:22:21 +01:00
version = "4.5.11";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "35723e6a11662c2afb578bcf0b88bf6ea8e21282a953428f240574fcc3a2b5b3"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "color" ]
[ "default" ]
[ "derive" ]
[ "error-context" ]
[ "help" ]
[ "std" ]
[ "suggestions" ]
[ "usage" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
clap_builder = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".clap_builder."4.5.11" { inherit profileName; }).out;
clap_derive = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".clap_derive."4.5.11" { profileName = "__noProfile"; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".clap_builder."4.5.11" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "clap_builder";
2024-07-27 11:22:21 +01:00
version = "4.5.11";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "49eb96cbfa7cfa35017b7cd548c75b14c3118c98b423041d70562665e07fb0fa"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "color" ]
[ "error-context" ]
[ "help" ]
[ "std" ]
[ "suggestions" ]
[ "usage" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
anstream = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".anstream."0.6.15" { inherit profileName; }).out;
anstyle = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".anstyle."1.0.8" { inherit profileName; }).out;
clap_lex = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".clap_lex."0.7.2" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
strsim = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".strsim."0.11.1" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".clap_derive."4.5.11" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "clap_derive";
2024-07-27 11:22:21 +01:00
version = "4.5.11";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "5d029b67f89d30bbb547c89fd5161293c0aec155fc691d7924b64550662db93e"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "default" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
heck = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".heck."0.5.0" { inherit profileName; }).out;
proc_macro2 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".proc-macro2."1.0.86" { inherit profileName; }).out;
quote = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".quote."1.0.36" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
syn = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".syn."2.0.72" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".clap_lex."0.7.2" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "clap_lex";
2024-07-27 11:22:21 +01:00
version = "0.7.2";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"; };
2023-09-24 10:41:54 +01:00
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".colorchoice."1.0.2" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "colorchoice";
2024-07-27 11:22:21 +01:00
version = "1.0.2";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"; };
2024-06-26 22:21:14 +01:00
});
"registry+https://github.com/rust-lang/crates.io-index".combine."4.6.7" = overridableMkRustCrate (profileName: rec {
name = "combine";
version = "4.6.7";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"; };
features = builtins.concatLists [
[ "alloc" ]
[ "bytes" ]
[ "default" ]
[ "std" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
bytes = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".bytes."1.6.1" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
memchr = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".memchr."2.7.4" { inherit profileName; }).out;
};
2023-09-24 10:41:54 +01:00
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".core-foundation."0.9.4" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "core-foundation";
2024-01-26 12:07:51 +00:00
version = "0.9.4";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-01-26 12:07:51 +00:00
src = fetchCratesIo { inherit name version; sha256 = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"; };
features = builtins.concatLists [
[ "default" ]
[ "link" ]
];
2023-09-24 10:41:54 +01:00
dependencies = {
2024-01-26 12:07:51 +00:00
core_foundation_sys = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".core-foundation-sys."0.8.6" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
libc = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".core-foundation-sys."0.8.6" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "core-foundation-sys";
2024-01-26 12:07:51 +00:00
version = "0.8.6";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-01-26 12:07:51 +00:00
src = fetchCratesIo { inherit name version; sha256 = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"; };
features = builtins.concatLists [
[ "default" ]
[ "link" ]
];
2023-09-24 10:41:54 +01:00
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".deranged."0.3.11" = overridableMkRustCrate (profileName: rec {
name = "deranged";
version = "0.3.11";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
2024-06-26 22:21:14 +01:00
[ "alloc" ]
[ "powerfmt" ]
[ "std" ]
2023-09-28 23:41:44 +01:00
];
2024-06-26 22:21:14 +01:00
dependencies = {
powerfmt = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".powerfmt."0.2.0" { inherit profileName; }).out;
};
});
"registry+https://github.com/rust-lang/crates.io-index".either."1.13.0" = overridableMkRustCrate (profileName: rec {
name = "either";
version = "1.13.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"; };
2024-07-27 11:22:21 +01:00
features = builtins.concatLists [
[ "use_std" ]
];
2023-09-28 23:41:44 +01:00
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".env_filter."0.1.2" = overridableMkRustCrate (profileName: rec {
2024-01-26 12:07:51 +00:00
name = "env_filter";
2024-07-27 11:22:21 +01:00
version = "0.1.2";
2024-01-26 12:07:51 +00:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "4f2c92ceda6ceec50f43169f9ee8424fe2db276791afde7b2cd8bc084cb376ab"; };
2024-01-26 12:07:51 +00:00
features = builtins.concatLists [
[ "regex" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
log = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".log."0.4.22" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
regex = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".regex."1.10.5" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".env_logger."0.11.5" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "env_logger";
2024-07-27 11:22:21 +01:00
version = "0.11.5";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "auto-color" ]
[ "color" ]
[ "default" ]
[ "humantime" ]
[ "regex" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
anstream = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".anstream."0.6.15" { inherit profileName; }).out;
anstyle = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".anstyle."1.0.8" { inherit profileName; }).out;
env_filter = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".env_filter."0.1.2" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
humantime = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".humantime."2.1.0" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
log = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".log."0.4.22" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
"registry+https://github.com/rust-lang/crates.io-index".equivalent."1.0.1" = overridableMkRustCrate (profileName: rec {
name = "equivalent";
version = "1.0.1";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"; };
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".errno."0.3.9" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "errno";
2024-06-26 22:21:14 +01:00
version = "0.3.9";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "std" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
${ if hostPlatform.isUnix || hostPlatform.parsed.kernel.name == "hermit" || hostPlatform.parsed.kernel.name == "wasi" then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
${ if hostPlatform.isWindows then "windows_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".fastrand."2.1.0" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "fastrand";
2024-06-26 22:21:14 +01:00
version = "2.1.0";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "alloc" ]
[ "default" ]
[ "std" ]
];
});
"registry+https://github.com/rust-lang/crates.io-index".fixedbitset."0.4.2" = overridableMkRustCrate (profileName: rec {
name = "fixedbitset";
version = "0.4.2";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"; };
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".fuser."0.14.0" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "fuser";
2024-01-26 12:07:51 +00:00
version = "0.14.0";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-01-26 12:07:51 +00:00
src = fetchCratesIo { inherit name version; sha256 = "2e697f6f62c20b6fad1ba0f84ae909f25971cf16e735273524e3977c94604cf8"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
2023-09-28 23:41:44 +01:00
(lib.optional (rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default") "default")
(lib.optional (rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default") "libfuse")
(lib.optional (rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default") "pkg-config")
2023-09-24 10:41:54 +01:00
];
dependencies = {
2024-06-26 22:21:14 +01:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "log" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".log."0.4.22" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "memchr" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".memchr."2.7.4" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "page_size" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".page_size."0.6.0" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "smallvec" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".smallvec."1.13.2" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "zerocopy" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".zerocopy."0.7.35" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
buildDependencies = {
2024-06-26 22:21:14 +01:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "pkg_config" else null } = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".pkg-config."0.3.30" { profileName = "__noProfile"; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".getrandom."0.2.15" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "getrandom";
2024-06-26 22:21:14 +01:00
version = "0.2.15";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "std" ]
];
dependencies = {
2024-01-26 12:07:51 +00:00
cfg_if = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".cfg-if."1.0.0" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
${ if hostPlatform.isUnix then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
${ if hostPlatform.parsed.kernel.name == "wasi" then "wasi" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".wasi."0.11.0+wasi-snapshot-preview1" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".gimli."0.29.0" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "gimli";
2024-06-26 22:21:14 +01:00
version = "0.29.0";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "read" ]
[ "read-core" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".hashbrown."0.14.5" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "hashbrown";
2024-06-26 22:21:14 +01:00
version = "0.14.5";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "raw" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".heck."0.5.0" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "heck";
2024-06-26 22:21:14 +01:00
version = "0.5.0";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"; };
2023-09-24 10:41:54 +01:00
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".hermit-abi."0.3.9" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "hermit-abi";
2024-06-26 22:21:14 +01:00
version = "0.3.9";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "default" ]
];
});
"registry+https://github.com/rust-lang/crates.io-index".humantime."2.1.0" = overridableMkRustCrate (profileName: rec {
name = "humantime";
version = "2.1.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"; };
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".indexmap."2.2.6" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "indexmap";
2024-06-26 22:21:14 +01:00
version = "2.2.6";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "default" ]
[ "std" ]
];
dependencies = {
2024-01-26 12:07:51 +00:00
equivalent = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".equivalent."1.0.1" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
hashbrown = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".hashbrown."0.14.5" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".is_terminal_polyfill."1.70.1" = overridableMkRustCrate (profileName: rec {
2024-06-26 22:21:14 +01:00
name = "is_terminal_polyfill";
2024-07-27 11:22:21 +01:00
version = "1.70.1";
2024-06-26 22:21:14 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"; };
2024-06-26 22:21:14 +01:00
features = builtins.concatLists [
[ "default" ]
];
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".itertools."0.13.0" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "itertools";
2024-07-27 11:22:21 +01:00
version = "0.13.0";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
2024-07-27 11:22:21 +01:00
[ "default" ]
2023-09-28 23:41:44 +01:00
[ "use_alloc" ]
2024-07-27 11:22:21 +01:00
[ "use_std" ]
2023-09-28 23:41:44 +01:00
];
dependencies = {
2024-06-26 22:21:14 +01:00
either = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".either."1.13.0" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".jni."0.19.0" = overridableMkRustCrate (profileName: rec {
name = "jni";
version = "0.19.0";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
cesu8 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".cesu8."1.1.0" { inherit profileName; }).out;
combine = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".combine."4.6.7" { inherit profileName; }).out;
jni_sys = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".jni-sys."0.3.0" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
log = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".log."0.4.22" { inherit profileName; }).out;
thiserror = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".thiserror."1.0.63" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
2024-06-26 22:21:14 +01:00
buildDependencies = {
walkdir = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".walkdir."2.5.0" { profileName = "__noProfile"; }).out;
};
});
"registry+https://github.com/rust-lang/crates.io-index".jni-sys."0.3.0" = overridableMkRustCrate (profileName: rec {
name = "jni-sys";
version = "0.3.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"; };
2023-09-24 10:41:54 +01:00
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "libc";
2024-06-26 22:21:14 +01:00
version = "0.2.155";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "default" ]
2023-09-28 23:41:44 +01:00
[ "extra_traits" ]
2023-09-24 10:41:54 +01:00
[ "std" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".linux-raw-sys."0.4.14" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "linux-raw-sys";
2024-06-26 22:21:14 +01:00
version = "0.4.14";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "elf" ]
[ "errno" ]
[ "general" ]
[ "ioctl" ]
[ "no_std" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".lock_api."0.4.12" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "lock_api";
2024-06-26 22:21:14 +01:00
version = "0.4.12";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "atomic_usize" ]
[ "default" ]
];
dependencies = {
2024-01-26 12:07:51 +00:00
scopeguard = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".scopeguard."1.2.0" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
buildDependencies = {
2024-06-26 22:21:14 +01:00
autocfg = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".autocfg."1.3.0" { profileName = "__noProfile"; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".log."0.4.22" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "log";
2024-07-27 11:22:21 +01:00
version = "0.4.22";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "std" ]
];
2023-09-24 10:41:54 +01:00
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".memchr."2.7.4" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "memchr";
2024-06-26 22:21:14 +01:00
version = "2.7.4";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "alloc" ]
2024-01-26 12:07:51 +00:00
(lib.optional (rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default") "default")
2023-09-24 10:41:54 +01:00
[ "std" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".miniz_oxide."0.7.4" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "miniz_oxide";
2024-06-26 22:21:14 +01:00
version = "0.7.4";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-01-26 12:07:51 +00:00
adler = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".adler."1.0.2" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".mio."1.0.1" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "mio";
2024-07-27 11:22:21 +01:00
version = "1.0.1";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "net" ]
[ "os-ext" ]
[ "os-poll" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
${ if hostPlatform.parsed.kernel.name == "hermit" then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".hermit-abi."0.3.9" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
${ if hostPlatform.isUnix || hostPlatform.parsed.kernel.name == "wasi" then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
${ if hostPlatform.parsed.kernel.name == "wasi" then "wasi" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".wasi."0.11.0+wasi-snapshot-preview1" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
${ if hostPlatform.isWindows then "windows_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".multimap."0.10.0" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "multimap";
2024-06-26 22:21:14 +01:00
version = "0.10.0";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"; };
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".num-bigint."0.4.6" = overridableMkRustCrate (profileName: rec {
2024-06-26 22:21:14 +01:00
name = "num-bigint";
2024-07-27 11:22:21 +01:00
version = "0.4.6";
2024-06-26 22:21:14 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"; };
2024-06-26 22:21:14 +01:00
features = builtins.concatLists [
[ "default" ]
[ "std" ]
];
dependencies = {
num_integer = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".num-integer."0.1.46" { inherit profileName; }).out;
num_traits = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".num-traits."0.2.19" { inherit profileName; }).out;
};
});
"registry+https://github.com/rust-lang/crates.io-index".num-conv."0.1.0" = overridableMkRustCrate (profileName: rec {
name = "num-conv";
version = "0.1.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"; };
});
"registry+https://github.com/rust-lang/crates.io-index".num-integer."0.1.46" = overridableMkRustCrate (profileName: rec {
name = "num-integer";
version = "0.1.46";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"; };
features = builtins.concatLists [
[ "i128" ]
[ "std" ]
];
dependencies = {
num_traits = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".num-traits."0.2.19" { inherit profileName; }).out;
};
});
"registry+https://github.com/rust-lang/crates.io-index".num-traits."0.2.19" = overridableMkRustCrate (profileName: rec {
name = "num-traits";
version = "0.2.19";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"; };
features = builtins.concatLists [
[ "i128" ]
[ "std" ]
];
buildDependencies = {
autocfg = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".autocfg."1.3.0" { profileName = "__noProfile"; }).out;
};
2023-09-28 23:41:44 +01:00
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".object."0.36.2" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "object";
2024-07-27 11:22:21 +01:00
version = "0.36.2";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "3f203fa8daa7bb185f760ae12bd8e097f63d17041dcdcaf675ac54cdf863170e"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "archive" ]
[ "coff" ]
[ "elf" ]
[ "macho" ]
[ "pe" ]
[ "read_core" ]
[ "unaligned" ]
2024-06-26 22:21:14 +01:00
[ "xcoff" ]
2023-09-24 10:41:54 +01:00
];
dependencies = {
2024-06-26 22:21:14 +01:00
memchr = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".memchr."2.7.4" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".once_cell."1.19.0" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "once_cell";
2024-01-26 12:07:51 +00:00
version = "1.19.0";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-01-26 12:07:51 +00:00
src = fetchCratesIo { inherit name version; sha256 = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "alloc" ]
[ "default" ]
[ "race" ]
[ "std" ]
];
});
"registry+https://github.com/rust-lang/crates.io-index".openssl-probe."0.1.5" = overridableMkRustCrate (profileName: rec {
name = "openssl-probe";
version = "0.1.5";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"; };
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".page_size."0.6.0" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "page_size";
2024-01-26 12:07:51 +00:00
version = "0.6.0";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-01-26 12:07:51 +00:00
src = fetchCratesIo { inherit name version; sha256 = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
${ if (rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default") && hostPlatform.isUnix then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
${ if (rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default") && hostPlatform.isWindows then "winapi" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".winapi."0.3.9" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".parking_lot."0.12.3" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "parking_lot";
2024-06-26 22:21:14 +01:00
version = "0.12.3";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "default" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
lock_api = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".lock_api."0.4.12" { inherit profileName; }).out;
parking_lot_core = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".parking_lot_core."0.9.10" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".parking_lot_core."0.9.10" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "parking_lot_core";
2024-06-26 22:21:14 +01:00
version = "0.9.10";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"; };
2023-09-28 23:41:44 +01:00
dependencies = {
2024-01-26 12:07:51 +00:00
cfg_if = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".cfg-if."1.0.0" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
${ if hostPlatform.isUnix then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
${ if hostPlatform.parsed.kernel.name == "redox" then "syscall" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".redox_syscall."0.5.3" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
smallvec = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".smallvec."1.13.2" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
${ if hostPlatform.isWindows then "windows_targets" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-targets."0.52.6" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
};
});
"registry+https://github.com/rust-lang/crates.io-index".pem."3.0.4" = overridableMkRustCrate (profileName: rec {
name = "pem";
version = "3.0.4";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae"; };
features = builtins.concatLists [
[ "default" ]
[ "std" ]
];
dependencies = {
base64 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".base64."0.22.1" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
serde = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".serde."1.0.204" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".petgraph."0.6.5" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "petgraph";
2024-06-26 22:21:14 +01:00
version = "0.6.5";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"; };
2023-09-28 23:41:44 +01:00
dependencies = {
2024-01-26 12:07:51 +00:00
fixedbitset = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".fixedbitset."0.4.2" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
indexmap = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".indexmap."2.2.6" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".pin-project-lite."0.2.14" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "pin-project-lite";
2024-06-26 22:21:14 +01:00
version = "0.2.14";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"; };
2023-09-24 10:41:54 +01:00
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".pkg-config."0.3.30" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "pkg-config";
2024-06-26 22:21:14 +01:00
version = "0.3.30";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"; };
});
"registry+https://github.com/rust-lang/crates.io-index".powerfmt."0.2.0" = overridableMkRustCrate (profileName: rec {
name = "powerfmt";
version = "0.2.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"; };
2023-09-24 10:41:54 +01:00
});
"registry+https://github.com/rust-lang/crates.io-index".ppv-lite86."0.2.17" = overridableMkRustCrate (profileName: rec {
name = "ppv-lite86";
version = "0.2.17";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"; };
features = builtins.concatLists [
[ "simd" ]
[ "std" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".prettyplease."0.2.20" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "prettyplease";
2024-06-26 22:21:14 +01:00
version = "0.2.20";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e"; };
2023-09-28 23:41:44 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
proc_macro2 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".proc-macro2."1.0.86" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
syn = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".syn."2.0.72" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".proc-macro2."1.0.86" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "proc-macro2";
2024-06-26 22:21:14 +01:00
version = "1.0.86";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "default" ]
[ "proc-macro" ]
];
dependencies = {
2024-01-26 12:07:51 +00:00
unicode_ident = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".unicode-ident."1.0.12" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".prost."0.13.1" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "prost";
2024-07-27 11:22:21 +01:00
version = "0.13.1";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "e13db3d3fde688c61e2446b4d843bc27a7e8af269a69440c0308021dc92333cc"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "default" ]
2024-06-26 22:21:14 +01:00
[ "derive" ]
2023-09-28 23:41:44 +01:00
[ "prost-derive" ]
[ "std" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
bytes = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".bytes."1.6.1" { inherit profileName; }).out;
prost_derive = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".prost-derive."0.13.1" { profileName = "__noProfile"; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".prost-build."0.13.1" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "prost-build";
2024-07-27 11:22:21 +01:00
version = "0.13.1";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "5bb182580f71dd070f88d01ce3de9f4da5021db7115d2e1c3605a754153b77c1"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "default" ]
[ "format" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
bytes = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".bytes."1.6.1" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
heck = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".heck."0.5.0" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
itertools = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".itertools."0.13.0" { inherit profileName; }).out;
log = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".log."0.4.22" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
multimap = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".multimap."0.10.0" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
once_cell = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".once_cell."1.19.0" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
petgraph = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".petgraph."0.6.5" { inherit profileName; }).out;
prettyplease = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".prettyplease."0.2.20" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
prost = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".prost."0.13.1" { inherit profileName; }).out;
prost_types = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".prost-types."0.13.1" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
regex = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".regex."1.10.5" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
syn = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".syn."2.0.72" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
tempfile = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".tempfile."3.10.1" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".prost-derive."0.13.1" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "prost-derive";
2024-07-27 11:22:21 +01:00
version = "0.13.1";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "18bec9b0adc4eba778b33684b7ba3e7137789434769ee3ce3930463ef904cfca"; };
2023-09-28 23:41:44 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
anyhow = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".anyhow."1.0.86" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
itertools = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".itertools."0.13.0" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
proc_macro2 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".proc-macro2."1.0.86" { inherit profileName; }).out;
quote = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".quote."1.0.36" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
syn = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".syn."2.0.72" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".prost-types."0.13.1" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "prost-types";
2024-07-27 11:22:21 +01:00
version = "0.13.1";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "cee5168b05f49d4b0ca581206eb14a7b22fafd963efe729ac48eb03266e25cc2"; };
2023-09-28 23:41:44 +01:00
dependencies = {
2024-07-27 11:22:21 +01:00
prost = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".prost."0.13.1" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2023-09-21 12:17:01 +01:00
"unknown".quicfs."0.1.0" = overridableMkRustCrate (profileName: rec {
name = "quicfs";
version = "0.1.0";
registry = "unknown";
src = fetchCrateLocal workspaceSrc;
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
(lib.optional (rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default") "client")
(lib.optional (rootFeatures' ? "quicfs/default") "default")
];
2023-09-24 10:41:54 +01:00
dependencies = {
2024-07-27 11:22:21 +01:00
clap = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".clap."4.5.11" { inherit profileName; }).out;
env_logger = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".env_logger."0.11.5" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "fuser" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".fuser."0.14.0" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
log = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".log."0.4.22" { inherit profileName; }).out;
prost = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".prost."0.13.1" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
quinn = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".quinn."0.11.2" { inherit profileName; }).out;
rcgen = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rcgen."0.13.1" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
signal_hook = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".signal-hook."0.3.17" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
tokio = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".tokio."1.39.1" { inherit profileName; }).out;
};
buildDependencies = {
prost_build = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".prost-build."0.13.1" { profileName = "__noProfile"; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".quinn."0.11.2" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "quinn";
2024-06-26 22:21:14 +01:00
version = "0.11.2";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "e4ceeeeabace7857413798eb1ffa1e9c905a9946a57d81fb69b4b71c4d8eb3ad"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "default" ]
[ "log" ]
2024-06-26 22:21:14 +01:00
[ "platform-verifier" ]
2023-09-24 10:41:54 +01:00
[ "ring" ]
[ "runtime-tokio" ]
[ "rustls" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
bytes = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".bytes."1.6.1" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
pin_project_lite = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".pin-project-lite."0.2.14" { inherit profileName; }).out;
proto = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".quinn-proto."0.11.3" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
udp = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".quinn-udp."0.5.4" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
rustc_hash = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustc-hash."1.1.0" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
rustls = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls."0.23.12" { inherit profileName; }).out;
thiserror = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".thiserror."1.0.63" { inherit profileName; }).out;
tokio = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".tokio."1.39.1" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
tracing = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".tracing."0.1.40" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".quinn-proto."0.11.3" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "quinn-proto";
2024-06-26 22:21:14 +01:00
version = "0.11.3";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "ddf517c03a109db8100448a4be38d498df8a210a99fe0e1b9eaf39e78c640efe"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "log" ]
2024-06-26 22:21:14 +01:00
[ "platform-verifier" ]
2023-09-24 10:41:54 +01:00
[ "ring" ]
[ "rustls" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
bytes = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".bytes."1.6.1" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
rand = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rand."0.8.5" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
ring = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".ring."0.17.8" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
rustc_hash = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustc-hash."1.1.0" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
rustls = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls."0.23.12" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
rustls_platform_verifier = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls-platform-verifier."0.3.2" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
slab = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".slab."0.4.9" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
thiserror = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".thiserror."1.0.63" { inherit profileName; }).out;
tinyvec = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".tinyvec."1.8.0" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
tracing = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".tracing."0.1.40" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".quinn-udp."0.5.4" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "quinn-udp";
2024-07-27 11:22:21 +01:00
version = "0.5.4";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "log" ]
2024-07-27 11:22:21 +01:00
[ "tracing" ]
2023-09-24 10:41:54 +01:00
];
dependencies = {
2024-06-26 22:21:14 +01:00
libc = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
${ if hostPlatform.isWindows then "once_cell" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".once_cell."1.19.0" { inherit profileName; }).out;
socket2 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".socket2."0.5.7" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
tracing = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".tracing."0.1.40" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
${ if hostPlatform.isWindows then "windows_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".quote."1.0.36" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "quote";
2024-06-26 22:21:14 +01:00
version = "1.0.36";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "default" ]
[ "proc-macro" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
proc_macro2 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".proc-macro2."1.0.86" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
"registry+https://github.com/rust-lang/crates.io-index".rand."0.8.5" = overridableMkRustCrate (profileName: rec {
name = "rand";
version = "0.8.5";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"; };
features = builtins.concatLists [
[ "alloc" ]
[ "default" ]
[ "getrandom" ]
[ "libc" ]
[ "rand_chacha" ]
[ "std" ]
[ "std_rng" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
${ if hostPlatform.isUnix then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
rand_chacha = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rand_chacha."0.3.1" { inherit profileName; }).out;
rand_core = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rand_core."0.6.4" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
"registry+https://github.com/rust-lang/crates.io-index".rand_chacha."0.3.1" = overridableMkRustCrate (profileName: rec {
name = "rand_chacha";
version = "0.3.1";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"; };
features = builtins.concatLists [
[ "std" ]
];
dependencies = {
2024-01-26 12:07:51 +00:00
ppv_lite86 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".ppv-lite86."0.2.17" { inherit profileName; }).out;
rand_core = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rand_core."0.6.4" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
"registry+https://github.com/rust-lang/crates.io-index".rand_core."0.6.4" = overridableMkRustCrate (profileName: rec {
name = "rand_core";
version = "0.6.4";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"; };
features = builtins.concatLists [
[ "alloc" ]
[ "getrandom" ]
[ "std" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
getrandom = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".getrandom."0.2.15" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".rcgen."0.13.1" = overridableMkRustCrate (profileName: rec {
name = "rcgen";
version = "0.13.1";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "54077e1872c46788540de1ea3d7f4ccb1983d12f9aa909b234468676c1a36779"; };
features = builtins.concatLists [
[ "crypto" ]
[ "default" ]
[ "pem" ]
[ "ring" ]
];
dependencies = {
pem = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".pem."3.0.4" { inherit profileName; }).out;
ring = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".ring."0.17.8" { inherit profileName; }).out;
pki_types = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls-pki-types."1.7.0" { inherit profileName; }).out;
time = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".time."0.3.36" { inherit profileName; }).out;
yasna = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".yasna."0.5.2" { inherit profileName; }).out;
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".redox_syscall."0.5.3" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "redox_syscall";
2024-07-27 11:22:21 +01:00
version = "0.5.3";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"; };
2023-09-28 23:41:44 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
bitflags = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".bitflags."2.6.0" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".regex."1.10.5" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "regex";
2024-06-26 22:21:14 +01:00
version = "1.10.5";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "perf" ]
[ "perf-backtrack" ]
[ "perf-cache" ]
[ "perf-dfa" ]
[ "perf-inline" ]
[ "perf-literal" ]
[ "perf-onepass" ]
[ "std" ]
[ "unicode-bool" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
aho_corasick = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".aho-corasick."1.1.3" { inherit profileName; }).out;
memchr = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".memchr."2.7.4" { inherit profileName; }).out;
regex_automata = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".regex-automata."0.4.7" { inherit profileName; }).out;
regex_syntax = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".regex-syntax."0.8.4" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".regex-automata."0.4.7" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "regex-automata";
2024-06-26 22:21:14 +01:00
version = "0.4.7";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "alloc" ]
[ "dfa-onepass" ]
[ "hybrid" ]
[ "meta" ]
[ "nfa-backtrack" ]
[ "nfa-pikevm" ]
[ "nfa-thompson" ]
[ "perf-inline" ]
[ "perf-literal" ]
[ "perf-literal-multisubstring" ]
[ "perf-literal-substring" ]
[ "std" ]
[ "syntax" ]
[ "unicode-bool" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
aho_corasick = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".aho-corasick."1.1.3" { inherit profileName; }).out;
memchr = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".memchr."2.7.4" { inherit profileName; }).out;
regex_syntax = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".regex-syntax."0.8.4" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".regex-syntax."0.8.4" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "regex-syntax";
2024-06-26 22:21:14 +01:00
version = "0.8.4";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "std" ]
[ "unicode-bool" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".ring."0.17.8" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "ring";
2024-06-26 22:21:14 +01:00
version = "0.17.8";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "alloc" ]
[ "default" ]
[ "dev_urandom_fallback" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
cfg_if = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".cfg-if."1.0.0" { inherit profileName; }).out;
getrandom = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".getrandom."0.2.15" { inherit profileName; }).out;
${ if (hostPlatform.parsed.kernel.name == "android" || hostPlatform.parsed.kernel.name == "linux") && (hostPlatform.parsed.cpu.name == "aarch64" || hostPlatform.parsed.cpu.name == "armv6l" || hostPlatform.parsed.cpu.name == "armv7l") then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
${ if hostPlatform.parsed.cpu.name == "aarch64" || hostPlatform.parsed.cpu.name == "armv6l" || hostPlatform.parsed.cpu.name == "armv7l" || hostPlatform.parsed.cpu.name == "i686" || hostPlatform.parsed.cpu.name == "x86_64" then "spin" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".spin."0.9.8" { inherit profileName; }).out;
untrusted = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".untrusted."0.9.0" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
${ if hostPlatform.parsed.cpu.name == "aarch64" && hostPlatform.parsed.kernel.name == "windows" then "windows_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
buildDependencies = {
2024-07-27 11:22:21 +01:00
cc = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".cc."1.1.6" { profileName = "__noProfile"; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".rustc-demangle."0.1.24" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "rustc-demangle";
2024-06-26 22:21:14 +01:00
version = "0.1.24";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"; };
2023-09-24 10:41:54 +01:00
});
"registry+https://github.com/rust-lang/crates.io-index".rustc-hash."1.1.0" = overridableMkRustCrate (profileName: rec {
name = "rustc-hash";
version = "1.1.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"; };
features = builtins.concatLists [
[ "default" ]
[ "std" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".rustix."0.38.34" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "rustix";
2024-06-26 22:21:14 +01:00
version = "0.38.34";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"; };
2023-09-28 23:41:44 +01:00
features = builtins.concatLists [
[ "alloc" ]
[ "default" ]
[ "fs" ]
2024-06-26 22:21:14 +01:00
[ "libc-extra-traits" ]
2023-09-28 23:41:44 +01:00
[ "std" ]
[ "use-libc-auxv" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
bitflags = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".bitflags."2.6.0" { inherit profileName; }).out;
${ if hostPlatform.parsed.kernel.name == "linux" && hostPlatform.parsed.cpu.significantByte == "littleEndian" && (hostPlatform.parsed.cpu.name == "armv6l" || hostPlatform.parsed.cpu.name == "armv7l" || hostPlatform.parsed.cpu.name == "aarch64" && hostPlatform.parsed.cpu.bits == 64 || hostPlatform.parsed.cpu.name == "riscv64" || hostPlatform.parsed.cpu.name == "i686" || hostPlatform.parsed.cpu.name == "x86_64" && hostPlatform.parsed.cpu.bits == 64) || !hostPlatform.isWindows && !(hostPlatform.parsed.kernel.name == "linux" && hostPlatform.parsed.cpu.significantByte == "littleEndian" && (hostPlatform.parsed.cpu.name == "armv6l" || hostPlatform.parsed.cpu.name == "armv7l" || hostPlatform.parsed.cpu.name == "aarch64" && hostPlatform.parsed.cpu.bits == 64 || hostPlatform.parsed.cpu.name == "riscv64" || hostPlatform.parsed.cpu.name == "i686" || hostPlatform.parsed.cpu.name == "x86_64" && hostPlatform.parsed.cpu.bits == 64)) || hostPlatform.isWindows then "libc_errno" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".errno."0.3.9" { inherit profileName; }).out;
${ if hostPlatform.parsed.kernel.name == "linux" && hostPlatform.parsed.cpu.significantByte == "littleEndian" && (hostPlatform.parsed.cpu.name == "armv6l" || hostPlatform.parsed.cpu.name == "armv7l" || hostPlatform.parsed.cpu.name == "aarch64" && hostPlatform.parsed.cpu.bits == 64 || hostPlatform.parsed.cpu.name == "riscv64" || hostPlatform.parsed.cpu.name == "i686" || hostPlatform.parsed.cpu.name == "x86_64" && hostPlatform.parsed.cpu.bits == 64) || !hostPlatform.isWindows && !(hostPlatform.parsed.kernel.name == "linux" && hostPlatform.parsed.cpu.significantByte == "littleEndian" && (hostPlatform.parsed.cpu.name == "armv6l" || hostPlatform.parsed.cpu.name == "armv7l" || hostPlatform.parsed.cpu.name == "aarch64" && hostPlatform.parsed.cpu.bits == 64 || hostPlatform.parsed.cpu.name == "riscv64" || hostPlatform.parsed.cpu.name == "i686" || hostPlatform.parsed.cpu.name == "x86_64" && hostPlatform.parsed.cpu.bits == 64)) then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
${ if hostPlatform.parsed.kernel.name == "linux" && hostPlatform.parsed.cpu.significantByte == "littleEndian" && (hostPlatform.parsed.cpu.name == "armv6l" || hostPlatform.parsed.cpu.name == "armv7l" || hostPlatform.parsed.cpu.name == "aarch64" && hostPlatform.parsed.cpu.bits == 64 || hostPlatform.parsed.cpu.name == "riscv64" || hostPlatform.parsed.cpu.name == "i686" || hostPlatform.parsed.cpu.name == "x86_64" && hostPlatform.parsed.cpu.bits == 64) || (hostPlatform.parsed.kernel.name == "android" || hostPlatform.parsed.kernel.name == "linux") && !(hostPlatform.parsed.kernel.name == "linux" && hostPlatform.parsed.cpu.significantByte == "littleEndian" && (hostPlatform.parsed.cpu.name == "armv6l" || hostPlatform.parsed.cpu.name == "armv7l" || hostPlatform.parsed.cpu.name == "aarch64" && hostPlatform.parsed.cpu.bits == 64 || hostPlatform.parsed.cpu.name == "riscv64" || hostPlatform.parsed.cpu.name == "i686" || hostPlatform.parsed.cpu.name == "x86_64" && hostPlatform.parsed.cpu.bits == 64)) then "linux_raw_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".linux-raw-sys."0.4.14" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
${ if hostPlatform.isWindows then "windows_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".rustls."0.23.12" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "rustls";
2024-07-27 11:22:21 +01:00
version = "0.23.12";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
2024-06-26 22:21:14 +01:00
[ "ring" ]
[ "std" ]
2023-09-24 10:41:54 +01:00
];
dependencies = {
2024-06-26 22:21:14 +01:00
once_cell = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".once_cell."1.19.0" { inherit profileName; }).out;
ring = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".ring."0.17.8" { inherit profileName; }).out;
pki_types = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls-pki-types."1.7.0" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
webpki = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls-webpki."0.102.6" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
subtle = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".subtle."2.6.1" { inherit profileName; }).out;
zeroize = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".zeroize."1.8.1" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".rustls-native-certs."0.7.1" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "rustls-native-certs";
2024-07-27 11:22:21 +01:00
version = "0.7.1";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "a88d6d420651b496bdd98684116959239430022a115c1240e6c3993be0b15fba"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-01-26 12:07:51 +00:00
${ if hostPlatform.isUnix && !(hostPlatform.parsed.kernel.name == "darwin") then "openssl_probe" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".openssl-probe."0.1.5" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
rustls_pemfile = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls-pemfile."2.1.2" { inherit profileName; }).out;
pki_types = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls-pki-types."1.7.0" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
${ if hostPlatform.isWindows then "schannel" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".schannel."0.1.23" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
${ if hostPlatform.parsed.kernel.name == "darwin" then "security_framework" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".security-framework."2.11.1" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".rustls-pemfile."2.1.2" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "rustls-pemfile";
2024-06-26 22:21:14 +01:00
version = "2.1.2";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"; };
features = builtins.concatLists [
[ "default" ]
[ "std" ]
];
2023-09-24 10:41:54 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
base64 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".base64."0.22.1" { inherit profileName; }).out;
pki_types = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls-pki-types."1.7.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".rustls-pki-types."1.7.0" = overridableMkRustCrate (profileName: rec {
name = "rustls-pki-types";
version = "1.7.0";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "alloc" ]
[ "default" ]
[ "std" ]
];
2024-06-26 22:21:14 +01:00
});
"registry+https://github.com/rust-lang/crates.io-index".rustls-platform-verifier."0.3.2" = overridableMkRustCrate (profileName: rec {
name = "rustls-platform-verifier";
version = "0.3.2";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "3e3beb939bcd33c269f4bf946cc829fcd336370267c4a927ac0399c84a3151a1"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
${ if hostPlatform.parsed.kernel.name == "darwin" || hostPlatform.parsed.kernel.name == "ios" || hostPlatform.parsed.kernel.name == "tvos" then "core_foundation" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".core-foundation."0.9.4" { inherit profileName; }).out;
${ if hostPlatform.parsed.kernel.name == "darwin" || hostPlatform.parsed.kernel.name == "ios" || hostPlatform.parsed.kernel.name == "tvos" then "core_foundation_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".core-foundation-sys."0.8.6" { inherit profileName; }).out;
${ if hostPlatform.parsed.kernel.name == "android" then "jni" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".jni."0.19.0" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
log = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".log."0.4.22" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
once_cell = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".once_cell."1.19.0" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
rustls = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls."0.23.12" { inherit profileName; }).out;
${ if hostPlatform.isUnix && !(hostPlatform.parsed.kernel.name == "android") && !(hostPlatform.parsed.kernel.name == "darwin") && !(hostPlatform.parsed.kernel.name == "ios") && !(hostPlatform.parsed.kernel.name == "tvos") && !(hostPlatform.parsed.cpu.name == "wasm32") then "rustls_native_certs" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls-native-certs."0.7.1" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
${ if hostPlatform.parsed.kernel.name == "android" then "rustls_platform_verifier_android" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls-platform-verifier-android."0.1.0" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
${ if hostPlatform.isUnix && !(hostPlatform.parsed.kernel.name == "android") && !(hostPlatform.parsed.kernel.name == "darwin") && !(hostPlatform.parsed.kernel.name == "ios") && !(hostPlatform.parsed.kernel.name == "tvos") && !(hostPlatform.parsed.cpu.name == "wasm32") || hostPlatform.parsed.kernel.name == "android" then "webpki" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls-webpki."0.102.6" { inherit profileName; }).out;
${ if hostPlatform.parsed.kernel.name == "darwin" || hostPlatform.parsed.kernel.name == "ios" || hostPlatform.parsed.kernel.name == "tvos" then "security_framework" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".security-framework."2.11.1" { inherit profileName; }).out;
${ if hostPlatform.parsed.kernel.name == "darwin" || hostPlatform.parsed.kernel.name == "ios" || hostPlatform.parsed.kernel.name == "tvos" then "security_framework_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".security-framework-sys."2.11.1" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
${ if hostPlatform.parsed.cpu.name == "wasm32" then "webpki_roots" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".webpki-roots."0.26.3" { inherit profileName; }).out;
${ if hostPlatform.isWindows then "winapi" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".winapi."0.3.9" { inherit profileName; }).out;
};
});
"registry+https://github.com/rust-lang/crates.io-index".rustls-platform-verifier-android."0.1.0" = overridableMkRustCrate (profileName: rec {
name = "rustls-platform-verifier-android";
version = "0.1.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "84e217e7fdc8466b5b35d30f8c0a30febd29173df4a3a0c2115d306b9c4117ad"; };
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".rustls-webpki."0.102.6" = overridableMkRustCrate (profileName: rec {
2024-06-26 22:21:14 +01:00
name = "rustls-webpki";
2024-07-27 11:22:21 +01:00
version = "0.102.6";
2024-06-26 22:21:14 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e"; };
2024-06-26 22:21:14 +01:00
features = builtins.concatLists [
[ "alloc" ]
[ "ring" ]
[ "std" ]
];
dependencies = {
ring = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".ring."0.17.8" { inherit profileName; }).out;
pki_types = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls-pki-types."1.7.0" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
untrusted = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".untrusted."0.9.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".same-file."1.0.6" = overridableMkRustCrate (profileName: rec {
name = "same-file";
version = "1.0.6";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"; };
dependencies = {
${ if hostPlatform.isWindows then "winapi_util" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".winapi-util."0.1.8" { inherit profileName; }).out;
};
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".schannel."0.1.23" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "schannel";
2024-01-26 12:07:51 +00:00
version = "0.1.23";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-01-26 12:07:51 +00:00
src = fetchCratesIo { inherit name version; sha256 = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-01-26 12:07:51 +00:00
windows_sys = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2023-09-28 23:41:44 +01:00
"registry+https://github.com/rust-lang/crates.io-index".scopeguard."1.2.0" = overridableMkRustCrate (profileName: rec {
name = "scopeguard";
version = "1.2.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"; };
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".security-framework."2.11.1" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "security-framework";
2024-07-27 11:22:21 +01:00
version = "2.11.1";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
2024-06-26 22:21:14 +01:00
[ "OSX_10_10" ]
[ "OSX_10_11" ]
[ "OSX_10_12" ]
[ "OSX_10_13" ]
[ "OSX_10_14" ]
2023-09-24 10:41:54 +01:00
[ "OSX_10_9" ]
2024-06-26 22:21:14 +01:00
[ "alpn" ]
2023-09-24 10:41:54 +01:00
[ "default" ]
2024-06-26 22:21:14 +01:00
[ "serial-number-bigint" ]
[ "session-tickets" ]
2023-09-24 10:41:54 +01:00
];
dependencies = {
2024-06-26 22:21:14 +01:00
bitflags = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".bitflags."2.6.0" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
core_foundation = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".core-foundation."0.9.4" { inherit profileName; }).out;
core_foundation_sys = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".core-foundation-sys."0.8.6" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
libc = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
num_bigint = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".num-bigint."0.4.6" { inherit profileName; }).out;
security_framework_sys = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".security-framework-sys."2.11.1" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".security-framework-sys."2.11.1" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "security-framework-sys";
2024-07-27 11:22:21 +01:00
version = "2.11.1";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
2024-06-26 22:21:14 +01:00
[ "OSX_10_10" ]
[ "OSX_10_11" ]
[ "OSX_10_12" ]
[ "OSX_10_13" ]
[ "OSX_10_14" ]
2023-09-24 10:41:54 +01:00
[ "OSX_10_9" ]
2024-06-26 22:21:14 +01:00
[ "default" ]
2023-09-24 10:41:54 +01:00
];
dependencies = {
2024-01-26 12:07:51 +00:00
core_foundation_sys = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".core-foundation-sys."0.8.6" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
libc = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".serde."1.0.204" = overridableMkRustCrate (profileName: rec {
2024-06-26 22:21:14 +01:00
name = "serde";
2024-07-27 11:22:21 +01:00
version = "1.0.204";
2024-06-26 22:21:14 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"; };
2024-06-26 22:21:14 +01:00
features = builtins.concatLists [
[ "alloc" ]
[ "std" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
${ if false then "serde_derive" else null } = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".serde_derive."1.0.204" { profileName = "__noProfile"; }).out;
2024-06-26 22:21:14 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".serde_derive."1.0.204" = overridableMkRustCrate (profileName: rec {
2024-06-26 22:21:14 +01:00
name = "serde_derive";
2024-07-27 11:22:21 +01:00
version = "1.0.204";
2024-06-26 22:21:14 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"; };
2024-06-26 22:21:14 +01:00
features = builtins.concatLists [
[ "default" ]
];
dependencies = {
proc_macro2 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".proc-macro2."1.0.86" { inherit profileName; }).out;
quote = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".quote."1.0.36" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
syn = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".syn."2.0.72" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2023-09-28 23:41:44 +01:00
"registry+https://github.com/rust-lang/crates.io-index".signal-hook."0.3.17" = overridableMkRustCrate (profileName: rec {
name = "signal-hook";
version = "0.3.17";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"; };
features = builtins.concatLists [
[ "channel" ]
[ "default" ]
[ "iterator" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
libc = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
signal_hook_registry = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".signal-hook-registry."1.4.2" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".signal-hook-registry."1.4.2" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "signal-hook-registry";
2024-06-26 22:21:14 +01:00
version = "1.4.2";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"; };
2023-09-28 23:41:44 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
libc = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2023-09-24 10:41:54 +01:00
"registry+https://github.com/rust-lang/crates.io-index".slab."0.4.9" = overridableMkRustCrate (profileName: rec {
name = "slab";
version = "0.4.9";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"; };
features = builtins.concatLists [
[ "default" ]
[ "std" ]
];
buildDependencies = {
2024-06-26 22:21:14 +01:00
autocfg = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".autocfg."1.3.0" { profileName = "__noProfile"; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".smallvec."1.13.2" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "smallvec";
2024-06-26 22:21:14 +01:00
version = "1.13.2";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"; };
2023-09-24 10:41:54 +01:00
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".socket2."0.5.7" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "socket2";
2024-06-26 22:21:14 +01:00
version = "0.5.7";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "all" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
${ if hostPlatform.isUnix then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
${ if hostPlatform.isWindows then "windows_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".spin."0.9.8" = overridableMkRustCrate (profileName: rec {
name = "spin";
version = "0.9.8";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"; };
features = builtins.concatLists [
[ "once" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".strsim."0.11.1" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "strsim";
2024-06-26 22:21:14 +01:00
version = "0.11.1";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"; };
2023-09-24 10:41:54 +01:00
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".subtle."2.6.1" = overridableMkRustCrate (profileName: rec {
name = "subtle";
version = "2.6.1";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"; };
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".syn."2.0.72" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "syn";
2024-07-27 11:22:21 +01:00
version = "2.0.72";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "clone-impls" ]
[ "default" ]
[ "derive" ]
[ "extra-traits" ]
[ "full" ]
[ "parsing" ]
[ "printing" ]
[ "proc-macro" ]
[ "visit-mut" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
proc_macro2 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".proc-macro2."1.0.86" { inherit profileName; }).out;
quote = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".quote."1.0.36" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
unicode_ident = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".unicode-ident."1.0.12" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".tempfile."3.10.1" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "tempfile";
2024-06-26 22:21:14 +01:00
version = "3.10.1";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"; };
2023-09-28 23:41:44 +01:00
dependencies = {
2024-01-26 12:07:51 +00:00
cfg_if = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".cfg-if."1.0.0" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
fastrand = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".fastrand."2.1.0" { inherit profileName; }).out;
${ if hostPlatform.isUnix || hostPlatform.parsed.kernel.name == "wasi" then "rustix" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustix."0.38.34" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
${ if hostPlatform.isWindows then "windows_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".thiserror."1.0.63" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "thiserror";
2024-07-27 11:22:21 +01:00
version = "1.0.63";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-07-27 11:22:21 +01:00
thiserror_impl = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".thiserror-impl."1.0.63" { profileName = "__noProfile"; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".thiserror-impl."1.0.63" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "thiserror-impl";
2024-07-27 11:22:21 +01:00
version = "1.0.63";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
proc_macro2 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".proc-macro2."1.0.86" { inherit profileName; }).out;
quote = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".quote."1.0.36" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
syn = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".syn."2.0.72" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".time."0.3.36" = overridableMkRustCrate (profileName: rec {
name = "time";
version = "0.3.36";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"; };
features = builtins.concatLists [
[ "alloc" ]
[ "std" ]
];
dependencies = {
deranged = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".deranged."0.3.11" { inherit profileName; }).out;
num_conv = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".num-conv."0.1.0" { inherit profileName; }).out;
powerfmt = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".powerfmt."0.2.0" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
serde = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".serde."1.0.204" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
time_core = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".time-core."0.1.2" { inherit profileName; }).out;
};
});
"registry+https://github.com/rust-lang/crates.io-index".time-core."0.1.2" = overridableMkRustCrate (profileName: rec {
name = "time-core";
version = "0.1.2";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"; };
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".tinyvec."1.8.0" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "tinyvec";
2024-07-27 11:22:21 +01:00
version = "1.8.0";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "alloc" ]
[ "default" ]
[ "tinyvec_macros" ]
];
dependencies = {
2024-01-26 12:07:51 +00:00
tinyvec_macros = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".tinyvec_macros."0.1.1" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
"registry+https://github.com/rust-lang/crates.io-index".tinyvec_macros."0.1.1" = overridableMkRustCrate (profileName: rec {
name = "tinyvec_macros";
version = "0.1.1";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"; };
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".tokio."1.39.1" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "tokio";
2024-07-27 11:22:21 +01:00
version = "1.39.1";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "d040ac2b29ab03b09d4129c2f5bbd012a3ac2f79d38ff506a4bf8dd34b0eac8a"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
2023-09-28 23:41:44 +01:00
[ "bytes" ]
2023-09-24 10:41:54 +01:00
[ "default" ]
2023-09-28 23:41:44 +01:00
[ "fs" ]
[ "full" ]
[ "io-std" ]
[ "io-util" ]
2023-09-24 10:41:54 +01:00
[ "libc" ]
2023-09-28 23:41:44 +01:00
[ "macros" ]
2023-09-24 10:41:54 +01:00
[ "mio" ]
[ "net" ]
2023-09-28 23:41:44 +01:00
[ "parking_lot" ]
[ "process" ]
2023-09-24 10:41:54 +01:00
[ "rt" ]
2023-09-28 23:41:44 +01:00
[ "rt-multi-thread" ]
[ "signal" ]
[ "signal-hook-registry" ]
2023-09-24 10:41:54 +01:00
[ "socket2" ]
[ "sync" ]
[ "time" ]
2023-09-28 23:41:44 +01:00
[ "tokio-macros" ]
2023-09-24 10:41:54 +01:00
[ "windows-sys" ]
];
dependencies = {
2024-06-26 22:21:14 +01:00
${ if false then "backtrace" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".backtrace."0.3.73" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
bytes = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".bytes."1.6.1" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
${ if hostPlatform.isUnix then "libc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".libc."0.2.155" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
mio = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".mio."1.0.1" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
parking_lot = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".parking_lot."0.12.3" { inherit profileName; }).out;
pin_project_lite = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".pin-project-lite."0.2.14" { inherit profileName; }).out;
${ if hostPlatform.isUnix then "signal_hook_registry" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".signal-hook-registry."1.4.2" { inherit profileName; }).out;
socket2 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".socket2."0.5.7" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
tokio_macros = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".tokio-macros."2.4.0" { profileName = "__noProfile"; }).out;
${ if hostPlatform.isWindows then "windows_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".tokio-macros."2.4.0" = overridableMkRustCrate (profileName: rec {
2023-09-28 23:41:44 +01:00
name = "tokio-macros";
2024-07-27 11:22:21 +01:00
version = "2.4.0";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"; };
2023-09-28 23:41:44 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
proc_macro2 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".proc-macro2."1.0.86" { inherit profileName; }).out;
quote = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".quote."1.0.36" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
syn = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".syn."2.0.72" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".tracing."0.1.40" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "tracing";
2024-01-26 12:07:51 +00:00
version = "0.1.40";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-01-26 12:07:51 +00:00
src = fetchCratesIo { inherit name version; sha256 = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "attributes" ]
[ "default" ]
[ "log" ]
[ "std" ]
[ "tracing-attributes" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
log = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".log."0.4.22" { inherit profileName; }).out;
2024-06-26 22:21:14 +01:00
pin_project_lite = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".pin-project-lite."0.2.14" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
tracing_attributes = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".tracing-attributes."0.1.27" { profileName = "__noProfile"; }).out;
tracing_core = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".tracing-core."0.1.32" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".tracing-attributes."0.1.27" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "tracing-attributes";
2024-01-26 12:07:51 +00:00
version = "0.1.27";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-01-26 12:07:51 +00:00
src = fetchCratesIo { inherit name version; sha256 = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
proc_macro2 = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".proc-macro2."1.0.86" { inherit profileName; }).out;
quote = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".quote."1.0.36" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
syn = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".syn."2.0.72" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".tracing-core."0.1.32" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "tracing-core";
2024-01-26 12:07:51 +00:00
version = "0.1.32";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-01-26 12:07:51 +00:00
src = fetchCratesIo { inherit name version; sha256 = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "once_cell" ]
[ "std" ]
];
dependencies = {
2024-01-26 12:07:51 +00:00
once_cell = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".once_cell."1.19.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
"registry+https://github.com/rust-lang/crates.io-index".unicode-ident."1.0.12" = overridableMkRustCrate (profileName: rec {
name = "unicode-ident";
version = "1.0.12";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"; };
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".untrusted."0.9.0" = overridableMkRustCrate (profileName: rec {
name = "untrusted";
version = "0.9.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"; };
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".utf8parse."0.2.2" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "utf8parse";
2024-06-26 22:21:14 +01:00
version = "0.2.2";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
[ "default" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".walkdir."2.5.0" = overridableMkRustCrate (profileName: rec {
name = "walkdir";
version = "2.5.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"; };
dependencies = {
same_file = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".same-file."1.0.6" { inherit profileName; }).out;
${ if hostPlatform.isWindows then "winapi_util" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".winapi-util."0.1.8" { inherit profileName; }).out;
};
});
2023-09-24 10:41:54 +01:00
"registry+https://github.com/rust-lang/crates.io-index".wasi."0.11.0+wasi-snapshot-preview1" = overridableMkRustCrate (profileName: rec {
name = "wasi";
version = "0.11.0+wasi-snapshot-preview1";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"; };
features = builtins.concatLists [
[ "default" ]
[ "std" ]
];
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".webpki-roots."0.26.3" = overridableMkRustCrate (profileName: rec {
name = "webpki-roots";
version = "0.26.3";
2023-09-28 23:41:44 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd"; };
2023-09-28 23:41:44 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
pki_types = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".rustls-pki-types."1.7.0" { inherit profileName; }).out;
2023-09-28 23:41:44 +01:00
};
});
2023-09-24 10:41:54 +01:00
"registry+https://github.com/rust-lang/crates.io-index".winapi."0.3.9" = overridableMkRustCrate (profileName: rec {
name = "winapi";
version = "0.3.9";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"; };
features = builtins.concatLists [
2024-01-26 12:07:51 +00:00
(lib.optional (rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default") "sysinfoapi")
2024-06-26 22:21:14 +01:00
[ "wincrypt" ]
[ "winerror" ]
2023-09-24 10:41:54 +01:00
];
dependencies = {
2024-01-26 12:07:51 +00:00
${ if hostPlatform.config == "i686-pc-windows-gnu" then "winapi_i686_pc_windows_gnu" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".winapi-i686-pc-windows-gnu."0.4.0" { inherit profileName; }).out;
${ if hostPlatform.config == "x86_64-pc-windows-gnu" then "winapi_x86_64_pc_windows_gnu" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".winapi-x86_64-pc-windows-gnu."0.4.0" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
"registry+https://github.com/rust-lang/crates.io-index".winapi-i686-pc-windows-gnu."0.4.0" = overridableMkRustCrate (profileName: rec {
name = "winapi-i686-pc-windows-gnu";
version = "0.4.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"; };
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".winapi-util."0.1.8" = overridableMkRustCrate (profileName: rec {
name = "winapi-util";
version = "0.1.8";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"; };
dependencies = {
${ if hostPlatform.isWindows then "windows_sys" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" { inherit profileName; }).out;
};
});
2023-09-24 10:41:54 +01:00
"registry+https://github.com/rust-lang/crates.io-index".winapi-x86_64-pc-windows-gnu."0.4.0" = overridableMkRustCrate (profileName: rec {
name = "winapi-x86_64-pc-windows-gnu";
version = "0.4.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"; };
});
2024-01-26 12:07:51 +00:00
"registry+https://github.com/rust-lang/crates.io-index".windows-sys."0.52.0" = overridableMkRustCrate (profileName: rec {
name = "windows-sys";
version = "0.52.0";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"; };
2023-09-24 10:41:54 +01:00
features = builtins.concatLists [
2024-07-27 11:22:21 +01:00
[ "Wdk" ]
[ "Wdk_Foundation" ]
[ "Wdk_Storage" ]
[ "Wdk_Storage_FileSystem" ]
[ "Wdk_System" ]
[ "Wdk_System_IO" ]
2023-09-24 10:41:54 +01:00
[ "Win32" ]
[ "Win32_Foundation" ]
2023-09-28 23:41:44 +01:00
[ "Win32_NetworkManagement" ]
[ "Win32_NetworkManagement_IpHelper" ]
2023-09-24 10:41:54 +01:00
[ "Win32_Networking" ]
[ "Win32_Networking_WinSock" ]
[ "Win32_Security" ]
[ "Win32_Security_Authentication" ]
[ "Win32_Security_Authentication_Identity" ]
[ "Win32_Security_Credentials" ]
[ "Win32_Security_Cryptography" ]
[ "Win32_Storage" ]
[ "Win32_Storage_FileSystem" ]
[ "Win32_System" ]
[ "Win32_System_Console" ]
2023-09-28 23:41:44 +01:00
[ "Win32_System_Diagnostics" ]
[ "Win32_System_Diagnostics_Debug" ]
2024-06-26 22:21:14 +01:00
[ "Win32_System_IO" ]
2023-09-24 10:41:54 +01:00
[ "Win32_System_Memory" ]
2024-07-27 11:22:21 +01:00
[ "Win32_System_Pipes" ]
2024-06-26 22:21:14 +01:00
[ "Win32_System_SystemInformation" ]
2024-07-27 11:22:21 +01:00
[ "Win32_System_SystemServices" ]
2023-09-24 10:41:54 +01:00
[ "Win32_System_Threading" ]
2024-06-26 22:21:14 +01:00
[ "Win32_System_WindowsProgramming" ]
2023-09-24 10:41:54 +01:00
[ "default" ]
];
dependencies = {
2024-07-27 11:22:21 +01:00
windows_targets = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows-targets."0.52.6" { inherit profileName; }).out;
2024-01-26 12:07:51 +00:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".windows-targets."0.52.6" = overridableMkRustCrate (profileName: rec {
2024-01-26 12:07:51 +00:00
name = "windows-targets";
2024-07-27 11:22:21 +01:00
version = "0.52.6";
2024-01-26 12:07:51 +00:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"; };
2024-01-26 12:07:51 +00:00
dependencies = {
2024-07-27 11:22:21 +01:00
${ if hostPlatform.config == "aarch64-pc-windows-gnullvm" then "windows_aarch64_gnullvm" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_aarch64_gnullvm."0.52.6" { inherit profileName; }).out;
${ if hostPlatform.parsed.cpu.name == "aarch64" && hostPlatform.parsed.abi.name == "msvc" then "windows_aarch64_msvc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_aarch64_msvc."0.52.6" { inherit profileName; }).out;
${ if hostPlatform.parsed.cpu.name == "i686" && hostPlatform.parsed.abi.name == "gnu" then "windows_i686_gnu" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_i686_gnu."0.52.6" { inherit profileName; }).out;
${ if hostPlatform.config == "i686-pc-windows-gnullvm" then "windows_i686_gnullvm" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_i686_gnullvm."0.52.6" { inherit profileName; }).out;
${ if hostPlatform.parsed.cpu.name == "i686" && hostPlatform.parsed.abi.name == "msvc" then "windows_i686_msvc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_i686_msvc."0.52.6" { inherit profileName; }).out;
${ if hostPlatform.parsed.cpu.name == "x86_64" && hostPlatform.parsed.abi.name == "gnu" then "windows_x86_64_gnu" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_x86_64_gnu."0.52.6" { inherit profileName; }).out;
${ if hostPlatform.config == "x86_64-pc-windows-gnullvm" then "windows_x86_64_gnullvm" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_x86_64_gnullvm."0.52.6" { inherit profileName; }).out;
${ if (hostPlatform.parsed.cpu.name == "x86_64" || hostPlatform.parsed.cpu.name == "arm64ec") && hostPlatform.parsed.abi.name == "msvc" then "windows_x86_64_msvc" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".windows_x86_64_msvc."0.52.6" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".windows_aarch64_gnullvm."0.52.6" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "windows_aarch64_gnullvm";
2024-07-27 11:22:21 +01:00
version = "0.52.6";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"; };
2023-09-24 10:41:54 +01:00
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".windows_aarch64_msvc."0.52.6" = overridableMkRustCrate (profileName: rec {
2024-01-26 12:07:51 +00:00
name = "windows_aarch64_msvc";
2024-07-27 11:22:21 +01:00
version = "0.52.6";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"; };
2023-09-24 10:41:54 +01:00
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".windows_i686_gnu."0.52.6" = overridableMkRustCrate (profileName: rec {
2024-01-26 12:07:51 +00:00
name = "windows_i686_gnu";
2024-07-27 11:22:21 +01:00
version = "0.52.6";
2024-01-26 12:07:51 +00:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"; };
2024-06-26 22:21:14 +01:00
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".windows_i686_gnullvm."0.52.6" = overridableMkRustCrate (profileName: rec {
2024-06-26 22:21:14 +01:00
name = "windows_i686_gnullvm";
2024-07-27 11:22:21 +01:00
version = "0.52.6";
2024-06-26 22:21:14 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"; };
2024-01-26 12:07:51 +00:00
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".windows_i686_msvc."0.52.6" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "windows_i686_msvc";
2024-07-27 11:22:21 +01:00
version = "0.52.6";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"; };
2023-09-24 10:41:54 +01:00
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".windows_x86_64_gnu."0.52.6" = overridableMkRustCrate (profileName: rec {
2024-01-26 12:07:51 +00:00
name = "windows_x86_64_gnu";
2024-07-27 11:22:21 +01:00
version = "0.52.6";
2024-01-26 12:07:51 +00:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"; };
2024-01-26 12:07:51 +00:00
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".windows_x86_64_gnullvm."0.52.6" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "windows_x86_64_gnullvm";
2024-07-27 11:22:21 +01:00
version = "0.52.6";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"; };
2023-09-24 10:41:54 +01:00
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".windows_x86_64_msvc."0.52.6" = overridableMkRustCrate (profileName: rec {
2024-01-26 12:07:51 +00:00
name = "windows_x86_64_msvc";
2024-07-27 11:22:21 +01:00
version = "0.52.6";
2024-06-26 22:21:14 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"; };
2024-06-26 22:21:14 +01:00
});
"registry+https://github.com/rust-lang/crates.io-index".yasna."0.5.2" = overridableMkRustCrate (profileName: rec {
name = "yasna";
version = "0.5.2";
2024-01-26 12:07:51 +00:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-06-26 22:21:14 +01:00
src = fetchCratesIo { inherit name version; sha256 = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"; };
features = builtins.concatLists [
[ "default" ]
[ "std" ]
[ "time" ]
];
dependencies = {
time = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".time."0.3.36" { inherit profileName; }).out;
};
2024-01-26 12:07:51 +00:00
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".zerocopy."0.7.35" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "zerocopy";
2024-07-27 11:22:21 +01:00
version = "0.7.35";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"; };
2024-01-26 12:07:51 +00:00
features = builtins.concatLists [
(lib.optional (rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default") "byteorder")
(lib.optional (rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default") "default")
(lib.optional (rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default") "derive")
(lib.optional (rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default") "zerocopy-derive")
];
2023-09-24 10:41:54 +01:00
dependencies = {
2024-01-26 12:07:51 +00:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "byteorder" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".byteorder."1.5.0" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "zerocopy_derive" else null } = (buildRustPackages."registry+https://github.com/rust-lang/crates.io-index".zerocopy-derive."0.7.35" { profileName = "__noProfile"; }).out;
2023-09-24 10:41:54 +01:00
};
});
2024-07-27 11:22:21 +01:00
"registry+https://github.com/rust-lang/crates.io-index".zerocopy-derive."0.7.35" = overridableMkRustCrate (profileName: rec {
2023-09-24 10:41:54 +01:00
name = "zerocopy-derive";
2024-07-27 11:22:21 +01:00
version = "0.7.35";
2023-09-24 10:41:54 +01:00
registry = "registry+https://github.com/rust-lang/crates.io-index";
2024-07-27 11:22:21 +01:00
src = fetchCratesIo { inherit name version; sha256 = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"; };
2023-09-24 10:41:54 +01:00
dependencies = {
2024-06-26 22:21:14 +01:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "proc_macro2" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".proc-macro2."1.0.86" { inherit profileName; }).out;
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "quote" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".quote."1.0.36" { inherit profileName; }).out;
2024-07-27 11:22:21 +01:00
${ if rootFeatures' ? "quicfs/client" || rootFeatures' ? "quicfs/default" then "syn" else null } = (rustPackages."registry+https://github.com/rust-lang/crates.io-index".syn."2.0.72" { inherit profileName; }).out;
2023-09-24 10:41:54 +01:00
};
2023-09-21 12:17:01 +01:00
});
2024-06-26 22:21:14 +01:00
"registry+https://github.com/rust-lang/crates.io-index".zeroize."1.8.1" = overridableMkRustCrate (profileName: rec {
name = "zeroize";
version = "1.8.1";
registry = "registry+https://github.com/rust-lang/crates.io-index";
src = fetchCratesIo { inherit name version; sha256 = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"; };
features = builtins.concatLists [
[ "alloc" ]
[ "default" ]
];
});
2023-09-21 12:17:01 +01:00
}