usls 0.1.5

A Rust library integrated with ONNXRuntime, providing a collection of ML models.
Documentation
1
2
3
4
5
6
7
8
9
10
11
{
  inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
  outputs = {nixpkgs, ...}: {
    devShell = nixpkgs.lib.genAttrs (nixpkgs.legacyPackages.x86_64-linux.onnxruntime.meta.platforms) (system: let
      pkgs = nixpkgs.legacyPackages.${system};
    in
      pkgs.mkShell {
        packages = with pkgs; [onnxruntime openssl pkg-config rustPlatform.bindgenHook];
      });
  };
}