mirror of
https://github.com/n08i40k/schedule-parser-rusted.git
synced 2025-12-06 09:47:50 +03:00
chore(deps): update dependencies
This commit is contained in:
635
Cargo.lock
generated
635
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
50
Cargo.toml
50
Cargo.toml
@@ -18,63 +18,63 @@ providers = { path = "providers" }
|
|||||||
actix-macros = { path = "actix-macros" }
|
actix-macros = { path = "actix-macros" }
|
||||||
|
|
||||||
# serve api
|
# serve api
|
||||||
actix-web = "4.11.0"
|
actix-web = "4"
|
||||||
|
|
||||||
# basic
|
# basic
|
||||||
chrono = { version = "0.4.42", features = ["serde"] }
|
chrono = { version = "0", features = ["serde"] }
|
||||||
derive_more = { version = "2.0.1", features = ["full"] }
|
derive_more = { version = "2", features = ["full"] }
|
||||||
dotenvy = "0.15.7"
|
dotenvy = "0"
|
||||||
|
|
||||||
# sql
|
# sql
|
||||||
database = { path = "database" }
|
database = { path = "database" }
|
||||||
|
|
||||||
# logging
|
# logging
|
||||||
env_logger = "0.11.8"
|
env_logger = "0"
|
||||||
|
|
||||||
# async
|
# async
|
||||||
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
||||||
tokio-util = "0.7.16"
|
tokio-util = "0"
|
||||||
futures-util = "0.3.31"
|
futures-util = "0"
|
||||||
|
|
||||||
# authorization
|
# authorization
|
||||||
bcrypt = "0.17.1"
|
bcrypt = "0"
|
||||||
jsonwebtoken = { version = "9.3.1", features = ["use_pem"] }
|
jsonwebtoken = { version = "9", features = ["use_pem"] }
|
||||||
|
|
||||||
# creating users
|
# creating users
|
||||||
objectid = "0.2.0"
|
objectid = "0"
|
||||||
|
|
||||||
# schedule downloader
|
# schedule downloader
|
||||||
reqwest = { version = "0.12.23", features = ["json"] }
|
reqwest = { version = "0", features = ["json"] }
|
||||||
mime = "0.3.17"
|
mime = "0"
|
||||||
|
|
||||||
# error handling
|
# error handling
|
||||||
sentry = "0.43.0"
|
sentry = "0"
|
||||||
sentry-actix = "0.43.0"
|
sentry-actix = "0"
|
||||||
|
|
||||||
# [de]serializing
|
# [de]serializing
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
serde_with = "3.14"
|
serde_with = "3"
|
||||||
|
|
||||||
sha1 = "0.11.0-rc.2"
|
sha1 = "0.11.0-rc.2"
|
||||||
|
|
||||||
# documentation
|
# documentation
|
||||||
utoipa = { version = "5.4.0", features = ["actix_extras", "chrono"] }
|
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.2"
|
utoipa-actix-web = "0"
|
||||||
|
|
||||||
uuid = { version = "1.18.1", features = ["v4"] }
|
uuid = { version = "1", features = ["v4"] }
|
||||||
hex-literal = "1"
|
hex-literal = "1"
|
||||||
log = "0.4.28"
|
log = "0"
|
||||||
|
|
||||||
# telegram webdata deciding and verify
|
# telegram webdata deciding and verify
|
||||||
base64 = "0.22.1"
|
base64 = "0"
|
||||||
percent-encoding = "2.3.2"
|
percent-encoding = "2"
|
||||||
ed25519-dalek = "3.0.0-pre.1"
|
ed25519-dalek = "3.0.0-pre.1"
|
||||||
|
|
||||||
# development tracing
|
# development tracing
|
||||||
console-subscriber = { version = "0.4.1", optional = true }
|
console-subscriber = { version = "0", optional = true }
|
||||||
tracing = { version = "0.1.41", optional = true }
|
tracing = { version = "0", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
providers = { path = "providers", features = ["test"] }
|
providers = { path = "providers", features = ["test"] }
|
||||||
|
|||||||
@@ -6,6 +6,6 @@ edition = "2024"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
migration = { path = "migration" }
|
migration = { path = "migration" }
|
||||||
entity = { path = "entity" }
|
entity = { path = "entity" }
|
||||||
sea-orm = { version = "2.0.0-rc.6", features = ["sqlx-postgres", "runtime-tokio"] }
|
sea-orm = { version = "2.0.0-rc.15", features = ["sqlx-postgres", "runtime-tokio"] }
|
||||||
|
|
||||||
paste = "1.0.15"
|
paste = "1"
|
||||||
@@ -12,7 +12,7 @@ path = "src/lib.rs"
|
|||||||
async-std = { version = "1", features = ["attributes", "tokio1"] }
|
async-std = { version = "1", features = ["attributes", "tokio1"] }
|
||||||
|
|
||||||
[dependencies.sea-orm-migration]
|
[dependencies.sea-orm-migration]
|
||||||
version = "2.0.0-rc.6"
|
version = "2.0.0-rc.15"
|
||||||
features = [
|
features = [
|
||||||
# Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI.
|
# Enable at least one `ASYNC_RUNTIME` and `DATABASE_DRIVER` feature if you want to run migration via CLI.
|
||||||
# View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.
|
# View the list of supported features at https://www.sea-ql.org/SeaORM/docs/install-and-config/database-and-async-runtime.
|
||||||
|
|||||||
@@ -9,23 +9,23 @@ test = []
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
base = { path = "../base" }
|
base = { path = "../base" }
|
||||||
|
|
||||||
tokio = { version = "1.47.1", features = ["sync", "macros", "time"] }
|
tokio = { version = "1", features = ["sync", "macros", "time"] }
|
||||||
tokio-util = "0.7.16"
|
tokio-util = "0"
|
||||||
|
|
||||||
chrono = { version = "0.4.41", features = ["serde"] }
|
chrono = { version = "0", features = ["serde"] }
|
||||||
|
|
||||||
derive_more = { version = "2.0.1", features = ["error", "display", "from"] }
|
derive_more = { version = "2", features = ["error", "display", "from"] }
|
||||||
|
|
||||||
utoipa = { version = "5.4.0", features = ["macros", "chrono"] }
|
utoipa = { version = "5", features = ["macros", "chrono"] }
|
||||||
|
|
||||||
calamine = "0.31"
|
calamine = "0"
|
||||||
async-trait = "0.1.89"
|
async-trait = "0"
|
||||||
|
|
||||||
reqwest = "0.12.23"
|
reqwest = "0"
|
||||||
ua_generator = "0.5.22"
|
ua_generator = "0"
|
||||||
regex = "1.11.2"
|
regex = "1"
|
||||||
strsim = "0.11.1"
|
strsim = "0"
|
||||||
log = "0.4.27"
|
log = "0"
|
||||||
sentry = "0.43.0"
|
sentry = "0"
|
||||||
fancy-regex = "0.16.2"
|
fancy-regex = "0"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user