apis 0.5.0

Reactive, session-oriented, asynchronous process-calculus framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
with import <nixpkgs> {};
mkShell {
  buildInputs = [
    gdb # required for rust-gdb
    rustup
    rust-analyzer
  ];
  # required for opengl interactive example
  LD_LIBRARY_PATH = lib.makeLibraryPath [
    libglvnd
    xorg.libX11
    xorg.libXcursor
    xorg.libXi
    xorg.libXrandr
  ];
}