bump dependencies

This commit is contained in:
raf 2025-02-05 03:23:32 +03:00
commit 7dcf6e7399
No known key found for this signature in database
GPG key ID: EED98D11B85A2819
2 changed files with 15 additions and 13 deletions

8
Cargo.lock generated
View file

@ -744,9 +744,9 @@ dependencies = [
[[package]] [[package]]
name = "tokio" name = "tokio"
version = "1.42.0" version = "1.43.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
dependencies = [ dependencies = [
"backtrace", "backtrace",
"bytes", "bytes",
@ -762,9 +762,9 @@ dependencies = [
[[package]] [[package]]
name = "tokio-macros" name = "tokio-macros"
version = "2.4.0" version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View file

@ -4,22 +4,24 @@ version = "0.1.0"
edition = "2021" edition = "2021"
default-run = "cli" default-run = "cli"
# CLI implementation for terminal usage
[[bin]] [[bin]]
name = "cli" # CLI implementation for terminal usage name = "cli"
path = "src/cli.rs" path = "src/cli.rs"
# server implementation for remote usage
[[bin]] [[bin]]
name = "server" # remote usage name = "server"
path = "src/server.rs" path = "src/server.rs"
[dependencies] [dependencies]
clap = {version = "4.5.23", features = ["derive"]} clap = {version = "4.5", features = ["derive"]}
clap_derive = "4.5.18" clap_derive = "4.5"
ipc-channel = "0.19.0" ipc-channel = "0.19"
serde = { version = "1", features = ["derive"] } serde = { version = "1", features = ["derive"] }
serde_json = "1.0.133" serde_json = "1.0"
tokio = { version = "1.42.0", features = ["full"] } tokio = { version = "1.43", features = ["full"] }
native-tls = "0.2" native-tls = "0.2"
tokio-native-tls = "0.3" tokio-native-tls = "0.3"
tracing = "0.1.41" tracing = "0.1"
tracing-subscriber = "0.3.19" tracing-subscriber = "0.3"