Files
mpvipc-async/Cargo.toml
h7x4 b868b75a3e
Some checks failed
Build and test / build (push) Successful in 52s
Build and test / check (push) Successful in 54s
Build and test / docs (push) Successful in 1m28s
Build and test / test (push) Failing after 3m30s
{flake.lock,Cargo.toml}: bump
2025-12-05 02:07:45 +09:00

33 lines
1012 B
TOML

[package]
name = "mpvipc-async"
version = "0.1.0"
authors = [
"Jonas Frei <freijon@pm.me>",
"Øystein Tveit <oysteikt@pvv.ntnu.no>"
]
description = "A small library which provides bindings to control existing mpv instances through sockets."
license = "GPL-3.0"
repository = "https://git.pvv.ntnu.no/Grzegorz/mpvipc-async"
documentation = "https://pages.pvv.ntnu.no/Grzegorz/mpvipc-async/main/docs/mpvipc_async/"
edition = "2021"
rust-version = "1.75"
[dependencies]
serde_json = "1.0.145"
log = "0.4.29"
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.48.0", features = ["sync", "macros", "rt", "net"] }
tokio-util = { version = "0.7.17", features = ["codec"] }
futures = "0.3.31"
tokio-stream = { version = "0.1.17", features = ["sync"] }
thiserror = "2.0.17"
[dev-dependencies]
env_logger = "0.11.8"
test-log = "0.2.19"
tokio = { version = "1.48.0", features = ["rt-multi-thread", "time", "process"] }
uuid = { version = "1.19.0", features = ["v4"] }
[lib]
doctest = false