-
Notifications
You must be signed in to change notification settings - Fork 0
/
dune-project
110 lines (98 loc) · 1.62 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
(lang dune 3.2)
(name bio_io)
(generate_opam_files true)
(cram enable)
(version 0.7.0)
(maintainers "Ryan M. Moore")
(authors "Ryan M. Moore")
(homepage "https://github.com/mooreryan/bio_io")
(source
(github mooreryan/bio_io))
(documentation "https://mooreryan.github.io/bio_io/")
(bug_reports "https://github.com/mooreryan/bio_io/issues")
(package
(name bio_io-dev)
(allow_empty)
(depends
bisect_ppx
(core
(and
(>= "v0.16")
(< "v0.17")))
(core_bench
(and
(>= "v0.16")
(< "v0.17")))
(core_unix
(and
(>= "v0.16")
(< "v0.17")))
(ocaml
(>= "4.14"))
(ocamlformat
(and
(>= "0.26")
(< "0.27")))
(ocaml-lsp-server
(>= "1.11"))
(ppx_sexp_conv
(and
(>= "v0.16")
(< "v0.17")))))
(package
(name bio_io)
(synopsis
"A library for reading and writing common file formats used in bioinformatics like FASTA files")
(depends
; Runtime dependencies
(base
(and
(>= "v0.16")
(< "v0.17")))
(ocaml
(>= "4.14"))
(ppx_compare
(and
(>= "v0.16")
(< "v0.17")))
(ppx_fields_conv
(and
(>= "v0.16")
(< "v0.17")))
(ppx_sexp_conv
(and
(>= "v0.16")
(< "v0.17")))
(stdio
(and
(>= "v0.16")
(< "v0.17")))
; Test-only dependencies
(ppx_assert
(and
(and
(>= "v0.16")
(< "v0.17"))
:with-test))
(base_quickcheck
(and
(and
(>= "v0.16")
(< "v0.17"))
:with-test))
(ppx_expect
(and
(and
(>= "v0.16")
(< "v0.17"))
:with-test))
(ppx_inline_test
(and
(and
(>= "v0.16")
(< "v0.17"))
:with-test))
(re
(and
(>= "1.10")
:with-test))))