mirror of
https://github.com/danbulant/Portfolio
synced 2026-06-18 22:11:14 +00:00
Merge pull request #126 from EETagent/update_dependencies
(backend) prerelease deps update
This commit is contained in:
commit
99d328e3d9
6 changed files with 403 additions and 225 deletions
604
Cargo.lock
generated
604
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -11,7 +11,7 @@ rocket = { version = "^0.5.0-rc.2", features = [
|
|||
] }
|
||||
|
||||
async-trait = { version = "^0.1" }
|
||||
tokio = "^1.23"
|
||||
tokio = "^1.24"
|
||||
|
||||
dotenv = "^0.15"
|
||||
|
||||
|
|
@ -32,4 +32,4 @@ version = "^0.5"
|
|||
|
||||
|
||||
[dev-dependencies]
|
||||
once_cell = "^1.16"
|
||||
once_cell = "^1.17"
|
||||
|
|
@ -12,7 +12,7 @@ portfolio-entity = { path = "../entity" }
|
|||
portfolio-core = { path = "../core" }
|
||||
|
||||
[dependencies.tokio]
|
||||
version = "^1.23"
|
||||
version = "^1.24"
|
||||
features = [
|
||||
"process",
|
||||
"macros",
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@ serde = { version = "^1.0", features = ["derive"] }
|
|||
# csv
|
||||
csv = "^1.1"
|
||||
|
||||
async-trait = "0.1.60"
|
||||
async-trait = "^0.1"
|
||||
|
||||
# error
|
||||
thiserror = "^1.0"
|
||||
|
|
@ -24,12 +24,12 @@ thiserror = "^1.0"
|
|||
dotenv = "^0.15"
|
||||
|
||||
# async
|
||||
tokio = "^1.23"
|
||||
tokio = "^1.24"
|
||||
futures = "^0.3"
|
||||
async-compat = "^0.2"
|
||||
|
||||
# file identifier
|
||||
infer = "^0.11"
|
||||
infer = "^0.12"
|
||||
|
||||
async_zip = "0.0.9"
|
||||
|
||||
|
|
@ -39,7 +39,7 @@ aes-gcm-siv = { version = "^0.11", features = ["std"] }
|
|||
argon2 = { version = "^0.4", features = ["std"] }
|
||||
age = { version = "^0.9", features = ["async"] }
|
||||
secrecy = { version = "^0.8" }
|
||||
base64 = "^0.13"
|
||||
base64 = "^0.21"
|
||||
|
||||
# logging
|
||||
log = "^0.4"
|
||||
|
|
@ -54,7 +54,7 @@ features = [
|
|||
]
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "^1.23", features = ["macros"] }
|
||||
tokio = { version = "^1.24", features = ["macros"] }
|
||||
async-tempfile = "^0.2"
|
||||
serial_test = "^0.9"
|
||||
once_cell = "^1.16"
|
||||
serial_test = "^0.10"
|
||||
once_cell = "^1.17"
|
||||
|
|
@ -10,7 +10,7 @@ path = "src/lib.rs"
|
|||
|
||||
[dependencies]
|
||||
chrono = "^0.4"
|
||||
async-trait = "0.1.60"
|
||||
async-trait = "^0.1"
|
||||
|
||||
[dependencies.sea-orm]
|
||||
version = "^0.10"
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ name = "migration"
|
|||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "^1.23", features = ["macros"] }
|
||||
tokio = { version = "^1.24", features = ["macros"] }
|
||||
|
||||
serde = { version = "^1.0", features = ["derive"] }
|
||||
chrono = "^0.4"
|
||||
|
|
|
|||
Loading…
Reference in a new issue