diff --git a/dune b/dune index 92b596c..d6b303d 100644 --- a/dune +++ b/dune @@ -9,7 +9,6 @@ (synopsis "SHA-1 and SHA-2 family implementations") (wrapped false) (modules sha1 sha256 sha512) - (libraries stdlib-shims) (foreign_stubs (language c) (flags diff --git a/dune-project b/dune-project index a21fcf4..ad86d7d 100644 --- a/dune-project +++ b/dune-project @@ -31,8 +31,7 @@ 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)) + (ocaml (>= 4.07)) (ounit2 :with-test))) (generate_opam_files true) diff --git a/sha.opam b/sha.opam index 9ccea31..ca20cf2 100644 --- a/sha.opam +++ b/sha.opam @@ -27,8 +27,7 @@ homepage: "https://github.com/djs55/ocaml-sha" bug-reports: "https://github.com/djs55/ocaml-sha/issues" depends: [ "dune" {>= "2.9"} - "ocaml" {>= "4.02"} - "stdlib-shims" {>= "0.3.0"} + "ocaml" {>= "4.07"} "ounit2" {with-test} "odoc" {with-doc} ]