mirror of
https://github.com/vacp2p/status-rln-prover.git
synced 2026-01-08 21:18:05 -05:00
* Initial code for tracing + oltp * Add tracing for all grpc endpoints + proof services + epoch service * Trace result and errors for grpc endpoints
22 lines
714 B
TOML
22 lines
714 B
TOML
[package]
|
|
name = "prover_cli"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.37", features = ["derive", "wrap_help"] }
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
|
|
tracing = "0.1.41"
|
|
toml = "0.8"
|
|
prover = { path = "../prover" }
|
|
|
|
opentelemetry = { version = "0.30", default-features = false, features = ["trace"]}
|
|
opentelemetry_sdk = { version = "0.30", features = ["rt-tokio"] }
|
|
opentelemetry-otlp = { version = "0.30", features = ["grpc-tonic", "reqwest-client", "reqwest-rustls", "http-proto", "tls", "tls-roots"]}
|
|
tracing-opentelemetry = "0.31"
|
|
|
|
|
|
[dev-dependencies]
|
|
tracing-test = "0.2.5"
|