Files
mpvipc-async/Cargo.toml
h7x4 a35f4e2ab3
All checks were successful
Build and test / check (push) Successful in 48s
Build and test / build (push) Successful in 57s
Build and test / docs (push) Successful in 1m50s
Build and test / test (push) Successful in 2m33s
flake.lock: bump, Cargo.lock: update inputs
2026-04-02 13:01:18 +09:00

33 lines
1015 B
TOML

[package]
name = "mpvipc-async"
version = "0.2.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 = "2024"
rust-version = "1.85.0"
[dependencies]
serde_json = "1.0.149"
log = "0.4.29"
serde = { version = "1.0.228", features = ["derive"] }
tokio = { version = "1.50.0", features = ["sync", "macros", "rt", "net"] }
tokio-util = { version = "0.7.18", features = ["codec"] }
futures = "0.3.32"
tokio-stream = { version = "0.1.18", features = ["sync"] }
thiserror = "2.0.18"
[dev-dependencies]
env_logger = "0.11.10"
test-log = "0.2.19"
tokio = { version = "1.50.0", features = ["rt-multi-thread", "time", "process"] }
uuid = { version = "1.23.0", features = ["v4"] }
[lib]
doctest = false