-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (32 loc) · 920 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "cast-sender"
version = "0.2.0"
edition = "2021"
authors = ["Felix Häcker <[email protected]>"]
license = "MIT"
repository = "https://github.com/haecker-felix/cast-sender"
keywords = ["chromecast", "cast", "castv2"]
description = "Fully asynchronous implementation of the Google Cast CASTV2 protocol, allowing communication with receivers such as Chromecast or Google TV devices."
documentation = "https://docs.rs/cast_sender"
categories = ["network-programming", "multimedia", "api-bindings"]
[dependencies]
async-channel = "2.3"
async-native-tls = "0.5"
async-net = "2.0"
bitflags = "2.6"
derive_builder = "0.20.1"
futures-util = "0.3"
log = "0.4"
prost = "0.13"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_with = "3.9"
smol = "2.0"
smol-timeout = "0.6"
strum = "0.26"
strum_macros = "0.26"
thiserror = "1.0"
[dev-dependencies]
smol-macros = "0.1"
macro_rules_attribute = "0.2"