mirror of
https://github.com/danbulant/Portfolio
synced 2026-07-05 19:11:06 +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" }
|
async-trait = { version = "^0.1" }
|
||||||
tokio = "^1.23"
|
tokio = "^1.24"
|
||||||
|
|
||||||
dotenv = "^0.15"
|
dotenv = "^0.15"
|
||||||
|
|
||||||
|
|
@ -32,4 +32,4 @@ version = "^0.5"
|
||||||
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
once_cell = "^1.16"
|
once_cell = "^1.17"
|
||||||
|
|
@ -12,7 +12,7 @@ portfolio-entity = { path = "../entity" }
|
||||||
portfolio-core = { path = "../core" }
|
portfolio-core = { path = "../core" }
|
||||||
|
|
||||||
[dependencies.tokio]
|
[dependencies.tokio]
|
||||||
version = "^1.23"
|
version = "^1.24"
|
||||||
features = [
|
features = [
|
||||||
"process",
|
"process",
|
||||||
"macros",
|
"macros",
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ serde = { version = "^1.0", features = ["derive"] }
|
||||||
# csv
|
# csv
|
||||||
csv = "^1.1"
|
csv = "^1.1"
|
||||||
|
|
||||||
async-trait = "0.1.60"
|
async-trait = "^0.1"
|
||||||
|
|
||||||
# error
|
# error
|
||||||
thiserror = "^1.0"
|
thiserror = "^1.0"
|
||||||
|
|
@ -24,12 +24,12 @@ thiserror = "^1.0"
|
||||||
dotenv = "^0.15"
|
dotenv = "^0.15"
|
||||||
|
|
||||||
# async
|
# async
|
||||||
tokio = "^1.23"
|
tokio = "^1.24"
|
||||||
futures = "^0.3"
|
futures = "^0.3"
|
||||||
async-compat = "^0.2"
|
async-compat = "^0.2"
|
||||||
|
|
||||||
# file identifier
|
# file identifier
|
||||||
infer = "^0.11"
|
infer = "^0.12"
|
||||||
|
|
||||||
async_zip = "0.0.9"
|
async_zip = "0.0.9"
|
||||||
|
|
||||||
|
|
@ -39,7 +39,7 @@ aes-gcm-siv = { version = "^0.11", features = ["std"] }
|
||||||
argon2 = { version = "^0.4", features = ["std"] }
|
argon2 = { version = "^0.4", features = ["std"] }
|
||||||
age = { version = "^0.9", features = ["async"] }
|
age = { version = "^0.9", features = ["async"] }
|
||||||
secrecy = { version = "^0.8" }
|
secrecy = { version = "^0.8" }
|
||||||
base64 = "^0.13"
|
base64 = "^0.21"
|
||||||
|
|
||||||
# logging
|
# logging
|
||||||
log = "^0.4"
|
log = "^0.4"
|
||||||
|
|
@ -54,7 +54,7 @@ features = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "^1.23", features = ["macros"] }
|
tokio = { version = "^1.24", features = ["macros"] }
|
||||||
async-tempfile = "^0.2"
|
async-tempfile = "^0.2"
|
||||||
serial_test = "^0.9"
|
serial_test = "^0.10"
|
||||||
once_cell = "^1.16"
|
once_cell = "^1.17"
|
||||||
|
|
@ -10,7 +10,7 @@ path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = "^0.4"
|
chrono = "^0.4"
|
||||||
async-trait = "0.1.60"
|
async-trait = "^0.1"
|
||||||
|
|
||||||
[dependencies.sea-orm]
|
[dependencies.sea-orm]
|
||||||
version = "^0.10"
|
version = "^0.10"
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ name = "migration"
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "^1.23", features = ["macros"] }
|
tokio = { version = "^1.24", features = ["macros"] }
|
||||||
|
|
||||||
serde = { version = "^1.0", features = ["derive"] }
|
serde = { version = "^1.0", features = ["derive"] }
|
||||||
chrono = "^0.4"
|
chrono = "^0.4"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue