this repo has no description
0
fork

Configure Feed

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

Package tsort.2.2.0

+39
+39
packages/tsort/tsort.2.2.0/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Easy to use and user-friendly topological sort" 3 + description: """\ 4 + Easy to use and user-friendly topological sort. 5 + 6 + Example: 7 + ``` 8 + Tsort.sort [("foundation", []); ("walls", ["foundation"]); ("roof", ["walls"])] 9 + ```""" 10 + maintainer: "daniil@baturin.org" 11 + authors: "Daniil Baturin <daniil@baturin.org>" 12 + license: "MIT" 13 + homepage: "https://github.com/dmbaturin/ocaml-tsort" 14 + bug-reports: "https://github.com/dmbaturin/ocaml-tsort/issues" 15 + depends: [ 16 + "ocaml" {>= "4.03.0"} 17 + "dune" {>= "1.9"} 18 + "alcotest" {with-test} 19 + ] 20 + build: [ 21 + "dune" 22 + "build" 23 + "-p" 24 + name 25 + "-j" 26 + jobs 27 + "@install" 28 + "@runtest" {with-test} 29 + ] 30 + dev-repo: "git+https://github.com/dmbaturin/ocaml-tsort.git" 31 + url { 32 + src: 33 + "https://github.com/dmbaturin/ocaml-tsort/archive/refs/tags/2.2.0.tar.gz" 34 + checksum: [ 35 + "md5=efe0d2a972638bd07a65b30fed372ed2" 36 + "sha512=162fbeff69a34f00439570f5fbe3112f2ef6d9cf423a9a3c6a7ad1707cc35b6cb19e0bfa1e70c35c12b8a7adfc70a5aca5a43bef63c7f63aca53b396277019b8" 37 + ] 38 + } 39 + x-maintenance-intent: ["(latest)"]