Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ jobs:
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: Run metrics tests
run: |
cargo test --locked -p linera-base --features metrics,opentelemetry
cargo test --locked -p linera-base --features metrics

wasm-application-test:
needs: changed-files
Expand Down
17 changes: 9 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ARG binaries=
ARG copy=${binaries:+_copy}
ARG build_flag=--release
ARG build_folder=release
ARG build_features=scylladb,metrics,memory-profiling,opentelemetry
ARG build_features=scylladb,metrics,memory-profiling
ARG rustflags="-C force-frame-pointers=yes"

FROM rust:1.74-slim-bookworm AS builder
Expand Down
142 changes: 2 additions & 140 deletions examples/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 0 additions & 8 deletions linera-base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ workspace = true
metrics = ["prometheus"]
reqwest = ["dep:reqwest"]
revm = []
opentelemetry = ["opentelemetry-otlp"]
test = ["test-strategy", "proptest"]
web = [
"getrandom/js",
Expand Down Expand Up @@ -49,7 +48,6 @@ ed25519-dalek.workspace = true
futures.workspace = true
getrandom = { workspace = true, optional = true }
hex.workspace = true
is-terminal.workspace = true
k256.workspace = true
linera-kywasmtime = { workspace = true, optional = true }
linera-witty = { workspace = true, features = ["macros"] }
Expand All @@ -67,7 +65,6 @@ thiserror.workspace = true
tokio = { workspace = true, features = ["time"] }
tokio-stream.workspace = true
tracing.workspace = true
tracing-subscriber = { workspace = true, features = ["json", "fmt", "ansi"] }
trait-variant.workspace = true
wasm-bindgen = { workspace = true, optional = true }
wasm-bindgen-futures = { workspace = true, optional = true }
Expand All @@ -81,11 +78,6 @@ tracing-web = { optional = true, workspace = true }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
chrono.workspace = true
opentelemetry.workspace = true
opentelemetry-otlp = { workspace = true, optional = true }
opentelemetry_sdk = { workspace = true, features = ["testing"] }
tracing-chrome.workspace = true
tracing-opentelemetry.workspace = true
rand = { workspace = true, features = ["getrandom", "std", "std_rng"] }
tokio = { workspace = true, features = [
"process",
Expand Down
4 changes: 0 additions & 4 deletions linera-base/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,6 @@ pub mod vm;
#[cfg(not(chain))]
pub use task::Blocking;
pub mod time;
#[cfg_attr(web, path = "tracing_web.rs")]
pub mod tracing;
#[cfg(not(target_arch = "wasm32"))]
pub mod tracing_opentelemetry;
#[cfg(test)]
mod unit_tests;

Expand Down
Loading
Loading