this repo has no description
1opam-version: "2.0" 2synopsis: "Easy to use and user-friendly topological sort" 3description: """ 4Easy to use and user-friendly topological sort. 5 6Example: 7``` 8Tsort.sort [("foundation", []); ("walls", ["foundation"]); ("roof", ["walls"])] 9``` 10""" 11maintainer: "daniil@baturin.org" 12authors: ["Daniil Baturin <daniil@baturin.org>"] 13homepage: "https://github.com/dmbaturin/ocaml-tsort" 14bug-reports: "https://github.com/dmbaturin/ocaml-tsort/issues" 15dev-repo: "git+https://github.com/dmbaturin/ocaml-tsort.git" 16license: "MIT" 17build: [ 18 ["dune" "build" "-p" name "-j" jobs] 19] 20depends: [ 21 "ocaml" {>= "4.03.0"} 22 "containers" 23 "dune" {>= "1.9"} 24] 25 26url { 27 src: "https://github.com/dmbaturin/ocaml-tsort/archive/1.0.0.tar.gz" 28 checksum: [ 29 "md5=d7049eadc01cd641ff9e23ec08cc43e1" 30 "sha512=b4153c9f266b2b8f468e04e9c3823a9c2a14a92d463825a0b8f1d5777091c425b9327d4f5518fb72ba0b04fc9b54b03fc3a49eeb85e252e9c0cddb06adb7ffb6" 31 ] 32}