-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdune-project
43 lines (34 loc) · 1.04 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
(lang dune 2.9)
(generate_opam_files true)
(name reddit_api)
(version 0.2.1)
(source (github leviroth/ocaml-reddit-api))
(license MIT)
(authors "Levi Roth")
(maintainers [email protected])
(package
(name reddit_api_kernel)
(synopsis "OCaml types for Reddit's API")
(depends
(cohttp (>= 5.0.0))
(core_kernel (>= v0.16.0))
(core (>= v0.16.0))
(expect_test_helpers_async (and (>= v0.16.0) :with-test))
(jsonaf (>= v0.16.0))
(odoc :with-doc)
(ppx_jane (>= v0.16.0))
(ppx_jsonaf_conv (>= v0.16.0))))
(package
(name reddit_api_async)
(synopsis "Async connection and utility functions for Reddit's API")
(depends
(async (>= v0.16.0))
(async_ssl (>= v0.16.0))
(cohttp-async (>= 5.0.0))
(core (>= v0.16.0))
(expect_test_helpers_async (and (>= v0.16.0) :with-test))
(jsonaf (>= v0.16.0))
(ppx_jane (>= v0.16.0))
(ppx_jsonaf_conv (>= v0.16.0))
(reddit_api_kernel (= :version))
(sequencer_table (>= v0.16.0))))