Skip to content

Commit 6f43db0

Browse files
authored
Update dependency and usage (#333)
1 parent 61d0835 commit 6f43db0

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

demo/universal/native/dune

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
unix
1616
dream
1717
url_native
18+
str
1819
lwt
1920
lwt.unix
2021
nested_router_native)

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
; Library dependencies
3333
(uucp (>= 16.0.0))
3434
(ppxlib (> 0.23.0))
35-
(quickjs (>= 0.4.0))
35+
(quickjs (>= 0.4.1))
3636
(lwt (>= 5.9.2))
3737
(lwt_ppx (>= 2.1.0))
3838
(uri (>= 4.2.0))

packages/Js/lib/Js_re.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ let sticky : t -> bool = fun regexp -> Quickjs.RegExp.sticky regexp
3434
let unicode : t -> bool = fun regexp -> Quickjs.RegExp.unicode regexp
3535
let dotAll : t -> bool = fun regexp -> Quickjs.RegExp.dotall regexp
3636
let lastIndex : t -> int = fun regex -> Quickjs.RegExp.lastIndex regex
37-
let setLastIndex : t -> int -> unit = fun regex index -> Quickjs.RegExp.setLastIndex regex index
37+
let setLastIndex : t -> int -> unit = fun regex index -> Quickjs.RegExp.set_last_index regex index
3838

3939
let exec : str:string -> t -> result option =
4040
fun ~str rex -> match Quickjs.RegExp.exec rex str with result -> Some result | exception _ -> None

server-reason-react.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ depends: [
1313
"melange" {>= "3.0.0"}
1414
"uucp" {>= "16.0.0"}
1515
"ppxlib" {> "0.23.0"}
16-
"quickjs" {>= "0.4.0"}
16+
"quickjs" {>= "0.4.1"}
1717
"lwt" {>= "5.9.2"}
1818
"lwt_ppx" {>= "2.1.0"}
1919
"uri" {>= "4.2.0"}

0 commit comments

Comments
 (0)