anytype: add custom update script (#441095)

Changed files
+2015 -1948
pkgs
by-name
+16 -15
pkgs/by-name/an/anytype-heart/package.nix
···
}:
let
-
pname = "anytype-heart";
-
# Use only versions specified in anytype-ts middleware.version file:
-
# https://github.com/anyproto/anytype-ts/blob/v<anytype-ts-version>/middleware.version
-
version = "0.43.0-rc02";
-
src = fetchFromGitHub {
-
owner = "anyproto";
-
repo = "anytype-heart";
-
tag = "v${version}";
-
hash = "sha256-hqDwzW1Tl44ipL1EAwlXUoKaQ0Wvfa2rtZMQy4pgQ8k=";
-
};
-
arch =
{
# https://github.com/anyproto/anytype-heart/blob/f33a6b09e9e4e597f8ddf845fc4d6fe2ef335622/pkg/lib/localstore/ftsearch/ftsearchtantivy.go#L3
···
}
.${stdenv.hostPlatform.system}
or (throw "anytype-heart not supported on ${stdenv.hostPlatform.system}");
-
in
-
buildGoModule {
-
inherit pname version src;
vendorHash = "sha256-Rs+CusvMksyXUplGk09J4CiFgl/D4KtsI9C15dSCjOI=";
···
meta = {
description = "Shared library for Anytype clients";
homepage = "https://anytype.io/";
license = lib.licenses.unfreeRedistributable;
maintainers = with lib.maintainers; [
autrimpo
adda
];
platforms = [
"x86_64-linux"
···
"aarch64-darwin"
];
};
-
}
···
}:
let
arch =
{
# https://github.com/anyproto/anytype-heart/blob/f33a6b09e9e4e597f8ddf845fc4d6fe2ef335622/pkg/lib/localstore/ftsearch/ftsearchtantivy.go#L3
···
}
.${stdenv.hostPlatform.system}
or (throw "anytype-heart not supported on ${stdenv.hostPlatform.system}");
+
in
+
buildGoModule (finalAttrs: {
+
pname = "anytype-heart";
+
# Use only versions specified in anytype-ts middleware.version file:
+
# https://github.com/anyproto/anytype-ts/blob/v<anytype-ts-version>/middleware.version
+
version = "0.43.0-rc02";
+
+
src = fetchFromGitHub {
+
owner = "anyproto";
+
repo = "anytype-heart";
+
tag = "v${finalAttrs.version}";
+
hash = "sha256-hqDwzW1Tl44ipL1EAwlXUoKaQ0Wvfa2rtZMQy4pgQ8k=";
+
};
vendorHash = "sha256-Rs+CusvMksyXUplGk09J4CiFgl/D4KtsI9C15dSCjOI=";
···
meta = {
description = "Shared library for Anytype clients";
homepage = "https://anytype.io/";
+
changelog = "https://github.com/anyproto/anytype-heart/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.unfreeRedistributable;
maintainers = with lib.maintainers; [
autrimpo
adda
+
kira-bruneau
];
platforms = [
"x86_64-linux"
···
"aarch64-darwin"
];
};
+
})
+12 -10
pkgs/by-name/an/anytype/package.nix
···
commandLineArgs ? "",
}:
-
let
pname = "anytype";
version = "0.49.2";
src = fetchFromGitHub {
owner = "anyproto";
repo = "anytype-ts";
-
tag = "v${version}";
hash = "sha256-8+x2FmyR5x9Zrm3t71RSyxAKcJCvnR98+fqHXjBE7aU=";
};
-
description = "P2P note-taking tool";
locales = fetchFromGitHub {
owner = "anyproto";
···
rev = "873b42df7320ebbbc80d7e2477914dac70363ef7";
hash = "sha256-Mr0KfXn9NO86QqgBhVjSs2przN/GtjuhJHJ9djo8Feg=";
};
-
in
-
buildNpmPackage {
-
inherit pname version src;
npmDepsHash = "sha256-fuNTSZl+4DG/YL34f/+bYK26ruRFAc1hyHVAm256LiE=";
···
cp -r ${anytype-heart}/lib dist/
cp -r ${anytype-heart}/bin/anytypeHelper dist/
-
for lang in ${locales}/locales/*; do
cp "$lang" "dist/lib/json/lang/$(basename $lang)"
done
···
exec = "anytype %U";
icon = "anytype";
desktopName = "Anytype";
-
comment = description;
mimeTypes = [ "x-scheme-handler/anytype" ];
categories = [
"Utility"
···
})
];
meta = {
-
inherit description;
homepage = "https://anytype.io/";
license = lib.licenses.unfreeRedistributable;
mainProgram = "anytype";
maintainers = with lib.maintainers; [
autrimpo
adda
];
platforms = [
"x86_64-linux"
···
];
broken = stdenv.hostPlatform.isDarwin;
};
-
}
···
commandLineArgs ? "",
}:
+
buildNpmPackage (finalAttrs: {
pname = "anytype";
version = "0.49.2";
src = fetchFromGitHub {
owner = "anyproto";
repo = "anytype-ts";
+
tag = "v${finalAttrs.version}";
hash = "sha256-8+x2FmyR5x9Zrm3t71RSyxAKcJCvnR98+fqHXjBE7aU=";
};
locales = fetchFromGitHub {
owner = "anyproto";
···
rev = "873b42df7320ebbbc80d7e2477914dac70363ef7";
hash = "sha256-Mr0KfXn9NO86QqgBhVjSs2przN/GtjuhJHJ9djo8Feg=";
};
npmDepsHash = "sha256-fuNTSZl+4DG/YL34f/+bYK26ruRFAc1hyHVAm256LiE=";
···
cp -r ${anytype-heart}/lib dist/
cp -r ${anytype-heart}/bin/anytypeHelper dist/
+
for lang in ${finalAttrs.locales}/locales/*; do
cp "$lang" "dist/lib/json/lang/$(basename $lang)"
done
···
exec = "anytype %U";
icon = "anytype";
desktopName = "Anytype";
+
comment = finalAttrs.meta.description;
mimeTypes = [ "x-scheme-handler/anytype" ];
categories = [
"Utility"
···
})
];
+
passthru.updateScript = ./update.sh;
+
meta = {
+
description = "P2P note-taking tool";
homepage = "https://anytype.io/";
+
changelog = "https://community.anytype.io/t/anytype-desktop-${
+
builtins.replaceStrings [ "." ] [ "-" ] (lib.versions.majorMinor finalAttrs.version)
+
}-0-released";
license = lib.licenses.unfreeRedistributable;
mainProgram = "anytype";
maintainers = with lib.maintainers; [
autrimpo
adda
+
kira-bruneau
];
platforms = [
"x86_64-linux"
···
];
broken = stdenv.hostPlatform.isDarwin;
};
+
})
+61
pkgs/by-name/an/anytype/update.sh
···
···
+
#!/usr/bin/env nix-shell
+
#!nix-shell -i bash -p common-updater-scripts coreutils curl jq nix-update
+
+
set -euo pipefail
+
+
anytype_version=null
+
release_page=1
+
+
# Anytype often has many pre-releases between releases, which can span multiple pages
+
while [ "$anytype_version" = 'null' ]; do
+
readarray -t release < <(
+
curl "https://api.github.com/repos/anyproto/anytype-ts/releases?page=$release_page" \
+
${GITHUB_TOKEN:+--user ":$GITHUB_TOKEN"} \
+
--silent \
+
| jq --raw-output '
+
map(select(
+
(.prerelease == false) and
+
(.tag_name | test("alpha|beta") | not)
+
)) | .[0] | .tag_name, .created_at
+
'
+
)
+
anytype_version=${release[0]//v}
+
anytype_release_date=${release[1]}
+
release_page=$((release_page+1))
+
done
+
+
if [ "$UPDATE_NIX_OLD_VERSION" = "$anytype_version" ]; then
+
echo "Already up to date!"
+
exit 0
+
fi
+
+
# https://github.com/anyproto/anytype-ts/blob/v0.49.2/electron/hook/locale.js
+
locales_rev=$(
+
curl "https://api.github.com/repos/anyproto/l10n-anytype-ts/commits?until=$anytype_release_date&per_page=1" \
+
${GITHUB_TOKEN:+--user ":$GITHUB_TOKEN"} \
+
--silent \
+
| jq --raw-output '.[0].sha'
+
)
+
+
# https://github.com/anyproto/anytype-ts/blob/v0.49.2/update.sh
+
middleware_version=$(
+
curl "https://raw.githubusercontent.com/anyproto/anytype-ts/refs/tags/v$anytype_version/middleware.version" \
+
${GITHUB_TOKEN:+--user ":$GITHUB_TOKEN"} \
+
--silent
+
)
+
+
# https://github.com/anyproto/anytype-heart/blob/v0.42.4/makefiles/vars.mk#L8
+
tantivy_go_version=$(
+
curl "https://raw.githubusercontent.com/anyproto/anytype-heart/refs/tags/v$middleware_version/go.mod" \
+
${GITHUB_TOKEN:+--user ":$GITHUB_TOKEN"} \
+
--silent \
+
| grep github.com/anyproto/tantivy-go \
+
| cut --delimiter=' ' --field=2
+
)
+
+
tantivy_go_version=${tantivy_go_version//v}
+
+
nix-update tantivy-go --version "$tantivy_go_version" --generate-lockfile
+
nix-update anytype-heart --version "$middleware_version"
+
update-source-version anytype --ignore-same-version --source-key=locales --rev="$locales_rev"
+
nix-update anytype --version "$anytype_version"
+1908
pkgs/by-name/ta/tantivy-go/Cargo.lock
···
···
+
# This file is automatically @generated by Cargo.
+
# It is not intended for manual editing.
+
version = 4
+
+
[[package]]
+
name = "adler32"
+
version = "1.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
+
+
[[package]]
+
name = "ahash"
+
version = "0.8.12"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
+
dependencies = [
+
"cfg-if",
+
"once_cell",
+
"version_check",
+
"zerocopy",
+
]
+
+
[[package]]
+
name = "aho-corasick"
+
version = "1.1.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
+
dependencies = [
+
"memchr",
+
]
+
+
[[package]]
+
name = "allocator-api2"
+
version = "0.2.21"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
+
+
[[package]]
+
name = "anstream"
+
version = "0.6.20"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
+
dependencies = [
+
"anstyle",
+
"anstyle-parse",
+
"anstyle-query",
+
"anstyle-wincon",
+
"colorchoice",
+
"is_terminal_polyfill",
+
"utf8parse",
+
]
+
+
[[package]]
+
name = "anstyle"
+
version = "1.0.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
+
+
[[package]]
+
name = "anstyle-parse"
+
version = "0.2.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
+
dependencies = [
+
"utf8parse",
+
]
+
+
[[package]]
+
name = "anstyle-query"
+
version = "1.1.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
+
dependencies = [
+
"windows-sys 0.60.2",
+
]
+
+
[[package]]
+
name = "anstyle-wincon"
+
version = "3.0.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
+
dependencies = [
+
"anstyle",
+
"once_cell_polyfill",
+
"windows-sys 0.60.2",
+
]
+
+
[[package]]
+
name = "arc-swap"
+
version = "1.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
+
+
[[package]]
+
name = "async-trait"
+
version = "0.1.88"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "autocfg"
+
version = "1.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
+
+
[[package]]
+
name = "base64"
+
version = "0.22.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
+
+
[[package]]
+
name = "bitflags"
+
version = "2.9.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
+
+
[[package]]
+
name = "bitpacking"
+
version = "0.9.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4c1d3e2bfd8d06048a179f7b17afc3188effa10385e7b00dc65af6aae732ea92"
+
dependencies = [
+
"crunchy",
+
]
+
+
[[package]]
+
name = "bon"
+
version = "3.6.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "33d9ef19ae5263a138da9a86871eca537478ab0332a7770bac7e3f08b801f89f"
+
dependencies = [
+
"bon-macros",
+
"rustversion",
+
]
+
+
[[package]]
+
name = "bon-macros"
+
version = "3.6.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "577ae008f2ca11ca7641bd44601002ee5ab49ef0af64846ce1ab6057218a5cc1"
+
dependencies = [
+
"darling",
+
"ident_case",
+
"prettyplease",
+
"proc-macro2",
+
"quote",
+
"rustversion",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "bumpalo"
+
version = "3.19.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
+
+
[[package]]
+
name = "byteorder"
+
version = "1.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
+
+
[[package]]
+
name = "cbindgen"
+
version = "0.28.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
+
dependencies = [
+
"clap",
+
"heck",
+
"indexmap",
+
"log",
+
"proc-macro2",
+
"quote",
+
"serde",
+
"serde_json",
+
"syn 2.0.104",
+
"tempfile",
+
"toml",
+
]
+
+
[[package]]
+
name = "cc"
+
version = "1.2.32"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2352e5597e9c544d5e6d9c95190d5d27738ade584fa8db0a16e130e5c2b5296e"
+
dependencies = [
+
"jobserver",
+
"libc",
+
"shlex",
+
]
+
+
[[package]]
+
name = "cedarwood"
+
version = "0.4.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6d910bedd62c24733263d0bed247460853c9d22e8956bd4cd964302095e04e90"
+
dependencies = [
+
"smallvec",
+
]
+
+
[[package]]
+
name = "census"
+
version = "0.4.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0"
+
+
[[package]]
+
name = "cfg-if"
+
version = "1.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
+
+
[[package]]
+
name = "clap"
+
version = "4.5.43"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "50fd97c9dc2399518aa331917ac6f274280ec5eb34e555dd291899745c48ec6f"
+
dependencies = [
+
"clap_builder",
+
]
+
+
[[package]]
+
name = "clap_builder"
+
version = "4.5.43"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c35b5830294e1fa0462034af85cc95225a4cb07092c088c55bda3147cfcd8f65"
+
dependencies = [
+
"anstream",
+
"anstyle",
+
"clap_lex",
+
"strsim",
+
]
+
+
[[package]]
+
name = "clap_lex"
+
version = "0.7.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
+
+
[[package]]
+
name = "colorchoice"
+
version = "1.0.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
+
+
[[package]]
+
name = "core2"
+
version = "0.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
+
dependencies = [
+
"memchr",
+
]
+
+
[[package]]
+
name = "crc32fast"
+
version = "1.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
+
dependencies = [
+
"cfg-if",
+
]
+
+
[[package]]
+
name = "crossbeam-channel"
+
version = "0.5.15"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
+
dependencies = [
+
"crossbeam-utils",
+
]
+
+
[[package]]
+
name = "crossbeam-deque"
+
version = "0.8.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
+
dependencies = [
+
"crossbeam-epoch",
+
"crossbeam-utils",
+
]
+
+
[[package]]
+
name = "crossbeam-epoch"
+
version = "0.9.18"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
+
dependencies = [
+
"crossbeam-utils",
+
]
+
+
[[package]]
+
name = "crossbeam-utils"
+
version = "0.8.21"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
+
+
[[package]]
+
name = "crunchy"
+
version = "0.2.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
+
+
[[package]]
+
name = "darling"
+
version = "0.21.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d6b136475da5ef7b6ac596c0e956e37bad51b85b987ff3d5e230e964936736b2"
+
dependencies = [
+
"darling_core",
+
"darling_macro",
+
]
+
+
[[package]]
+
name = "darling_core"
+
version = "0.21.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b44ad32f92b75fb438b04b68547e521a548be8acc339a6dacc4a7121488f53e6"
+
dependencies = [
+
"fnv",
+
"ident_case",
+
"proc-macro2",
+
"quote",
+
"strsim",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "darling_macro"
+
version = "0.21.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2b5be8a7a562d315a5b92a630c30cec6bcf663e6673f00fbb69cca66a6f521b9"
+
dependencies = [
+
"darling_core",
+
"quote",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "dary_heap"
+
version = "0.3.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728"
+
+
[[package]]
+
name = "deranged"
+
version = "0.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
+
dependencies = [
+
"powerfmt",
+
"serde",
+
]
+
+
[[package]]
+
name = "downcast-rs"
+
version = "2.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ea8a8b81cacc08888170eef4d13b775126db426d0b348bee9d18c2c1eaf123cf"
+
+
[[package]]
+
name = "either"
+
version = "1.15.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
+
+
[[package]]
+
name = "env_filter"
+
version = "0.1.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
+
dependencies = [
+
"log",
+
"regex",
+
]
+
+
[[package]]
+
name = "env_logger"
+
version = "0.11.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
+
dependencies = [
+
"anstream",
+
"anstyle",
+
"env_filter",
+
"jiff",
+
"log",
+
]
+
+
[[package]]
+
name = "equivalent"
+
version = "1.0.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
+
+
[[package]]
+
name = "errno"
+
version = "0.3.13"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
+
dependencies = [
+
"libc",
+
"windows-sys 0.60.2",
+
]
+
+
[[package]]
+
name = "fastdivide"
+
version = "0.4.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471"
+
+
[[package]]
+
name = "fastrand"
+
version = "2.3.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
+
+
[[package]]
+
name = "fnv"
+
version = "1.0.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
+
+
[[package]]
+
name = "foldhash"
+
version = "0.1.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
+
+
[[package]]
+
name = "fs4"
+
version = "0.8.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8"
+
dependencies = [
+
"rustix 0.38.44",
+
"windows-sys 0.52.0",
+
]
+
+
[[package]]
+
name = "futures-core"
+
version = "0.3.31"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
+
+
[[package]]
+
name = "futures-macro"
+
version = "0.3.31"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "futures-task"
+
version = "0.3.31"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
+
+
[[package]]
+
name = "futures-util"
+
version = "0.3.31"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
+
dependencies = [
+
"futures-core",
+
"futures-macro",
+
"futures-task",
+
"pin-project-lite",
+
"pin-utils",
+
"slab",
+
]
+
+
[[package]]
+
name = "fxhash"
+
version = "0.2.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
+
dependencies = [
+
"byteorder",
+
]
+
+
[[package]]
+
name = "getrandom"
+
version = "0.2.16"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
+
dependencies = [
+
"cfg-if",
+
"libc",
+
"wasi 0.11.1+wasi-snapshot-preview1",
+
]
+
+
[[package]]
+
name = "getrandom"
+
version = "0.3.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
+
dependencies = [
+
"cfg-if",
+
"libc",
+
"r-efi",
+
"wasi 0.14.2+wasi-0.2.4",
+
]
+
+
[[package]]
+
name = "hashbrown"
+
version = "0.14.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
+
dependencies = [
+
"ahash",
+
"allocator-api2",
+
]
+
+
[[package]]
+
name = "hashbrown"
+
version = "0.15.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
+
dependencies = [
+
"allocator-api2",
+
"equivalent",
+
"foldhash",
+
]
+
+
[[package]]
+
name = "heck"
+
version = "0.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
+
+
[[package]]
+
name = "htmlescape"
+
version = "0.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
+
+
[[package]]
+
name = "hyperloglogplus"
+
version = "0.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "621debdf94dcac33e50475fdd76d34d5ea9c0362a834b9db08c3024696c1fbe3"
+
dependencies = [
+
"serde",
+
]
+
+
[[package]]
+
name = "ident_case"
+
version = "1.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
+
+
[[package]]
+
name = "include-flate"
+
version = "0.3.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "df49c16750695486c1f34de05da5b7438096156466e7f76c38fcdf285cf0113e"
+
dependencies = [
+
"include-flate-codegen",
+
"lazy_static",
+
"libflate",
+
]
+
+
[[package]]
+
name = "include-flate-codegen"
+
version = "0.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8c5b246c6261be723b85c61ecf87804e8ea4a35cb68be0ff282ed84b95ffe7d7"
+
dependencies = [
+
"libflate",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "indexmap"
+
version = "2.10.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
+
dependencies = [
+
"equivalent",
+
"hashbrown 0.15.5",
+
]
+
+
[[package]]
+
name = "is_terminal_polyfill"
+
version = "1.70.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
+
+
[[package]]
+
name = "itertools"
+
version = "0.14.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
+
dependencies = [
+
"either",
+
]
+
+
[[package]]
+
name = "itoa"
+
version = "1.0.15"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
+
+
[[package]]
+
name = "jieba-macros"
+
version = "0.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7c676b32a471d3cfae8dac2ad2f8334cd52e53377733cca8c1fb0a5062fec192"
+
dependencies = [
+
"phf_codegen",
+
]
+
+
[[package]]
+
name = "jieba-rs"
+
version = "0.7.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f5dd552bbb95d578520ee68403bf8aaf0dbbb2ce55b0854d019f9350ad61040a"
+
dependencies = [
+
"cedarwood",
+
"fxhash",
+
"include-flate",
+
"jieba-macros",
+
"lazy_static",
+
"phf",
+
"regex",
+
]
+
+
[[package]]
+
name = "jiff"
+
version = "0.2.15"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
+
dependencies = [
+
"jiff-static",
+
"log",
+
"portable-atomic",
+
"portable-atomic-util",
+
"serde",
+
]
+
+
[[package]]
+
name = "jiff-static"
+
version = "0.2.15"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "jobserver"
+
version = "0.1.33"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
+
dependencies = [
+
"getrandom 0.3.3",
+
"libc",
+
]
+
+
[[package]]
+
name = "js-sys"
+
version = "0.3.77"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
+
dependencies = [
+
"once_cell",
+
"wasm-bindgen",
+
]
+
+
[[package]]
+
name = "lazy_static"
+
version = "1.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
+
+
[[package]]
+
name = "levenshtein_automata"
+
version = "0.2.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
+
+
[[package]]
+
name = "libc"
+
version = "0.2.174"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
+
+
[[package]]
+
name = "libflate"
+
version = "2.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "45d9dfdc14ea4ef0900c1cddbc8dcd553fbaacd8a4a282cf4018ae9dd04fb21e"
+
dependencies = [
+
"adler32",
+
"core2",
+
"crc32fast",
+
"dary_heap",
+
"libflate_lz77",
+
]
+
+
[[package]]
+
name = "libflate_lz77"
+
version = "2.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e6e0d73b369f386f1c44abd9c570d5318f55ccde816ff4b562fa452e5182863d"
+
dependencies = [
+
"core2",
+
"hashbrown 0.14.5",
+
"rle-decode-fast",
+
]
+
+
[[package]]
+
name = "libm"
+
version = "0.2.15"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
+
+
[[package]]
+
name = "linux-raw-sys"
+
version = "0.4.15"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
+
+
[[package]]
+
name = "linux-raw-sys"
+
version = "0.9.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
+
+
[[package]]
+
name = "log"
+
version = "0.4.27"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
+
+
[[package]]
+
name = "logcall"
+
version = "0.1.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "56e8309d7cbf9e9f27139956138cb375f14621cdb2f4cdd91468467ec04b6784"
+
dependencies = [
+
"proc-macro-error",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "lru"
+
version = "0.12.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
+
dependencies = [
+
"hashbrown 0.15.5",
+
]
+
+
[[package]]
+
name = "lz4_flex"
+
version = "0.11.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
+
+
[[package]]
+
name = "measure_time"
+
version = "0.9.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "51c55d61e72fc3ab704396c5fa16f4c184db37978ae4e94ca8959693a235fc0e"
+
dependencies = [
+
"log",
+
]
+
+
[[package]]
+
name = "memchr"
+
version = "2.7.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
+
+
[[package]]
+
name = "memmap2"
+
version = "0.9.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "483758ad303d734cec05e5c12b41d7e93e6a6390c5e9dae6bdeb7c1259012d28"
+
dependencies = [
+
"libc",
+
]
+
+
[[package]]
+
name = "minimal-lexical"
+
version = "0.2.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
+
+
[[package]]
+
name = "murmurhash32"
+
version = "0.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
+
+
[[package]]
+
name = "nom"
+
version = "7.1.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
+
dependencies = [
+
"memchr",
+
"minimal-lexical",
+
]
+
+
[[package]]
+
name = "num-conv"
+
version = "0.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
+
+
[[package]]
+
name = "num-traits"
+
version = "0.2.19"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
+
dependencies = [
+
"autocfg",
+
"libm",
+
]
+
+
[[package]]
+
name = "once_cell"
+
version = "1.21.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
+
+
[[package]]
+
name = "once_cell_polyfill"
+
version = "1.70.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
+
+
[[package]]
+
name = "oneshot"
+
version = "0.1.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b4ce411919553d3f9fa53a0880544cda985a112117a0444d5ff1e870a893d6ea"
+
+
[[package]]
+
name = "ownedbytes"
+
version = "0.7.0"
+
source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
+
dependencies = [
+
"stable_deref_trait",
+
]
+
+
[[package]]
+
name = "phf"
+
version = "0.11.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
+
dependencies = [
+
"phf_macros",
+
"phf_shared",
+
]
+
+
[[package]]
+
name = "phf_codegen"
+
version = "0.11.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
+
dependencies = [
+
"phf_generator",
+
"phf_shared",
+
]
+
+
[[package]]
+
name = "phf_generator"
+
version = "0.11.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
+
dependencies = [
+
"phf_shared",
+
"rand",
+
]
+
+
[[package]]
+
name = "phf_macros"
+
version = "0.11.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
+
dependencies = [
+
"phf_generator",
+
"phf_shared",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "phf_shared"
+
version = "0.11.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
+
dependencies = [
+
"siphasher",
+
]
+
+
[[package]]
+
name = "pin-project-lite"
+
version = "0.2.16"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
+
+
[[package]]
+
name = "pin-utils"
+
version = "0.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
+
+
[[package]]
+
name = "pkg-config"
+
version = "0.3.32"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
+
+
[[package]]
+
name = "portable-atomic"
+
version = "1.11.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
+
+
[[package]]
+
name = "portable-atomic-util"
+
version = "0.2.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
+
dependencies = [
+
"portable-atomic",
+
]
+
+
[[package]]
+
name = "powerfmt"
+
version = "0.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
+
+
[[package]]
+
name = "ppv-lite86"
+
version = "0.2.21"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
+
dependencies = [
+
"zerocopy",
+
]
+
+
[[package]]
+
name = "prettyplease"
+
version = "0.2.36"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2"
+
dependencies = [
+
"proc-macro2",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "proc-macro-error"
+
version = "1.0.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
+
dependencies = [
+
"proc-macro-error-attr",
+
"proc-macro2",
+
"quote",
+
"syn 1.0.109",
+
"version_check",
+
]
+
+
[[package]]
+
name = "proc-macro-error-attr"
+
version = "1.0.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"version_check",
+
]
+
+
[[package]]
+
name = "proc-macro2"
+
version = "1.0.95"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
+
dependencies = [
+
"unicode-ident",
+
]
+
+
[[package]]
+
name = "quote"
+
version = "1.0.40"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
+
dependencies = [
+
"proc-macro2",
+
]
+
+
[[package]]
+
name = "r-efi"
+
version = "5.3.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
+
+
[[package]]
+
name = "rand"
+
version = "0.8.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
+
dependencies = [
+
"libc",
+
"rand_chacha",
+
"rand_core",
+
]
+
+
[[package]]
+
name = "rand_chacha"
+
version = "0.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
+
dependencies = [
+
"ppv-lite86",
+
"rand_core",
+
]
+
+
[[package]]
+
name = "rand_core"
+
version = "0.6.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
+
dependencies = [
+
"getrandom 0.2.16",
+
]
+
+
[[package]]
+
name = "rand_distr"
+
version = "0.4.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
+
dependencies = [
+
"num-traits",
+
"rand",
+
]
+
+
[[package]]
+
name = "rayon"
+
version = "1.10.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
+
dependencies = [
+
"either",
+
"rayon-core",
+
]
+
+
[[package]]
+
name = "rayon-core"
+
version = "1.12.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
+
dependencies = [
+
"crossbeam-deque",
+
"crossbeam-utils",
+
]
+
+
[[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.9"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
+
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 = "rle-decode-fast"
+
version = "1.0.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
+
+
[[package]]
+
name = "rust-stemmers"
+
version = "1.2.0"
+
source = "git+https://github.com/silver-ymz/rust-stemmers.git?rev=51696378e352688b7ffd4fface615370ff5e8768#51696378e352688b7ffd4fface615370ff5e8768"
+
+
[[package]]
+
name = "rustc-hash"
+
version = "2.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
+
+
[[package]]
+
name = "rustix"
+
version = "0.38.44"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
+
dependencies = [
+
"bitflags",
+
"errno",
+
"libc",
+
"linux-raw-sys 0.4.15",
+
"windows-sys 0.59.0",
+
]
+
+
[[package]]
+
name = "rustix"
+
version = "1.0.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
+
dependencies = [
+
"bitflags",
+
"errno",
+
"libc",
+
"linux-raw-sys 0.9.4",
+
"windows-sys 0.60.2",
+
]
+
+
[[package]]
+
name = "rustversion"
+
version = "1.0.21"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
+
+
[[package]]
+
name = "ryu"
+
version = "1.0.20"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
+
+
[[package]]
+
name = "serde"
+
version = "1.0.219"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
+
dependencies = [
+
"serde_derive",
+
]
+
+
[[package]]
+
name = "serde_derive"
+
version = "1.0.219"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "serde_json"
+
version = "1.0.142"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7"
+
dependencies = [
+
"itoa",
+
"memchr",
+
"ryu",
+
"serde",
+
]
+
+
[[package]]
+
name = "serde_spanned"
+
version = "0.6.9"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
+
dependencies = [
+
"serde",
+
]
+
+
[[package]]
+
name = "shlex"
+
version = "1.3.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
+
+
[[package]]
+
name = "siphasher"
+
version = "1.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
+
+
[[package]]
+
name = "sketches-ddsketch"
+
version = "0.3.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c1e9a774a6c28142ac54bb25d25562e6bcf957493a184f15ad4eebccb23e410a"
+
dependencies = [
+
"serde",
+
]
+
+
[[package]]
+
name = "slab"
+
version = "0.4.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
+
+
[[package]]
+
name = "smallvec"
+
version = "1.15.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
+
+
[[package]]
+
name = "stable_deref_trait"
+
version = "1.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
+
+
[[package]]
+
name = "strsim"
+
version = "0.11.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
+
+
[[package]]
+
name = "syn"
+
version = "1.0.109"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
+
dependencies = [
+
"proc-macro2",
+
"unicode-ident",
+
]
+
+
[[package]]
+
name = "syn"
+
version = "2.0.104"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"unicode-ident",
+
]
+
+
[[package]]
+
name = "tantivy"
+
version = "0.23.0"
+
source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
+
dependencies = [
+
"aho-corasick",
+
"arc-swap",
+
"base64",
+
"bitpacking",
+
"bon",
+
"byteorder",
+
"census",
+
"crc32fast",
+
"crossbeam-channel",
+
"downcast-rs",
+
"fastdivide",
+
"fnv",
+
"fs4",
+
"htmlescape",
+
"hyperloglogplus",
+
"itertools",
+
"levenshtein_automata",
+
"log",
+
"lru",
+
"lz4_flex",
+
"measure_time",
+
"memmap2",
+
"once_cell",
+
"oneshot",
+
"rayon",
+
"regex",
+
"rust-stemmers",
+
"rustc-hash",
+
"serde",
+
"serde_json",
+
"sketches-ddsketch",
+
"smallvec",
+
"tantivy-bitpacker",
+
"tantivy-columnar",
+
"tantivy-common",
+
"tantivy-fst",
+
"tantivy-query-grammar",
+
"tantivy-stacker",
+
"tantivy-tokenizer-api",
+
"tempfile",
+
"thiserror",
+
"time",
+
"uuid",
+
"winapi",
+
]
+
+
[[package]]
+
name = "tantivy-bitpacker"
+
version = "0.6.0"
+
source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
+
dependencies = [
+
"bitpacking",
+
]
+
+
[[package]]
+
name = "tantivy-columnar"
+
version = "0.3.0"
+
source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
+
dependencies = [
+
"downcast-rs",
+
"fastdivide",
+
"itertools",
+
"serde",
+
"tantivy-bitpacker",
+
"tantivy-common",
+
"tantivy-sstable",
+
"tantivy-stacker",
+
]
+
+
[[package]]
+
name = "tantivy-common"
+
version = "0.7.0"
+
source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
+
dependencies = [
+
"async-trait",
+
"byteorder",
+
"ownedbytes",
+
"serde",
+
"time",
+
]
+
+
[[package]]
+
name = "tantivy-fst"
+
version = "0.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18"
+
dependencies = [
+
"byteorder",
+
"regex-syntax",
+
"utf8-ranges",
+
]
+
+
[[package]]
+
name = "tantivy-go"
+
version = "1.0.0"
+
dependencies = [
+
"cbindgen",
+
"crunchy",
+
"env_logger",
+
"lazy_static",
+
"log",
+
"logcall",
+
"phf",
+
"serde",
+
"serde_json",
+
"tantivy",
+
"tantivy-jieba",
+
"unicode-segmentation",
+
]
+
+
[[package]]
+
name = "tantivy-jieba"
+
version = "0.11.0"
+
source = "git+https://github.com/anyproto/tantivy-jieba.git?rev=ca11d3153b8844cbc43cd243667e03f56f6d1e18#ca11d3153b8844cbc43cd243667e03f56f6d1e18"
+
dependencies = [
+
"jieba-rs",
+
"lazy_static",
+
"tantivy-tokenizer-api",
+
]
+
+
[[package]]
+
name = "tantivy-query-grammar"
+
version = "0.22.0"
+
source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
+
dependencies = [
+
"nom",
+
]
+
+
[[package]]
+
name = "tantivy-sstable"
+
version = "0.3.0"
+
source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
+
dependencies = [
+
"futures-util",
+
"itertools",
+
"tantivy-bitpacker",
+
"tantivy-common",
+
"tantivy-fst",
+
"zstd",
+
]
+
+
[[package]]
+
name = "tantivy-stacker"
+
version = "0.3.0"
+
source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
+
dependencies = [
+
"murmurhash32",
+
"rand_distr",
+
"tantivy-common",
+
]
+
+
[[package]]
+
name = "tantivy-tokenizer-api"
+
version = "0.3.0"
+
source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
+
dependencies = [
+
"serde",
+
]
+
+
[[package]]
+
name = "tempfile"
+
version = "3.20.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
+
dependencies = [
+
"fastrand",
+
"getrandom 0.3.3",
+
"once_cell",
+
"rustix 1.0.8",
+
"windows-sys 0.59.0",
+
]
+
+
[[package]]
+
name = "thiserror"
+
version = "2.0.12"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
+
dependencies = [
+
"thiserror-impl",
+
]
+
+
[[package]]
+
name = "thiserror-impl"
+
version = "2.0.12"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "time"
+
version = "0.3.41"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
+
dependencies = [
+
"deranged",
+
"itoa",
+
"num-conv",
+
"powerfmt",
+
"serde",
+
"time-core",
+
"time-macros",
+
]
+
+
[[package]]
+
name = "time-core"
+
version = "0.1.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
+
+
[[package]]
+
name = "time-macros"
+
version = "0.2.22"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
+
dependencies = [
+
"num-conv",
+
"time-core",
+
]
+
+
[[package]]
+
name = "toml"
+
version = "0.8.23"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
+
dependencies = [
+
"serde",
+
"serde_spanned",
+
"toml_datetime",
+
"toml_edit",
+
]
+
+
[[package]]
+
name = "toml_datetime"
+
version = "0.6.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
+
dependencies = [
+
"serde",
+
]
+
+
[[package]]
+
name = "toml_edit"
+
version = "0.22.27"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
+
dependencies = [
+
"indexmap",
+
"serde",
+
"serde_spanned",
+
"toml_datetime",
+
"toml_write",
+
"winnow",
+
]
+
+
[[package]]
+
name = "toml_write"
+
version = "0.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
+
+
[[package]]
+
name = "unicode-ident"
+
version = "1.0.18"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
+
+
[[package]]
+
name = "unicode-segmentation"
+
version = "1.12.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
+
+
[[package]]
+
name = "utf8-ranges"
+
version = "1.0.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba"
+
+
[[package]]
+
name = "utf8parse"
+
version = "0.2.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
+
+
[[package]]
+
name = "uuid"
+
version = "1.17.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
+
dependencies = [
+
"getrandom 0.3.3",
+
"js-sys",
+
"serde",
+
"wasm-bindgen",
+
]
+
+
[[package]]
+
name = "version_check"
+
version = "0.9.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
+
+
[[package]]
+
name = "wasi"
+
version = "0.11.1+wasi-snapshot-preview1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
+
+
[[package]]
+
name = "wasi"
+
version = "0.14.2+wasi-0.2.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
+
dependencies = [
+
"wit-bindgen-rt",
+
]
+
+
[[package]]
+
name = "wasm-bindgen"
+
version = "0.2.100"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
+
dependencies = [
+
"cfg-if",
+
"once_cell",
+
"rustversion",
+
"wasm-bindgen-macro",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-backend"
+
version = "0.2.100"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
+
dependencies = [
+
"bumpalo",
+
"log",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.104",
+
"wasm-bindgen-shared",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-macro"
+
version = "0.2.100"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
+
dependencies = [
+
"quote",
+
"wasm-bindgen-macro-support",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-macro-support"
+
version = "0.2.100"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.104",
+
"wasm-bindgen-backend",
+
"wasm-bindgen-shared",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-shared"
+
version = "0.2.100"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
+
dependencies = [
+
"unicode-ident",
+
]
+
+
[[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-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-link"
+
version = "0.1.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
+
+
[[package]]
+
name = "windows-sys"
+
version = "0.52.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
+
dependencies = [
+
"windows-targets 0.52.6",
+
]
+
+
[[package]]
+
name = "windows-sys"
+
version = "0.59.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
+
dependencies = [
+
"windows-targets 0.52.6",
+
]
+
+
[[package]]
+
name = "windows-sys"
+
version = "0.60.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
+
dependencies = [
+
"windows-targets 0.53.3",
+
]
+
+
[[package]]
+
name = "windows-targets"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
+
dependencies = [
+
"windows_aarch64_gnullvm 0.52.6",
+
"windows_aarch64_msvc 0.52.6",
+
"windows_i686_gnu 0.52.6",
+
"windows_i686_gnullvm 0.52.6",
+
"windows_i686_msvc 0.52.6",
+
"windows_x86_64_gnu 0.52.6",
+
"windows_x86_64_gnullvm 0.52.6",
+
"windows_x86_64_msvc 0.52.6",
+
]
+
+
[[package]]
+
name = "windows-targets"
+
version = "0.53.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
+
dependencies = [
+
"windows-link",
+
"windows_aarch64_gnullvm 0.53.0",
+
"windows_aarch64_msvc 0.53.0",
+
"windows_i686_gnu 0.53.0",
+
"windows_i686_gnullvm 0.53.0",
+
"windows_i686_msvc 0.53.0",
+
"windows_x86_64_gnu 0.53.0",
+
"windows_x86_64_gnullvm 0.53.0",
+
"windows_x86_64_msvc 0.53.0",
+
]
+
+
[[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_gnullvm"
+
version = "0.53.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
+
+
[[package]]
+
name = "windows_aarch64_msvc"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
+
+
[[package]]
+
name = "windows_aarch64_msvc"
+
version = "0.53.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
+
+
[[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_gnu"
+
version = "0.53.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
+
+
[[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_gnullvm"
+
version = "0.53.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
+
+
[[package]]
+
name = "windows_i686_msvc"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
+
+
[[package]]
+
name = "windows_i686_msvc"
+
version = "0.53.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
+
+
[[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_gnu"
+
version = "0.53.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
+
+
[[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_gnullvm"
+
version = "0.53.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
+
+
[[package]]
+
name = "windows_x86_64_msvc"
+
version = "0.52.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
+
+
[[package]]
+
name = "windows_x86_64_msvc"
+
version = "0.53.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
+
+
[[package]]
+
name = "winnow"
+
version = "0.7.12"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
+
dependencies = [
+
"memchr",
+
]
+
+
[[package]]
+
name = "wit-bindgen-rt"
+
version = "0.39.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
+
dependencies = [
+
"bitflags",
+
]
+
+
[[package]]
+
name = "zerocopy"
+
version = "0.8.26"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
+
dependencies = [
+
"zerocopy-derive",
+
]
+
+
[[package]]
+
name = "zerocopy-derive"
+
version = "0.8.26"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.104",
+
]
+
+
[[package]]
+
name = "zstd"
+
version = "0.13.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
+
dependencies = [
+
"zstd-safe",
+
]
+
+
[[package]]
+
name = "zstd-safe"
+
version = "7.2.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
+
dependencies = [
+
"zstd-sys",
+
]
+
+
[[package]]
+
name = "zstd-sys"
+
version = "2.0.15+zstd.1.5.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
+
dependencies = [
+
"cc",
+
"pkg-config",
+
]
-1914
pkgs/by-name/ta/tantivy-go/add-Cargo.lock.patch
···
-
diff --git a/rust/Cargo.lock b/rust/Cargo.lock
-
new file mode 100644
-
index 0000000..6717372
-
--- /dev/null
-
+++ b/rust/Cargo.lock
-
@@ -0,0 +1,1908 @@
-
+# This file is automatically @generated by Cargo.
-
+# It is not intended for manual editing.
-
+version = 4
-
+
-
+[[package]]
-
+name = "adler32"
-
+version = "1.2.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
-
+
-
+[[package]]
-
+name = "ahash"
-
+version = "0.8.12"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
-
+dependencies = [
-
+ "cfg-if",
-
+ "once_cell",
-
+ "version_check",
-
+ "zerocopy",
-
+]
-
+
-
+[[package]]
-
+name = "aho-corasick"
-
+version = "1.1.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
-
+dependencies = [
-
+ "memchr",
-
+]
-
+
-
+[[package]]
-
+name = "allocator-api2"
-
+version = "0.2.21"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
-
+
-
+[[package]]
-
+name = "anstream"
-
+version = "0.6.20"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
-
+dependencies = [
-
+ "anstyle",
-
+ "anstyle-parse",
-
+ "anstyle-query",
-
+ "anstyle-wincon",
-
+ "colorchoice",
-
+ "is_terminal_polyfill",
-
+ "utf8parse",
-
+]
-
+
-
+[[package]]
-
+name = "anstyle"
-
+version = "1.0.11"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
-
+
-
+[[package]]
-
+name = "anstyle-parse"
-
+version = "0.2.7"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
-
+dependencies = [
-
+ "utf8parse",
-
+]
-
+
-
+[[package]]
-
+name = "anstyle-query"
-
+version = "1.1.4"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
-
+dependencies = [
-
+ "windows-sys 0.60.2",
-
+]
-
+
-
+[[package]]
-
+name = "anstyle-wincon"
-
+version = "3.0.10"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
-
+dependencies = [
-
+ "anstyle",
-
+ "once_cell_polyfill",
-
+ "windows-sys 0.60.2",
-
+]
-
+
-
+[[package]]
-
+name = "arc-swap"
-
+version = "1.7.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
-
+
-
+[[package]]
-
+name = "async-trait"
-
+version = "0.1.88"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
-
+dependencies = [
-
+ "proc-macro2",
-
+ "quote",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "autocfg"
-
+version = "1.5.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
-
+
-
+[[package]]
-
+name = "base64"
-
+version = "0.22.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
-
+
-
+[[package]]
-
+name = "bitflags"
-
+version = "2.9.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
-
+
-
+[[package]]
-
+name = "bitpacking"
-
+version = "0.9.2"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "4c1d3e2bfd8d06048a179f7b17afc3188effa10385e7b00dc65af6aae732ea92"
-
+dependencies = [
-
+ "crunchy",
-
+]
-
+
-
+[[package]]
-
+name = "bon"
-
+version = "3.6.5"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "33d9ef19ae5263a138da9a86871eca537478ab0332a7770bac7e3f08b801f89f"
-
+dependencies = [
-
+ "bon-macros",
-
+ "rustversion",
-
+]
-
+
-
+[[package]]
-
+name = "bon-macros"
-
+version = "3.6.5"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "577ae008f2ca11ca7641bd44601002ee5ab49ef0af64846ce1ab6057218a5cc1"
-
+dependencies = [
-
+ "darling",
-
+ "ident_case",
-
+ "prettyplease",
-
+ "proc-macro2",
-
+ "quote",
-
+ "rustversion",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "bumpalo"
-
+version = "3.19.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
-
+
-
+[[package]]
-
+name = "byteorder"
-
+version = "1.5.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
-
+
-
+[[package]]
-
+name = "cbindgen"
-
+version = "0.28.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
-
+dependencies = [
-
+ "clap",
-
+ "heck",
-
+ "indexmap",
-
+ "log",
-
+ "proc-macro2",
-
+ "quote",
-
+ "serde",
-
+ "serde_json",
-
+ "syn 2.0.104",
-
+ "tempfile",
-
+ "toml",
-
+]
-
+
-
+[[package]]
-
+name = "cc"
-
+version = "1.2.32"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "2352e5597e9c544d5e6d9c95190d5d27738ade584fa8db0a16e130e5c2b5296e"
-
+dependencies = [
-
+ "jobserver",
-
+ "libc",
-
+ "shlex",
-
+]
-
+
-
+[[package]]
-
+name = "cedarwood"
-
+version = "0.4.6"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "6d910bedd62c24733263d0bed247460853c9d22e8956bd4cd964302095e04e90"
-
+dependencies = [
-
+ "smallvec",
-
+]
-
+
-
+[[package]]
-
+name = "census"
-
+version = "0.4.2"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0"
-
+
-
+[[package]]
-
+name = "cfg-if"
-
+version = "1.0.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
-
+
-
+[[package]]
-
+name = "clap"
-
+version = "4.5.43"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "50fd97c9dc2399518aa331917ac6f274280ec5eb34e555dd291899745c48ec6f"
-
+dependencies = [
-
+ "clap_builder",
-
+]
-
+
-
+[[package]]
-
+name = "clap_builder"
-
+version = "4.5.43"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "c35b5830294e1fa0462034af85cc95225a4cb07092c088c55bda3147cfcd8f65"
-
+dependencies = [
-
+ "anstream",
-
+ "anstyle",
-
+ "clap_lex",
-
+ "strsim",
-
+]
-
+
-
+[[package]]
-
+name = "clap_lex"
-
+version = "0.7.5"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
-
+
-
+[[package]]
-
+name = "colorchoice"
-
+version = "1.0.4"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
-
+
-
+[[package]]
-
+name = "core2"
-
+version = "0.4.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
-
+dependencies = [
-
+ "memchr",
-
+]
-
+
-
+[[package]]
-
+name = "crc32fast"
-
+version = "1.5.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
-
+dependencies = [
-
+ "cfg-if",
-
+]
-
+
-
+[[package]]
-
+name = "crossbeam-channel"
-
+version = "0.5.15"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
-
+dependencies = [
-
+ "crossbeam-utils",
-
+]
-
+
-
+[[package]]
-
+name = "crossbeam-deque"
-
+version = "0.8.6"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
-
+dependencies = [
-
+ "crossbeam-epoch",
-
+ "crossbeam-utils",
-
+]
-
+
-
+[[package]]
-
+name = "crossbeam-epoch"
-
+version = "0.9.18"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
-
+dependencies = [
-
+ "crossbeam-utils",
-
+]
-
+
-
+[[package]]
-
+name = "crossbeam-utils"
-
+version = "0.8.21"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
-
+
-
+[[package]]
-
+name = "crunchy"
-
+version = "0.2.2"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
-
+
-
+[[package]]
-
+name = "darling"
-
+version = "0.21.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "d6b136475da5ef7b6ac596c0e956e37bad51b85b987ff3d5e230e964936736b2"
-
+dependencies = [
-
+ "darling_core",
-
+ "darling_macro",
-
+]
-
+
-
+[[package]]
-
+name = "darling_core"
-
+version = "0.21.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "b44ad32f92b75fb438b04b68547e521a548be8acc339a6dacc4a7121488f53e6"
-
+dependencies = [
-
+ "fnv",
-
+ "ident_case",
-
+ "proc-macro2",
-
+ "quote",
-
+ "strsim",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "darling_macro"
-
+version = "0.21.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "2b5be8a7a562d315a5b92a630c30cec6bcf663e6673f00fbb69cca66a6f521b9"
-
+dependencies = [
-
+ "darling_core",
-
+ "quote",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "dary_heap"
-
+version = "0.3.7"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "04d2cd9c18b9f454ed67da600630b021a8a80bf33f8c95896ab33aaf1c26b728"
-
+
-
+[[package]]
-
+name = "deranged"
-
+version = "0.4.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
-
+dependencies = [
-
+ "powerfmt",
-
+ "serde",
-
+]
-
+
-
+[[package]]
-
+name = "downcast-rs"
-
+version = "2.0.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "ea8a8b81cacc08888170eef4d13b775126db426d0b348bee9d18c2c1eaf123cf"
-
+
-
+[[package]]
-
+name = "either"
-
+version = "1.15.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
-
+
-
+[[package]]
-
+name = "env_filter"
-
+version = "0.1.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "186e05a59d4c50738528153b83b0b0194d3a29507dfec16eccd4b342903397d0"
-
+dependencies = [
-
+ "log",
-
+ "regex",
-
+]
-
+
-
+[[package]]
-
+name = "env_logger"
-
+version = "0.11.8"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
-
+dependencies = [
-
+ "anstream",
-
+ "anstyle",
-
+ "env_filter",
-
+ "jiff",
-
+ "log",
-
+]
-
+
-
+[[package]]
-
+name = "equivalent"
-
+version = "1.0.2"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
-
+
-
+[[package]]
-
+name = "errno"
-
+version = "0.3.13"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
-
+dependencies = [
-
+ "libc",
-
+ "windows-sys 0.60.2",
-
+]
-
+
-
+[[package]]
-
+name = "fastdivide"
-
+version = "0.4.2"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471"
-
+
-
+[[package]]
-
+name = "fastrand"
-
+version = "2.3.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
-
+
-
+[[package]]
-
+name = "fnv"
-
+version = "1.0.7"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
-
+
-
+[[package]]
-
+name = "foldhash"
-
+version = "0.1.5"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
-
+
-
+[[package]]
-
+name = "fs4"
-
+version = "0.8.4"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8"
-
+dependencies = [
-
+ "rustix 0.38.44",
-
+ "windows-sys 0.52.0",
-
+]
-
+
-
+[[package]]
-
+name = "futures-core"
-
+version = "0.3.31"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
-
+
-
+[[package]]
-
+name = "futures-macro"
-
+version = "0.3.31"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
-
+dependencies = [
-
+ "proc-macro2",
-
+ "quote",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "futures-task"
-
+version = "0.3.31"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
-
+
-
+[[package]]
-
+name = "futures-util"
-
+version = "0.3.31"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
-
+dependencies = [
-
+ "futures-core",
-
+ "futures-macro",
-
+ "futures-task",
-
+ "pin-project-lite",
-
+ "pin-utils",
-
+ "slab",
-
+]
-
+
-
+[[package]]
-
+name = "fxhash"
-
+version = "0.2.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
-
+dependencies = [
-
+ "byteorder",
-
+]
-
+
-
+[[package]]
-
+name = "getrandom"
-
+version = "0.2.16"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
-
+dependencies = [
-
+ "cfg-if",
-
+ "libc",
-
+ "wasi 0.11.1+wasi-snapshot-preview1",
-
+]
-
+
-
+[[package]]
-
+name = "getrandom"
-
+version = "0.3.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
-
+dependencies = [
-
+ "cfg-if",
-
+ "libc",
-
+ "r-efi",
-
+ "wasi 0.14.2+wasi-0.2.4",
-
+]
-
+
-
+[[package]]
-
+name = "hashbrown"
-
+version = "0.14.5"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
-
+dependencies = [
-
+ "ahash",
-
+ "allocator-api2",
-
+]
-
+
-
+[[package]]
-
+name = "hashbrown"
-
+version = "0.15.5"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
-
+dependencies = [
-
+ "allocator-api2",
-
+ "equivalent",
-
+ "foldhash",
-
+]
-
+
-
+[[package]]
-
+name = "heck"
-
+version = "0.4.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
-
+
-
+[[package]]
-
+name = "htmlescape"
-
+version = "0.3.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
-
+
-
+[[package]]
-
+name = "hyperloglogplus"
-
+version = "0.4.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "621debdf94dcac33e50475fdd76d34d5ea9c0362a834b9db08c3024696c1fbe3"
-
+dependencies = [
-
+ "serde",
-
+]
-
+
-
+[[package]]
-
+name = "ident_case"
-
+version = "1.0.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
-
+
-
+[[package]]
-
+name = "include-flate"
-
+version = "0.3.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "df49c16750695486c1f34de05da5b7438096156466e7f76c38fcdf285cf0113e"
-
+dependencies = [
-
+ "include-flate-codegen",
-
+ "lazy_static",
-
+ "libflate",
-
+]
-
+
-
+[[package]]
-
+name = "include-flate-codegen"
-
+version = "0.2.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "8c5b246c6261be723b85c61ecf87804e8ea4a35cb68be0ff282ed84b95ffe7d7"
-
+dependencies = [
-
+ "libflate",
-
+ "proc-macro2",
-
+ "quote",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "indexmap"
-
+version = "2.10.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
-
+dependencies = [
-
+ "equivalent",
-
+ "hashbrown 0.15.5",
-
+]
-
+
-
+[[package]]
-
+name = "is_terminal_polyfill"
-
+version = "1.70.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
-
+
-
+[[package]]
-
+name = "itertools"
-
+version = "0.14.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
-
+dependencies = [
-
+ "either",
-
+]
-
+
-
+[[package]]
-
+name = "itoa"
-
+version = "1.0.15"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
-
+
-
+[[package]]
-
+name = "jieba-macros"
-
+version = "0.7.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "7c676b32a471d3cfae8dac2ad2f8334cd52e53377733cca8c1fb0a5062fec192"
-
+dependencies = [
-
+ "phf_codegen",
-
+]
-
+
-
+[[package]]
-
+name = "jieba-rs"
-
+version = "0.7.4"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "f5dd552bbb95d578520ee68403bf8aaf0dbbb2ce55b0854d019f9350ad61040a"
-
+dependencies = [
-
+ "cedarwood",
-
+ "fxhash",
-
+ "include-flate",
-
+ "jieba-macros",
-
+ "lazy_static",
-
+ "phf",
-
+ "regex",
-
+]
-
+
-
+[[package]]
-
+name = "jiff"
-
+version = "0.2.15"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
-
+dependencies = [
-
+ "jiff-static",
-
+ "log",
-
+ "portable-atomic",
-
+ "portable-atomic-util",
-
+ "serde",
-
+]
-
+
-
+[[package]]
-
+name = "jiff-static"
-
+version = "0.2.15"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
-
+dependencies = [
-
+ "proc-macro2",
-
+ "quote",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "jobserver"
-
+version = "0.1.33"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
-
+dependencies = [
-
+ "getrandom 0.3.3",
-
+ "libc",
-
+]
-
+
-
+[[package]]
-
+name = "js-sys"
-
+version = "0.3.77"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
-
+dependencies = [
-
+ "once_cell",
-
+ "wasm-bindgen",
-
+]
-
+
-
+[[package]]
-
+name = "lazy_static"
-
+version = "1.5.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
-
+
-
+[[package]]
-
+name = "levenshtein_automata"
-
+version = "0.2.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
-
+
-
+[[package]]
-
+name = "libc"
-
+version = "0.2.174"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
-
+
-
+[[package]]
-
+name = "libflate"
-
+version = "2.1.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "45d9dfdc14ea4ef0900c1cddbc8dcd553fbaacd8a4a282cf4018ae9dd04fb21e"
-
+dependencies = [
-
+ "adler32",
-
+ "core2",
-
+ "crc32fast",
-
+ "dary_heap",
-
+ "libflate_lz77",
-
+]
-
+
-
+[[package]]
-
+name = "libflate_lz77"
-
+version = "2.1.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "e6e0d73b369f386f1c44abd9c570d5318f55ccde816ff4b562fa452e5182863d"
-
+dependencies = [
-
+ "core2",
-
+ "hashbrown 0.14.5",
-
+ "rle-decode-fast",
-
+]
-
+
-
+[[package]]
-
+name = "libm"
-
+version = "0.2.15"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
-
+
-
+[[package]]
-
+name = "linux-raw-sys"
-
+version = "0.4.15"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
-
+
-
+[[package]]
-
+name = "linux-raw-sys"
-
+version = "0.9.4"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
-
+
-
+[[package]]
-
+name = "log"
-
+version = "0.4.27"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
-
+
-
+[[package]]
-
+name = "logcall"
-
+version = "0.1.11"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "56e8309d7cbf9e9f27139956138cb375f14621cdb2f4cdd91468467ec04b6784"
-
+dependencies = [
-
+ "proc-macro-error",
-
+ "proc-macro2",
-
+ "quote",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "lru"
-
+version = "0.12.5"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
-
+dependencies = [
-
+ "hashbrown 0.15.5",
-
+]
-
+
-
+[[package]]
-
+name = "lz4_flex"
-
+version = "0.11.5"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "08ab2867e3eeeca90e844d1940eab391c9dc5228783db2ed999acbc0a9ed375a"
-
+
-
+[[package]]
-
+name = "measure_time"
-
+version = "0.9.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "51c55d61e72fc3ab704396c5fa16f4c184db37978ae4e94ca8959693a235fc0e"
-
+dependencies = [
-
+ "log",
-
+]
-
+
-
+[[package]]
-
+name = "memchr"
-
+version = "2.7.5"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
-
+
-
+[[package]]
-
+name = "memmap2"
-
+version = "0.9.7"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "483758ad303d734cec05e5c12b41d7e93e6a6390c5e9dae6bdeb7c1259012d28"
-
+dependencies = [
-
+ "libc",
-
+]
-
+
-
+[[package]]
-
+name = "minimal-lexical"
-
+version = "0.2.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
-
+
-
+[[package]]
-
+name = "murmurhash32"
-
+version = "0.3.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
-
+
-
+[[package]]
-
+name = "nom"
-
+version = "7.1.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
-
+dependencies = [
-
+ "memchr",
-
+ "minimal-lexical",
-
+]
-
+
-
+[[package]]
-
+name = "num-conv"
-
+version = "0.1.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
-
+
-
+[[package]]
-
+name = "num-traits"
-
+version = "0.2.19"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
-
+dependencies = [
-
+ "autocfg",
-
+ "libm",
-
+]
-
+
-
+[[package]]
-
+name = "once_cell"
-
+version = "1.21.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
-
+
-
+[[package]]
-
+name = "once_cell_polyfill"
-
+version = "1.70.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
-
+
-
+[[package]]
-
+name = "oneshot"
-
+version = "0.1.11"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "b4ce411919553d3f9fa53a0880544cda985a112117a0444d5ff1e870a893d6ea"
-
+
-
+[[package]]
-
+name = "ownedbytes"
-
+version = "0.7.0"
-
+source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
-
+dependencies = [
-
+ "stable_deref_trait",
-
+]
-
+
-
+[[package]]
-
+name = "phf"
-
+version = "0.11.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
-
+dependencies = [
-
+ "phf_macros",
-
+ "phf_shared",
-
+]
-
+
-
+[[package]]
-
+name = "phf_codegen"
-
+version = "0.11.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
-
+dependencies = [
-
+ "phf_generator",
-
+ "phf_shared",
-
+]
-
+
-
+[[package]]
-
+name = "phf_generator"
-
+version = "0.11.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
-
+dependencies = [
-
+ "phf_shared",
-
+ "rand",
-
+]
-
+
-
+[[package]]
-
+name = "phf_macros"
-
+version = "0.11.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
-
+dependencies = [
-
+ "phf_generator",
-
+ "phf_shared",
-
+ "proc-macro2",
-
+ "quote",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "phf_shared"
-
+version = "0.11.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
-
+dependencies = [
-
+ "siphasher",
-
+]
-
+
-
+[[package]]
-
+name = "pin-project-lite"
-
+version = "0.2.16"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
-
+
-
+[[package]]
-
+name = "pin-utils"
-
+version = "0.1.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
-
+
-
+[[package]]
-
+name = "pkg-config"
-
+version = "0.3.32"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
-
+
-
+[[package]]
-
+name = "portable-atomic"
-
+version = "1.11.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
-
+
-
+[[package]]
-
+name = "portable-atomic-util"
-
+version = "0.2.4"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
-
+dependencies = [
-
+ "portable-atomic",
-
+]
-
+
-
+[[package]]
-
+name = "powerfmt"
-
+version = "0.2.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
-
+
-
+[[package]]
-
+name = "ppv-lite86"
-
+version = "0.2.21"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
-
+dependencies = [
-
+ "zerocopy",
-
+]
-
+
-
+[[package]]
-
+name = "prettyplease"
-
+version = "0.2.36"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2"
-
+dependencies = [
-
+ "proc-macro2",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "proc-macro-error"
-
+version = "1.0.4"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
-
+dependencies = [
-
+ "proc-macro-error-attr",
-
+ "proc-macro2",
-
+ "quote",
-
+ "syn 1.0.109",
-
+ "version_check",
-
+]
-
+
-
+[[package]]
-
+name = "proc-macro-error-attr"
-
+version = "1.0.4"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
-
+dependencies = [
-
+ "proc-macro2",
-
+ "quote",
-
+ "version_check",
-
+]
-
+
-
+[[package]]
-
+name = "proc-macro2"
-
+version = "1.0.95"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
-
+dependencies = [
-
+ "unicode-ident",
-
+]
-
+
-
+[[package]]
-
+name = "quote"
-
+version = "1.0.40"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
-
+dependencies = [
-
+ "proc-macro2",
-
+]
-
+
-
+[[package]]
-
+name = "r-efi"
-
+version = "5.3.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
-
+
-
+[[package]]
-
+name = "rand"
-
+version = "0.8.5"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
-
+dependencies = [
-
+ "libc",
-
+ "rand_chacha",
-
+ "rand_core",
-
+]
-
+
-
+[[package]]
-
+name = "rand_chacha"
-
+version = "0.3.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
-
+dependencies = [
-
+ "ppv-lite86",
-
+ "rand_core",
-
+]
-
+
-
+[[package]]
-
+name = "rand_core"
-
+version = "0.6.4"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
-
+dependencies = [
-
+ "getrandom 0.2.16",
-
+]
-
+
-
+[[package]]
-
+name = "rand_distr"
-
+version = "0.4.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
-
+dependencies = [
-
+ "num-traits",
-
+ "rand",
-
+]
-
+
-
+[[package]]
-
+name = "rayon"
-
+version = "1.10.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
-
+dependencies = [
-
+ "either",
-
+ "rayon-core",
-
+]
-
+
-
+[[package]]
-
+name = "rayon-core"
-
+version = "1.12.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
-
+dependencies = [
-
+ "crossbeam-deque",
-
+ "crossbeam-utils",
-
+]
-
+
-
+[[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.9"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
-
+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 = "rle-decode-fast"
-
+version = "1.0.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "3582f63211428f83597b51b2ddb88e2a91a9d52d12831f9d08f5e624e8977422"
-
+
-
+[[package]]
-
+name = "rust-stemmers"
-
+version = "1.2.0"
-
+source = "git+https://github.com/silver-ymz/rust-stemmers.git?rev=51696378e352688b7ffd4fface615370ff5e8768#51696378e352688b7ffd4fface615370ff5e8768"
-
+
-
+[[package]]
-
+name = "rustc-hash"
-
+version = "2.1.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
-
+
-
+[[package]]
-
+name = "rustix"
-
+version = "0.38.44"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
-
+dependencies = [
-
+ "bitflags",
-
+ "errno",
-
+ "libc",
-
+ "linux-raw-sys 0.4.15",
-
+ "windows-sys 0.59.0",
-
+]
-
+
-
+[[package]]
-
+name = "rustix"
-
+version = "1.0.8"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
-
+dependencies = [
-
+ "bitflags",
-
+ "errno",
-
+ "libc",
-
+ "linux-raw-sys 0.9.4",
-
+ "windows-sys 0.60.2",
-
+]
-
+
-
+[[package]]
-
+name = "rustversion"
-
+version = "1.0.21"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
-
+
-
+[[package]]
-
+name = "ryu"
-
+version = "1.0.20"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
-
+
-
+[[package]]
-
+name = "serde"
-
+version = "1.0.219"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
-
+dependencies = [
-
+ "serde_derive",
-
+]
-
+
-
+[[package]]
-
+name = "serde_derive"
-
+version = "1.0.219"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
-
+dependencies = [
-
+ "proc-macro2",
-
+ "quote",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "serde_json"
-
+version = "1.0.142"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7"
-
+dependencies = [
-
+ "itoa",
-
+ "memchr",
-
+ "ryu",
-
+ "serde",
-
+]
-
+
-
+[[package]]
-
+name = "serde_spanned"
-
+version = "0.6.9"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
-
+dependencies = [
-
+ "serde",
-
+]
-
+
-
+[[package]]
-
+name = "shlex"
-
+version = "1.3.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
-
+
-
+[[package]]
-
+name = "siphasher"
-
+version = "1.0.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
-
+
-
+[[package]]
-
+name = "sketches-ddsketch"
-
+version = "0.3.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "c1e9a774a6c28142ac54bb25d25562e6bcf957493a184f15ad4eebccb23e410a"
-
+dependencies = [
-
+ "serde",
-
+]
-
+
-
+[[package]]
-
+name = "slab"
-
+version = "0.4.11"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
-
+
-
+[[package]]
-
+name = "smallvec"
-
+version = "1.15.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
-
+
-
+[[package]]
-
+name = "stable_deref_trait"
-
+version = "1.2.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
-
+
-
+[[package]]
-
+name = "strsim"
-
+version = "0.11.1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
-
+
-
+[[package]]
-
+name = "syn"
-
+version = "1.0.109"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
-
+dependencies = [
-
+ "proc-macro2",
-
+ "unicode-ident",
-
+]
-
+
-
+[[package]]
-
+name = "syn"
-
+version = "2.0.104"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
-
+dependencies = [
-
+ "proc-macro2",
-
+ "quote",
-
+ "unicode-ident",
-
+]
-
+
-
+[[package]]
-
+name = "tantivy"
-
+version = "0.23.0"
-
+source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
-
+dependencies = [
-
+ "aho-corasick",
-
+ "arc-swap",
-
+ "base64",
-
+ "bitpacking",
-
+ "bon",
-
+ "byteorder",
-
+ "census",
-
+ "crc32fast",
-
+ "crossbeam-channel",
-
+ "downcast-rs",
-
+ "fastdivide",
-
+ "fnv",
-
+ "fs4",
-
+ "htmlescape",
-
+ "hyperloglogplus",
-
+ "itertools",
-
+ "levenshtein_automata",
-
+ "log",
-
+ "lru",
-
+ "lz4_flex",
-
+ "measure_time",
-
+ "memmap2",
-
+ "once_cell",
-
+ "oneshot",
-
+ "rayon",
-
+ "regex",
-
+ "rust-stemmers",
-
+ "rustc-hash",
-
+ "serde",
-
+ "serde_json",
-
+ "sketches-ddsketch",
-
+ "smallvec",
-
+ "tantivy-bitpacker",
-
+ "tantivy-columnar",
-
+ "tantivy-common",
-
+ "tantivy-fst",
-
+ "tantivy-query-grammar",
-
+ "tantivy-stacker",
-
+ "tantivy-tokenizer-api",
-
+ "tempfile",
-
+ "thiserror",
-
+ "time",
-
+ "uuid",
-
+ "winapi",
-
+]
-
+
-
+[[package]]
-
+name = "tantivy-bitpacker"
-
+version = "0.6.0"
-
+source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
-
+dependencies = [
-
+ "bitpacking",
-
+]
-
+
-
+[[package]]
-
+name = "tantivy-columnar"
-
+version = "0.3.0"
-
+source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
-
+dependencies = [
-
+ "downcast-rs",
-
+ "fastdivide",
-
+ "itertools",
-
+ "serde",
-
+ "tantivy-bitpacker",
-
+ "tantivy-common",
-
+ "tantivy-sstable",
-
+ "tantivy-stacker",
-
+]
-
+
-
+[[package]]
-
+name = "tantivy-common"
-
+version = "0.7.0"
-
+source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
-
+dependencies = [
-
+ "async-trait",
-
+ "byteorder",
-
+ "ownedbytes",
-
+ "serde",
-
+ "time",
-
+]
-
+
-
+[[package]]
-
+name = "tantivy-fst"
-
+version = "0.5.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18"
-
+dependencies = [
-
+ "byteorder",
-
+ "regex-syntax",
-
+ "utf8-ranges",
-
+]
-
+
-
+[[package]]
-
+name = "tantivy-go"
-
+version = "1.0.0"
-
+dependencies = [
-
+ "cbindgen",
-
+ "crunchy",
-
+ "env_logger",
-
+ "lazy_static",
-
+ "log",
-
+ "logcall",
-
+ "phf",
-
+ "serde",
-
+ "serde_json",
-
+ "tantivy",
-
+ "tantivy-jieba",
-
+ "unicode-segmentation",
-
+]
-
+
-
+[[package]]
-
+name = "tantivy-jieba"
-
+version = "0.11.0"
-
+source = "git+https://github.com/anyproto/tantivy-jieba.git?rev=ca11d3153b8844cbc43cd243667e03f56f6d1e18#ca11d3153b8844cbc43cd243667e03f56f6d1e18"
-
+dependencies = [
-
+ "jieba-rs",
-
+ "lazy_static",
-
+ "tantivy-tokenizer-api",
-
+]
-
+
-
+[[package]]
-
+name = "tantivy-query-grammar"
-
+version = "0.22.0"
-
+source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
-
+dependencies = [
-
+ "nom",
-
+]
-
+
-
+[[package]]
-
+name = "tantivy-sstable"
-
+version = "0.3.0"
-
+source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
-
+dependencies = [
-
+ "futures-util",
-
+ "itertools",
-
+ "tantivy-bitpacker",
-
+ "tantivy-common",
-
+ "tantivy-fst",
-
+ "zstd",
-
+]
-
+
-
+[[package]]
-
+name = "tantivy-stacker"
-
+version = "0.3.0"
-
+source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
-
+dependencies = [
-
+ "murmurhash32",
-
+ "rand_distr",
-
+ "tantivy-common",
-
+]
-
+
-
+[[package]]
-
+name = "tantivy-tokenizer-api"
-
+version = "0.3.0"
-
+source = "git+https://github.com/anyproto/tantivy.git?rev=693274a5d4be6da9d069dff4d540162165a99b0e#693274a5d4be6da9d069dff4d540162165a99b0e"
-
+dependencies = [
-
+ "serde",
-
+]
-
+
-
+[[package]]
-
+name = "tempfile"
-
+version = "3.20.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
-
+dependencies = [
-
+ "fastrand",
-
+ "getrandom 0.3.3",
-
+ "once_cell",
-
+ "rustix 1.0.8",
-
+ "windows-sys 0.59.0",
-
+]
-
+
-
+[[package]]
-
+name = "thiserror"
-
+version = "2.0.12"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
-
+dependencies = [
-
+ "thiserror-impl",
-
+]
-
+
-
+[[package]]
-
+name = "thiserror-impl"
-
+version = "2.0.12"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
-
+dependencies = [
-
+ "proc-macro2",
-
+ "quote",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "time"
-
+version = "0.3.41"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
-
+dependencies = [
-
+ "deranged",
-
+ "itoa",
-
+ "num-conv",
-
+ "powerfmt",
-
+ "serde",
-
+ "time-core",
-
+ "time-macros",
-
+]
-
+
-
+[[package]]
-
+name = "time-core"
-
+version = "0.1.4"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
-
+
-
+[[package]]
-
+name = "time-macros"
-
+version = "0.2.22"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
-
+dependencies = [
-
+ "num-conv",
-
+ "time-core",
-
+]
-
+
-
+[[package]]
-
+name = "toml"
-
+version = "0.8.23"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
-
+dependencies = [
-
+ "serde",
-
+ "serde_spanned",
-
+ "toml_datetime",
-
+ "toml_edit",
-
+]
-
+
-
+[[package]]
-
+name = "toml_datetime"
-
+version = "0.6.11"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
-
+dependencies = [
-
+ "serde",
-
+]
-
+
-
+[[package]]
-
+name = "toml_edit"
-
+version = "0.22.27"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
-
+dependencies = [
-
+ "indexmap",
-
+ "serde",
-
+ "serde_spanned",
-
+ "toml_datetime",
-
+ "toml_write",
-
+ "winnow",
-
+]
-
+
-
+[[package]]
-
+name = "toml_write"
-
+version = "0.1.2"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
-
+
-
+[[package]]
-
+name = "unicode-ident"
-
+version = "1.0.18"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
-
+
-
+[[package]]
-
+name = "unicode-segmentation"
-
+version = "1.12.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
-
+
-
+[[package]]
-
+name = "utf8-ranges"
-
+version = "1.0.5"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba"
-
+
-
+[[package]]
-
+name = "utf8parse"
-
+version = "0.2.2"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
-
+
-
+[[package]]
-
+name = "uuid"
-
+version = "1.17.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
-
+dependencies = [
-
+ "getrandom 0.3.3",
-
+ "js-sys",
-
+ "serde",
-
+ "wasm-bindgen",
-
+]
-
+
-
+[[package]]
-
+name = "version_check"
-
+version = "0.9.5"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
-
+
-
+[[package]]
-
+name = "wasi"
-
+version = "0.11.1+wasi-snapshot-preview1"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
-
+
-
+[[package]]
-
+name = "wasi"
-
+version = "0.14.2+wasi-0.2.4"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
-
+dependencies = [
-
+ "wit-bindgen-rt",
-
+]
-
+
-
+[[package]]
-
+name = "wasm-bindgen"
-
+version = "0.2.100"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
-
+dependencies = [
-
+ "cfg-if",
-
+ "once_cell",
-
+ "rustversion",
-
+ "wasm-bindgen-macro",
-
+]
-
+
-
+[[package]]
-
+name = "wasm-bindgen-backend"
-
+version = "0.2.100"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
-
+dependencies = [
-
+ "bumpalo",
-
+ "log",
-
+ "proc-macro2",
-
+ "quote",
-
+ "syn 2.0.104",
-
+ "wasm-bindgen-shared",
-
+]
-
+
-
+[[package]]
-
+name = "wasm-bindgen-macro"
-
+version = "0.2.100"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
-
+dependencies = [
-
+ "quote",
-
+ "wasm-bindgen-macro-support",
-
+]
-
+
-
+[[package]]
-
+name = "wasm-bindgen-macro-support"
-
+version = "0.2.100"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
-
+dependencies = [
-
+ "proc-macro2",
-
+ "quote",
-
+ "syn 2.0.104",
-
+ "wasm-bindgen-backend",
-
+ "wasm-bindgen-shared",
-
+]
-
+
-
+[[package]]
-
+name = "wasm-bindgen-shared"
-
+version = "0.2.100"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
-
+dependencies = [
-
+ "unicode-ident",
-
+]
-
+
-
+[[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-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-link"
-
+version = "0.1.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
-
+
-
+[[package]]
-
+name = "windows-sys"
-
+version = "0.52.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
-
+dependencies = [
-
+ "windows-targets 0.52.6",
-
+]
-
+
-
+[[package]]
-
+name = "windows-sys"
-
+version = "0.59.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
-
+dependencies = [
-
+ "windows-targets 0.52.6",
-
+]
-
+
-
+[[package]]
-
+name = "windows-sys"
-
+version = "0.60.2"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
-
+dependencies = [
-
+ "windows-targets 0.53.3",
-
+]
-
+
-
+[[package]]
-
+name = "windows-targets"
-
+version = "0.52.6"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
-
+dependencies = [
-
+ "windows_aarch64_gnullvm 0.52.6",
-
+ "windows_aarch64_msvc 0.52.6",
-
+ "windows_i686_gnu 0.52.6",
-
+ "windows_i686_gnullvm 0.52.6",
-
+ "windows_i686_msvc 0.52.6",
-
+ "windows_x86_64_gnu 0.52.6",
-
+ "windows_x86_64_gnullvm 0.52.6",
-
+ "windows_x86_64_msvc 0.52.6",
-
+]
-
+
-
+[[package]]
-
+name = "windows-targets"
-
+version = "0.53.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
-
+dependencies = [
-
+ "windows-link",
-
+ "windows_aarch64_gnullvm 0.53.0",
-
+ "windows_aarch64_msvc 0.53.0",
-
+ "windows_i686_gnu 0.53.0",
-
+ "windows_i686_gnullvm 0.53.0",
-
+ "windows_i686_msvc 0.53.0",
-
+ "windows_x86_64_gnu 0.53.0",
-
+ "windows_x86_64_gnullvm 0.53.0",
-
+ "windows_x86_64_msvc 0.53.0",
-
+]
-
+
-
+[[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_gnullvm"
-
+version = "0.53.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
-
+
-
+[[package]]
-
+name = "windows_aarch64_msvc"
-
+version = "0.52.6"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
-
+
-
+[[package]]
-
+name = "windows_aarch64_msvc"
-
+version = "0.53.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
-
+
-
+[[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_gnu"
-
+version = "0.53.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
-
+
-
+[[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_gnullvm"
-
+version = "0.53.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
-
+
-
+[[package]]
-
+name = "windows_i686_msvc"
-
+version = "0.52.6"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
-
+
-
+[[package]]
-
+name = "windows_i686_msvc"
-
+version = "0.53.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
-
+
-
+[[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_gnu"
-
+version = "0.53.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
-
+
-
+[[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_gnullvm"
-
+version = "0.53.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
-
+
-
+[[package]]
-
+name = "windows_x86_64_msvc"
-
+version = "0.52.6"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
-
+
-
+[[package]]
-
+name = "windows_x86_64_msvc"
-
+version = "0.53.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
-
+
-
+[[package]]
-
+name = "winnow"
-
+version = "0.7.12"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
-
+dependencies = [
-
+ "memchr",
-
+]
-
+
-
+[[package]]
-
+name = "wit-bindgen-rt"
-
+version = "0.39.0"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
-
+dependencies = [
-
+ "bitflags",
-
+]
-
+
-
+[[package]]
-
+name = "zerocopy"
-
+version = "0.8.26"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
-
+dependencies = [
-
+ "zerocopy-derive",
-
+]
-
+
-
+[[package]]
-
+name = "zerocopy-derive"
-
+version = "0.8.26"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
-
+dependencies = [
-
+ "proc-macro2",
-
+ "quote",
-
+ "syn 2.0.104",
-
+]
-
+
-
+[[package]]
-
+name = "zstd"
-
+version = "0.13.3"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
-
+dependencies = [
-
+ "zstd-safe",
-
+]
-
+
-
+[[package]]
-
+name = "zstd-safe"
-
+version = "7.2.4"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
-
+dependencies = [
-
+ "zstd-sys",
-
+]
-
+
-
+[[package]]
-
+name = "zstd-sys"
-
+version = "2.0.15+zstd.1.5.7"
-
+source = "registry+https://github.com/rust-lang/crates.io-index"
-
+checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
-
+dependencies = [
-
+ "cc",
-
+ "pkg-config",
-
+]
···
+18 -9
pkgs/by-name/ta/tantivy-go/package.nix
···
rustPlatform,
}:
-
rustPlatform.buildRustPackage rec {
pname = "tantivy-go";
version = "1.0.4";
src = fetchFromGitHub {
owner = "anyproto";
repo = "tantivy-go";
-
tag = "v${version}";
hash = "sha256-ksHw+62JwQrzxLuXwYfTLOkC22Miz1Rpl5XX8+vPBcM=";
};
-
cargoHash = "sha256-GKbQFWXKEgYmoTyFCQ/SAgFB7UJpYN2SWwZEiUxd260=";
-
cargoPatches = [
-
./add-Cargo.lock.patch
-
];
-
cargoRoot = "rust";
-
buildAndTestSubdir = cargoRoot;
meta = {
description = "Tantivy go bindings";
homepage = "https://github.com/anyproto/tantivy-go";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
autrimpo
adda
];
};
-
}
···
rustPlatform,
}:
+
rustPlatform.buildRustPackage (finalAttrs: {
pname = "tantivy-go";
version = "1.0.4";
src = fetchFromGitHub {
owner = "anyproto";
repo = "tantivy-go";
+
tag = "v${finalAttrs.version}";
hash = "sha256-ksHw+62JwQrzxLuXwYfTLOkC22Miz1Rpl5XX8+vPBcM=";
};
+
sourceRoot = "${finalAttrs.src.name}/rust";
+
cargoLock = {
+
lockFile = ./Cargo.lock;
+
outputHashes = {
+
"rust-stemmers-1.2.0" = "sha256-GJYFQf025U42rJEoI9eIi3xDdK6enptAr3jphuKJdiw=";
+
"tantivy-0.23.0" = "sha256-e2ffM2gRC5eww3xv9izLqukGUgduCt2u7jsqTDX5l8k=";
+
"tantivy-jieba-0.11.0" = "sha256-BDz6+EVksgLkOj/8XXxPMVshI0X1+oLt6alDLMpnLZc=";
+
};
+
};
+
postPatch = ''
+
ln -s ${./Cargo.lock} Cargo.lock
+
chmod +w ../bindings.h
+
'';
meta = {
description = "Tantivy go bindings";
homepage = "https://github.com/anyproto/tantivy-go";
+
changelog = "https://github.com/anyproto/tantivy-go/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
autrimpo
adda
+
kira-bruneau
];
};
+
})