2017-05-22 18:31:20 +02:00
|
|
|
[package]
|
|
|
|
name = "mpvipc"
|
2023-08-03 12:55:41 +02:00
|
|
|
version = "1.3.0"
|
2019-06-19 20:53:51 +02:00
|
|
|
authors = ["Jonas Frei <freijon@pm.me>"]
|
2017-05-22 18:31:20 +02:00
|
|
|
description = "A small library which provides bindings to control existing mpv instances through sockets."
|
2017-05-22 19:00:29 +02:00
|
|
|
license = "GPL-3.0"
|
2017-07-14 01:21:09 +02:00
|
|
|
homepage = "https://gitlab.com/mpv-ipc/mpvipc"
|
|
|
|
repository = "https://gitlab.com/mpv-ipc/mpvipc"
|
2017-05-31 19:37:17 +02:00
|
|
|
documentation = "https://docs.rs/mpvipc/"
|
2023-08-03 12:55:41 +02:00
|
|
|
edition = "2021"
|
2024-04-17 00:07:11 +02:00
|
|
|
rust-version = "1.75"
|
2017-05-22 18:31:20 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2023-08-03 12:55:41 +02:00
|
|
|
serde_json = "1.0.104"
|
|
|
|
log = "0.4.19"
|
2024-04-16 22:48:27 +02:00
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
2024-04-17 00:07:11 +02:00
|
|
|
tokio = { version = "1.37.0", features = ["sync", "macros", "rt", "net"] }
|
|
|
|
tokio-util = { version = "0.7.10", features = ["codec"] }
|
|
|
|
futures = "0.3.30"
|
2024-04-19 01:36:11 +02:00
|
|
|
tokio-stream = { version = "0.1.15", features = ["sync"] }
|
2024-05-03 17:19:59 +02:00
|
|
|
thiserror = "1.0.59"
|
2019-06-18 18:34:23 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-08-03 12:55:41 +02:00
|
|
|
env_logger = "0.10.0"
|
2024-04-18 21:04:42 +02:00
|
|
|
test-log = "0.2.15"
|
2024-04-30 17:39:34 +02:00
|
|
|
tokio = { version = "1.37.0", features = ["rt-multi-thread", "time", "process"] }
|
|
|
|
uuid = { version = "1.8.0", features = ["v4"] }
|
2024-04-17 00:07:11 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
doctest = false
|