Skip to content

Commit

Permalink
Move time dependency into observe crate (#3209)
Browse files Browse the repository at this point in the history
# Description
Moves the `time` dependency into the `observe` crate because it's only
used there.
Also updates it to the latest version.
  • Loading branch information
MartinquaXD authored Jan 6, 2025
1 parent 0db8f43 commit 07f4db6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

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

1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ serde_with = "3.8.1"
sqlx = { version = "0.7", default-features = false, features = ["runtime-tokio", "tls-native-tls", "bigdecimal", "chrono", "postgres", "macros"] }
strum = { version = "0.26.2", features = ["derive"] }
tempfile = "3.10.1"
time = { version = "0.3.36", features = ["macros"] }
thiserror = "1.0.61"
toml = "0.8.14"
tokio = { version = "1.38.0", features = ["tracing"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/observe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ futures = { workspace = true }
pin-project-lite = "0.2.14"
prometheus = { workspace = true }
prometheus-metric-storage = { workspace = true }
time = { workspace = true }
time = { version = "0.3.37", features = ["macros"] }
tokio = { workspace = true, features = [ "fs" ] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter", "fmt", "time"] }
Expand Down

0 comments on commit 07f4db6

Please sign in to comment.