Typed runtime_events probes for OCaml
0

Configure Feed

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

probe, observe: drop ocaml- from the public library names

+23 -30
+1 -1
dune
··· 4 4 5 5 (mdx 6 6 (files README.md) 7 - (libraries ocaml-probe)) 7 + (libraries probe))
+3 -3
dune-project
··· 1 1 (lang dune 3.21) 2 2 (using mdx 0.4) 3 3 4 - (name ocaml-probe) 4 + (name probe) 5 5 6 6 (generate_opam_files true) 7 7 (implicit_transitive_deps false) ··· 9 9 (license ISC) 10 10 (authors "Thomas Gazagnaire <thomas@gazagnaire.org>") 11 11 (maintainers "Thomas Gazagnaire <thomas@gazagnaire.org>") 12 - (source (tangled gazagnaire.org/ocaml-probe)) 12 + (source (tangled gazagnaire.org/probe)) 13 13 14 14 (package 15 - (name ocaml-probe) 15 + (name probe) 16 16 (synopsis "Typed runtime_events probes for OCaml") 17 17 (tags (org:blacksun logging)) 18 18 (description
+2 -2
fuzz/dune
··· 1 - ; Alcobar fuzz testing for ocaml-probe 1 + ; Alcobar fuzz testing for probe 2 2 ; 3 3 ; Quick check: dune build @runtest 4 4 ; With AFL: dune build @fuzz --profile afl 5 5 6 6 (executable 7 7 (name fuzz) 8 - (libraries ocaml-probe alcobar)) 8 + (libraries probe alcobar)) 9 9 10 10 (rule 11 11 (alias runtest)
+2 -2
lib/dune
··· 1 1 (library 2 2 (name probe) 3 - (public_name ocaml-probe) 3 + (public_name probe) 4 4 (libraries runtime_events fmt) 5 5 (foreign_stubs 6 6 (language c) ··· 8 8 9 9 (mdx 10 10 (files probe.mli) 11 - (libraries ocaml-probe)) 11 + (libraries probe))
+3 -3
lib/eio/dune
··· 1 1 (library 2 2 (name probe_eio) 3 - (public_name ocaml-probe.eio) 4 - (libraries ocaml-probe eio)) 3 + (public_name probe.eio) 4 + (libraries probe eio)) 5 5 6 6 (mdx 7 7 (files probe_eio.mli) 8 - (libraries ocaml-probe.eio)) 8 + (libraries probe.eio))
+3 -3
lib/energy/dune
··· 1 1 (library 2 2 (name probe_energy) 3 - (public_name ocaml-probe.energy) 4 - (libraries ocaml-probe threads.posix) 3 + (public_name probe.energy) 4 + (libraries probe threads.posix) 5 5 (foreign_stubs 6 6 (language c) 7 7 (names probe_energy_stubs))) 8 8 9 9 (mdx 10 10 (files probe_energy.mli) 11 - (libraries ocaml-probe.energy)) 11 + (libraries probe.energy))
+3 -3
ocaml-probe.opam probe.opam
··· 7 7 authors: ["Thomas Gazagnaire <thomas@gazagnaire.org>"] 8 8 license: "ISC" 9 9 tags: ["org:blacksun" "logging"] 10 - homepage: "https://tangled.org/gazagnaire.org/ocaml-probe" 11 - bug-reports: "https://tangled.org/gazagnaire.org/ocaml-probe/issues" 10 + homepage: "https://tangled.org/gazagnaire.org/probe" 11 + bug-reports: "https://tangled.org/gazagnaire.org/probe/issues" 12 12 depends: [ 13 13 "dune" {>= "3.21"} 14 14 "ocaml" {>= "5.4"} ··· 34 34 "@doc" {with-doc} 35 35 ] 36 36 ] 37 - dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-probe" 37 + dev-repo: "git+https://tangled.org/gazagnaire.org/probe" 38 38 x-maintenance-intent: ["(latest)"]
+2 -9
test/dune
··· 1 1 (test 2 2 (name test) 3 - (package ocaml-probe) 4 - (libraries 5 - ocaml-probe 6 - ocaml-probe.eio 7 - alcotest 8 - eio 9 - eio_main 10 - runtime_events 11 - fmt)) 3 + (package probe) 4 + (libraries probe probe.eio alcotest eio eio_main runtime_events fmt))
+2 -2
test/eio/dune
··· 1 1 (test 2 2 (name test) 3 - (package ocaml-probe) 4 - (libraries ocaml-probe ocaml-probe.eio alcotest eio eio_main)) 3 + (package probe) 4 + (libraries probe probe.eio alcotest eio eio_main))
+2 -2
test/energy/dune
··· 1 1 (test 2 2 (name test) 3 - (package ocaml-probe) 4 - (libraries ocaml-probe ocaml-probe.energy alcotest unix)) 3 + (package probe) 4 + (libraries probe probe.energy alcotest unix))