A collection of experiments, more or less organized.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Initialize `desert` (a non-packaged-set of snippets)

xvw 4889384c e8838089

+48
+7
.ocamlformat
··· 1 + version = 0.28.1 2 + profile = janestreet 3 + ocaml-version = 5.4 4 + margin = 80 5 + parse-docstrings = true 6 + break-separators = before 7 + break-infix = fit-or-vertical
+31
desert.opam
··· 1 + # This file is generated by dune, edit dune-project instead 2 + opam-version: "2.0" 3 + version: "dev" 4 + synopsis: "Unpackaged experiences" 5 + description: "Mostly code snippets" 6 + maintainer: ["xvw <xaviervdw@gmail.com>"] 7 + authors: ["xvw <xaviervdw@gmail.com>"] 8 + license: "MIT" 9 + homepage: "https://tangled.org/xvw.lol/souk" 10 + bug-reports: "https://tangled.org/xvw.lol/souk/issues" 11 + depends: [ 12 + "dune" {>= "3.21"} 13 + "ocaml" {>= "5.4.0"} 14 + "odoc" {with-doc} 15 + ] 16 + build: [ 17 + ["dune" "subst"] {dev} 18 + [ 19 + "dune" 20 + "build" 21 + "-p" 22 + name 23 + "-j" 24 + jobs 25 + "@install" 26 + "@runtest" {with-test} 27 + "@doc" {with-doc} 28 + ] 29 + ] 30 + dev-repo: "git+https://tangled.org/xvw.lol/souk" 31 + x-maintenance-intent: ["(latest)"]
+7
dune-project
··· 20 20 (ocp-indent :with-dev-setup) 21 21 (merlin :with-dev-setup) 22 22 (ocaml-lsp-server :with-dev-setup))) 23 + 24 + (package 25 + (name desert) 26 + (synopsis "Unpackaged experiences") 27 + (description "Mostly code snippets") 28 + (depends 29 + (ocaml (>= 5.4.0))))
+3
lib/desert/dune
··· 1 + (library 2 + (name desert) 3 + (public_name desert))