GPS Exchange Format library/CLI in OCaml
1(lang dune 3.18)
2
3(generate_opam_files true)
4
5(package
6 (name mlgpx)
7 (depends ocaml dune xmlm ptime eio ppx_expect alcotest eio_main cmdliner fmt logs)
8 (synopsis "Library and CLI for parsing and generating GPS Exchange (GPX) formats")
9 (description
10 "mlgpx is a streaming GPX (GPS Exchange Format) library for OCaml. It provides a portable core library using the xmlm streaming XML parser, with a separate Unix layer for file I/O operations. The library supports the complete GPX 1.1 specification including waypoints, routes, tracks, and metadata with strong type safety and validation.")
11 (license ISC)
12 (authors "Anil Madhavapeddy")
13 (homepage "https://tangled.sh/@anil.recoil.org/ocaml-gpx")
14 (maintainers "Anil Madhavapeddy <anil@recoil.org>")
15 (bug_reports https://tangled.sh/@anil.recoil.org/ocaml-gpx/issues)
16 (maintenance_intent "(latest)")
17)