diff --git a/Cargo.lock b/Cargo.lock index 03dcfad..7d061c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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]] diff --git a/api/Cargo.toml b/api/Cargo.toml index b6513d5..67a8da3 100644 --- a/api/Cargo.toml +++ b/api/Cargo.toml @@ -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" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6ed7969..5413863 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -12,7 +12,7 @@ portfolio-entity = { path = "../entity" } portfolio-core = { path = "../core" } [dependencies.tokio] -version = "^1.22" +version = "^1.23" features = [ "process", "macros", diff --git a/core/Cargo.toml b/core/Cargo.toml index 7ddcf93..567e9ca 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -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" \ No newline at end of file +serial_test = "^0.9" +once_cell = "^1.16" \ No newline at end of file diff --git a/migration/Cargo.toml b/migration/Cargo.toml index 0f8a990..9c235f9 100644 --- a/migration/Cargo.toml +++ b/migration/Cargo.toml @@ -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"