Skip to content

Commit 7a0ddf3

Browse files
committed
add esy config
1 parent 0268a7d commit 7a0ddf3

File tree

4 files changed

+816
-0
lines changed

4 files changed

+816
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
_build
22
*.install
33
*.merlin
4+
node_modules

dune

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(ignored_subdirs (node_modules))

esy.lock.json

+786
Large diffs are not rendered by default.

package.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "hacl",
3+
"version": "0.0.1",
4+
"description": "OCaml bindings to hacl-star generated C code (https://github.com/mitls/hacl-star)",
5+
"repository": "https://github.com/mengerhq/ocaml-hacl",
6+
"esy": {
7+
"build": [["dune", "build"]]
8+
},
9+
"scripts": {
10+
"clean": "dune clean",
11+
"test": "dune runtest"
12+
},
13+
"dependencies": {
14+
"@opam/bigstring": ">=0.2",
15+
"@opam/dune": "^1.3.0",
16+
"@opam/ocplib-endian": ">=1.0",
17+
"@opam/zarith": ">=1.7"
18+
},
19+
"peerDependencies": {
20+
"ocaml": ">=4.2.0"
21+
},
22+
"devDependencies": {
23+
"@esy-ocaml/merlin": "^3.0.5",
24+
"@opam/alcotest": "^0.8.3",
25+
"@opam/hex": "^1.2.0",
26+
"ocaml": "~4.7.2"
27+
}
28+
}

0 commit comments

Comments
 (0)