Add serde feature to time crate

This commit is contained in:
Ethan Girouard 2024-02-16 14:18:29 -05:00
parent bd7b1ebd1a
commit 69eb1e866a
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146
2 changed files with 2 additions and 1 deletions

1
Cargo.lock generated
View File

@ -837,6 +837,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc" checksum = "8eb30d70a07a3b04884d2677f06bec33509dc67ca60d92949e5535352d3191dc"
dependencies = [ dependencies = [
"powerfmt", "powerfmt",
"serde",
] ]
[[package]] [[package]]

View File

@ -29,7 +29,7 @@ diesel = { version = "2.1.4", features = ["postgres", "r2d2", "time"], optional
lazy_static = { version = "1.4.0", optional = true } lazy_static = { version = "1.4.0", optional = true }
serde = { versions = "1.0.195", features = ["derive"] } serde = { versions = "1.0.195", features = ["derive"] }
openssl = { version = "0.10.63", optional = true } openssl = { version = "0.10.63", optional = true }
time = "0.3.34" time = { version = "0.3.34", features = ["serde"] }
diesel_migrations = { version = "2.1.0", optional = true } diesel_migrations = { version = "2.1.0", optional = true }
actix-identity = { version = "0.7.0", optional = true } actix-identity = { version = "0.7.0", optional = true }
actix-session = { version = "0.9.0", features = ["redis-rs-session"], optional = true } actix-session = { version = "0.9.0", features = ["redis-rs-session"], optional = true }