Skip to content

Commit

Permalink
Upgrade JaneStreet async and core to v.0.16
Browse files Browse the repository at this point in the history
Minor fixes to deprecated functions and function interfaces.
  • Loading branch information
tmcgilchrist authored and hannesm committed Jul 3, 2023
1 parent 4e20dfe commit afded12
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion async/tls_async.mli
Expand Up @@ -55,4 +55,4 @@ val connect
-> 'addr Tcp.Where_to_connect.t
-> host:[ `host ] Domain_name.t option
-> (Session.t * Reader.t * Writer.t) Deferred.Or_error.t)
Tcp.with_connect_options
Tcp.Aliases.with_connect_options
2 changes: 1 addition & 1 deletion async/x509_async.ml
Expand Up @@ -9,7 +9,7 @@ let file_contents file =
let load_all_in_directory ~directory ~f =
let open Deferred.Or_error.Let_syntax in
let%bind files = Deferred.Or_error.try_with (fun () -> Sys.ls_dir directory) in
Deferred.Or_error.List.map files ~f:(fun file ->
Deferred.Or_error.List.map ~how:`Sequential files ~f:(fun file ->
let%bind contents = file_contents (directory ^/ file) in
f ~contents)
;;
Expand Down
8 changes: 4 additions & 4 deletions tls-async.opam
Expand Up @@ -19,11 +19,11 @@ depends: [
"tls" {= version}
"x509" {>= "0.14.0"}
"ptime" {>= "0.8.1"}
"async" {>= "v0.15"}
"async_unix" {>= "v0.15"}
"core" {>= "v0.15"}
"async" {>= "v0.16"}
"async_unix" {>= "v0.16"}
"core" {>= "v0.16"}
"cstruct-async"
"ppx_jane" {>= "v0.15"}
"ppx_jane" {>= "v0.16"}
"mirage-crypto-rng-async"
]
tags: [ "org:mirage"]
Expand Down

0 comments on commit afded12

Please sign in to comment.