zstd-seekable-s3 0.7.0

Seekable zstd-compressed S3 objects.
Documentation
{
  description = "zstd-seekable-s3";

  inputs = {
    flake-utils.url = "github:numtide/flake-utils";
    nixpkgs.url = "github:NixOS/nixpkgs/master";
    flake-compat = {
      url = "github:edolstra/flake-compat";
      flake = false;
    };
  };

  outputs = { self, nixpkgs, flake-utils, flake-compat }:
    flake-utils.lib.eachDefaultSystem (system:
      let pkgs = import nixpkgs { inherit system; };
      in {
        devShell = pkgs.mkShell {
          buildInputs = with pkgs; [
            rustup
            pkgconfig
            openssl.dev
            zstd
            xxHash
            linuxPackages.perf
          ];
          LANG = "C.UTF-8";
        };
      });
}