File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ depends: [
12
12
"dune" {>= "3.1"}
13
13
"bap-signatures" {= version}
14
14
"bap-std" {= version}
15
- "camlzip" {>= "1.0 " & < "2.0"}
15
+ "camlzip" {>= "1.12 " & < "2.0"}
16
16
"core_kernel" {>= "v0.14" & < "v0.16"}
17
17
"bap-common" {= version}
18
18
"ppx_bap" {= version}
Original file line number Diff line number Diff line change 283
283
( depends
284
284
( bap-signatures ( = :version ) )
285
285
( bap-std ( = :version ) )
286
- ( camlzip ( and ( >= 1 .0 ) ( < 2 .0) ) )
286
+ ( camlzip ( and ( >= 1 .12 ) ( < 2 .0) ) )
287
287
( core_kernel ( and ( >= v0.14) ( < v0.16) ) )
288
288
( bap-common ( = :version ) )
289
289
( ppx_bap ( = :version ) )
Original file line number Diff line number Diff line change @@ -109,9 +109,8 @@ let update_or_fail ?compiler target data payload path =
109
109
let path = make_entry ?compiler target data in
110
110
let data = Bytes. unsafe_to_string (data.save payload) in
111
111
Zip. add_entry data zip path;
112
- List. iter entries ~f: (fun ({Zip. filename; extra; comment; mtime} ,data ) ->
113
- Zip. add_entry data zip filename
114
- ~extra ~comment ~mtime )
112
+ List. iter entries ~f: (fun ({Zip. filename; comment; mtime} ,data ) ->
113
+ Zip. add_entry data zip filename ~comment ~mtime )
115
114
116
115
let copy input output =
117
116
let len = 0x1000 in
You can’t perform that action at this time.
0 commit comments