-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcolombe.opam
28 lines (26 loc) · 923 Bytes
/
colombe.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
opam-version: "2.0"
license: "MIT"
authors: [ "Gwenaëlle Lecat" "Romain Calascibetta <romain.calascibetta@gmail.com>" ]
maintainer: [ "Gwenaëlle Lecat" "Romain Calascibetta <romain.calascibetta@gmail.com>" ]
homepage: "https://github.com/mirage/colombe"
bug-reports: "https://github.com/mirage/colombe/issues"
dev-repo: "git+https://github.com/mirage/colombe.git"
synopsis: "SMTP protocol in OCaml"
doc: "https://mirage.github.io/colombe/"
description: """SMTP protocol according RFC5321 without extension."""
build: [
[ "dune" "build" "-p" name "-j" jobs ]
[ "dune" "runtest" "-p" name "-j" jobs ] {with-test}
]
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "2.0.0"}
"fmt" {>= "0.8.9"}
"ipaddr" {>= "3.0.0"}
"angstrom" {>= "0.14.0"}
"ocaml-syntax-shims"
"alcotest" {with-test}
"crowbar" {>= "0.2" & with-test}
]
depopts: [ "emile" ]
conflicts: [ "emile" {< "0.8"} ]