Declarative JSON data manipulation for OCaml
0
fork

Configure Feed

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

Prefix encoding packages with nox-

Extends the nox- prefix to the remaining encoding/codec packages —
none clash with opam-repository today, but the rule "blacksun forks
get nox-" applies the same way regardless of conflict status.

Renamed: json, xml, meta, opam, protobuf -> nox-*

+12 -12
+1 -1
bench/dune
··· 1 1 (executable 2 2 (name bench) 3 - (libraries json unix nox-memtrace)) 3 + (libraries nox-json unix nox-memtrace))
+1 -1
dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries json)) 7 + (libraries nox-json))
+2 -2
dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name json) 4 + (name nox-json) 5 5 6 6 (generate_opam_files true) 7 7 ··· 11 11 (maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>") 12 12 13 13 (package 14 - (name json) 14 + (name nox-json) 15 15 (synopsis "Declarative JSON data manipulation for OCaml") 16 16 (tags (org:blacksun codec.text)) 17 17 (description
+1 -1
fuzz/dune
··· 1 1 (executable 2 2 (name fuzz) 3 - (libraries json alcobar)) 3 + (libraries nox-json alcobar)) 4 4 5 5 (rule 6 6 (alias runtest)
json.opam nox-json.opam
+2 -2
lib/brr/dune
··· 1 1 (library 2 2 (name json_brr) 3 - (public_name json.brr) 4 - (libraries json brr) 3 + (public_name nox-json.brr) 4 + (libraries nox-json brr) 5 5 (optional))
+2 -2
lib/dune
··· 1 1 (library 2 2 (name json) 3 - (public_name json) 3 + (public_name nox-json) 4 4 (private_modules core) 5 5 (libraries fmt bytesrw nox-loc)) 6 6 7 7 (mdx 8 8 (files json.mli codec.mli value.mli tape.mli error.mli sort.mli) 9 - (libraries json)) 9 + (libraries nox-json))
+1 -1
test/brr/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries json json.brr alcotest) 3 + (libraries nox-json nox-json.brr alcotest) 4 4 (enabled_if %{bin-available:js_of_ocaml}))
+1 -1
test/bytesrw/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries json alcotest)) 3 + (libraries nox-json alcotest))
+1 -1
test/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries json alcotest)) 3 + (libraries nox-json alcotest))