Shells in OCaml
at main 52 lines 806 B view raw
1(lang dune 3.20) 2(using menhir 3.0) 3 4(name merry) 5 6(generate_opam_files true) 7 8(source 9 (uri git+https://tangled.org/patrick.sirref.org/merry)) 10 11(authors "Patrick Ferris <patrick@sirref.org>") 12 13(maintainers "Patrick Ferris <patrick@sirref.org>") 14 15(license ISC) 16 17(documentation https://url/to/documentation) 18 19(package 20 (name merry) 21 (synopsis "A shell library") 22 (description "A library for writing shells") 23 (depends 24 linenoise 25 visitors 26 re 27 terminal 28 xdge 29 globlon 30 logs 31 (menhir 32 (= 20250912)) 33 (yojson 34 (= 2.2.2)) 35 (ppxlib 36 (>= 0.37.0)) 37 (ppx_deriving_yojson 38 (>= 3.10.0)) 39 (globlon 40 (>= 0)) 41 (fpath 42 (>= 0.7.3)) 43 (eio_posix 44 (= 1.3)) 45 (eio 46 (= 1.3)) 47 (cmdliner 48 (>= 1.3.0)) 49 (alcotest :with-test) 50 ocaml) 51 (tags 52 ("add topics" "to describe" your project)))