We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79f78b7 commit 2578b8dCopy full SHA for 2578b8d
3 files changed
SQCaml.opam
@@ -13,6 +13,8 @@ depends: [
13
"dune" {>= "3.20"}
14
"ocaml"
15
"menhir"
16
+ "ppx_deriving"
17
+ "base-unix"
18
"alcotest" {with-test}
19
"odoc" {with-doc}
20
]
dune-project
@@ -24,6 +24,8 @@
24
(depends
25
ocaml
26
menhir
27
+ ppx_deriving
28
+ base-unix
29
(alcotest :with-test))
30
(tags
31
("add topics" "to describe" your project)))
lib/dune
@@ -2,6 +2,7 @@
2
3
(library
4
(name SQCaml)
5
+ (public_name SQCaml)
6
(preprocess
7
(pps ppx_deriving.show))
8
(libraries unix))
0 commit comments