diff options
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/whirl/Cargo.toml | 18 | ||||
| -rw-r--r-- | crates/whirl_api/Cargo.toml | 10 | ||||
| -rw-r--r-- | crates/whirl_config/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/whirl_prompt/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/whirl_server/Cargo.toml | 12 |
5 files changed, 24 insertions, 24 deletions
diff --git a/crates/whirl/Cargo.toml b/crates/whirl/Cargo.toml index eb61a8e..347d6ba 100644 --- a/crates/whirl/Cargo.toml +++ b/crates/whirl/Cargo.toml @@ -18,12 +18,12 @@ dotenv = "0.15.0" # Logging log = "0.4.14" -flexi_logger = "0.19.4" +flexi_logger = "0.22.2" human-panic = "1.0.3" # simple-error = "0.2.3" # Utility -async-trait = "0.1.51" +async-trait = "0.1.52" whirl_common = { path = "../whirl_common" } # Byte Manipulation @@ -31,19 +31,19 @@ bytes = "1.1.0" byteorder = "1.4.3" # Serialization -serde = "1.0.130" -serde_derive = "1.0.130" +serde = "1.0.133" +serde_derive = "1.0.133" # 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 whirl_api = { path = "../whirl_api" } @@ -62,4 +62,4 @@ mimalloc = { version = "0.1.26", default-features = false } jemallocator = "0.3.2" # Signal -signal-hook = "0.3.10" +signal-hook = "0.3.13" diff --git a/crates/whirl_api/Cargo.toml b/crates/whirl_api/Cargo.toml index 467181a..0f955d0 100644 --- a/crates/whirl_api/Cargo.toml +++ b/crates/whirl_api/Cargo.toml @@ -18,14 +18,14 @@ axum = "0.4.4" 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" # Serialization -serde = "1.0.130" -serde_derive = "1.0.130" +serde = "1.0.133" +serde_derive = "1.0.133" # Logging log = "0.4.14" @@ -34,4 +34,4 @@ log = "0.4.14" whirl_config = { path = "../whirl_config" } # Web -curl = "0.4.39" +curl = "0.4.42" diff --git a/crates/whirl_config/Cargo.toml b/crates/whirl_config/Cargo.toml index 476166e..368d956 100644 --- a/crates/whirl_config/Cargo.toml +++ b/crates/whirl_config/Cargo.toml @@ -17,8 +17,8 @@ publish = false config = "0.11.0" # Serialization -serde = "1.0.130" -serde_derive = "1.0.130" +serde = "1.0.133" +serde_derive = "1.0.133" # Logging log = "0.4.14" diff --git a/crates/whirl_prompt/Cargo.toml b/crates/whirl_prompt/Cargo.toml index 22aaa29..57a7017 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.42" diff --git a/crates/whirl_server/Cargo.toml b/crates/whirl_server/Cargo.toml index 0a8c2cf..1ea2798 100644 --- a/crates/whirl_server/Cargo.toml +++ b/crates/whirl_server/Cargo.toml @@ -17,7 +17,7 @@ publish = false log = "0.4.14" # Utility -async-trait = "0.1.51" +async-trait = "0.1.52" num-traits = "0.2.14" num-derive = "0.3.3" @@ -26,13 +26,13 @@ bytes = "1.1.0" byteorder = "1.4.3" # Serialization -serde = "1.0.130" -serde_derive = "1.0.130" +serde = "1.0.133" +serde_derive = "1.0.133" # 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" } |