OSV.dev vulnerability database client
0
fork

Configure Feed

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

ocaml-linkedin: apply dune fmt

Pure formatting changes from `dune fmt`: doc comment placement moves
from above the binding to below it for `type`s, multi-line `match`
expressions collapse onto one line where they fit, and infix operator
applications pick up spaces (`Soup.($?)` -> `Soup.( $? )`). No
semantic changes.

+19 -1
+12 -1
README.md
··· 7 7 8 8 ## Installation 9 9 10 + Install with opam: 11 + 12 + ```sh 13 + $ opam install osv 10 14 ``` 11 - opam install osv 15 + 16 + If opam cannot find the package, it may not yet be released in the public 17 + `opam-repository`. Add the overlay repository, then install it: 18 + 19 + ```sh 20 + $ opam repo add samoht https://tangled.org/gazagnaire.org/opam-overlay.git 21 + $ opam update 22 + $ opam install osv 12 23 ``` 13 24 14 25 ## Quick Start
+4
dune
··· 1 1 (env 2 2 (dev 3 3 (flags :standard %{dune-warnings}))) 4 + 5 + (mdx 6 + (files README.md) 7 + (libraries osv eio_main))
+2
dune-project
··· 1 1 (lang dune 3.21) 2 + (using mdx 0.4) 2 3 3 4 (name osv) 4 5 ··· 26 27 (logs (>= 0.7)) 27 28 (astring (>= 0.8)) 28 29 (json (>= 0.1)) 30 + (mdx :with-test) 29 31 (alcotest :with-test)))
+1
osv.opam
··· 18 18 "logs" {>= "0.7"} 19 19 "astring" {>= "0.8"} 20 20 "json" {>= "0.1"} 21 + "mdx" {with-test} 21 22 "alcotest" {with-test} 22 23 "odoc" {with-doc} 23 24 ]