Skip to content

Commit 9132c5a

Browse files
committed
Add chrono as a workspace dependency
1 parent f8efdbd commit 9132c5a

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ resolver = "2"
55

66
[workspace.dependencies]
77
anyhow = "1"
8+
chrono = "0.4"
89
clap = "4.1"
910
hashbrown = "0.14"
1011
log = "0.4"

collector/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ rust-version = "1.75.0"
88

99
[dependencies]
1010
anyhow = { workspace = true }
11+
chrono = { workspace = true, features = ["serde"] }
1112
log = { workspace = true }
1213
serde = { workspace = true, features = ["derive"] }
1314
serde_json = { workspace = true }
@@ -17,7 +18,6 @@ env_logger = "0.10"
1718
thiserror = "1"
1819
tempfile = "3"
1920
libc = "0.2"
20-
chrono = { version = "0.4", features = ["serde"] }
2121
lazy_static = "1"
2222
semver = "1.0"
2323
reqwest = { version = "0.11", features = ["json", "blocking"] }

database/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ edition = "2021"
66

77
[dependencies]
88
anyhow = { workspace = true }
9+
chrono = { workspace = true, features = ["serde"] }
910
clap = { workspace = true, features = ["cargo"] }
1011
hashbrown = { workspace = true, features = ["serde"] }
1112
log = { workspace = true }
@@ -16,7 +17,6 @@ tokio-postgres = { version = "0.7", features = ["with-chrono-0_4", "runtime"] }
1617
async-trait = "0.1"
1718
tokio = { version = "1.6", features = ["sync", "macros", "parking_lot"] }
1819
intern = { path = "../intern" }
19-
chrono = { version = "0.4.38", features = ["serde"] }
2020
reqwest = { version = "0.11" }
2121
postgres-native-tls = "0.5"
2222
native-tls = "0.2"

site/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ edition = "2021"
66

77
[dependencies]
88
anyhow = { workspace = true }
9+
chrono = { workspace = true }
910
hashbrown = { workspace = true, features = ["serde"] }
1011
log = { workspace = true }
1112
serde = { workspace = true, features = ["rc"] }
@@ -17,7 +18,6 @@ tokio = { version = "1.26", features = ["macros", "time"] }
1718
hyper = { version = "0.14", features = ["server", "stream"] }
1819
headers = "0.3"
1920
http = "0.2"
20-
chrono = "0.4"
2121
rmp-serde = "1.1"
2222
brotli = "3.3.3"
2323
semver = "1.0"

0 commit comments

Comments
 (0)