An OCaml implementation of glob(3)
0

Configure Feed

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

glob / dune-project
663 B 30 lines
1(lang dune 3.19) 2(using mdx 0.4) 3(name glob) 4 5(source 6 (uri "git+https://git.sirref.org/glob.git")) 7 8(homepage "https://patrick.sirref.org/bib") 9(bug_reports "https://tangled.org/patrick.sirref.org/glob/issues") 10 11(authors "Patrick Ferris <patrick@sirref.org>") 12(maintainers "Patrick Ferris <patrick@sirref.org>") 13 14(license ISC) 15 16(documentation https://patrick.sirref.org/software/glob/docs/) 17 18(generate_opam_files true) 19 20(package 21 (name glob) 22 (synopsis "A pure OCaml implementation of glob(3)") 23 (description "Glob provides a simple implementation of glob(3).") 24 (depopts 25 eio 26 ) 27 (depends 28 fmt 29 (alcotest :with-test) 30 (eio_main :with-test)))