-
Notifications
You must be signed in to change notification settings - Fork 42
/
dune-project
104 lines (89 loc) · 2.71 KB
/
dune-project
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
(lang dune 2.7)
;; dune language version (NOTE this comment applies to the above line; it is intentionally placed here!)
(using menhir 2.0) ;; enable use of menhir
(name links) ;; package name
(implicit_transitive_deps false) ;; hides transitive dependencies in libraries/executables/tests
(generate_opam_files true) ;; generate .opam package files using the descriptions defined in this file
;;
;; Project metainformation
;;
(source
(github links-lang/links))
(homepage
https://links-lang.org)
(authors
"The Links Team <[email protected]>")
(maintainers
"Daniel Hillerström <[email protected]>")
(license
GPL-3.0-only)
(documentation
"https://links-lang.org/quick-help.html")
;;
;; The Links Programmming System
;;
(package
(name links)
(synopsis "The Links Programming Language")
(description "Links is a functional programming language designed to make web programming easier.")
(depends (ocaml (>= : 5.1.1))
(dune-configurator (>= : 3.8))
ppx_deriving
(ppx_deriving_yojson (>= 3.3))
base64
linenoise
ANSITerminal
(lwt (>= 5.0.0))
cohttp
cohttp-lwt
cohttp-lwt-unix
conduit-lwt-unix
uri
tls
websocket
websocket-lwt-unix
safepass
result
ocamlfind
(menhir (>= 20210419))
(ppx_sexp_conv (>= v0.16.0))
(calendar (>= 2.0.4))
(rdf_lwt (>= 0.13.0)))
(tags
("web programming" "tierless" "multi-tier" "effect handlers" "effect typing" "session types"
"concurrency" "webpage" "extensible data types" "language-integrated queries")))
;;
;; Links PostgreSQL driver
;;
(package
(name links-postgresql)
(synopsis "Postgresql database driver for the Links Programming Language")
(description "Postgresql database driver for the Links Programming Language")
(depends (links (= :version))
postgresql)
(tags
("postgresql" "database")))
;;
;; Links SQLite3 driver
;;
(package
(name links-sqlite3)
(synopsis "SQLite database driver for the Links Programming Language")
(description "SQLite database driver for the Links Programming Language")
(depends (links (= :version))
sqlite3)
(tags
("sqlite" "database")))
;;
;; Links MySQL driver
;;
(package
(name links-mysql)
(synopsis "MySQL database driver for the Links Programming Language")
(description "MySQL database driver for the Links Programming Language")
(depends (links (= :version))
conf-mysql
mysql8)
(tags
("mysql" "database")))
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project