summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dune-project2
-rw-r--r--lib/dune2
-rw-r--r--sand.opam2
3 files changed, 4 insertions, 2 deletions
diff --git a/dune-project b/dune-project
index daec250..b7399d2 100644
--- a/dune-project
+++ b/dune-project
@@ -19,4 +19,4 @@
19; (description "A longer description") 19; (description "A longer description")
20; (tags 20; (tags
21; (topics "to describe" your project)) 21; (topics "to describe" your project))
22 (depends ocaml dune)) 22 (depends ocaml dune base stdio))
diff --git a/lib/dune b/lib/dune
index f63bb19..6da5e0a 100644
--- a/lib/dune
+++ b/lib/dune
@@ -1,3 +1,3 @@
1(library 1(library
2 (name sand) 2 (name sand)
3 (libraries unix)) 3 (libraries base stdio unix))
diff --git a/sand.opam b/sand.opam
index 4bbb344..c317b92 100644
--- a/sand.opam
+++ b/sand.opam
@@ -7,6 +7,8 @@ bug-reports: "https://github.com/username/reponame/issues"
7depends: [ 7depends: [
8 "ocaml" 8 "ocaml"
9 "dune" {>= "3.7"} 9 "dune" {>= "3.7"}
10 "base"
11 "stdio"
10 "odoc" {with-doc} 12 "odoc" {with-doc}
11] 13]
12build: [ 14build: [