diff options
| author | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2022-01-12 18:40:12 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-01-12 18:40:12 +0000 |
| commit | ee623f429e2d75b054e42f4eab4ce31a6e337f83 (patch) | |
| tree | 65cc3673f0a7f30646f51f27339e6eea4507f167 /crates | |
| parent | feat(server): indicate which server type accepted client (diff) | |
| parent | chore(deps): update commitlint monorepo (diff) | |
| download | whirl-ee623f429e2d75b054e42f4eab4ce31a6e337f83.tar.xz whirl-ee623f429e2d75b054e42f4eab4ce31a6e337f83.zip | |
Merge pull request #128 from Whirlsplash/renovate/major-commitlint-monorepo
chore(deps): update commitlint monorepo (major)
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/whirl/Cargo.toml | 10 | ||||
| -rw-r--r-- | crates/whirl_api/Cargo.toml | 6 | ||||
| -rw-r--r-- | crates/whirl_prompt/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/whirl_server/Cargo.toml | 6 |
4 files changed, 13 insertions, 13 deletions
diff --git a/crates/whirl/Cargo.toml b/crates/whirl/Cargo.toml index fb0ee95..8c97e68 100644 --- a/crates/whirl/Cargo.toml +++ b/crates/whirl/Cargo.toml @@ -18,7 +18,7 @@ dotenv = "0.15.0" # Logging log = "0.4.14" -flexi_logger = "0.19.4" +flexi_logger = "0.19.6" human-panic = "1.0.3" # simple-error = "0.2.3" @@ -36,15 +36,15 @@ serde = "1.0.130" serde_derive = "1.0.130" # CLI -structopt = "0.3.23" +structopt = "0.3.25" # Config whirl_config = { path = "../whirl_config" } # TCP -tokio = { version = "1.12.0", features = ["full"] } -tokio-util = { version = "0.6.8", features = ["codec"] } -tokio-stream = "0.1.7" +tokio = { version = "1.13.0", features = ["full"] } +tokio-util = { version = "0.6.9", features = ["codec"] } +tokio-stream = "0.1.8" # Web-server actix-web = { version = "3.3.2", features = ["rustls"] } diff --git a/crates/whirl_api/Cargo.toml b/crates/whirl_api/Cargo.toml index 1590431..5f6d128 100644 --- a/crates/whirl_api/Cargo.toml +++ b/crates/whirl_api/Cargo.toml @@ -20,9 +20,9 @@ axum = "0.1.3" hyper = "0.14.13" # Utility -sysinfo = "0.20.4" +sysinfo = "0.20.5" whirl_common = { path = "../whirl_common" } -tokio = { version = "1.12.0", features = ["full"] } +tokio = { version = "1.13.0", features = ["full"] } num-traits = "0.2.14" qstring = "0.7.2" @@ -37,4 +37,4 @@ log = "0.4.14" whirl_config = { path = "../whirl_config" } # Web -curl = "0.4.39" +curl = "0.4.40" diff --git a/crates/whirl_prompt/Cargo.toml b/crates/whirl_prompt/Cargo.toml index 278395b..963aa73 100644 --- a/crates/whirl_prompt/Cargo.toml +++ b/crates/whirl_prompt/Cargo.toml @@ -14,11 +14,11 @@ publish = false [dependencies] # Utility -sysinfo = "0.20.4" +sysinfo = "0.20.5" colour = "0.6.0" # Config whirl_config = { path = "../whirl_config" } # Web -curl = "0.4.39" +curl = "0.4.40" diff --git a/crates/whirl_server/Cargo.toml b/crates/whirl_server/Cargo.toml index 712983f..dfc6387 100644 --- a/crates/whirl_server/Cargo.toml +++ b/crates/whirl_server/Cargo.toml @@ -30,9 +30,9 @@ serde = "1.0.130" serde_derive = "1.0.130" # TCP -tokio = { version = "1.12.0", features = ["full"] } -tokio-util = { version = "0.6.8", features = ["codec"] } -tokio-stream = "0.1.7" +tokio = { version = "1.13.0", features = ["full"] } +tokio-util = { version = "0.6.9", features = ["codec"] } +tokio-stream = "0.1.8" # Config whirl_config = { path = "../whirl_config" } |