mirror of
https://github.com/NotAShelf/mpvrc.git
synced 2026-04-15 15:33:47 +00:00
bump dependencies
This commit is contained in:
parent
5a643c1d50
commit
7dcf6e7399
2 changed files with 15 additions and 13 deletions
20
Cargo.toml
20
Cargo.toml
|
|
@ -4,22 +4,24 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
default-run = "cli"
|
||||
|
||||
# CLI implementation for terminal usage
|
||||
[[bin]]
|
||||
name = "cli" # CLI implementation for terminal usage
|
||||
name = "cli"
|
||||
path = "src/cli.rs"
|
||||
|
||||
# server implementation for remote usage
|
||||
[[bin]]
|
||||
name = "server" # remote usage
|
||||
name = "server"
|
||||
path = "src/server.rs"
|
||||
|
||||
[dependencies]
|
||||
clap = {version = "4.5.23", features = ["derive"]}
|
||||
clap_derive = "4.5.18"
|
||||
ipc-channel = "0.19.0"
|
||||
clap = {version = "4.5", features = ["derive"]}
|
||||
clap_derive = "4.5"
|
||||
ipc-channel = "0.19"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1.0.133"
|
||||
tokio = { version = "1.42.0", features = ["full"] }
|
||||
serde_json = "1.0"
|
||||
tokio = { version = "1.43", features = ["full"] }
|
||||
native-tls = "0.2"
|
||||
tokio-native-tls = "0.3"
|
||||
tracing = "0.1.41"
|
||||
tracing-subscriber = "0.3.19"
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = "0.3"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue