Skip to content

Commit e822fd0

Browse files
committed
scrypt-kdf < 1 needs upper bound on new pbkdf
Failure: ``` File "scrypt_kdf.ml", line 49, characters 20-22: 49 | let b = partition dk [] p in ^^ Error: This expression has type "string" but an expression was expected of type "Cstruct.t" ``` Signed-off-by: Marcello Seri <[email protected]>
1 parent edd34de commit e822fd0

File tree

5 files changed

+5
-5
lines changed
  • packages/scrypt-kdf
    • scrypt-kdf.0.1.0
    • scrypt-kdf.0.2.0
    • scrypt-kdf.0.3.0
    • scrypt-kdf.0.4.0
    • scrypt-kdf.1.0.0

5 files changed

+5
-5
lines changed

packages/scrypt-kdf/scrypt-kdf.0.1.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ depends: [
3131
"cstruct" {>= "1.7.0" & < "6.0.1"}
3232
"cstruct" {with-test & < "3.2.0"}
3333
"nocrypto" {>= "0.5.0"}
34-
"pbkdf" {>= "0.1.0"}
34+
"pbkdf" {>= "0.1.0" & < "2.0.0"}
3535
"alcotest" {with-test}
3636
"ocamlbuild" {build}
3737
]

packages/scrypt-kdf/scrypt-kdf.0.2.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ depends: [
2121
"topkg" {build}
2222
"cstruct" {>= "1.7.0" & < "6.0.1"}
2323
"nocrypto" {>= "0.5.3"}
24-
"pbkdf" {>= "0.1.0"}
24+
"pbkdf" {>= "0.1.0" & < "2.0.0"}
2525
"alcotest" {with-test}
2626
]
2727
synopsis: "The scrypt Password-Based Key Derivation Function in pure OCaml"

packages/scrypt-kdf/scrypt-kdf.0.3.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ depends: [
2121
"topkg" {build}
2222
"cstruct" {>= "1.7.0" & < "6.0.1"}
2323
"nocrypto" {>= "0.5.3"}
24-
"pbkdf" {>= "0.1.0"}
24+
"pbkdf" {>= "0.1.0" & < "2.0.0"}
2525
"alcotest" {with-test}
2626
]
2727
synopsis: "The scrypt Password-Based Key Derivation Function in pure OCaml"

packages/scrypt-kdf/scrypt-kdf.0.4.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ depends: [
1919
"topkg" {build}
2020
"cstruct" {>= "1.7.0" & < "6.0.1"}
2121
"nocrypto" {>= "0.5.3"}
22-
"pbkdf" {>= "0.1.0"}
22+
"pbkdf" {>= "0.1.0" & < "2.0.0"}
2323
"salsa20-core" {>= "0.1.0" & < "2.0.0"}
2424
"alcotest" {with-test}
2525
]

packages/scrypt-kdf/scrypt-kdf.1.0.0/opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ depends: [
1717
"dune" {>= "1.8"}
1818
"cstruct" {>= "1.7.0"}
1919
"nocrypto" {>= "0.5.3"}
20-
"pbkdf" {>= "0.1.0"}
20+
"pbkdf" {>= "0.1.0" & < "2.0.0"}
2121
"salsa20-core" {>= "0.1.0" & < "2.0.0"}
2222
"alcotest" {with-test}
2323
]

0 commit comments

Comments
 (0)