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