this repo has no description
1opam-version: "2.0" 2license: "MIT" 3authors: [ "Lilianne Lecat" "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 4maintainer: [ "Lilianne Lecat" "Romain Calascibetta <romain.calascibetta@gmail.com>" ] 5homepage: "https://github.com/dinosaure/colombe" 6bug-reports: "https://github.com/dinosaure/colombe/issues" 7dev-repo: "git+https://github.com/dinosaure/colombe.git" 8doc: "https://dinosaure.github.io/colombe/" 9synopsis: "SMTP protocol in OCaml" 10description: """This package purpose is to provide an implementation of the 11RFC 5321 about SMTP standard in OCaml. 12""" 13 14build: [ "dune" "build" "-p" name "-j" jobs ] 15run-test: [ "dune" "runtest" "-p" name "-j" jobs ] 16 17depends: [ 18 "ocaml" {>= "4.07.0"} 19 "dune" {>= "1.3"} 20 "sendmail" {= version} 21 "domain-name" 22 "lwt" 23 "tls" {< "0.16.0"} 24 "x509" {>= "0.7.0"} 25 "alcotest" {with-test} 26 "crowbar" {with-test} 27] 28url { 29 src: 30 "https://github.com/dinosaure/colombe/releases/download/v0.1.0/colombe-v0.1.0.tbz" 31 checksum: [ 32 "sha256=77e1058f787de49e07abc6ac26db015b174538570dac0ba428d1c665407537c6" 33 "sha512=a619b77cd781cb5884d8a9c219ead580e54dc462d5217c452893d2d4e99be2f12026a07037fcc01a03737d0a78f3c4ea190e02f120023377c19b064c37884745" 34 ] 35}