34 lines
1.0 KiB
TOML
34 lines
1.0 KiB
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"
|
|
homepage = "https://git.pvv.ntnu.no/oysteikt/mpvipc-async"
|
|
repository = "https://git.pvv.ntnu.no/oysteikt/mpvipc-async"
|
|
documentation = "https://pvv.ntnu.no/~oysteikt/gitea/mpvipc-async/master/docs/mpvipc-async/"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
|
|
[dependencies]
|
|
serde_json = "1.0.104"
|
|
log = "0.4.19"
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
tokio = { version = "1.37.0", features = ["sync", "macros", "rt", "net"] }
|
|
tokio-util = { version = "0.7.10", features = ["codec"] }
|
|
futures = "0.3.30"
|
|
tokio-stream = { version = "0.1.15", features = ["sync"] }
|
|
thiserror = "1.0.59"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.10.0"
|
|
test-log = "0.2.15"
|
|
tokio = { version = "1.37.0", features = ["rt-multi-thread", "time", "process"] }
|
|
uuid = { version = "1.8.0", features = ["v4"] }
|
|
|
|
[lib]
|
|
doctest = false
|