Skip to content

Commit

Permalink
Unrelated fix to some dependencies that broke my build locally.
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed Jun 12, 2024
1 parent d70c803 commit 8a60fce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

5 changes: 4 additions & 1 deletion crates/invoker-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false

[features]
default = []
mocks = []
mocks = ["restate-types/test-util"]
serde = ["dep:serde"]

[dependencies]
Expand All @@ -25,3 +25,6 @@ futures = { workspace = true }
serde = { workspace = true, optional = true }
thiserror = { workspace = true }
tokio = { workspace = true }

[dev-dependencies]
restate-types = { workspace = true, features = ["test-util"] }
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ use restate_types::journal::EntryType;
use restate_types::service_protocol::ServiceProtocolVersion;
use std::collections::HashSet;
use std::future::poll_fn;
use tracing::log::warn;
use tracing::{debug, info, trace, Span};
use tracing::{debug, info, trace, warn, Span};
use tracing_opentelemetry::OpenTelemetrySpanExt;

/// Runs the interaction between the server and the service endpoint.
Expand Down

0 comments on commit 8a60fce

Please sign in to comment.