Skip to content

Commit

Permalink
Bump time and (sadly due to time) also serde
Browse files Browse the repository at this point in the history
  • Loading branch information
MTRNord committed Oct 25, 2023
1 parent ff191bc commit bb65513
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 18 deletions.
30 changes: 20 additions & 10 deletions Cargo.lock

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

3 changes: 1 addition & 2 deletions crates/erooster/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,7 @@ opentelemetry = { version = "0.20.0", features = ["metrics", "rt-tokio"] }
opentelemetry-jaeger = { version = "0.19.0", features = [
"rt-tokio",
], optional = true }
# https://github.com/serde-rs/serde/issues/2538
serde = { version = "=1.0.171", features = ["derive"] }
serde = { version = "1.0.189", features = ["derive"] }
tokio = { version = "1.25.0", features = ["rt", "rt-multi-thread", "signal"] }
tracing = "0.1.37"
tracing-error = "0.2.0"
Expand Down
3 changes: 1 addition & 2 deletions crates/erooster_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ opentelemetry-jaeger = { version = "0.19.0", features = [
owo-colors = "3.5.0"
rand_core = { version = "0.6.4", features = ["std"] }
rustls = "0.21.5"
serde = { version = "=1.0.171", features = ["derive"] }
serde = { version = "1.0.189", features = ["derive"] }
serde_yaml = "0.9.17"
# https://github.com/serde-rs/serde/issues/2538
simdutf8 = { version = "0.1.4" }
sqlx = { version = "0.7.1", features = ["postgres", "runtime-tokio-rustls"] }
sys-info = "0.9.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/erooster_imap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ tokio-stream = { version = "0.1.12", features = ["net", "io-util"] }
tokio-util = { version = "0.7.7", features = ["full"] }
tracing = "0.1.37"
secrecy = "0.8.0"
time = { version = "0.3.24", features = ["parsing", "macros"] }
time = { version = "0.3.30", features = ["parsing", "macros"] }

[dev-dependencies]
convert_case = "0.6.0"
Expand Down
5 changes: 2 additions & 3 deletions crates/erooster_smtp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ futures = { version = "0.3.25", features = ["thread-pool"] }
nom = "7.1.3"
rustls = "0.21.5"
rustls-pemfile = "1.0.1"
# https://github.com/serde-rs/serde/issues/2538
serde = { version = "=1.0.171", features = ["derive"] }
serde = { version = "1.0.189", features = ["derive"] }
simdutf8 = { version = "0.1.4" }
mailparse = "0.14.0"
tokio = { version = "1.24.2", features = ["full"] }
Expand All @@ -38,7 +37,7 @@ trust-dns-resolver = "0.22.0"
webpki-roots = "0.25.0"
secrecy = "0.8.0"
mail-auth = { version = "0.3.0", features = ["rust-crypto"] }
time = { version = "0.3.20", features = ["formatting", "macros"] }
time = { version = "0.3.30", features = ["formatting", "macros"] }
reqwest = { version = "0.11.20", default-features = false, features = [
"json",
"rustls-tls",
Expand Down

0 comments on commit bb65513

Please sign in to comment.