-
Notifications
You must be signed in to change notification settings - Fork 3
/
SZXX.opam
37 lines (35 loc) · 1.24 KB
/
SZXX.opam
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
opam-version: "2.0"
maintainer: "Asemio"
authors: [
"Simon Grondin"
]
synopsis: "Streaming ZIP XML XLSX parser"
description: """
SZXX is a streaming and efficient XLSX, ZIP and XML parser built from the ground up for low and constant memory usage (<10Mb).
SZXX is able to output XLSX rows while reading from a network socket without buffering any part of the file.
It can also stream data (including network sockets) out of ZIP and XML files without buffering.
"""
license: "MIT"
tags: ["XLSX" "Excel" "ZIP" "XML" "spreadsheet" "Stream" "Streaming"]
homepage: "https://github.com/asemio/SZXX"
dev-repo: "git://github.com/asemio/SZXX"
doc: "https://github.com/asemio/SZXX"
bug-reports: "https://github.com/asemio/SZXX/issues"
depends: [
"ocaml" { >= "5.0.0" }
"dune" { >= "1.9.0" }
"angstrom" { >= "0.15.0" }
"base" { >= "v0.16.0" }
"ppx_sexp_conv" { >= "v0.16.0" }
"ppx_compare" { >= "v0.16.0" }
"ppx_custom_printf" { >= "v0.16.0" }
"decompress" { >= "1.4.1" }
"eio_main" { >= "0.12" }
"ptime" { >= "0.8.6" }
"alcotest" { with-test }
"yojson" { with-test }
"ppx_deriving_yojson" { >= "3.5.2" & with-test }
# "ocamlformat" { = "0.25.1" } # Development
# "ocaml-lsp-server" # Development
]
build: ["dune" "build" "-p" name "-j" jobs]