-
Notifications
You must be signed in to change notification settings - Fork 3
/
shuttle_http.opam
40 lines (40 loc) · 1.08 KB
/
shuttle_http.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
31
32
33
34
35
36
37
38
39
40
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Async library for HTTP/1.1 servers and clients"
description:
"Shuttle_http is a low level library for implementing HTTP/1.1 web services and clients in OCaml."
maintainer: ["Anurag Soni <[email protected]>"]
authors: ["Anurag Soni"]
license: "MIT"
tags: ["http-server" "http-client" "http" "http1.1" "async"]
homepage: "https://github.com/anuragsoni/shuttle_http"
bug-reports: "https://github.com/anuragsoni/shuttle_http/issues"
depends: [
"dune" {>= "3.1"}
"async" {>= "v0.17.0"}
"async_log" {>= "v0.17.0"}
"async_ssl" {>= "v0.17.0"}
"core" {>= "v0.17.0"}
"jane_rope" {>= "v0.17.0"}
"ocaml" {>= "5.1.0"}
"ppx_jane" {>= "v0.17.0"}
"re2" {>= "v0.17.0"}
"core_unix" {with-test}
"odoc" {with-doc}
]
dev-repo: "git+https://github.com/anuragsoni/shuttle_http.git"
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test & os != "macos"}
"@doc" {with-doc}
]
]
available: [ arch = "x86_64" | arch = "arm64" ]