this repo has no description
1opam-version: "2.0" 2synopsis: 3 "A library for describing and describing synchronous finite state machines" 4maintainer: ["Jocelyn Sérot <jocelyn.serot@uca.fr>"] 5authors: ["Jocelyn Sérot <jocelyn.serot@uca.fr>"] 6license: "MIT" 7homepage: "http://github.com/jserot/fsml" 8doc: "http://jserot.github.io/fsml" 9bug-reports: "jocelyn.serot@uca.fr" 10depends: [ 11 "dune" {>= "2.6"} 12 "ppxlib" {>= "0.13.0"} 13 "ppx_deriving_yojson" {>= "3.5.3"} 14 "menhir" {>= "20200624"} 15 "ocaml" {>= "4.10" & < "5.0"} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 [ 20 "dune" 21 "build" 22 "-p" 23 name 24 "-j" 25 jobs 26 "@install" 27 "@runtest" {with-test} 28 "@doc" {with-doc} 29 ] 30] 31dev-repo: "git+https://github.com/jserot/fsml.git" 32url { 33 src: "https://github.com/jserot/fsml/archive/0.2.1.tar.gz" 34 checksum: "sha512=d649da27e4f08caa043736523c62a357df951c79a5589cd1e2d5c264540d0da6088a2b24bb51401cb54f6be79444bcdac86bccb496463deb75b4646b35cd7ba2" 35}