Skip to content

Commit f64d27a

Browse files
committed
port blake2 to 5.2.1
1 parent 48ebeda commit f64d27a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/lib/blake2/blake2.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
open Core_kernel
1+
open Core
22

33
module Make () = struct
44
let digest_size_in_bits = 256

src/lib/blake2/dune

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
(instrumentation
55
(backend bisect_ppx))
66
(preprocess
7-
(pps ppx_compare ppx_deriving_yojson ppx_jane ppx_mina ppx_version))
7+
(pps ppx_assert ppx_compare ppx_deriving_yojson ppx_hash ppx_inline_test ppx_mina ppx_sexp_conv ppx_version))
88
(inline_tests
99
(flags -verbose -show-counts))
1010
(libraries
1111
;; opam libraries
1212
base.base_internalhash_types
1313
bigarray-compat
1414
bin_prot.shape
15+
core_kernel; TODO: figure out why we still need core_kernel here
1516
digestif
1617
ppx_inline_test.config
1718
sexplib0

src/lib/blake2/intf.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
open Core_kernel
1+
open Core
22

33
module type S = sig
44
val digest_size_in_bits : int

0 commit comments

Comments
 (0)