mirror of
https://github.com/ocaml-tracing/ocaml-trace.git
synced 2026-03-07 18:37:56 -05:00
chore: opam file
This commit is contained in:
parent
372cc6ff7e
commit
8184c52086
2 changed files with 55 additions and 0 deletions
19
dune-project
19
dune-project
|
|
@ -94,4 +94,23 @@
|
||||||
(tags
|
(tags
|
||||||
(trace tracing fuchsia)))
|
(trace tracing fuchsia)))
|
||||||
|
|
||||||
|
(package
|
||||||
|
(name trace-usdt)
|
||||||
|
(synopsis "A trace backend using USDT probes, activated at runtime")
|
||||||
|
(depends
|
||||||
|
(ocaml
|
||||||
|
(>= 4.08))
|
||||||
|
(trace
|
||||||
|
(= :version))
|
||||||
|
(mtime
|
||||||
|
(>= 2.0))
|
||||||
|
ocaml_usdt
|
||||||
|
(yojson
|
||||||
|
(and
|
||||||
|
(>= 2.0)
|
||||||
|
(< 3.0)))
|
||||||
|
dune)
|
||||||
|
(tags
|
||||||
|
(trace tracing usdt)))
|
||||||
|
|
||||||
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|
; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
|
||||||
|
|
|
||||||
36
trace-usdt.opam
Normal file
36
trace-usdt.opam
Normal file
|
|
@ -0,0 +1,36 @@
|
||||||
|
# This file is generated by dune, edit dune-project instead
|
||||||
|
opam-version: "2.0"
|
||||||
|
version: "0.10"
|
||||||
|
synopsis: "A trace backend using USDT probes, activated at runtime"
|
||||||
|
maintainer: ["Simon Cruanes"]
|
||||||
|
authors: ["Simon Cruanes"]
|
||||||
|
license: "MIT"
|
||||||
|
tags: ["trace" "tracing" "usdt"]
|
||||||
|
homepage: "https://github.com/c-cube/ocaml-trace"
|
||||||
|
bug-reports: "https://github.com/c-cube/ocaml-trace/issues"
|
||||||
|
depends: [
|
||||||
|
"ocaml" {>= "4.08"}
|
||||||
|
"trace" {= version}
|
||||||
|
"mtime" {>= "2.0"}
|
||||||
|
"ocaml_usdt"
|
||||||
|
"yojson" {>= "2.0" & < "3.0"}
|
||||||
|
"dune" {>= "2.9"}
|
||||||
|
"odoc" {with-doc}
|
||||||
|
]
|
||||||
|
build: [
|
||||||
|
["dune" "subst"] {dev}
|
||||||
|
[
|
||||||
|
"dune"
|
||||||
|
"build"
|
||||||
|
"-p"
|
||||||
|
name
|
||||||
|
"-j"
|
||||||
|
jobs
|
||||||
|
"--promote-install-files=false"
|
||||||
|
"@install"
|
||||||
|
"@runtest" {with-test}
|
||||||
|
"@doc" {with-doc}
|
||||||
|
]
|
||||||
|
["dune" "install" "-p" name "--create-install-files" name]
|
||||||
|
]
|
||||||
|
dev-repo: "git+https://github.com/c-cube/ocaml-trace.git"
|
||||||
Loading…
Add table
Reference in a new issue