mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-25 14:08:30 +02:00
* Initial Rust snippets * Update content for Rust * Upgrade Rust to 1.94.0; test Edge code snippets against dev * Temporarily test against Edge shim crate * Move to EdgeShardConfig and EdgeVectorParams * Add docs for payload indexing, filtering, facet(), and optimize() * De-emphasize on-device use case * Update link to Rust examples on Github * Flattened API * Switch to new/create and load to initialize shards * Fixups for released packages * Mention recover_partial_snapshot on method list * Link to Github dev branch for examples --------- Co-authored-by: xzfc <xzfcpw@gmail.com>
29 lines
518 B
Nix
29 lines
518 B
Nix
let
|
|
rust-overlay = builtins.fetchTarball "https://github.com/oxalica/rust-overlay/archive/master.tar.gz";
|
|
pkgs = import <nixpkgs> { overlays = [ (import rust-overlay) ]; };
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
# for ./sync-clients.py
|
|
git
|
|
|
|
# for csharp client
|
|
dotnetCorePackages.sdk_8_0-bin
|
|
|
|
# for go client
|
|
go
|
|
|
|
# for java client
|
|
openjdk
|
|
|
|
# for python client
|
|
uv
|
|
|
|
# for rust client
|
|
rust-bin.stable.latest.default
|
|
|
|
# for typescript client
|
|
pnpm
|
|
];
|
|
}
|