-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdune-project
62 lines (52 loc) · 1.15 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
(lang dune 3.8)
(name polars)
(generate_opam_files true)
(source
(github mt-caret/polars-ocaml))
(authors mtakeda)
(maintainers mtakeda)
(license MIT)
(documentation https://github.com/mt-caret/polars-ocaml)
(using mdx 0.4)
(package
(name polars)
(synopsis "OCaml bindings to the Polars dataframe library")
(description "OCaml bindings to the Polars dataframe library")
(depends
(core_bench :with-test)
(expect_test_helpers_core :with-test)
(mdx :with-test)
(ocaml
(< 5.0.0))
(ocamlformat :dev)
(odoc :with-doc)
(re2 :with-test)
(shell :with-test)
conf-rust-2021
core
core_kernel
core_unix
dune
; ocaml-interop does not yet properly support OCaml 5
ppx_jane
ppx_typed_fields)
(tags
(data-science polars rust)))
(package
(name polars_async)
(synopsis "Async OCaml bindings to the Polars dataframe library")
(description "Async OCaml bindings to the Polars dataframe library")
(depends
(core_bench :with-test)
(expect_test_helpers_core :with-test)
(mdx :with-test)
(ocamlformat :dev)
(odoc :with-doc)
(re2 :with-test)
(shell :with-test)
async
core
polars
ppx_jane)
(tags
(data-science polars rust)))