zerotier-api 0.2.0

Library for interfacing with ZeroTier
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs ? import ./nixpkgs.nix {} }:

with pkgs;

let
  inherit (rust.packages.stable) rustPlatform;
in

{
  zerotier = buildRustPackage rustPlatform {
    name = "zerotier";
    src = gitignoreSource ./.;
    cargoDir = ".";
  };
}