Skip to content

Commit

Permalink
Dependency updates
Browse files Browse the repository at this point in the history
Signed-off-by: Elizabeth Myers <[email protected]>
  • Loading branch information
Elizafox committed Apr 1, 2024
1 parent 6a078f0 commit 273881a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ service = { path = "service" }
aes-gcm-siv = { version = "0.11.1", features = ["std"] }
askama = { version = "0.12.1", features = ["with-axum", "urlencode", "mime", "mime_guess"], default-features = false }
askama_axum = { version = "0.4.0", default-features = false, features = ["urlencode"] }
async-trait = "0.1.78"
axum = { version = "0.7.4", features = ["form", "http1", "http2", "macros", "tokio", "tower-log"] }
async-trait = "0.1.79"
axum = { version = "0.7.5", features = ["form", "http1", "http2", "macros", "tokio", "tower-log"] }
axum-client-ip = "0.5.1"
axum-login = "0.14.0"
axum-messages = "0.5.0"
axum-login = "0.15.0"
axum-messages = "0.6.0"
base64 = "0.22.0"
bincode = "1.3.3"
clap = { version = "4.5.3", features = ["cargo", "derive", "unicode"] }
clap = { version = "4.5.4", features = ["cargo", "derive", "unicode"] }
csrf = "0.4.1"
dotenvy = "0.15.7"
envy = "0.4.2"
Expand All @@ -75,22 +75,22 @@ password-auth = "1.0.0"
proctitle = "0.1.1"
rand="0.8.5"
rand_distr = "0.4.3"
regex = "1.10.3"
regex = "1.10.4"
rpassword = "7.3.1"
sea-orm = { version = "1.0.0-rc.2", features = ["macros", "runtime-tokio-native-tls", "with-time"] }
sea-orm = { version = "1.0.0-rc.3", features = ["macros", "runtime-tokio-native-tls", "with-time"] }
sea-query = { version = "0.31.0-rc.4", features = ["thread-safe", "with-time"] }
serde = { version = "1.0.197", features = ["derive"] }
subtle = { version = "2.5.0", features = ["core_hint_black_box", "const-generics"] }
systemd-duration = { version = "0.2.0", features = ["with-time"] }
thiserror = "1.0.58"
time = { version = "0.3.34", features = ["local-offset", "serde", "serde-human-readable", "serde-well-known"] }
tokio = { version = "1.36.0", features = ["macros", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tokio = { version = "1.37.0", features = ["macros", "parking_lot", "rt-multi-thread", "signal", "sync", "time"] }
tracing = { version = "0.1.40", features = ["async-await", "log"] }
tracing-subscriber = { version = "0.3.18", features = ["local-time", "parking_lot", "time"] }
tower = { version = "0.4.13", features = ["timeout", "tokio"] }
tower-http = { version = "0.5.2", features = ["fs", "normalize-path", "timeout", "tokio"] }
tower-sessions = { version = "0.11.1", features = ["axum-core"] }
tower-sessions-moka-store = "0.11.0"
tower-sessions-redis-store = "0.11.0"
tower-sessions = { version = "0.12.1", features = ["axum-core"] }
tower-sessions-moka-store = "0.12.0"
tower-sessions-redis-store = "0.12.0"
url = "2.5.0"
validator = { version = "0.17.0", features = ["derive"] }
2 changes: 1 addition & 1 deletion entity/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ name = "entity"
path = "src/mod.rs"

[dependencies]
sea-orm = { version = "1.0.0-rc.2", default-features = false, features = ["with-time"] }
sea-orm = { version = "1.0.0-rc.3", default-features = false, features = ["with-time"] }
4 changes: 2 additions & 2 deletions migration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ postgres = ["sea-orm-migration/sqlx-postgres"]
sqlite = ["sea-orm-migration/sqlx-sqlite"]

[dependencies]
sea-orm-migration = { version = "1.0.0-rc.2", features = ["runtime-tokio-native-tls", "with-time"] }
tokio = { version = "1.36.0", features = ["macros", "rt-multi-thread"] }
sea-orm-migration = { version = "1.0.0-rc.3", features = ["runtime-tokio-native-tls", "with-time"] }
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }
2 changes: 1 addition & 1 deletion service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ sqlite = ["sea-orm/sqlx-sqlite"]
entity = { path = "../entity" }
migration = {path = "../migration" }
ipnetwork = "0.20.0"
sea-orm = { version = "1.0.0-rc.2", features = ["debug-print", "runtime-tokio-native-tls"] }
sea-orm = { version = "1.0.0-rc.3", features = ["debug-print", "runtime-tokio-native-tls"] }
tracing = { version = "0.1.40", features = ["async-await", "log"] }

0 comments on commit 273881a

Please sign in to comment.