Merge pull request #83 from EETagent/pre_demo_dependency_update

This commit is contained in:
Vojtěch Jungmann 2022-12-07 19:46:59 +01:00 committed by GitHub
commit c4037d2b05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 10 deletions

6
Cargo.lock generated
View file

@ -3145,9 +3145,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
version = "1.22.0"
version = "1.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3"
checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46"
dependencies = [
"autocfg",
"bytes",
@ -3159,7 +3159,7 @@ dependencies = [
"signal-hook-registry",
"socket2",
"tokio-macros",
"winapi",
"windows-sys 0.42.0",
]
[[package]]

View file

@ -11,7 +11,7 @@ rocket = { version = "^0.5.0-rc.2", features = [
] }
async-trait = { version = "^0.1" }
tokio = "^1.22"
tokio = "^1.23"
dotenv = "^0.15"

View file

@ -12,7 +12,7 @@ portfolio-entity = { path = "../entity" }
portfolio-core = { path = "../core" }
[dependencies.tokio]
version = "^1.22"
version = "^1.23"
features = [
"process",
"macros",

View file

@ -23,7 +23,7 @@ thiserror = "^1.0"
dotenv = "^0.15"
# async
tokio = "^1.22"
tokio = "^1.23"
futures = "^0.3"
async-compat = "^0.2"
@ -49,7 +49,7 @@ features = [
]
[dev-dependencies]
tokio = { version = "^1.22", features = ["macros"] }
tokio = { version = "^1.23", features = ["macros"] }
async-tempfile = "^0.2"
serial_test = "0.9.0"
once_cell = "1.9.0"
serial_test = "^0.9"
once_cell = "^1.16"

View file

@ -9,7 +9,7 @@ name = "migration"
path = "src/lib.rs"
[dependencies]
tokio = { version = "^1.22", features = ["macros"] }
tokio = { version = "^1.23", features = ["macros"] }
serde = { version = "^1.0", features = ["derive"] }
chrono = "^0.4"