jose 0.0.2

A JSON Object Signing and Encryption implementation
Documentation
{ pkgs, ... }:
{
  packages = with pkgs; [
    step-cli
    cargo-deny
    cargo-shear
    cargo-udeps
    cargo-hack
    cargo-nextest

    openssl
    pkg-config
    cmake
    rustPlatform.bindgenHook
  ];

  enterTest = ''
    cargo clippy
    cargo test
  '';

  languages.rust = {
    enable = true;
    channel = "nightly";
    components = [
      "rustc"
      "cargo"
      "clippy"
      "rustfmt"
      "rust-src"
    ];
  };
}