this repo has no description
0
fork

Configure Feed

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

Merge pull request #25514 from dinosaure/release-digestif-v1.2.0

[new release] digestif (1.2.0)

authored by

Marcello Seri and committed by
GitHub
38988760 73900825

+67
+67
packages/digestif/digestif.1.2.0/opam
··· 1 + opam-version: "2.0" 2 + maintainer: [ "Eyyüb Sari <eyyub.sari@epitech.eu>" 3 + "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 4 + authors: [ "Eyyüb Sari <eyyub.sari@epitech.eu>" 5 + "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 6 + homepage: "https://github.com/mirage/digestif" 7 + bug-reports: "https://github.com/mirage/digestif/issues" 8 + dev-repo: "git+https://github.com/mirage/digestif.git" 9 + doc: "https://mirage.github.io/digestif/" 10 + license: "MIT" 11 + synopsis: "Hashes implementations (SHA*, RIPEMD160, BLAKE2* and MD5)" 12 + description: """ 13 + Digestif is a toolbox to provide hashes implementations in C and OCaml. 14 + 15 + It uses the linking trick and user can decide at the end to use the C implementation or the OCaml implementation. 16 + 17 + We provides implementation of: 18 + * MD5 19 + * SHA1 20 + * SHA224 21 + * SHA256 22 + * SHA384 23 + * SHA512 24 + * SHA3 25 + * Keccak-256 26 + * WHIRLPOOL 27 + * BLAKE2B 28 + * BLAKE2S 29 + * RIPEMD160 30 + """ 31 + 32 + build: [ 33 + [ "dune" "build" "-p" name "-j" jobs ] 34 + [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 35 + ] 36 + install: [ 37 + [ "dune" "install" "-p" name ] {with-test} 38 + [ "ocaml" "./test/test_runes.ml" ] {with-test} 39 + ] 40 + 41 + depends: [ 42 + "ocaml" {>= "4.08.0"} 43 + "dune" {>= "2.6.0"} 44 + "eqaf" 45 + "fmt" {with-test & >= "0.8.7"} 46 + "alcotest" {with-test} 47 + "bos" {with-test} 48 + "astring" {with-test} 49 + "fpath" {with-test} 50 + "rresult" {with-test} 51 + "ocamlfind" {with-test} 52 + "crowbar" {with-test} 53 + ] 54 + 55 + conflicts: [ 56 + "mirage-xen" {< "6.0.0"} 57 + "ocaml-freestanding" 58 + ] 59 + url { 60 + src: 61 + "https://github.com/mirage/digestif/releases/download/v1.2.0/digestif-1.2.0.tbz" 62 + checksum: [ 63 + "sha256=c30168cafe279a665367806b3e5e6398fd7474f1e5260e76826d5ec9d3b2a508" 64 + "sha512=1a4d6ff31fa59d99548cf21a3cedbb0cdb2000d890fcb1c4633eda2723ea6157b10b7dfd089411d51e2d6f653466875efa7aed9807055ecdd3df24ec8d72c234" 65 + ] 66 + } 67 + x-commit-hash: "f8f383581fd2e29f873d2d699c4be58fcc341290"