Skip to content

Commit df118a7

Browse files
committed
Add serde feature to database crate's chrono dependency
The feature was already used by another crate in the workspace, so the database crate would build with `cargo build`, but not with `cargo build -p database`. This fixes that.
1 parent 3288b5e commit df118a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ async-trait = "0.1"
1515
tokio = { version = "1.6", features = ["sync", "macros"] }
1616
snap = "1"
1717
intern = { path = "../intern" }
18-
chrono = "0.4"
18+
chrono = { version = "0.4", features = ["serde"] }
1919
reqwest = { version = "0.11", features = ["blocking"] }
2020
postgres-native-tls = "0.5"
2121
native-tls = "0.2"

0 commit comments

Comments
 (0)