mirror of
https://github.com/n08i40k/schedule-parser-rusted.git
synced 2025-12-06 09:47:50 +03:00
chore(deps): upgrade dependencies
This commit is contained in:
63
Cargo.toml
63
Cargo.toml
@@ -11,40 +11,67 @@ publish = false
|
||||
debug = true
|
||||
|
||||
[dependencies]
|
||||
actix-web = "4.10.2"
|
||||
actix-macros = { path = "actix-macros" }
|
||||
schedule-parser = { path = "schedule-parser", features = ["test-utils"] }
|
||||
bcrypt = "0.17.0"
|
||||
actix-macros = { path = "actix-macros" }
|
||||
|
||||
# serve api
|
||||
actix-web = "4"
|
||||
|
||||
# basic
|
||||
chrono = { version = "0.4.40", features = ["serde"] }
|
||||
derive_more = { version = "2", features = ["full"] }
|
||||
dotenvy = "0.15.7"
|
||||
|
||||
# sql
|
||||
diesel = { version = "2.2.8", features = ["postgres"] }
|
||||
diesel-derive-enum = { git = "https://github.com/Havunen/diesel-derive-enum.git", features = ["postgres"] }
|
||||
dotenvy = "0.15.7"
|
||||
|
||||
# logging
|
||||
env_logger = "0.11.7"
|
||||
|
||||
# TODO: remove support for android app and fcm?
|
||||
firebase-messaging-rs = { git = "https://github.com/i10416/firebase-messaging-rs.git" }
|
||||
|
||||
# async
|
||||
tokio = { version = "1.44.1", features = ["macros", "rt-multi-thread"] }
|
||||
futures-util = "0.3.31"
|
||||
|
||||
# authorization
|
||||
bcrypt = "0.17.0"
|
||||
jsonwebtoken = { version = "9.3.1", features = ["use_pem"] }
|
||||
hex = "0.4.3"
|
||||
mime = "0.3.17"
|
||||
|
||||
# creating users
|
||||
objectid = "0.2.0"
|
||||
|
||||
# schedule downloader
|
||||
reqwest = { version = "0.12.15", features = ["json"] }
|
||||
sentry = "0.38"
|
||||
sentry-actix = "0.38"
|
||||
ua_generator = "0.5"
|
||||
mime = "0.3.17"
|
||||
|
||||
# error handling
|
||||
sentry = "0.39"
|
||||
sentry-actix = "0.39"
|
||||
|
||||
# [de]serializing
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
serde_json = "1.0.140"
|
||||
serde_with = "3.12.0"
|
||||
sha1 = "0.11.0-pre.5"
|
||||
tokio = { version = "1.44.1", features = ["macros", "rt-multi-thread"] }
|
||||
|
||||
sha1 = "0.11.0-rc.0"
|
||||
|
||||
# documentation
|
||||
utoipa = { version = "5", features = ["actix_extras", "chrono"] }
|
||||
utoipa-rapidoc = { version = "6.0.0", features = ["actix-web"] }
|
||||
utoipa-rapidoc = { version = "6", features = ["actix-web"] }
|
||||
utoipa-actix-web = "0.1"
|
||||
uuid = { version = "1.16.0", features = ["v4"] }
|
||||
ed25519-dalek = "2.1.1"
|
||||
hex-literal = "1.0.0"
|
||||
log = "0.4.26"
|
||||
base64 = "0.22.1"
|
||||
percent-encoding = "2.3.1"
|
||||
ua_generator = "0.5.16"
|
||||
|
||||
uuid = { version = "1", features = ["v4"] }
|
||||
hex-literal = "1"
|
||||
log = "0.4"
|
||||
|
||||
# telegram webdata deciding and verify
|
||||
base64 = "0.22"
|
||||
percent-encoding = "2.3"
|
||||
ed25519-dalek = "2"
|
||||
|
||||
[dev-dependencies]
|
||||
actix-test = { path = "actix-test" }
|
||||
|
||||
Reference in New Issue
Block a user