mirror of
https://github.com/danbulant/Portfolio
synced 2026-06-24 17:11:49 +00:00
Merge pull request #83 from EETagent/pre_demo_dependency_update
This commit is contained in:
commit
c4037d2b05
5 changed files with 10 additions and 10 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
|
@ -3145,9 +3145,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio"
|
name = "tokio"
|
||||||
version = "1.22.0"
|
version = "1.23.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3"
|
checksum = "eab6d665857cc6ca78d6e80303a02cea7a7851e85dfbd77cbdc09bd129f1ef46"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"autocfg",
|
"autocfg",
|
||||||
"bytes",
|
"bytes",
|
||||||
|
|
@ -3159,7 +3159,7 @@ dependencies = [
|
||||||
"signal-hook-registry",
|
"signal-hook-registry",
|
||||||
"socket2",
|
"socket2",
|
||||||
"tokio-macros",
|
"tokio-macros",
|
||||||
"winapi",
|
"windows-sys 0.42.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ rocket = { version = "^0.5.0-rc.2", features = [
|
||||||
] }
|
] }
|
||||||
|
|
||||||
async-trait = { version = "^0.1" }
|
async-trait = { version = "^0.1" }
|
||||||
tokio = "^1.22"
|
tokio = "^1.23"
|
||||||
|
|
||||||
dotenv = "^0.15"
|
dotenv = "^0.15"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ portfolio-entity = { path = "../entity" }
|
||||||
portfolio-core = { path = "../core" }
|
portfolio-core = { path = "../core" }
|
||||||
|
|
||||||
[dependencies.tokio]
|
[dependencies.tokio]
|
||||||
version = "^1.22"
|
version = "^1.23"
|
||||||
features = [
|
features = [
|
||||||
"process",
|
"process",
|
||||||
"macros",
|
"macros",
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ thiserror = "^1.0"
|
||||||
dotenv = "^0.15"
|
dotenv = "^0.15"
|
||||||
|
|
||||||
# async
|
# async
|
||||||
tokio = "^1.22"
|
tokio = "^1.23"
|
||||||
futures = "^0.3"
|
futures = "^0.3"
|
||||||
async-compat = "^0.2"
|
async-compat = "^0.2"
|
||||||
|
|
||||||
|
|
@ -49,7 +49,7 @@ features = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "^1.22", features = ["macros"] }
|
tokio = { version = "^1.23", features = ["macros"] }
|
||||||
async-tempfile = "^0.2"
|
async-tempfile = "^0.2"
|
||||||
serial_test = "0.9.0"
|
serial_test = "^0.9"
|
||||||
once_cell = "1.9.0"
|
once_cell = "^1.16"
|
||||||
|
|
@ -9,7 +9,7 @@ name = "migration"
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tokio = { version = "^1.22", features = ["macros"] }
|
tokio = { version = "^1.23", 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