this repo has no description
1opam-version: "2.0" 2license: "MIT" 3authors: [ "Charles-Edouard Lecat" "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 4maintainer: [ "Charles-Edouard Lecat" "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 5homepage: "https://github.com/mirage/colombe" 6bug-reports: "https://github.com/mirage/colombe/issues" 7dev-repo: "git+https://github.com/mirage/colombe.git" 8doc: "https://mirage.github.io/colombe/" 9synopsis: "Implementation of the sendmail command" 10description: """A library to be able to send an email.""" 11 12build: [ 13 [ "dune" "build" "-p" name "-j" jobs ] 14 [ "dune" "runtest" "-p" name "-j" jobs ] {with-test} 15] 16 17depends: [ 18 "ocaml" {>= "4.03.0"} 19 "dune" {>= "1.8"} 20 "colombe" {= version} 21 "tls" {< "0.13.0"} 22 "base64" {>= "3.0.0"} 23 "logs" 24 "emile" {>= "0.8" & < "1.0" & with-test} 25 "mrmime" {>= "0.2.0" & with-test} 26 "alcotest" {with-test} 27] 28url { 29 src: 30 "https://github.com/mirage/colombe/releases/download/v0.2.0/colombe-v0.2.0.tbz" 31 checksum: [ 32 "sha256=12c2736f0e1a6e001a47e2b39907bc1f6ddb18718f2c341dcd10b19554706ead" 33 "sha512=09e19eff4a016f7735b35f2298f0557be38ee00b24b5bbf102b3c66c3b783ea5190e55ed2da3300fb8c05f445a832f1482fdea84ec35b78b238e771e5e377fd7" 34 ] 35}