Native OCaml Rego/OPA policy engine
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-*

+4 -4
+1 -1
dune-project
··· 24 24 (ocaml (>= 5.1)) 25 25 (fmt (>= 0.9)) 26 26 (logs (>= 0.7)) 27 - (json (>= 0.1)) 27 + (nox-json (>= 0.1)) 28 28 (astring (>= 0.8)) 29 29 (re (>= 1.0)) 30 30 (sedlex (>= 3.0))
+1 -1
lib/dune
··· 1 1 (library 2 2 (name rego) 3 3 (public_name rego) 4 - (libraries fmt logs json astring re sedlex menhirLib nox-loc) 4 + (libraries fmt logs nox-json astring re sedlex menhirLib nox-loc) 5 5 (preprocess 6 6 (pps sedlex.ppx))) 7 7
+1 -1
rego.opam
··· 14 14 "ocaml" {>= "5.1"} 15 15 "fmt" {>= "0.9"} 16 16 "logs" {>= "0.7"} 17 - "json" {>= "0.1"} 17 + "nox-json" {>= "0.1"} 18 18 "astring" {>= "0.8"} 19 19 "re" {>= "1.0"} 20 20 "sedlex" {>= "3.0"}
+1 -1
test/dune
··· 1 1 (test 2 2 (name test_rego) 3 - (libraries rego alcotest astring json unix) 3 + (libraries rego alcotest astring nox-json unix) 4 4 (deps 5 5 (source_tree opa_suite)))