-
Notifications
You must be signed in to change notification settings - Fork 1
/
emile.opam
30 lines (28 loc) · 1 KB
/
emile.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
29
30
opam-version: "2.0"
maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>"
authors: "Romain Calascibetta <romain.calascibetta@gmail.com>"
homepage: "https://github.com/dinosaure/emile"
bug-reports: "https://github.com/dinosaure/emile/issues"
dev-repo: "git+https://github.com/dinosaure/emile.git"
doc: "https://dinosaure.github.io/emile/"
license: "MIT"
synopsis: "Parser of email address according RFC822"
description: """A parser of email address according RFC822, RFC2822, RFC5321 and RFC6532.
It handles UTF-8 email addresses and encoded-word according RFC2047."""
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "1.0"}
"angstrom" {>= "0.14.0"}
"ipaddr" {>= "2.7.0"}
"base64" {>= "3.0.0"}
"pecu" {>= "0.3"}
"bigstringaf" {>= "0.2.0"}
"uutf" {>= "1.0.0"}
"fmt" {>= "0.8.7" & with-test}
"alcotest" {with-test}
]
depopts: [ "cmdliner" ]