TOML 1.1 codecs for OCaml

optional

+5
+3
bin/dune
··· 2 (name toml_test_decoder) 3 (public_name toml-test-decoder) 4 (package tomlt) 5 (libraries tomlt tomlt.bytesrw)) 6 7 (executable 8 (name toml_test_encoder) 9 (public_name toml-test-encoder) 10 (package tomlt) 11 (libraries tomlt tomlt.bytesrw)) 12 13 (executable 14 (name run_tests) 15 (libraries tomlt tomlt.bytesrw))
··· 2 (name toml_test_decoder) 3 (public_name toml-test-decoder) 4 (package tomlt) 5 + (optional) 6 (libraries tomlt tomlt.bytesrw)) 7 8 (executable 9 (name toml_test_encoder) 10 (public_name toml-test-encoder) 11 (package tomlt) 12 + (optional) 13 (libraries tomlt tomlt.bytesrw)) 14 15 (executable 16 (name run_tests) 17 + (optional) 18 (libraries tomlt tomlt.bytesrw))
+1
lib_bytesrw/dune
··· 1 (library 2 (name tomlt_bytesrw) 3 (public_name tomlt.bytesrw) 4 (modules tomlt_bytesrw) 5 (libraries tomlt bytesrw uutf))
··· 1 (library 2 (name tomlt_bytesrw) 3 (public_name tomlt.bytesrw) 4 + (optional) 5 (modules tomlt_bytesrw) 6 (libraries tomlt bytesrw uutf))
+1
lib_unix/dune
··· 1 (library 2 (name tomlt_unix) 3 (public_name tomlt.unix) 4 (libraries tomlt tomlt.bytesrw bytesrw ptime.clock.os))
··· 1 (library 2 (name tomlt_unix) 3 (public_name tomlt.unix) 4 + (optional) 5 (libraries tomlt tomlt.bytesrw bytesrw ptime.clock.os))