Merge master into staging-next

Changed files
+156 -2199
pkgs
applications
editors
vim
plugins
non-generated
avante-nvim
vscode
extensions
by-name
av
avbroot
bu
bulloak
cp
cpu-x
da
daytona-bin
de
fi
files-cli
gr
grafana-loki
gu
ha
hamrs-pro
lu
luau-lsp
no
notion-app
qi
qir-runner
ty
typstyle
un
unstructured-api
ux
uxplay
wk
wkhtmltopdf
wx
wxGTK32
ze
zenn-cli
development
compilers
swift
compiler
python-modules
chart-studio
cx-freeze
huggingface-hub
llama-cpp-python
plotly
pymilvus
transformers
tritonclient
vl-convert-python
wandb
rocm-modules
6
top-level
+4 -4
pkgs/applications/editors/vim/plugins/non-generated/avante-nvim/default.nix
···
pkgs,
}:
let
-
version = "0.0.25-unstable-2025-07-02";
+
version = "0.0.25-unstable-2025-07-11";
src = fetchFromGitHub {
owner = "yetone";
repo = "avante.nvim";
-
rev = "6bbf3d2004133252cd0e2d057add5c1431dc8511";
-
hash = "sha256-xHYogeovrd2n7oZB935ma2qwqhfu0eEDieQv5j5d9dQ=";
+
rev = "c4ce24e3c047c3283652aeb9a16114603d6f705c";
+
hash = "sha256-ILOISh3+bfN1dEz1BN4+iZ2WJzmt0++QVZUjp24ZjNI=";
};
avante-nvim-lib = rustPlatform.buildRustPackage {
pname = "avante-nvim-lib";
inherit version src;
useFetchCargoVendor = true;
-
cargoHash = "sha256-pmnMoNdaIR0i+4kwW3cf01vDQo39QakTCEG9AXA86ck=";
+
cargoHash = "sha256-8mBpzndz34RrmhJYezd4hLrJyhVL4S4IHK3plaue1k8=";
nativeBuildInputs = [
pkg-config
+3 -3
pkgs/applications/editors/vscode/extensions/default.nix
···
publisher = "Continue";
version = "1.1.49";
-
// sources.${stdenv.system};
+
// sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ autoPatchelfHook ];
buildInputs = [ (lib.getLib stdenv.cc.cc) ];
meta = {
···
publisher = "devsense";
version = "1.41.14332";
-
// sources.${stdenv.system};
+
// sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
nativeBuildInputs = [ autoPatchelfHook ];
···
publisher = "ms-dotnettools";
version = "2.2.3";
-
// sources.${stdenv.system};
+
// sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ autoPatchelfHook ];
buildInputs = [
(lib.getLib stdenv.cc.cc)
+3 -3
pkgs/by-name/av/avbroot/package.nix
···
rustPlatform.buildRustPackage rec {
pname = "avbroot";
-
version = "3.17.1";
+
version = "3.17.2";
src = fetchFromGitHub {
owner = "chenxiaolong";
repo = "avbroot";
tag = "v${version}";
-
hash = "sha256-W+ElIKi1WrjxBEEGWcR4MkjlJwdQFBiI09gvks4Pfr8=";
+
hash = "sha256-7/EW547UCyuKxp8JYWxg9qIr3p4CfA0RKxJuEify6DU=";
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-t9cOFl3gtQ6cn+6xlMf4IOA3S6md/9D83w9L9dPgBMU=";
+
cargoHash = "sha256-eId/2+U34WxfniJe+oVv49zvMkjoo3ZM8Sna7bKnjKA=";
nativeBuildInputs = [
pkg-config
+3 -1
pkgs/by-name/bu/bulloak/package.nix
···
doCheck = false;
# provide the list of solc versions to the `svm-rs-builds` dependency
-
SVM_RELEASES_LIST_JSON = solc-versions.${stdenv.hostPlatform.system};
+
SVM_RELEASES_LIST_JSON =
+
solc-versions.${stdenv.hostPlatform.system}
+
or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
meta = {
description = "Solidity test generator based on the Branching Tree Technique";
+3 -3
pkgs/by-name/cp/cpu-x/package.nix
···
stdenv.mkDerivation (finalAttrs: {
pname = "cpu-x";
-
version = "5.3.0";
+
version = "5.3.1";
src = fetchFromGitHub {
-
owner = "X0rg";
+
owner = "TheTumultuousUnicornOfDarkness";
repo = "CPU-X";
tag = "v${finalAttrs.version}";
-
hash = "sha256-UOOqPkOXsyZthreg0Fv/KMJcm0Syd7/Uni9G3H6UJ2E=";
+
hash = "sha256-yrDTvOdMeUw2fxLtNjCZggs9M9P1YKeMxm/dI5MRyYQ=";
};
nativeBuildInputs = [
+4 -1
pkgs/by-name/da/daytona-bin/package.nix
···
};
};
in
-
fetchurl urls."${stdenvNoCC.hostPlatform.system}";
+
fetchurl (
+
urls."${stdenvNoCC.hostPlatform.system}"
+
or (throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}")
+
);
dontUnpack = true;
-1875
pkgs/by-name/de/degit-rs/Cargo.lock
···
-
# This file is automatically @generated by Cargo.
-
# It is not intended for manual editing.
-
version = 3
-
-
[[package]]
-
name = "addr2line"
-
version = "0.24.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
-
dependencies = [
-
"gimli",
-
]
-
-
[[package]]
-
name = "adler2"
-
version = "2.0.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
-
-
[[package]]
-
name = "aho-corasick"
-
version = "1.1.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
-
dependencies = [
-
"memchr",
-
]
-
-
[[package]]
-
name = "ansi_term"
-
version = "0.12.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
-
dependencies = [
-
"winapi 0.3.9",
-
]
-
-
[[package]]
-
name = "atty"
-
version = "0.2.14"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
-
dependencies = [
-
"hermit-abi 0.1.19",
-
"libc",
-
"winapi 0.3.9",
-
]
-
-
[[package]]
-
name = "autocfg"
-
version = "0.1.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78"
-
dependencies = [
-
"autocfg 1.4.0",
-
]
-
-
[[package]]
-
name = "autocfg"
-
version = "1.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
-
-
[[package]]
-
name = "backtrace"
-
version = "0.3.74"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
-
dependencies = [
-
"addr2line",
-
"cfg-if 1.0.0",
-
"libc",
-
"miniz_oxide",
-
"object",
-
"rustc-demangle",
-
"windows-targets",
-
]
-
-
[[package]]
-
name = "base64"
-
version = "0.10.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e"
-
dependencies = [
-
"byteorder",
-
]
-
-
[[package]]
-
name = "bitflags"
-
version = "1.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
-
-
[[package]]
-
name = "bitflags"
-
version = "2.6.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
-
-
[[package]]
-
name = "byteorder"
-
version = "1.5.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
-
-
[[package]]
-
name = "bytes"
-
version = "0.4.12"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
-
dependencies = [
-
"byteorder",
-
"either",
-
"iovec",
-
]
-
-
[[package]]
-
name = "cc"
-
version = "1.1.31"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c2e7962b54006dcfcc61cb72735f4d89bb97061dd6a7ed882ec6b8ee53714c6f"
-
dependencies = [
-
"shlex",
-
]
-
-
[[package]]
-
name = "cfg-if"
-
version = "0.1.10"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
-
-
[[package]]
-
name = "cfg-if"
-
version = "1.0.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
-
-
[[package]]
-
name = "clap"
-
version = "2.34.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
-
dependencies = [
-
"ansi_term",
-
"atty",
-
"bitflags 1.3.2",
-
"strsim",
-
"textwrap",
-
"unicode-width",
-
"vec_map",
-
]
-
-
[[package]]
-
name = "cloudabi"
-
version = "0.0.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
-
dependencies = [
-
"bitflags 1.3.2",
-
]
-
-
[[package]]
-
name = "colored"
-
version = "1.9.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5a5f741c91823341bebf717d4c71bda820630ce065443b58bd1b7451af008355"
-
dependencies = [
-
"is-terminal",
-
"lazy_static",
-
"winapi 0.3.9",
-
]
-
-
[[package]]
-
name = "console"
-
version = "0.15.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
-
dependencies = [
-
"encode_unicode",
-
"lazy_static",
-
"libc",
-
"unicode-width",
-
"windows-sys 0.52.0",
-
]
-
-
[[package]]
-
name = "cookie"
-
version = "0.12.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5"
-
dependencies = [
-
"time",
-
"url 1.7.2",
-
]
-
-
[[package]]
-
name = "cookie_store"
-
version = "0.7.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c"
-
dependencies = [
-
"cookie",
-
"failure",
-
"idna 0.1.5",
-
"log",
-
"publicsuffix",
-
"serde",
-
"serde_json",
-
"time",
-
"try_from",
-
"url 1.7.2",
-
]
-
-
[[package]]
-
name = "core-foundation"
-
version = "0.9.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
-
dependencies = [
-
"core-foundation-sys",
-
"libc",
-
]
-
-
[[package]]
-
name = "core-foundation-sys"
-
version = "0.8.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
-
-
[[package]]
-
name = "crc32fast"
-
version = "1.4.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
-
dependencies = [
-
"cfg-if 1.0.0",
-
]
-
-
[[package]]
-
name = "crossbeam-deque"
-
version = "0.7.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed"
-
dependencies = [
-
"crossbeam-epoch",
-
"crossbeam-utils",
-
"maybe-uninit",
-
]
-
-
[[package]]
-
name = "crossbeam-epoch"
-
version = "0.8.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
-
dependencies = [
-
"autocfg 1.4.0",
-
"cfg-if 0.1.10",
-
"crossbeam-utils",
-
"lazy_static",
-
"maybe-uninit",
-
"memoffset",
-
"scopeguard",
-
]
-
-
[[package]]
-
name = "crossbeam-queue"
-
version = "0.2.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
-
dependencies = [
-
"cfg-if 0.1.10",
-
"crossbeam-utils",
-
"maybe-uninit",
-
]
-
-
[[package]]
-
name = "crossbeam-utils"
-
version = "0.7.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
-
dependencies = [
-
"autocfg 1.4.0",
-
"cfg-if 0.1.10",
-
"lazy_static",
-
]
-
-
[[package]]
-
name = "degit"
-
version = "0.1.3"
-
dependencies = [
-
"clap",
-
"colored",
-
"flate2",
-
"indicatif",
-
"regex",
-
"reqwest",
-
"tar",
-
]
-
-
[[package]]
-
name = "dtoa"
-
version = "0.4.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
-
-
[[package]]
-
name = "either"
-
version = "1.13.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
-
-
[[package]]
-
name = "encode_unicode"
-
version = "0.3.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
-
-
[[package]]
-
name = "encoding_rs"
-
version = "0.8.35"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
-
dependencies = [
-
"cfg-if 1.0.0",
-
]
-
-
[[package]]
-
name = "errno"
-
version = "0.3.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
-
dependencies = [
-
"libc",
-
"windows-sys 0.52.0",
-
]
-
-
[[package]]
-
name = "failure"
-
version = "0.1.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
-
dependencies = [
-
"backtrace",
-
"failure_derive",
-
]
-
-
[[package]]
-
name = "failure_derive"
-
version = "0.1.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn 1.0.109",
-
"synstructure",
-
]
-
-
[[package]]
-
name = "fastrand"
-
version = "2.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6"
-
-
[[package]]
-
name = "filetime"
-
version = "0.2.25"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"libc",
-
"libredox",
-
"windows-sys 0.59.0",
-
]
-
-
[[package]]
-
name = "flate2"
-
version = "1.0.34"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a1b589b4dc103969ad3cf85c950899926ec64300a1a46d76c03a6072957036f0"
-
dependencies = [
-
"crc32fast",
-
"miniz_oxide",
-
]
-
-
[[package]]
-
name = "fnv"
-
version = "1.0.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
-
-
[[package]]
-
name = "foreign-types"
-
version = "0.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
-
dependencies = [
-
"foreign-types-shared",
-
]
-
-
[[package]]
-
name = "foreign-types-shared"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
-
-
[[package]]
-
name = "form_urlencoded"
-
version = "1.2.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
-
dependencies = [
-
"percent-encoding 2.3.1",
-
]
-
-
[[package]]
-
name = "fuchsia-cprng"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
-
-
[[package]]
-
name = "fuchsia-zircon"
-
version = "0.3.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
-
dependencies = [
-
"bitflags 1.3.2",
-
"fuchsia-zircon-sys",
-
]
-
-
[[package]]
-
name = "fuchsia-zircon-sys"
-
version = "0.3.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
-
-
[[package]]
-
name = "futures"
-
version = "0.1.31"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"
-
-
[[package]]
-
name = "futures-cpupool"
-
version = "0.1.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4"
-
dependencies = [
-
"futures",
-
"num_cpus",
-
]
-
-
[[package]]
-
name = "gimli"
-
version = "0.31.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
-
-
[[package]]
-
name = "h2"
-
version = "0.1.26"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462"
-
dependencies = [
-
"byteorder",
-
"bytes",
-
"fnv",
-
"futures",
-
"http",
-
"indexmap",
-
"log",
-
"slab",
-
"string",
-
"tokio-io",
-
]
-
-
[[package]]
-
name = "hashbrown"
-
version = "0.12.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
-
-
[[package]]
-
name = "hermit-abi"
-
version = "0.1.19"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "hermit-abi"
-
version = "0.3.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
-
-
[[package]]
-
name = "hermit-abi"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
-
-
[[package]]
-
name = "http"
-
version = "0.1.21"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0"
-
dependencies = [
-
"bytes",
-
"fnv",
-
"itoa 0.4.8",
-
]
-
-
[[package]]
-
name = "http-body"
-
version = "0.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d"
-
dependencies = [
-
"bytes",
-
"futures",
-
"http",
-
"tokio-buf",
-
]
-
-
[[package]]
-
name = "httparse"
-
version = "1.9.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
-
-
[[package]]
-
name = "hyper"
-
version = "0.12.36"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5c843caf6296fc1f93444735205af9ed4e109a539005abb2564ae1d6fad34c52"
-
dependencies = [
-
"bytes",
-
"futures",
-
"futures-cpupool",
-
"h2",
-
"http",
-
"http-body",
-
"httparse",
-
"iovec",
-
"itoa 0.4.8",
-
"log",
-
"net2",
-
"rustc_version",
-
"time",
-
"tokio",
-
"tokio-buf",
-
"tokio-executor",
-
"tokio-io",
-
"tokio-reactor",
-
"tokio-tcp",
-
"tokio-threadpool",
-
"tokio-timer",
-
"want",
-
]
-
-
[[package]]
-
name = "hyper-tls"
-
version = "0.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f"
-
dependencies = [
-
"bytes",
-
"futures",
-
"hyper",
-
"native-tls",
-
"tokio-io",
-
]
-
-
[[package]]
-
name = "idna"
-
version = "0.1.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e"
-
dependencies = [
-
"matches",
-
"unicode-bidi",
-
"unicode-normalization",
-
]
-
-
[[package]]
-
name = "idna"
-
version = "0.2.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
-
dependencies = [
-
"matches",
-
"unicode-bidi",
-
"unicode-normalization",
-
]
-
-
[[package]]
-
name = "idna"
-
version = "0.5.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
-
dependencies = [
-
"unicode-bidi",
-
"unicode-normalization",
-
]
-
-
[[package]]
-
name = "indexmap"
-
version = "1.9.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
-
dependencies = [
-
"autocfg 1.4.0",
-
"hashbrown",
-
]
-
-
[[package]]
-
name = "indicatif"
-
version = "0.11.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2c60da1c9abea75996b70a931bba6c750730399005b61ccd853cee50ef3d0d0c"
-
dependencies = [
-
"console",
-
"lazy_static",
-
"number_prefix",
-
"parking_lot 0.12.3",
-
"regex",
-
]
-
-
[[package]]
-
name = "iovec"
-
version = "0.1.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "is-terminal"
-
version = "0.4.13"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
-
dependencies = [
-
"hermit-abi 0.4.0",
-
"libc",
-
"windows-sys 0.52.0",
-
]
-
-
[[package]]
-
name = "itoa"
-
version = "0.4.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
-
-
[[package]]
-
name = "itoa"
-
version = "1.0.11"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
-
-
[[package]]
-
name = "kernel32-sys"
-
version = "0.2.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
-
dependencies = [
-
"winapi 0.2.8",
-
"winapi-build",
-
]
-
-
[[package]]
-
name = "lazy_static"
-
version = "1.5.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
-
-
[[package]]
-
name = "libc"
-
version = "0.2.161"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
-
-
[[package]]
-
name = "libredox"
-
version = "0.1.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
-
dependencies = [
-
"bitflags 2.6.0",
-
"libc",
-
"redox_syscall 0.5.7",
-
]
-
-
[[package]]
-
name = "linux-raw-sys"
-
version = "0.4.14"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
-
-
[[package]]
-
name = "lock_api"
-
version = "0.3.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
-
dependencies = [
-
"scopeguard",
-
]
-
-
[[package]]
-
name = "lock_api"
-
version = "0.4.12"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
-
dependencies = [
-
"autocfg 1.4.0",
-
"scopeguard",
-
]
-
-
[[package]]
-
name = "log"
-
version = "0.4.22"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
-
-
[[package]]
-
name = "matches"
-
version = "0.1.10"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
-
-
[[package]]
-
name = "maybe-uninit"
-
version = "2.0.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
-
-
[[package]]
-
name = "memchr"
-
version = "2.7.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
-
-
[[package]]
-
name = "memoffset"
-
version = "0.5.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa"
-
dependencies = [
-
"autocfg 1.4.0",
-
]
-
-
[[package]]
-
name = "mime"
-
version = "0.3.17"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
-
-
[[package]]
-
name = "mime_guess"
-
version = "2.0.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
-
dependencies = [
-
"mime",
-
"unicase",
-
]
-
-
[[package]]
-
name = "miniz_oxide"
-
version = "0.8.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
-
dependencies = [
-
"adler2",
-
]
-
-
[[package]]
-
name = "mio"
-
version = "0.6.23"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4"
-
dependencies = [
-
"cfg-if 0.1.10",
-
"fuchsia-zircon",
-
"fuchsia-zircon-sys",
-
"iovec",
-
"kernel32-sys",
-
"libc",
-
"log",
-
"miow",
-
"net2",
-
"slab",
-
"winapi 0.2.8",
-
]
-
-
[[package]]
-
name = "miow"
-
version = "0.2.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d"
-
dependencies = [
-
"kernel32-sys",
-
"net2",
-
"winapi 0.2.8",
-
"ws2_32-sys",
-
]
-
-
[[package]]
-
name = "native-tls"
-
version = "0.2.12"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
-
dependencies = [
-
"libc",
-
"log",
-
"openssl",
-
"openssl-probe",
-
"openssl-sys",
-
"schannel",
-
"security-framework",
-
"security-framework-sys",
-
"tempfile",
-
]
-
-
[[package]]
-
name = "net2"
-
version = "0.2.39"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b13b648036a2339d06de780866fbdfda0dde886de7b3af2ddeba8b14f4ee34ac"
-
dependencies = [
-
"cfg-if 0.1.10",
-
"libc",
-
"winapi 0.3.9",
-
]
-
-
[[package]]
-
name = "num-traits"
-
version = "0.2.19"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
-
dependencies = [
-
"autocfg 1.4.0",
-
]
-
-
[[package]]
-
name = "num_cpus"
-
version = "1.16.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
-
dependencies = [
-
"hermit-abi 0.3.9",
-
"libc",
-
]
-
-
[[package]]
-
name = "number_prefix"
-
version = "0.2.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "dbf9993e59c894e3c08aa1c2712914e9e6bf1fcbfc6bef283e2183df345a4fee"
-
dependencies = [
-
"num-traits",
-
]
-
-
[[package]]
-
name = "object"
-
version = "0.36.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
-
dependencies = [
-
"memchr",
-
]
-
-
[[package]]
-
name = "once_cell"
-
version = "1.20.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
-
-
[[package]]
-
name = "openssl"
-
version = "0.10.68"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5"
-
dependencies = [
-
"bitflags 2.6.0",
-
"cfg-if 1.0.0",
-
"foreign-types",
-
"libc",
-
"once_cell",
-
"openssl-macros",
-
"openssl-sys",
-
]
-
-
[[package]]
-
name = "openssl-macros"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn 2.0.86",
-
]
-
-
[[package]]
-
name = "openssl-probe"
-
version = "0.1.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
-
-
[[package]]
-
name = "openssl-sys"
-
version = "0.9.104"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
-
dependencies = [
-
"cc",
-
"libc",
-
"pkg-config",
-
"vcpkg",
-
]
-
-
[[package]]
-
name = "parking_lot"
-
version = "0.9.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252"
-
dependencies = [
-
"lock_api 0.3.4",
-
"parking_lot_core 0.6.3",
-
"rustc_version",
-
]
-
-
[[package]]
-
name = "parking_lot"
-
version = "0.12.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
-
dependencies = [
-
"lock_api 0.4.12",
-
"parking_lot_core 0.9.10",
-
]
-
-
[[package]]
-
name = "parking_lot_core"
-
version = "0.6.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bda66b810a62be75176a80873726630147a5ca780cd33921e0b5709033e66b0a"
-
dependencies = [
-
"cfg-if 0.1.10",
-
"cloudabi",
-
"libc",
-
"redox_syscall 0.1.57",
-
"rustc_version",
-
"smallvec 0.6.14",
-
"winapi 0.3.9",
-
]
-
-
[[package]]
-
name = "parking_lot_core"
-
version = "0.9.10"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"libc",
-
"redox_syscall 0.5.7",
-
"smallvec 1.13.2",
-
"windows-targets",
-
]
-
-
[[package]]
-
name = "percent-encoding"
-
version = "1.0.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831"
-
-
[[package]]
-
name = "percent-encoding"
-
version = "2.3.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
-
-
[[package]]
-
name = "pkg-config"
-
version = "0.3.31"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
-
-
[[package]]
-
name = "proc-macro2"
-
version = "1.0.89"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
-
dependencies = [
-
"unicode-ident",
-
]
-
-
[[package]]
-
name = "publicsuffix"
-
version = "1.5.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f"
-
dependencies = [
-
"idna 0.2.3",
-
"url 2.5.2",
-
]
-
-
[[package]]
-
name = "quote"
-
version = "1.0.37"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
-
dependencies = [
-
"proc-macro2",
-
]
-
-
[[package]]
-
name = "rand"
-
version = "0.6.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca"
-
dependencies = [
-
"autocfg 0.1.8",
-
"libc",
-
"rand_chacha",
-
"rand_core 0.4.2",
-
"rand_hc",
-
"rand_isaac",
-
"rand_jitter",
-
"rand_os",
-
"rand_pcg",
-
"rand_xorshift",
-
"winapi 0.3.9",
-
]
-
-
[[package]]
-
name = "rand_chacha"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef"
-
dependencies = [
-
"autocfg 0.1.8",
-
"rand_core 0.3.1",
-
]
-
-
[[package]]
-
name = "rand_core"
-
version = "0.3.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
-
dependencies = [
-
"rand_core 0.4.2",
-
]
-
-
[[package]]
-
name = "rand_core"
-
version = "0.4.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
-
-
[[package]]
-
name = "rand_hc"
-
version = "0.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4"
-
dependencies = [
-
"rand_core 0.3.1",
-
]
-
-
[[package]]
-
name = "rand_isaac"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08"
-
dependencies = [
-
"rand_core 0.3.1",
-
]
-
-
[[package]]
-
name = "rand_jitter"
-
version = "0.1.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b"
-
dependencies = [
-
"libc",
-
"rand_core 0.4.2",
-
"winapi 0.3.9",
-
]
-
-
[[package]]
-
name = "rand_os"
-
version = "0.1.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071"
-
dependencies = [
-
"cloudabi",
-
"fuchsia-cprng",
-
"libc",
-
"rand_core 0.4.2",
-
"rdrand",
-
"winapi 0.3.9",
-
]
-
-
[[package]]
-
name = "rand_pcg"
-
version = "0.1.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44"
-
dependencies = [
-
"autocfg 0.1.8",
-
"rand_core 0.4.2",
-
]
-
-
[[package]]
-
name = "rand_xorshift"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c"
-
dependencies = [
-
"rand_core 0.3.1",
-
]
-
-
[[package]]
-
name = "rdrand"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
-
dependencies = [
-
"rand_core 0.3.1",
-
]
-
-
[[package]]
-
name = "redox_syscall"
-
version = "0.1.57"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce"
-
-
[[package]]
-
name = "redox_syscall"
-
version = "0.5.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
-
dependencies = [
-
"bitflags 2.6.0",
-
]
-
-
[[package]]
-
name = "regex"
-
version = "1.11.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
-
dependencies = [
-
"aho-corasick",
-
"memchr",
-
"regex-automata",
-
"regex-syntax",
-
]
-
-
[[package]]
-
name = "regex-automata"
-
version = "0.4.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
-
dependencies = [
-
"aho-corasick",
-
"memchr",
-
"regex-syntax",
-
]
-
-
[[package]]
-
name = "regex-syntax"
-
version = "0.8.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
-
-
[[package]]
-
name = "reqwest"
-
version = "0.9.24"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f88643aea3c1343c804950d7bf983bd2067f5ab59db6d613a08e05572f2714ab"
-
dependencies = [
-
"base64",
-
"bytes",
-
"cookie",
-
"cookie_store",
-
"encoding_rs",
-
"flate2",
-
"futures",
-
"http",
-
"hyper",
-
"hyper-tls",
-
"log",
-
"mime",
-
"mime_guess",
-
"native-tls",
-
"serde",
-
"serde_json",
-
"serde_urlencoded",
-
"time",
-
"tokio",
-
"tokio-executor",
-
"tokio-io",
-
"tokio-threadpool",
-
"tokio-timer",
-
"url 1.7.2",
-
"uuid",
-
"winreg",
-
]
-
-
[[package]]
-
name = "rustc-demangle"
-
version = "0.1.24"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
-
-
[[package]]
-
name = "rustc_version"
-
version = "0.2.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
-
dependencies = [
-
"semver",
-
]
-
-
[[package]]
-
name = "rustix"
-
version = "0.38.38"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "aa260229e6538e52293eeb577aabd09945a09d6d9cc0fc550ed7529056c2e32a"
-
dependencies = [
-
"bitflags 2.6.0",
-
"errno",
-
"libc",
-
"linux-raw-sys",
-
"windows-sys 0.52.0",
-
]
-
-
[[package]]
-
name = "ryu"
-
version = "1.0.18"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
-
-
[[package]]
-
name = "schannel"
-
version = "0.1.26"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "01227be5826fa0690321a2ba6c5cd57a19cf3f6a09e76973b58e61de6ab9d1c1"
-
dependencies = [
-
"windows-sys 0.59.0",
-
]
-
-
[[package]]
-
name = "scopeguard"
-
version = "1.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
-
-
[[package]]
-
name = "security-framework"
-
version = "2.11.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
-
dependencies = [
-
"bitflags 2.6.0",
-
"core-foundation",
-
"core-foundation-sys",
-
"libc",
-
"security-framework-sys",
-
]
-
-
[[package]]
-
name = "security-framework-sys"
-
version = "2.12.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ea4a292869320c0272d7bc55a5a6aafaff59b4f63404a003887b679a2e05b4b6"
-
dependencies = [
-
"core-foundation-sys",
-
"libc",
-
]
-
-
[[package]]
-
name = "semver"
-
version = "0.9.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
-
dependencies = [
-
"semver-parser",
-
]
-
-
[[package]]
-
name = "semver-parser"
-
version = "0.7.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
-
-
[[package]]
-
name = "serde"
-
version = "1.0.214"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f55c3193aca71c12ad7890f1785d2b73e1b9f63a0bbc353c08ef26fe03fc56b5"
-
dependencies = [
-
"serde_derive",
-
]
-
-
[[package]]
-
name = "serde_derive"
-
version = "1.0.214"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "de523f781f095e28fa605cdce0f8307e451cc0fd14e2eb4cd2e98a355b147766"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn 2.0.86",
-
]
-
-
[[package]]
-
name = "serde_json"
-
version = "1.0.132"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
-
dependencies = [
-
"itoa 1.0.11",
-
"memchr",
-
"ryu",
-
"serde",
-
]
-
-
[[package]]
-
name = "serde_urlencoded"
-
version = "0.5.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a"
-
dependencies = [
-
"dtoa",
-
"itoa 0.4.8",
-
"serde",
-
"url 1.7.2",
-
]
-
-
[[package]]
-
name = "shlex"
-
version = "1.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
-
-
[[package]]
-
name = "slab"
-
version = "0.4.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
-
dependencies = [
-
"autocfg 1.4.0",
-
]
-
-
[[package]]
-
name = "smallvec"
-
version = "0.6.14"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0"
-
dependencies = [
-
"maybe-uninit",
-
]
-
-
[[package]]
-
name = "smallvec"
-
version = "1.13.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
-
-
[[package]]
-
name = "string"
-
version = "0.2.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d"
-
dependencies = [
-
"bytes",
-
]
-
-
[[package]]
-
name = "strsim"
-
version = "0.8.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
-
-
[[package]]
-
name = "syn"
-
version = "1.0.109"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"unicode-ident",
-
]
-
-
[[package]]
-
name = "syn"
-
version = "2.0.86"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e89275301d38033efb81a6e60e3497e734dfcc62571f2854bf4b16690398824c"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"unicode-ident",
-
]
-
-
[[package]]
-
name = "synstructure"
-
version = "0.12.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn 1.0.109",
-
"unicode-xid",
-
]
-
-
[[package]]
-
name = "tar"
-
version = "0.4.42"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4ff6c40d3aedb5e06b57c6f669ad17ab063dd1e63d977c6a88e7f4dfa4f04020"
-
dependencies = [
-
"filetime",
-
"libc",
-
"xattr",
-
]
-
-
[[package]]
-
name = "tempfile"
-
version = "3.13.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f0f2c9fc62d0beef6951ccffd757e241266a2c833136efbe35af6cd2567dca5b"
-
dependencies = [
-
"cfg-if 1.0.0",
-
"fastrand",
-
"once_cell",
-
"rustix",
-
"windows-sys 0.59.0",
-
]
-
-
[[package]]
-
name = "textwrap"
-
version = "0.11.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
-
dependencies = [
-
"unicode-width",
-
]
-
-
[[package]]
-
name = "time"
-
version = "0.1.45"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
-
dependencies = [
-
"libc",
-
"wasi",
-
"winapi 0.3.9",
-
]
-
-
[[package]]
-
name = "tinyvec"
-
version = "1.8.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
-
dependencies = [
-
"tinyvec_macros",
-
]
-
-
[[package]]
-
name = "tinyvec_macros"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
-
-
[[package]]
-
name = "tokio"
-
version = "0.1.22"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6"
-
dependencies = [
-
"bytes",
-
"futures",
-
"mio",
-
"num_cpus",
-
"tokio-current-thread",
-
"tokio-executor",
-
"tokio-io",
-
"tokio-reactor",
-
"tokio-tcp",
-
"tokio-threadpool",
-
"tokio-timer",
-
]
-
-
[[package]]
-
name = "tokio-buf"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46"
-
dependencies = [
-
"bytes",
-
"either",
-
"futures",
-
]
-
-
[[package]]
-
name = "tokio-current-thread"
-
version = "0.1.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e"
-
dependencies = [
-
"futures",
-
"tokio-executor",
-
]
-
-
[[package]]
-
name = "tokio-executor"
-
version = "0.1.10"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671"
-
dependencies = [
-
"crossbeam-utils",
-
"futures",
-
]
-
-
[[package]]
-
name = "tokio-io"
-
version = "0.1.13"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
-
dependencies = [
-
"bytes",
-
"futures",
-
"log",
-
]
-
-
[[package]]
-
name = "tokio-reactor"
-
version = "0.1.12"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351"
-
dependencies = [
-
"crossbeam-utils",
-
"futures",
-
"lazy_static",
-
"log",
-
"mio",
-
"num_cpus",
-
"parking_lot 0.9.0",
-
"slab",
-
"tokio-executor",
-
"tokio-io",
-
"tokio-sync",
-
]
-
-
[[package]]
-
name = "tokio-sync"
-
version = "0.1.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee"
-
dependencies = [
-
"fnv",
-
"futures",
-
]
-
-
[[package]]
-
name = "tokio-tcp"
-
version = "0.1.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72"
-
dependencies = [
-
"bytes",
-
"futures",
-
"iovec",
-
"mio",
-
"tokio-io",
-
"tokio-reactor",
-
]
-
-
[[package]]
-
name = "tokio-threadpool"
-
version = "0.1.18"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89"
-
dependencies = [
-
"crossbeam-deque",
-
"crossbeam-queue",
-
"crossbeam-utils",
-
"futures",
-
"lazy_static",
-
"log",
-
"num_cpus",
-
"slab",
-
"tokio-executor",
-
]
-
-
[[package]]
-
name = "tokio-timer"
-
version = "0.2.13"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296"
-
dependencies = [
-
"crossbeam-utils",
-
"futures",
-
"slab",
-
"tokio-executor",
-
]
-
-
[[package]]
-
name = "try-lock"
-
version = "0.2.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
-
-
[[package]]
-
name = "try_from"
-
version = "0.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b"
-
dependencies = [
-
"cfg-if 0.1.10",
-
]
-
-
[[package]]
-
name = "unicase"
-
version = "2.8.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7e51b68083f157f853b6379db119d1c1be0e6e4dec98101079dec41f6f5cf6df"
-
-
[[package]]
-
name = "unicode-bidi"
-
version = "0.3.17"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
-
-
[[package]]
-
name = "unicode-ident"
-
version = "1.0.13"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
-
-
[[package]]
-
name = "unicode-normalization"
-
version = "0.1.24"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
-
dependencies = [
-
"tinyvec",
-
]
-
-
[[package]]
-
name = "unicode-width"
-
version = "0.1.14"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
-
-
[[package]]
-
name = "unicode-xid"
-
version = "0.2.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
-
-
[[package]]
-
name = "url"
-
version = "1.7.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a"
-
dependencies = [
-
"idna 0.1.5",
-
"matches",
-
"percent-encoding 1.0.1",
-
]
-
-
[[package]]
-
name = "url"
-
version = "2.5.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
-
dependencies = [
-
"form_urlencoded",
-
"idna 0.5.0",
-
"percent-encoding 2.3.1",
-
]
-
-
[[package]]
-
name = "uuid"
-
version = "0.7.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a"
-
dependencies = [
-
"rand",
-
]
-
-
[[package]]
-
name = "vcpkg"
-
version = "0.2.15"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
-
-
[[package]]
-
name = "vec_map"
-
version = "0.8.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
-
-
[[package]]
-
name = "want"
-
version = "0.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230"
-
dependencies = [
-
"futures",
-
"log",
-
"try-lock",
-
]
-
-
[[package]]
-
name = "wasi"
-
version = "0.10.0+wasi-snapshot-preview1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
-
-
[[package]]
-
name = "winapi"
-
version = "0.2.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
-
-
[[package]]
-
name = "winapi"
-
version = "0.3.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
-
dependencies = [
-
"winapi-i686-pc-windows-gnu",
-
"winapi-x86_64-pc-windows-gnu",
-
]
-
-
[[package]]
-
name = "winapi-build"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
-
-
[[package]]
-
name = "winapi-i686-pc-windows-gnu"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
-
-
[[package]]
-
name = "winapi-x86_64-pc-windows-gnu"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
-
-
[[package]]
-
name = "windows-sys"
-
version = "0.52.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
-
dependencies = [
-
"windows-targets",
-
]
-
-
[[package]]
-
name = "windows-sys"
-
version = "0.59.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
-
dependencies = [
-
"windows-targets",
-
]
-
-
[[package]]
-
name = "windows-targets"
-
version = "0.52.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
-
dependencies = [
-
"windows_aarch64_gnullvm",
-
"windows_aarch64_msvc",
-
"windows_i686_gnu",
-
"windows_i686_gnullvm",
-
"windows_i686_msvc",
-
"windows_x86_64_gnu",
-
"windows_x86_64_gnullvm",
-
"windows_x86_64_msvc",
-
]
-
-
[[package]]
-
name = "windows_aarch64_gnullvm"
-
version = "0.52.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
-
-
[[package]]
-
name = "windows_aarch64_msvc"
-
version = "0.52.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
-
-
[[package]]
-
name = "windows_i686_gnu"
-
version = "0.52.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
-
-
[[package]]
-
name = "windows_i686_gnullvm"
-
version = "0.52.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
-
-
[[package]]
-
name = "windows_i686_msvc"
-
version = "0.52.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
-
-
[[package]]
-
name = "windows_x86_64_gnu"
-
version = "0.52.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
-
-
[[package]]
-
name = "windows_x86_64_gnullvm"
-
version = "0.52.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
-
-
[[package]]
-
name = "windows_x86_64_msvc"
-
version = "0.52.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
-
-
[[package]]
-
name = "winreg"
-
version = "0.6.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9"
-
dependencies = [
-
"winapi 0.3.9",
-
]
-
-
[[package]]
-
name = "ws2_32-sys"
-
version = "0.2.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
-
dependencies = [
-
"winapi 0.2.8",
-
"winapi-build",
-
]
-
-
[[package]]
-
name = "xattr"
-
version = "1.3.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
-
dependencies = [
-
"libc",
-
"linux-raw-sys",
-
"rustix",
-
]
-45
pkgs/by-name/de/degit-rs/package.nix
···
-
{
-
lib,
-
fetchFromGitHub,
-
rustPlatform,
-
pkg-config,
-
openssl,
-
}:
-
-
rustPlatform.buildRustPackage {
-
pname = "degit-rs";
-
version = "0.1.2-unstable-2021-09-22";
-
-
src = fetchFromGitHub {
-
owner = "psnszsn";
-
repo = "degit-rs";
-
rev = "c7dbeb75131510a79400838e081b90665c654c80";
-
hash = "sha256-swyfKnYQ+I4elnDnJ0yPDUryiFXEVnrGt9xHWiEe6wo=";
-
};
-
-
# The source repo doesn't provide a Cargo.lock file, so we need to create one
-
postPatch = ''
-
ln -s ${./Cargo.lock} Cargo.lock
-
'';
-
-
cargoLock.lockFile = ./Cargo.lock;
-
-
cargoHash = "sha256-bUoZsXU7iWK7MZ/hXk1JNUX1hN88lrU1mc1rrYuiCYs=";
-
-
nativeBuildInputs = [ pkg-config ];
-
-
buildInputs = [ openssl ];
-
-
# The test suite is not working for it requires a network connection,
-
# so we disable it
-
doCheck = false;
-
-
meta = {
-
description = "Rust rewrite of degit";
-
homepage = "https://github.com/psnszsn/degit-rs";
-
license = lib.licenses.mit;
-
platforms = lib.platforms.linux;
-
mainProgram = "degit";
-
maintainers = with lib.maintainers; [ chillcicada ];
-
};
-
}
+3 -3
pkgs/by-name/fi/files-cli/package.nix
···
buildGoModule rec {
pname = "files-cli";
-
version = "2.15.38";
+
version = "2.15.44";
src = fetchFromGitHub {
repo = "files-cli";
owner = "files-com";
rev = "v${version}";
-
hash = "sha256-bf87pCosw41yqnPeQ38t++jedRYKEn22wwuTSrmPvCo=";
+
hash = "sha256-+5fGCHRjBbPgX2CdNyBS+cOXJYLK/HPwca0Gg+ZVEx0=";
};
-
vendorHash = "sha256-p5Fcs7xVsDBfJQLNbEqsJY2jwgoKrBRCi6Qadwr1azY=";
+
vendorHash = "sha256-ofI/aaikK2O02XswK5WgDTCgnwDyfq0eR17WWJsOqH8=";
ldflags = [
"-s"
+2 -2
pkgs/by-name/gr/grafana-loki/package.nix
···
}:
buildGoModule rec {
-
version = "3.5.1";
+
version = "3.5.2";
pname = "grafana-loki";
src = fetchFromGitHub {
owner = "grafana";
repo = "loki";
rev = "v${version}";
-
hash = "sha256-aDUQe4OJtrmZ9RXvNkS4lDne5fKzrzNm003ElA+IF5U=";
+
hash = "sha256-sgAcrW5TpiCjnouvpYwo26eJ1Cfe7XPWNeWG8/59wSQ=";
};
vendorHash = null;
-80
pkgs/by-name/gu/guile-git/0001-structs-Omit-free-field-from-config-entry-on-libgit2.patch
···
-
From cc70ed70b19a712babd834806d6fc700b20c020a Mon Sep 17 00:00:00 2001
-
From: Emily <hello@emily.moe>
-
Date: Wed, 22 Jan 2025 23:25:51 +0000
-
Subject: [PATCH 1/2] =?UTF-8?q?structs:=20Omit=20=E2=80=98free=E2=80=99=20?=
-
=?UTF-8?q?field=20from=20=E2=80=98%config-entry=E2=80=99=20on=20libgit2?=
-
=?UTF-8?q?=201.9+.?=
-
MIME-Version: 1.0
-
Content-Type: text/plain; charset=UTF-8
-
Content-Transfer-Encoding: 8bit
-
-
* configure.ac: Check for the ‘free’ field of ‘git_config_entry’.
-
* git/configuration.scm.in (%have-config-entry-free?): New variable.
-
* git/structs.scm (%config-entry): Omit ‘free’ field conditionally.
-
---
-
configure.ac | 10 ++++++++++
-
git/configuration.scm.in | 4 ++++
-
git/structs.scm | 4 +++-
-
3 files changed, 17 insertions(+), 1 deletion(-)
-
-
diff --git a/configure.ac b/configure.ac
-
index b04ca6b..7f8f0b9 100644
-
--- a/configure.ac
-
+++ b/configure.ac
-
@@ -87,6 +87,16 @@ else
-
fi
-
AC_SUBST([HAVE_CONFIG_ENTRY_BACKEND_TYPE])
-
-
+dnl Does 'git_config_entry' have 'free'? Removed in 1.9.
-
+AC_CHECK_MEMBER([git_config_entry.free], [], [],
-
+ [[#include <git2.h>]])
-
+if test "x$ac_cv_member_git_config_entry_free" = "xyes"; then
-
+ HAVE_CONFIG_ENTRY_FREE="#true"
-
+else
-
+ HAVE_CONFIG_ENTRY_FREE="#false"
-
+fi
-
+AC_SUBST([HAVE_CONFIG_ENTRY_FREE])
-
+
-
dnl Does 'git_diff_options' have 'oid_type'? It's new in 1.7.
-
AC_CHECK_MEMBER([git_diff_options.oid_type], [], [],
-
[[#include <git2.h>]])
-
diff --git a/git/configuration.scm.in b/git/configuration.scm.in
-
index e10b195..864b9ff 100644
-
--- a/git/configuration.scm.in
-
+++ b/git/configuration.scm.in
-
@@ -24,6 +24,7 @@
-
%have-fetch-options-depth?
-
%have-diff-options-oid-type?
-
%have-config-entry-backend-type?
-
+ %have-config-entry-free?
-
%have-GIT_OPT_SET_SERVER_CONNECT_TIMEOUT?
-
%have-GIT_OPT_SET_HOMEDIR?
-
%have-GIT_OPT_SET_USER_AGENT_PRODUCT?))
-
@@ -48,6 +49,9 @@
-
(define %have-config-entry-backend-type?
-
@HAVE_CONFIG_ENTRY_BACKEND_TYPE@)
-
-
+(define %have-config-entry-free?
-
+ @HAVE_CONFIG_ENTRY_FREE@)
-
+
-
(define %have-GIT_OPT_SET_SERVER_CONNECT_TIMEOUT?
-
@HAVE_GIT_OPT_SET_SERVER_CONNECT_TIMEOUT@)
-
-
diff --git a/git/structs.scm b/git/structs.scm
-
index beebd11..b35ae6d 100644
-
--- a/git/structs.scm
-
+++ b/git/structs.scm
-
@@ -505,7 +505,9 @@
-
'())
-
(include-depth ,unsigned-int)
-
(level ,int) ;git_config_level_t
-
- (free ,(bs:pointer int))
-
+ ,@(if %have-config-entry-free?
-
+ `(free ,(bs:pointer int))
-
+ '())
-
,@(if %have-config-entry-backend-type?
-
'()
-
`((payload ,(bs:pointer int))))))) ;removed in 1.8
-
--
-
2.47.0
-
-84
pkgs/by-name/gu/guile-git/0002-structs-Add-update-refs-field-to-remote-callbacks-on.patch
···
-
From 595b850c85f55592b94d2218a12084fd7050b508 Mon Sep 17 00:00:00 2001
-
From: Emily <hello@emily.moe>
-
Date: Wed, 22 Jan 2025 23:55:45 +0000
-
Subject: [PATCH 2/2] =?UTF-8?q?structs:=20Add=20=E2=80=98update-refs?=
-
=?UTF-8?q?=E2=80=99=20field=20to=20=E2=80=98%remote-callbacks=E2=80=99=20?=
-
=?UTF-8?q?on=20libgit2=201.9+.?=
-
MIME-Version: 1.0
-
Content-Type: text/plain; charset=UTF-8
-
Content-Transfer-Encoding: 8bit
-
-
* configure.ac: Check for the ‘update_refs’ field of
-
‘git_remote_callbacks’.
-
* git/configuration.scm.in (%have-remote-callbacks-update-refs?): New
-
variable.
-
* git/structs.scm (%remote-callbacks): Add ‘update-refs’ field
-
conditionally.
-
---
-
configure.ac | 10 ++++++++++
-
git/configuration.scm.in | 4 ++++
-
git/structs.scm | 5 ++++-
-
3 files changed, 18 insertions(+), 1 deletion(-)
-
-
diff --git a/configure.ac b/configure.ac
-
index 7f8f0b9..a2575f4 100644
-
--- a/configure.ac
-
+++ b/configure.ac
-
@@ -107,6 +107,16 @@ else
-
fi
-
AC_SUBST([HAVE_DIFF_OPTIONS_OID_TYPE])
-
-
+dnl Does 'git_remote_callbacks' have 'update_refs'? New in 1.9.
-
+AC_CHECK_MEMBER([git_remote_callbacks.update_refs], [], [],
-
+ [[#include <git2.h>]])
-
+if test "x$ac_cv_member_git_remote_callbacks_update_refs" = "xyes"; then
-
+ HAVE_REMOTE_CALLBACKS_UPDATE_REFS="#true"
-
+else
-
+ HAVE_REMOTE_CALLBACKS_UPDATE_REFS="#false"
-
+fi
-
+AC_SUBST([HAVE_REMOTE_CALLBACKS_UPDATE_REFS])
-
+
-
dnl 'GIT_OPT_SET_SERVER_CONNECT_TIMEOUT' & co. are new in 1.7.
-
GUILE_GIT_CHECK_DECLARATION([GIT_OPT_SET_SERVER_CONNECT_TIMEOUT])
-
-
diff --git a/git/configuration.scm.in b/git/configuration.scm.in
-
index 864b9ff..1e82c24 100644
-
--- a/git/configuration.scm.in
-
+++ b/git/configuration.scm.in
-
@@ -25,6 +25,7 @@
-
%have-diff-options-oid-type?
-
%have-config-entry-backend-type?
-
%have-config-entry-free?
-
+ %have-remote-callbacks-update-refs?
-
%have-GIT_OPT_SET_SERVER_CONNECT_TIMEOUT?
-
%have-GIT_OPT_SET_HOMEDIR?
-
%have-GIT_OPT_SET_USER_AGENT_PRODUCT?))
-
@@ -52,6 +53,9 @@
-
(define %have-config-entry-free?
-
@HAVE_CONFIG_ENTRY_FREE@)
-
-
+(define %have-remote-callbacks-update-refs?
-
+ @HAVE_REMOTE_CALLBACKS_UPDATE_REFS@)
-
+
-
(define %have-GIT_OPT_SET_SERVER_CONNECT_TIMEOUT?
-
@HAVE_GIT_OPT_SET_SERVER_CONNECT_TIMEOUT@)
-
-
diff --git a/git/structs.scm b/git/structs.scm
-
index b35ae6d..664a7c1 100644
-
--- a/git/structs.scm
-
+++ b/git/structs.scm
-
@@ -670,7 +670,10 @@ type to 'specified for this to take effect."
-
(transport ,(bs:pointer uint8))
-
(remote-ready ,(bs:pointer void))
-
(payload ,(bs:pointer uint8))
-
- (resolve-url ,(bs:pointer uint8)))))
-
+ (resolve-url ,(bs:pointer uint8))
-
+ ,@(if %have-remote-callbacks-update-refs?
-
+ `((update-refs ,(bs:pointer uint8)))
-
+ '()))))
-
-
(define-record-type <remote-callbacks>
-
(%make-remote-callbacks bytestructure)
-
--
-
2.47.0
-
+8 -13
pkgs/by-name/gu/guile-git/package.nix
···
texinfo,
}:
-
stdenv.mkDerivation rec {
+
stdenv.mkDerivation (finalAttrs: {
pname = "guile-git";
-
version = "0.9.0";
+
version = "0.10.0";
src = fetchFromGitLab {
owner = "guile-git";
repo = "guile-git";
-
rev = "v${version}";
-
hash = "sha256-lFBoA1VBJRHcZkP3h2gnlXQrMjDFWS4jl9RlF8VVf/Q=";
+
tag = "v${finalAttrs.version}";
+
hash = "sha256-ihKpEnng6Uemrguecbd25vElEhIu2Efb86aM8679TAc=";
};
-
-
patches = [
-
./0001-structs-Omit-free-field-from-config-entry-on-libgit2.patch
-
./0002-structs-Add-update-refs-field-to-remote-callbacks-on.patch
-
];
strictDeps = true;
nativeBuildInputs = [
···
__darwinAllowLocalNetworking = true;
-
meta = with lib; {
+
meta = {
description = "Bindings to Libgit2 for GNU Guile";
homepage = "https://gitlab.com/guile-git/guile-git";
-
license = licenses.gpl3Plus;
-
maintainers = with maintainers; [ ethancedwards8 ];
+
license = lib.licenses.gpl3Plus;
+
maintainers = with lib.maintainers; [ ethancedwards8 ];
platforms = guile.meta.platforms;
};
-
}
+
})
+5 -5
pkgs/by-name/ha/hamrs-pro/package.nix
···
let
pname = "hamrs-pro";
-
version = "2.40.0";
+
version = "2.41.1";
throwSystem = throw "Unsupported system: ${stdenvNoCC.hostPlatform.system}";
srcs = {
x86_64-linux = fetchurl {
url = "https://hamrs-dist.s3.amazonaws.com/hamrs-pro-${version}-linux-x86_64.AppImage";
-
hash = "sha256-DUqaF8DQu+iSpC6nnHT7l7kurN/L9yAhKOF47khkoDw=";
+
hash = "sha256-HJXuxqIZU1dHf+ABb4rXnQkbQ1x7khpYiYq+0/HKZTs=";
};
aarch64-linux = fetchurl {
url = "https://hamrs-dist.s3.amazonaws.com/hamrs-pro-${version}-linux-arm64.AppImage";
-
hash = "sha256-YloMNPvtprJzQ5/w0I9n7DtQLqyuzgVnQ60Yf6ueOjk=";
+
hash = "sha256-pgMXAlOKxxzxJHMfM1fSfwmdKq2K1o7UVBQdeAwEIKE=";
};
x86_64-darwin = fetchurl {
url = "https://hamrs-dist.s3.amazonaws.com/hamrs-pro-${version}-mac-x64.dmg";
-
hash = "sha256-wgCXf6vTWZtlRjZCJYb5xYuWk7bpqiCDxVCTWR2ASxc=";
+
hash = "sha256-kIvw18jvZCBJqdIL9fikSpKmZw+NDqFhCNvEO9gkvMA=";
};
aarch64-darwin = fetchurl {
url = "https://hamrs-dist.s3.amazonaws.com/hamrs-pro-${version}-mac-arm64.dmg";
-
hash = "sha256-WOWIjeQtOGwpa/vR8n/irzU491C5sb0VUKn1vBckpvs=";
+
hash = "sha256-+zMXF8p/KcJrMbeFF2uHLBpqEmUtzN9rNVBD8+h1PG0=";
};
};
+2 -2
pkgs/by-name/lu/luau-lsp/package.nix
···
stdenv.mkDerivation (finalAttrs: {
pname = "luau-lsp";
-
version = "1.49.1";
+
version = "1.52.0";
src = fetchFromGitHub {
owner = "JohnnyMorganz";
repo = "luau-lsp";
tag = finalAttrs.version;
-
hash = "sha256-CRfDJXAgofDV9yeF0C91rTLVVa+cqBvqbzlR90AYfVU=";
+
hash = "sha256-ndHzpENa2VldaLLs9F8mgw+Ra7TQmEki12fTwpiqsEU=";
fetchSubmodules = true;
};
+3 -1
pkgs/by-name/no/notion-app/package.nix
···
unzip,
}:
let
-
info = (lib.importJSON ./info.json)."${stdenvNoCC.hostPlatform.parsed.cpu.name}-darwin";
+
info =
+
(lib.importJSON ./info.json)."${stdenvNoCC.hostPlatform.parsed.cpu.name}-darwin"
+
or (throw "Unsupported CPU architecture: ${stdenvNoCC.hostPlatform.parsed.cpu.name}");
in
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "notion-app";
+3 -3
pkgs/by-name/qi/qir-runner/package.nix
···
rustPlatform.buildRustPackage rec {
pname = "qir-runner";
-
version = "0.8.2";
+
version = "0.8.3";
src = fetchFromGitHub {
owner = "qir-alliance";
repo = "qir-runner";
tag = "v${version}";
-
hash = "sha256-KskBPvRlTw4ITuoAXyY+CyFfgTW0RtbLWDa97ftFOTA=";
+
hash = "sha256-k93I/DE8Jx0DbloBVNhKKay/L26H5TPX5yvkHKe/yBg=";
};
nativeBuildInputs = [ llvmPackages_19.llvm ];
···
];
useFetchCargoVendor = true;
-
cargoHash = "sha256-3Ww5PEvk1CqiJTqEUdinmcAfcHLQjctrlM4F3BPBWQw=";
+
cargoHash = "sha256-U/9oDOPhlSL1ViW1n5C4MWRvUvU4c/cuATLNIx7FkiM=";
meta = {
description = "QIR bytecode runner to assist with QIR development and validation";
+3 -3
pkgs/by-name/ty/typstyle/package.nix
···
rustPlatform.buildRustPackage (finalAttrs: {
pname = "typstyle";
-
version = "0.13.13";
+
version = "0.13.14";
src = fetchFromGitHub {
owner = "typstyle-rs";
repo = "typstyle";
tag = "v${finalAttrs.version}";
-
hash = "sha256-IAKCwKekeFekHBjfdC4pi74SXJzCDFoby3n1Z0Pu5q4=";
+
hash = "sha256-rIbLYV4f+XaEkyIFkJL1Biwg+TnjHi7e9kvIlroiNNA=";
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-7TkL/bYcTFAPvr4gu5XPxcJdIuwpTyZ6aOEj/YB9F4I=";
+
cargoHash = "sha256-YRsCuGvfSAUz0qsETIUcTKIchdkvleP3xJy0Hz+2BM0=";
# Disabling tests requiring network access
checkFlags = [
+2 -2
pkgs/by-name/un/unstructured-api/package.nix
···
++ google-api-core.optional-dependencies.grpc
++ unstructured.optional-dependencies.all-docs
);
-
version = "0.0.87";
+
version = "0.0.89";
unstructured_api_nltk_data = python3.pkgs.nltk.dataDir (d: [
d.punkt
d.averaged-perceptron-tagger
···
owner = "Unstructured-IO";
repo = "unstructured-api";
rev = version;
-
hash = "sha256-yb5m62OJWAGTwQBzCRGfeRc6/BCqGiYKYgdG/cslzgs=";
+
hash = "sha256-FxWOR13wZwowZny2t4Frwl+cLMv+6nkHxQm9Xc4Y9Kw=";
};
nativeBuildInputs = [ makeWrapper ];
+2 -2
pkgs/by-name/ux/uxplay/package.nix
···
stdenv.mkDerivation (finalAttrs: {
pname = "uxplay";
-
version = "1.72.1";
+
version = "1.72.2";
src = fetchFromGitHub {
owner = "FDH2";
repo = "UxPlay";
rev = "v${finalAttrs.version}";
-
hash = "sha256-qb4wsVPdT4rRQxHjLnft0C1D41IhA7M0ZqiLL65r3Ns=";
+
hash = "sha256-xXYaaLYOlFoPObYOnBnj1LghTRaCSsOvQ7d019gyx9c=";
};
postPatch = ''
+3 -1
pkgs/by-name/wk/wkhtmltopdf/package.nix
···
};
}
// lib.optionalAttrs (stdenv.hostPlatform.isDarwin) darwinAttrs
-
// lib.optionalAttrs (stdenv.hostPlatform.isLinux) linuxAttrs.${stdenv.system}
+
//
+
lib.optionalAttrs (stdenv.hostPlatform.isLinux)
+
linuxAttrs.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}")
)
+2 -2
pkgs/by-name/wx/wxGTK32/package.nix
···
in
stdenv.mkDerivation rec {
pname = "wxwidgets";
-
version = "3.2.7.1";
+
version = "3.2.8.1";
src = fetchFromGitHub {
owner = "wxWidgets";
repo = "wxWidgets";
rev = "v${version}";
-
hash = "sha256-CKU0Aa78YrtGKLE9/MF9VNc2fmzPZ1j4lviX1aAv9cQ=";
+
hash = "sha256-aXI59oN5qqds6u2/6MI7BYLbFPy3Yrfn2FGTfxlPG7o=";
};
nativeBuildInputs = [ pkg-config ];
+3 -1
pkgs/by-name/ze/zenn-cli/package.nix
···
go-turbo = stdenv.mkDerivation {
pname = "go-turbo";
version = go-turbo-version;
-
src = go-turbo-srcs.${stdenv.hostPlatform.system};
+
src =
+
go-turbo-srcs.${stdenv.hostPlatform.system}
+
or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
nativeBuildInputs = [ autoPatchelfHook ];
dontBuild = true;
installPhase = ''
+1
pkgs/development/compilers/swift/compiler/default.nix
···
"aarch64" = "AArch64";
}
.${targetPlatform.parsed.cpu.name}
+
or (throw "Unsupported CPU architecture: ${targetPlatform.parsed.cpu.name}")
}
"
buildProject llvm llvm-project/llvm
+8 -12
pkgs/development/python-modules/chart-studio/default.nix
···
pytestCheckHook,
}:
-
buildPythonPackage rec {
+
buildPythonPackage {
pname = "chart-studio";
-
version = "1.1.0-unstable-2024-07-23";
+
version = "1.1.0-unstable-2025-01-30";
pyproject = true;
-
# chart-studio was split from plotly
src = fetchFromGitHub {
owner = "plotly";
-
repo = "plotly.py";
-
# We use plotly's upstream version as it's the same repo, but chart studio has its own version number.
-
rev = "v5.23.0";
-
hash = "sha256-K1hEs00AGBCe2fgytyPNWqE5M0jU5ESTzynP55kc05Y=";
+
repo = "chart-studio";
+
rev = "44c7c43be0fe7e031ec281c86ee7dae0efa0619e";
+
hash = "sha256-RekcZzUcunIqXOSriW+RvpLdvATQWTeRAiR8LFodfQg=";
};
-
-
sourceRoot = "${src.name}/packages/python/chart-studio";
build-system = [ setuptools ];
···
nativeCheckInputs = [
mock
+
plotly
pytestCheckHook
];
···
# most tests talk to a network service, so only run ones that don't do that.
enabledTestPaths = [
"chart_studio/tests/test_core"
-
"chart_studio/tests/test_plot_ly/test_api"
];
meta = {
description = "Utilities for interfacing with Plotly's Chart Studio service";
-
homepage = "https://github.com/plotly/plotly.py/tree/master/packages/python/chart-studio";
+
homepage = "https://github.com/plotly/chart-studio";
license = with lib.licenses; [ mit ];
-
maintainers = [ ];
+
maintainers = with lib.maintainers; [ sarahec ];
};
}
+2
pkgs/development/python-modules/cx-freeze/default.nix
···
buildInputs = [ ncurses ];
+
pythonRelaxDeps = [ "setuptools" ];
+
pythonRemoveDeps = [ "patchelf" ];
dependencies =
+2 -2
pkgs/development/python-modules/huggingface-hub/default.nix
···
buildPythonPackage rec {
pname = "huggingface-hub";
-
version = "0.33.2";
+
version = "0.33.4";
pyproject = true;
src = fetchFromGitHub {
owner = "huggingface";
repo = "huggingface_hub";
tag = "v${version}";
-
hash = "sha256-Com5lLcQqIPRvsXyqD5S3SW/1KmKEc85Rjxyc9iG5SY=";
+
hash = "sha256-AYTK/PO4fcG0g3I03Vf8FAbeqegijNMeFDCHCcXASac=";
};
build-system = [ setuptools ];
+6 -3
pkgs/development/python-modules/llama-cpp-python/default.nix
···
in
buildPythonPackage rec {
pname = "llama-cpp-python";
-
version = "0.3.9";
+
version = "0.3.12";
pyproject = true;
src = fetchFromGitHub {
owner = "abetlen";
repo = "llama-cpp-python";
tag = "v${version}";
-
hash = "sha256-iw9teWZ612gUNM2Zm5WGdFTq7aNo8QRRIGeHoFpXdfQ=";
+
hash = "sha256-TTGweGfav1uI2+87iUYc1Esmuor9sEZdZqSU2YVPCdQ=";
fetchSubmodules = true;
};
# src = /home/gaetan/llama-cpp-python;
···
pythonImportsCheck = [ "llama_cpp" ];
passthru = {
-
updateScript = gitUpdater { rev-prefix = "v"; };
+
updateScript = gitUpdater {
+
rev-prefix = "v";
+
allowedVersions = "^[.0-9]+$";
+
};
tests = lib.optionalAttrs stdenvTarget.hostPlatform.isLinux {
withCuda = llama-cpp-python.override {
cudaSupport = true;
+34 -24
pkgs/development/python-modules/plotly/default.nix
···
buildPythonPackage rec {
pname = "plotly";
-
version = "6.1.2";
+
version = "6.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "plotly";
repo = "plotly.py";
tag = "v${version}";
-
hash = "sha256-+vIq//pDLaaTmRGW+oytho3TfMmLCtuIoHeFenLVcek=";
+
hash = "sha256-Vfj5jG0AkBjivExOx7oMoocTopWl0yMc1INpEbtlgTc=";
};
postPatch = ''
···
__darwinAllowLocalNetworking = true;
-
disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [
-
# fails to launch kaleido subprocess
-
"tests/test_optional/test_kaleido"
-
# numpy2 related error, RecursionError
-
# See: https://github.com/plotly/plotly.py/issues/4852
-
"tests/test_plotly_utils/validators/test_angle_validator.py"
-
"tests/test_plotly_utils/validators/test_any_validator.py"
-
"tests/test_plotly_utils/validators/test_color_validator.py"
-
"tests/test_plotly_utils/validators/test_colorlist_validator.py"
-
"tests/test_plotly_utils/validators/test_colorscale_validator.py"
-
"tests/test_plotly_utils/validators/test_dataarray_validator.py"
-
"tests/test_plotly_utils/validators/test_enumerated_validator.py"
-
"tests/test_plotly_utils/validators/test_fig_deepcopy.py"
-
"tests/test_plotly_utils/validators/test_flaglist_validator.py"
-
"tests/test_plotly_utils/validators/test_infoarray_validator.py"
-
"tests/test_plotly_utils/validators/test_integer_validator.py"
-
"tests/test_plotly_utils/validators/test_number_validator.py"
-
"tests/test_plotly_utils/validators/test_pandas_series_input.py"
-
"tests/test_plotly_utils/validators/test_string_validator.py"
-
"tests/test_plotly_utils/validators/test_xarray_input.py"
-
];
+
disabledTestPaths =
+
[
+
# Broken imports
+
"plotly/matplotlylib/mplexporter/tests"
+
# Fails to catch error when serializing document
+
"tests/test_optional/test_kaleido/test_kaleido.py::test_defaults"
+
]
+
++ lib.optionals stdenv.hostPlatform.isDarwin [
+
# fails to launch kaleido subprocess
+
"tests/test_optional/test_kaleido"
+
# numpy2 related error, RecursionError
+
# See: https://github.com/plotly/plotly.py/issues/4852
+
"tests/test_plotly_utils/validators/test_angle_validator.py"
+
"tests/test_plotly_utils/validators/test_any_validator.py"
+
"tests/test_plotly_utils/validators/test_color_validator.py"
+
"tests/test_plotly_utils/validators/test_colorlist_validator.py"
+
"tests/test_plotly_utils/validators/test_colorscale_validator.py"
+
"tests/test_plotly_utils/validators/test_dataarray_validator.py"
+
"tests/test_plotly_utils/validators/test_enumerated_validator.py"
+
"tests/test_plotly_utils/validators/test_fig_deepcopy.py"
+
"tests/test_plotly_utils/validators/test_flaglist_validator.py"
+
"tests/test_plotly_utils/validators/test_infoarray_validator.py"
+
"tests/test_plotly_utils/validators/test_integer_validator.py"
+
"tests/test_plotly_utils/validators/test_number_validator.py"
+
"tests/test_plotly_utils/validators/test_pandas_series_input.py"
+
"tests/test_plotly_utils/validators/test_string_validator.py"
+
"tests/test_plotly_utils/validators/test_xarray_input.py"
+
];
pythonImportsCheck = [ "plotly" ];
···
downloadPage = "https://github.com/plotly/plotly.py";
changelog = "https://github.com/plotly/plotly.py/blob/master/CHANGELOG.md";
license = lib.licenses.mit;
-
maintainers = with lib.maintainers; [ pandapip1 ];
+
maintainers = with lib.maintainers; [
+
pandapip1
+
sarahec
+
];
};
}
+2 -2
pkgs/development/python-modules/pymilvus/default.nix
···
buildPythonPackage rec {
pname = "pymilvus";
-
version = "2.5.11";
+
version = "2.5.12";
pyproject = true;
src = fetchFromGitHub {
owner = "milvus-io";
repo = "pymilvus";
tag = "v${version}";
-
hash = "sha256-O8037LYuR6PX57s78OawPFyPrIi0ZFRX2vV3lC+wT0I=";
+
hash = "sha256-IazZ/Cuy37k/gqLvM/2zqpx2IoL9uoWmiGtMWaTINg4=";
};
build-system = [
+2 -2
pkgs/development/python-modules/transformers/default.nix
···
buildPythonPackage rec {
pname = "transformers";
-
version = "4.53.1";
+
version = "4.53.2";
pyproject = true;
src = fetchFromGitHub {
owner = "huggingface";
repo = "transformers";
tag = "v${version}";
-
hash = "sha256-u9/wxvAJcLl4n7Netf1MZqRS3fajRWZAgciFSsXpZ9s=";
+
hash = "sha256-uipCL3xY8+thCA9+zVop5+MZr4pY4UVB7uEHa4hzLYo=";
};
build-system = [ setuptools ];
+5 -2
pkgs/development/python-modules/tritonclient/default.nix
···
inherit pname version format;
python = "py3";
dist = "py3";
-
platform = platforms.${stdenv.hostPlatform.system} or { };
-
sha256 = hashes.${stdenv.hostPlatform.system} or { };
+
platform =
+
platforms.${stdenv.hostPlatform.system}
+
or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
+
sha256 =
+
hashes.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
};
propagatedBuildInputs = [
+3 -1
pkgs/development/python-modules/vl-convert-python/librusty_v8.nix
···
fetchurl {
name = "librusty_v8-${args.version}";
url = "https://github.com/denoland/rusty_v8/releases/download/v${args.version}/librusty_v8_release_${stdenv.hostPlatform.rust.rustcTarget}.a.gz";
-
sha256 = args.shas.${stdenv.hostPlatform.system};
+
sha256 =
+
args.shas.${stdenv.hostPlatform.system}
+
or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
meta = {
inherit (args) version;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
+24 -10
pkgs/development/python-modules/wandb/default.nix
···
"--timeout=1024"
];
-
disabledTestPaths = [
-
# Require docker access
-
"tests/system_tests"
+
disabledTestPaths =
+
[
+
# Require docker access
+
"tests/system_tests"
-
# broke somewhere between sentry-sdk 2.15.0 and 2.22.0
-
"tests/unit_tests/test_analytics/test_sentry.py"
+
# broke somewhere between sentry-sdk 2.15.0 and 2.22.0
+
"tests/unit_tests/test_analytics/test_sentry.py"
-
# Server connection times out under load
-
"tests/unit_tests/test_wandb_login.py"
+
# Server connection times out under load
+
"tests/unit_tests/test_wandb_login.py"
-
# PermissionError: unable to write to .cache/wandb/artifacts
-
"tests/unit_tests/test_artifacts/test_wandb_artifacts.py"
-
];
+
# PermissionError: unable to write to .cache/wandb/artifacts
+
"tests/unit_tests/test_artifacts/test_wandb_artifacts.py"
+
]
+
++ lib.optionals stdenv.hostPlatform.isDarwin [
+
# Breaks in sandbox: "Timed out waiting for wandb service to start"
+
"tests/unit_tests/test_job_builder.py"
+
];
disabledTests =
[
···
# RuntimeError: *** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[1]
"test_wandb_image_with_matplotlib_figure"
+
+
# AssertionError: assert 'did you mean https://api.wandb.ai' in '1'
+
"test_login_bad_host"
+
+
# Asserttion error: 1 != 0 (testing system exit code)
+
"test_login_host_trailing_slash_fix_invalid"
+
+
# Breaks in sandbox: "Timed out waiting for wandb service to start"
+
"test_setup_offline"
];
pythonImportsCheck = [ "wandb" ];
+1
pkgs/development/rocm-modules/6/llvm/default.nix
···
"aarch64" = "AArch64";
}
.${llvmStdenv.targetPlatform.parsed.cpu.name}
+
or (throw "Unsupported CPU architecture: ${llvmStdenv.targetPlatform.parsed.cpu.name}")
}";
# -ffat-lto-objects = emit LTO object files that are compatible with non-LTO-supporting builds too
# FatLTO objects are a special type of fat object file that contain LTO compatible IR in addition to generated object code,
+1
pkgs/top-level/aliases.nix
···
deadpixi-sam = deadpixi-sam-unstable;
debugedit-unstable = throw "'debugedit-unstable' has been renamed to/replaced by 'debugedit'"; # Converted to throw 2024-10-17
+
degit-rs = throw "'degit-rs' has been removed because it is unmaintained upstream and has vulnerable dependencies."; # Added 2025-07-11
deltachat-cursed = arcanechat-tui; # added 2025-02-25
deltachat-electron = throw "'deltachat-electron' has been renamed to/replaced by 'deltachat-desktop'"; # Converted to throw 2024-10-17
+2
pkgs/top-level/all-packages.nix
···
pkgsCross.gnu32.callPackage ../applications/emulators/box86 args
else if stdenv.hostPlatform.isAarch64 then
pkgsCross.armv7l-hf-multiplatform.callPackage ../applications/emulators/box86 args
+
else if stdenv.hostPlatform.isRiscV64 then
+
pkgsCross.riscv32.callPackage ../applications/emulators/box86 args
else
throw "Don't know 32-bit platform for cross from: ${stdenv.hostPlatform.stdenv}";
+2 -2
pkgs/top-level/python-packages.nix
···
openai = callPackage ../development/python-modules/openai { };
+
openai-agents = callPackage ../development/python-modules/openai-agents { };
+
openai-whisper = callPackage ../development/python-modules/openai-whisper { };
openaiauth = callPackage ../development/python-modules/openaiauth { };
-
-
openai-agents = callPackage ../development/python-modules/openai-agents { };
openant = callPackage ../development/python-modules/openant { };