-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
libsql-client-ocaml.opam
38 lines (36 loc) · 1016 Bytes
/
libsql-client-ocaml.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
opam-version: "2.0"
maintainer: "david-engelmann [email protected]"
authors: "david-engelmann [email protected]"
homepage: "https://github.com/david-engelmann/libsql-client-ocaml"
bug-reports: "https://github.com/david-engelmann/libsql-client-ocaml/issues"
dev-repo: "git+https://github.com/david-engelmann/libsql-client-ocaml.git"
license: "MIT"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.14.0"}
"core"
"async"
"dune" {>= "2.0.0"}
"uri" {>= "4.2.0"}
"lwt" {>= "5.6.1"}
"cohttp" {>= "5.1.0"}
"cohttp-lwt-unix"
"cohttp-async"
"ssl"
"lwt_ssl"
"jose"
"alcotest"
"alcotest-lwt"
"sqlite3"
"js_of_ocaml-compiler"
]
available: arch != "arm32" & arch != "x86_32"
synopsis: "OCaml-based tools for libSQL"
description: "
OCaml-based tools for libSQL
You can create a .env file with the minimum one variable
- AUTH_TOKEN : your.token.here
- Add your libSQL auth token for Bearer Authentication
"