resourcespace-client 0.1.0

A Rust client for the communicating with ResourceSpace API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, lib, config, inputs, ... }:

{
  dotenv.enable = true;

  languages.rust = {
    enable = true;
    channel = "stable";
    # mold.enable = true;
  };

  packages = with pkgs; [
    openssl
    just
  ];
}