Skip to content

Commit ac1ac3a

Browse files
committed
[new release] quickjs (0.1.2)
CHANGES: ## 0.1.1 Bug fix for RegExp backtracking when not find a match ## 0.1.0 Initial release of quickjs. This release only includes bindings to libregexp and exposes the API of the QuickJS C library with the same shape as the JavaScript API: RegExp.
1 parent 7b61e39 commit ac1ac3a

File tree

1 file changed

+43
-0
lines changed
  • packages/quickjs/quickjs.0.1.2

1 file changed

+43
-0
lines changed

packages/quickjs/quickjs.0.1.2/opam

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
opam-version: "2.0"
2+
synopsis:
3+
"Bindings for QuickJS (a Javascript Engine to be embedded https://bellard.org/quickjs)"
4+
maintainer: ["David Sancho <[email protected]>"]
5+
authors: ["David Sancho <[email protected]>"]
6+
license: "MIT"
7+
homepage: "https://github.com/ml-in-barcelona/quickjs.ml"
8+
bug-reports: "https://github.com/ml-in-barcelona/quickjs.ml/issues"
9+
depends: [
10+
"dune" {>= "3.8"}
11+
"ocaml" {>= "5.0.0"}
12+
"integers"
13+
"ctypes"
14+
"alcotest" {with-test}
15+
"fmt" {with-test}
16+
"odoc" {with-doc}
17+
"ocaml-lsp-server" {with-test}
18+
"ocamlformat" {= "0.26.1" & with-test}
19+
]
20+
dev-repo: "git+https://github.com/ml-in-barcelona/quickjs.ml.git"
21+
build: [
22+
["dune" "subst"] {dev}
23+
[
24+
"dune"
25+
"build"
26+
"-p"
27+
name
28+
"-j"
29+
jobs
30+
"@install"
31+
"@runtest" {with-test}
32+
"@new-doc" {with-doc}
33+
]
34+
]
35+
url {
36+
src:
37+
"https://github.com/ml-in-barcelona/quickjs.ml/releases/download/0.1.2/quickjs-0.1.2.tbz"
38+
checksum: [
39+
"sha256=27f6c8c9a3a7afa3ab7506d1154f22cf41249e2b789c0c6c634982809d17ad57"
40+
"sha512=860ca84b9409a54b2fedc6b9777009872b9508bcee0f8ca3555822618640d763820e1be11c47603a4638885ab3df7eb705523cef330479147340404a7f2faa35"
41+
]
42+
}
43+
x-commit-hash: "d58993c2299462690b4fbb94b5912fd12d91c976"

0 commit comments

Comments
 (0)