An OCaml implementation of glob(3)
0

Configure Feed

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

Update metadata

+28 -3
+18 -2
dune-project
··· 1 1 (lang dune 3.19) 2 2 (using mdx 0.4) 3 + 4 + (source 5 + (uri "git+https://git.sirref.org/glob.git")) 6 + 7 + (homepage "https://patrick.sirref.org/bib") 8 + (bug_reports "https://tangled.org/patrick.sirref.org/glob/issues") 9 + 10 + (authors "Patrick Ferris <patrick@sirref.org>") 11 + (maintainers "Patrick Ferris <patrick@sirref.org>") 12 + 13 + (license ISC) 14 + 15 + (documentation https://patrick.sirref.org/software/glob/docs/) 16 + 3 17 (generate_opam_files true) 4 18 5 19 (package 6 20 (name glob) 7 - (description "") 8 21 (synopsis "A pure OCaml implementation of glob(3)") 22 + (description "Glob provides a simple implementation of glob(3).") 9 23 (depends 10 - fmt)) 24 + fmt 25 + (alcotest :with-test) 26 + (eio_main :with-test)))
+10 -1
glob.opam
··· 1 1 # This file is generated by dune, edit dune-project instead 2 2 opam-version: "2.0" 3 3 synopsis: "A pure OCaml implementation of glob(3)" 4 - description: "" 4 + description: "Glob provides a simple implementation of glob(3)." 5 + maintainer: ["Patrick Ferris <patrick@sirref.org>"] 6 + authors: ["Patrick Ferris <patrick@sirref.org>"] 7 + license: "ISC" 8 + homepage: "https://patrick.sirref.org/bib" 9 + doc: "https://patrick.sirref.org/software/glob/docs/" 10 + bug-reports: "https://tangled.org/patrick.sirref.org/glob/issues" 5 11 depends: [ 6 12 "dune" {>= "3.19"} 7 13 "fmt" 14 + "alcotest" {with-test} 15 + "eio_main" {with-test} 8 16 "odoc" {with-doc} 9 17 ] 10 18 build: [ ··· 21 29 "@doc" {with-doc} 22 30 ] 23 31 ] 32 + dev-repo: "git+https://git.sirref.org/glob.git" 24 33 x-maintenance-intent: ["(latest)"]