cargo-rio 0.1.0

Interface with the FRC RoboRIO through Cargo.
Documentation
{
  inputs = {
    nci.url = "github:yusdacra/nix-cargo-integration";
  };
  outputs = inputs: inputs.nci.lib.makeOutputs {
    root = ./.;

    overrides.shell = common: prev: {
      packages =
        prev.packages
        ++ (with common.pkgs; [
          pkg-config
          openssl.dev
          rust-analyzer
          cargo-release
        ]);
      };
  };
}