Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## dev

- support uri.3.0.0 that has optional sexp support (@avsm)
- use re.1.9.0 api to remove deprecation warnings (#664 @vbmithr)

## v2.1.2 (2019-04-09)
Expand Down
1 change: 1 addition & 0 deletions cohttp-async.opam
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ depends: [
"ppx_sexp_conv" {>= "v0.9.0"}
"ounit" {with-test}
"uri" {>= "2.0.0"}
"uri-sexp"
]
build: [
["dune" "subst"] {pinned}
Expand Down
2 changes: 1 addition & 1 deletion cohttp-async/src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
(synopsis "Async backend")
(public_name cohttp-async)
(libraries logs.fmt base fmt async_unix async_kernel async_extra uri
uri.services uri.sexp ipaddr.unix conduit-async magic-mime cohttp)
uri.services uri-sexp ipaddr.unix conduit-async magic-mime cohttp)
(preprocess (pps ppx_sexp_conv)))
1 change: 1 addition & 0 deletions cohttp.opam
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ depends: [
"dune" {build & >= "1.1.0"}
"re" {>= "1.9.0"}
"uri" {>= "2.0.0"}
"uri-sexp"
"fieldslib"
"sexplib0"
"ppx_fields_conv" {>= "v0.9.0"}
Expand Down
2 changes: 1 addition & 1 deletion cohttp/src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
(public_name cohttp)
(synopsis "Co-operative Client/Server HTTP library.")
(preprocess (pps ppx_fields_conv ppx_sexp_conv))
(libraries re stringext uri uri.sexp fieldslib sexplib0 bytes base64))
(libraries re stringext uri uri-sexp fieldslib sexplib0 bytes base64))

(ocamllex accept_lexer)
(ocamlyacc accept_parser)