CCSDS 123.0-B Lossless Multispectral and Hyperspectral Image Compression
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.

+21 -1
+14 -1
README.md
··· 19 19 20 20 ## Installation 21 21 22 + Install with opam: 23 + 24 + <!-- $MDX skip --> 25 + ```sh 26 + $ opam install hcomp 22 27 ``` 23 - opam install hcomp 28 + 29 + If opam cannot find the package, it may not yet be released in the public 30 + `opam-repository`. Add the overlay repository, then install it: 31 + 32 + <!-- $MDX skip --> 33 + ```sh 34 + $ opam repo add samoht https://tangled.org/gazagnaire.org/opam-overlay.git 35 + $ opam update 36 + $ opam install hcomp 24 37 ``` 25 38 26 39 ## Usage
+4
dune
··· 1 1 (env 2 2 (dev 3 3 (flags :standard %{dune-warnings}))) 4 + 5 + (mdx 6 + (files README.md) 7 + (libraries hcomp))
+2
dune-project
··· 1 1 (lang dune 3.21) 2 + (using mdx 0.4) 2 3 (name hcomp) 3 4 4 5 (generate_opam_files true) ··· 19 20 (ocaml (>= 5.1)) 20 21 (alcotest (and (>= 1.0) :with-test)) 21 22 (alcobar :with-test) 23 + (mdx :with-test) 22 24 fmt))
+1
hcomp.opam
··· 14 14 "ocaml" {>= "5.1"} 15 15 "alcotest" {>= "1.0" & with-test} 16 16 "alcobar" {with-test} 17 + "mdx" {with-test} 17 18 "fmt" 18 19 "odoc" {with-doc} 19 20 ]