Fix OPAM dependencies

This commit is contained in:
Benjamin Canou 2018-06-19 02:24:24 +02:00 committed by Grégoire Henry
parent 2fbd125511
commit a838f5d55c
2 changed files with 2 additions and 2 deletions

View File

@ -3,13 +3,11 @@
(executable (executable
((name test) ((name test)
(modules (Test)) (modules (Test))
(public_name test-uecc)
(libraries (alcotest uecc)))) (libraries (alcotest uecc))))
(executable (executable
((name test_vectors) ((name test_vectors)
(modules (Vectors Test_vectors)) (modules (Vectors Test_vectors))
(public_name test-uecc-vectors)
(libraries (cstruct hex alcotest uecc)))) (libraries (cstruct hex alcotest uecc))))
(alias (alias

View File

@ -18,4 +18,6 @@ depends: [
"jbuilder" {build & >= "1.0+beta19.1"} "jbuilder" {build & >= "1.0+beta19.1"}
"bigstring" {>= "0.1.1"} "bigstring" {>= "0.1.1"}
"alcotest" {test & >= "0.8.1"} "alcotest" {test & >= "0.8.1"}
"cstruct" {test & >= "3.2.1"}
"hex" {test}
] ]