Skip to content

Commit

Permalink
Merge pull request #76 from bcc32/core-0.15-compat
Browse files Browse the repository at this point in the history
Fix compatibility with core >= 0.15
  • Loading branch information
seliopou committed Oct 13, 2022
2 parents 3ea082b + d084823 commit c66fc02
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion async/dune
@@ -1,5 +1,5 @@
(library
(name faraday_async)
(public_name faraday-async)
(libraries faraday async)
(libraries faraday async core_unix)
(flags (:standard -safe-string)))
2 changes: 1 addition & 1 deletion async/faraday_async.ml
@@ -1,7 +1,7 @@
open Core
open Async

module Unix = Core.Unix
module Unix = Core_unix


let serialize t ~yield ~writev =
Expand Down
1 change: 1 addition & 0 deletions faraday-async.opam
Expand Up @@ -15,6 +15,7 @@ depends: [
"dune" {>= "1.11"}
"faraday" {>= "0.5.0"}
"core" {>= "v0.14.0"}
"core_unix" {>= "v0.14.0"}
"async" {>= "v0.14.0"}
]
synopsis: "Async support for Faraday"

0 comments on commit c66fc02

Please sign in to comment.