Skip to content

Commit 3294418

Browse files
committed
Package fungi.0.1.4
1 parent 999bff3 commit 3294418

File tree

1 file changed

+38
-0
lines changed
  • packages/fungi/fungi.0.1.4

1 file changed

+38
-0
lines changed

packages/fungi/fungi.0.1.4/opam

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
opam-version: "2.0"
2+
synopsis: "A pure functional graph library"
3+
description: """\
4+
A graph library based on functional adjacency list with some common graph
5+
algorithms implemented and a fibonacci heap."""
6+
maintainer: "Harry K <[email protected]>"
7+
license: "MIT"
8+
tags: ["topics" "graph" "functional" "networks"]
9+
depends: [
10+
"dune" {>= "3.12"}
11+
"ocaml" {>= "5.0.0"}
12+
"alcotest" {with-test}
13+
"qcheck-core" {with-test}
14+
"qcheck-alcotest" {with-test}
15+
"core_bench" {with-test}
16+
"odoc" {with-doc}
17+
]
18+
build: [
19+
["dune" "subst"] {dev}
20+
[
21+
"dune"
22+
"build"
23+
"-p"
24+
name
25+
"-j"
26+
jobs
27+
"@install"
28+
"@runtest" {with-test}
29+
"@doc" {with-doc}
30+
]
31+
]
32+
url {
33+
src: "https://github.com/kituyiharry/fungi/archive/refs/tags/0.1.4.tar.gz"
34+
checksum: [
35+
"md5=646d6c2d1422470ccbd5b75fbd3de103"
36+
"sha512=8a6b035d607099d2d2959f4f37a43bb6627a55b0146b607f7b8fd97a8a297f3ce006be1680d515588d0706eb67160eea6caf1db82f349c1083ffc7c39d736e86"
37+
]
38+
}

0 commit comments

Comments
 (0)