User authentication and session management for web applications
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix monopam lint: add 39 missing deps, remove 2 unused, detect menhir

Add missing opam dependencies across 17 packages (vec3, bytesrw, http,
cbort, fmt, etc.) and remove unused deps (requests from respond, menhir
from sqlite). Teach monopam lint to recognize (menhir ...) dune stanzas
as requiring the menhir package. Move bytesrw dep from scitt to
atp-lexicon-scitt where it actually belongs.

+60 -2
+36 -2
auth.opam
··· 1 - # This file is generated by dune. 1 + # This file is generated by dune, edit dune-project instead 2 2 opam-version: "2.0" 3 - name: "auth" 4 3 synopsis: "User authentication and session management for web applications" 4 + maintainer: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 5 + authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 6 + license: "ISC" 7 + depends: [ 8 + "dune" {>= "3.21"} 9 + "ocaml" {>= "5.1"} 10 + "bytesrw" 11 + "crypto-rng" 12 + "csrf" 13 + "fmt" 14 + "http" 15 + "jsont" 16 + "logs" 17 + "oauth" 18 + "ohex" 19 + "requests" 20 + "respond" 21 + "sqlite" 22 + "odoc" {with-doc} 23 + ] 24 + build: [ 25 + ["dune" "subst"] {dev} 26 + [ 27 + "dune" 28 + "build" 29 + "-p" 30 + name 31 + "-j" 32 + jobs 33 + "@install" 34 + "@runtest" {with-test} 35 + "@doc" {with-doc} 36 + ] 37 + ] 38 + x-maintenance-intent: ["(latest)"]
+24
dune-project
··· 1 1 (lang dune 3.21) 2 2 (name auth) 3 + 4 + (generate_opam_files true) 5 + 6 + (license ISC) 7 + (authors "Thomas Gazagnaire <thomas@gazagnaire.org>") 8 + (maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>") 9 + 10 + (package 11 + (name auth) 12 + (synopsis "User authentication and session management for web applications") 13 + (depends 14 + (ocaml (>= 5.1)) 15 + bytesrw 16 + crypto-rng 17 + csrf 18 + fmt 19 + http 20 + jsont 21 + logs 22 + oauth 23 + ohex 24 + requests 25 + respond 26 + sqlite))