Skip to content

Commit

Permalink
chore(deps): bump opentelemetry deps (#79)
Browse files Browse the repository at this point in the history
* chore(deps): bump otel deps

* fix: clipy warnings
  • Loading branch information
thevaibhav-dixit authored Jun 21, 2024
1 parent 4f3fc58 commit 876c29d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cel-interpreter/src/value.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl CelMap {
pub fn get(&self, key: impl Into<CelKey>) -> CelValue {
self.inner
.get(&key.into())
.map(Clone::clone)
.cloned()
.unwrap_or(CelValue::Null)
}
}
Expand Down
4 changes: 2 additions & 2 deletions ledger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ tokio = { version = "1.28", features = ["macros"] }
uuid = { version = "1.3", features = ["serde", "v4"] }
rusty-money = { version = "0.4", features = ["iso", "crypto"] }
tracing = "0.1"
opentelemetry = { version = "0.22", optional = true }
tracing-opentelemetry = { version = "0.23", optional = true }
opentelemetry = { version = "0.23", optional = true }
tracing-opentelemetry = { version = "0.24", optional = true }
cached = { version = "0.49", features = ["async"] }


Expand Down

0 comments on commit 876c29d

Please sign in to comment.