-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdune-project
40 lines (31 loc) · 933 Bytes
/
dune-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
(lang dune 3.0)
(name topojson)
(generate_opam_files true)
(source
(github geocaml/ocaml-topojson))
(license MIT)
(authors "Patrick Ferris" "Jay Dev Jha" "Prisca Chidimma")
(maintainers "[email protected]")
(package
(name topojson)
(synopsis "A pure OCaml library for working with the TopoJSON format")
(description "This library provides a pure OCaml library for working with TopoJSON.")
(depends
(ocaml (>= 4.08))
(bos :with-test)
(mdx (and (>= 1.10.0) :with-test))
(alcotest :with-test)
(ezjsonm :with-test)))
(package
(name topojsone)
(synopsis "Streaming TopoJSON library")
(description "A library for working with TopoJSON without loading all of the data into memory at once.")
(depends
(topojson (= :version))
geojsone
(bos :with-test)
(mdx (and (>= 1.10.0) :with-test))
(alcotest :with-test)
(ezjsonm :with-test)
(eio_main (and (>= 0.7) :with-test))))
(using mdx 0.2)