-
Notifications
You must be signed in to change notification settings - Fork 21
/
dune-project
40 lines (33 loc) · 970 Bytes
/
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
(lang dune 2.9)
(name sha)
(source (github djs55/ocaml-sha))
(license ISC)
(authors "Vincent Hanquez"
"Thomas Gazagnaire"
"Goswin von Brederlow"
"Eric Cooper"
"Florent Monnier"
"Forrest L Norvell"
"Vincent Bernadoff"
"David Scott"
"Olaf Hering"
"Arthur Teisseire"
"Nicolás Ojeda Bär"
"Christopher Zimmermann"
"Thomas Leonard"
"Antonin Décimo"
)
(maintainers [email protected])
(package
(name sha)
(synopsis "Binding to the SHA cryptographic functions")
(description "This is the binding for SHA interface code in OCaml. Offering the same
interface than the MD5 digest included in the OCaml standard library.
It's currently providing SHA1, SHA256 and SHA512 hash functions.")
(depends
(ocaml (>= 4.02))
(stdlib-shims (>= 0.3.0))
(ounit2 :with-test)))
(generate_opam_files true)
(formatting disabled)
(use_standard_c_and_cxx_flags true)