forked from geocaml/ocaml-topojson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
37 lines (28 loc) · 885 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
(lang dune 3.0)
(name topojson)
(generate_opam_files true)
(source
(github patricoferris/ocaml-topojson))
(license MIT)
(authors "Patrick Ferris" "Jay Dev Jha")
(maintainers "[email protected]")
(package
(name topojson)
(synopsis "A pure OCaml library for working with TopoJSON format")
(description "This library provides a functor for building a module for manipulating and parsing Topojson into OCaml.")
(depends
(brr :with-test)
(bos :with-test)
(bechamel-notty (and (>= 0.1.0) :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 manipulating Topojson as a stream, useful because Topojson can be gigabytes in size.")
(depends
(topojson (= :version))
geojsone
(eio_main :with-test)))
(using mdx 0.2)