opam-version: "2.0"
synopsis: "Easy to use and user-friendly topological sort"
description: """
Easy to use and user-friendly topological sort.

Example:
```
Tsort.sort [("foundation", []); ("walls", ["foundation"]); ("roof", ["walls"])]
```
"""
maintainer: "daniil@baturin.org"
authors: ["Daniil Baturin <daniil@baturin.org>"]
homepage: "https://github.com/dmbaturin/ocaml-tsort"
bug-reports: "https://github.com/dmbaturin/ocaml-tsort/issues"
dev-repo: "git+https://github.com/dmbaturin/ocaml-tsort.git"
license: "MIT"
build: [
  ["dune" "build" "-p" name "-j" jobs]
]
depends: [
  "ocaml" {>= "4.03.0"}
  "containers"
  "dune" {>= "1.9"}
]

url {
  src: "https://github.com/dmbaturin/ocaml-tsort/archive/1.0.0.tar.gz"
  checksum: [
    "md5=d7049eadc01cd641ff9e23ec08cc43e1"
    "sha512=b4153c9f266b2b8f468e04e9c3823a9c2a14a92d463825a0b8f1d5777091c425b9327d4f5518fb72ba0b04fc9b54b03fc3a49eeb85e252e9c0cddb06adb7ffb6"
  ]
}
