summaryrefslogtreecommitdiff
path: root/rinha.opam
diff options
context:
space:
mode:
authorMateus Cruz <mateuscolvr@gmail.com>2024-02-05 00:14:45 -0300
committerMateus Cruz <mateuscolvr@gmail.com>2024-02-05 00:42:06 -0300
commitf0142aa1c3b4d7c2fd0b70c9e62c1ec033e445c2 (patch)
tree7f979459a60365f16197889d2ec660847141d42a /rinha.opam
parentf3ac99a84497868aded8ee7ec2822d1b12960fd7 (diff)
add basic route handling
Diffstat (limited to 'rinha.opam')
-rw-r--r--rinha.opam31
1 files changed, 31 insertions, 0 deletions
diff --git a/rinha.opam b/rinha.opam
new file mode 100644
index 0000000..3b957d2
--- /dev/null
+++ b/rinha.opam
@@ -0,0 +1,31 @@
+# This file is generated by dune, edit dune-project instead
+opam-version: "2.0"
+synopsis: "A short synopsis"
+description: "A longer description"
+maintainer: ["Maintainer Name"]
+authors: ["Author Name"]
+license: "LICENSE"
+tags: ["topics" "to describe" "your" "project"]
+homepage: "https://github.com/username/reponame"
+doc: "https://url/to/documentation"
+bug-reports: "https://github.com/username/reponame/issues"
+depends: [
+ "ocaml"
+ "dune" {>= "3.13"}
+ "odoc" {with-doc}
+]
+build: [
+ ["dune" "subst"] {dev}
+ [
+ "dune"
+ "build"
+ "-p"
+ name
+ "-j"
+ jobs
+ "@install"
+ "@runtest" {with-test}
+ "@doc" {with-doc}
+ ]
+]
+dev-repo: "git+https://github.com/username/reponame.git"