My aggregated monorepo of OCaml code, automaintained
0
fork

Configure Feed

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

Squashed 'ocaml-tomlt/' changes from 1ea502b..3af4c99

3af4c99 metadata
6926787 Fix build warnings and odoc documentation errors

git-subtree-dir: ocaml-tomlt
git-subtree-split: 3af4c99d7217c999f0b754ebf46f967414b3c9f0

+11 -11
+3 -3
bin/dune
··· 1 1 (executable 2 2 (name toml_test_decoder) 3 - (libraries tomlt tomlt.bytesrw)) 3 + (libraries tomlt tomlt.bytesrw unix)) 4 4 5 5 (executable 6 6 (name toml_test_encoder) 7 - (libraries tomlt tomlt.bytesrw)) 7 + (libraries tomlt tomlt.bytesrw unix)) 8 8 9 9 (executable 10 10 (name run_tests) 11 - (libraries tomlt tomlt.bytesrw)) 11 + (libraries tomlt tomlt.bytesrw unix))
+2 -2
dune-project
··· 6 6 (license ISC) 7 7 (authors "Anil Madhavapeddy <anil@recoil.org>") 8 8 (maintainers "Anil Madhavapeddy <anil@recoil.org>") 9 - (homepage "https://tangled.org/@anil.recoil.org/ocaml-tomlt") 10 - (bug_reports "https://tangled.org/@anil.recoil.org/ocaml-tomlt/issues") 9 + (homepage "https://tangled.org/anil.recoil.org/ocaml-tomlt") 10 + (bug_reports "https://tangled.org/anil.recoil.org/ocaml-tomlt/issues") 11 11 12 12 (package 13 13 (name tomlt)
+4 -4
test/dune
··· 1 1 (test 2 2 (name test_tomlt) 3 - (libraries tomlt tomlt.bytesrw alcotest)) 3 + (libraries tomlt tomlt.bytesrw alcotest unix)) 4 4 5 5 (test 6 6 (name test_codec) 7 - (libraries tomlt tomlt.bytesrw alcotest)) 7 + (libraries tomlt tomlt.bytesrw alcotest unix)) 8 8 9 9 (executable 10 10 (name test_debug) 11 - (libraries tomlt tomlt.bytesrw)) 11 + (libraries tomlt tomlt.bytesrw unix)) 12 12 13 13 (executable 14 14 (name cookbook) 15 - (libraries tomlt tomlt.bytesrw)) 15 + (libraries tomlt tomlt.bytesrw unix))
+2 -2
tomlt.opam
··· 13 13 maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 14 14 authors: ["Anil Madhavapeddy <anil@recoil.org>"] 15 15 license: "ISC" 16 - homepage: "https://tangled.org/@anil.recoil.org/ocaml-tomlt" 17 - bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-tomlt/issues" 16 + homepage: "https://tangled.org/anil.recoil.org/ocaml-tomlt" 17 + bug-reports: "https://tangled.org/anil.recoil.org/ocaml-tomlt/issues" 18 18 depends: [ 19 19 "dune" {>= "3.0"} 20 20 "ocaml" {>= "4.14.0"}