Files
landing_page/automation/snippets/shell.nix
T
Abdon Pijpelinkandxzfc ea0de4c12e Edge v0.6 docs (#2199)
* 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>
2026-03-23 15:10:51 +01:00

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
];
}