Skip to content

Commit c66fc02

Browse files
authored
Merge pull request #76 from bcc32/core-0.15-compat
Fix compatibility with core >= 0.15
2 parents 3ea082b + d084823 commit c66fc02

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

async/dune

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(library
22
(name faraday_async)
33
(public_name faraday-async)
4-
(libraries faraday async)
4+
(libraries faraday async core_unix)
55
(flags (:standard -safe-string)))

async/faraday_async.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
open Core
22
open Async
33

4-
module Unix = Core.Unix
4+
module Unix = Core_unix
55

66

77
let serialize t ~yield ~writev =

faraday-async.opam

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ depends: [
1515
"dune" {>= "1.11"}
1616
"faraday" {>= "0.5.0"}
1717
"core" {>= "v0.14.0"}
18+
"core_unix" {>= "v0.14.0"}
1819
"async" {>= "v0.14.0"}
1920
]
2021
synopsis: "Async support for Faraday"

0 commit comments

Comments
 (0)