this repo has no description

Package tsort.2.2.0

Changed files
+39
packages
tsort
tsort.2.2.0
+39
packages/tsort/tsort.2.2.0/opam
···
+
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>"
+
license: "MIT"
+
homepage: "https://github.com/dmbaturin/ocaml-tsort"
+
bug-reports: "https://github.com/dmbaturin/ocaml-tsort/issues"
+
depends: [
+
"ocaml" {>= "4.03.0"}
+
"dune" {>= "1.9"}
+
"alcotest" {with-test}
+
]
+
build: [
+
"dune"
+
"build"
+
"-p"
+
name
+
"-j"
+
jobs
+
"@install"
+
"@runtest" {with-test}
+
]
+
dev-repo: "git+https://github.com/dmbaturin/ocaml-tsort.git"
+
url {
+
src:
+
"https://github.com/dmbaturin/ocaml-tsort/archive/refs/tags/2.2.0.tar.gz"
+
checksum: [
+
"md5=efe0d2a972638bd07a65b30fed372ed2"
+
"sha512=162fbeff69a34f00439570f5fbe3112f2ef6d9cf423a9a3c6a7ad1707cc35b6cb19e0bfa1e70c35c12b8a7adfc70a5aca5a43bef63c7f63aca53b396277019b8"
+
]
+
}
+
x-maintenance-intent: ["(latest)"]