-
Notifications
You must be signed in to change notification settings - Fork 10
/
dune-project
41 lines (32 loc) · 1.01 KB
/
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
41
(lang dune 3.2)
(name geojson)
(generate_opam_files true)
(source
(github geocaml/ocaml-geojson))
(license MIT)
(authors "Patrick Ferris")
(maintainers "[email protected]")
(package
(name geojson)
(synopsis "Pure OCaml library for GeoJSON")
(tags ("geojson" "geospatial" "geocaml"))
(description "GeoJSON is a 'schema' for JSON to describe geospatial information. This library provides a JSON-parser-agnostic library for manipulating and parsing GeoJSON into OCaml.")
(depends
(ocaml (>= 4.08.0))
(bos :with-test)
(mdx :with-test)
(alcotest :with-test)
(ezjsonm :with-test)))
(package
(name geojsone)
(synopsis "Streaming GeoJSON library")
(tags ("geojson" "geospatial" "geocaml"))
(description "A library for manipulating GeoJSON using a streaming parser. This is useful because GeoJSON can be gigabytes in size.")
(depends
(geojson (= :version))
(mdx :with-test)
(ezjsonm :with-test) ; Needed for benchmarks
(eio_main (and (>= 0.6) :with-test))
hex
sexplib0))
(using mdx 0.3)