upstream: https://github.com/mirage/mirage-crypto
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

crypto-ec, crypto-rng: declare fmt dependency

ec/dune and rng/dune both use fmt, but neither opam listed it. Surfaced
by `dune build -p crypto-ec` / `-p crypto-rng`.

+4
+1
crypto-ec.opam
··· 16 16 "ocaml" {>= "4.13.0"} 17 17 "dune-configurator" 18 18 "eqaf" {>= "0.7"} 19 + "fmt" 19 20 "crypto-rng" {= version} 20 21 "digestif" {>= "1.2.0"} 21 22 "alcotest" {with-test & >= "0.8.1"}
+1
crypto-rng.opam
··· 16 16 "dune" {>= "3.21" & >= "2.7"} 17 17 "dune-configurator" {>= "2.0.0"} 18 18 "logs" 19 + "fmt" 19 20 "crypto" {= version} 20 21 "digestif" {>= "1.1.4"} 21 22 "ounit2" {with-test}
+2
dune-project
··· 61 61 (dune (>= 2.7)) 62 62 (dune-configurator (>= 2.0.0)) 63 63 logs 64 + fmt 64 65 (crypto (= :version)) 65 66 (digestif (>= 1.1.4)) 66 67 (ounit2 :with-test) ··· 80 81 (ocaml (>= 4.13.0)) 81 82 dune-configurator 82 83 (eqaf (>= 0.7)) 84 + fmt 83 85 (crypto-rng (= :version)) 84 86 (digestif (>= 1.2.0)) 85 87 (alcotest (and :with-test (>= 0.8.1)))