The opam repository for my Advent of Agentic Humps 2025

jsonwt

+48
+48
packages/jsonwt/jsonwt.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "JSON Web Token (JWT) implementation for OCaml" 3 + description: """ 4 + An implementation of RFC 7519 JSON Web Tokens (JWT) for OCaml. 5 + Supports JWT parsing, validation, and creation with HS256, RS256, 6 + ES256, and EdDSA signature algorithms. Also includes JWK (RFC 7517) 7 + support for key representation.""" 8 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 9 + authors: ["Anil Madhavapeddy"] 10 + license: "ISC" 11 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-jsonwt" 12 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-jsonwt/issues" 13 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-jsonwt.git" 14 + depends: [ 15 + "dune" {>= "3.20"} 16 + "ocaml" {>= "5.1"} 17 + "jsont" {>= "0.2.0"} 18 + "bytesrw" {>= "0.1.0"} 19 + "mirage-crypto" {>= "1.0.0"} 20 + "mirage-crypto-pk" {>= "1.0.0"} 21 + "mirage-crypto-ec" {>= "1.0.0"} 22 + "mirage-crypto-rng" {>= "1.0.0"} 23 + "digestif" {>= "1.0.0"} 24 + "eqaf" {>= "0.9"} 25 + "cstruct" {>= "6.0.0"} 26 + "base64" {>= "3.0.0"} 27 + "ptime" {>= "1.0.0"} 28 + "alcotest" {with-test} 29 + "odoc" {with-doc} 30 + ] 31 + build: [ 32 + ["dune" "subst"] {dev} 33 + [ 34 + "dune" 35 + "build" 36 + "-p" 37 + name 38 + "-j" 39 + jobs 40 + "@install" 41 + "@runtest" {with-test} 42 + "@doc" {with-doc} 43 + ] 44 + ] 45 + url { 46 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-jsonwt.git#main" 47 + } 48 + x-maintenance-intent: ["(latest)"]