We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3ea082b + d084823 commit c66fc02Copy full SHA for c66fc02
async/dune
@@ -1,5 +1,5 @@
1
(library
2
(name faraday_async)
3
(public_name faraday-async)
4
- (libraries faraday async)
+ (libraries faraday async core_unix)
5
(flags (:standard -safe-string)))
async/faraday_async.ml
@@ -1,7 +1,7 @@
open Core
open Async
-module Unix = Core.Unix
+module Unix = Core_unix
6
7
let serialize t ~yield ~writev =
faraday-async.opam
@@ -15,6 +15,7 @@ depends: [
15
"dune" {>= "1.11"}
16
"faraday" {>= "0.5.0"}
17
"core" {>= "v0.14.0"}
18
+ "core_unix" {>= "v0.14.0"}
19
"async" {>= "v0.14.0"}
20
]
21
synopsis: "Async support for Faraday"
0 commit comments