-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
41 lines (37 loc) · 965 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
35
36
37
38
39
40
41
[package]
name = "rust_cast"
description = "Library that allows you to communicate with Google Cast enabled devices (e.g. Chromecast)."
documentation = "https://docs.rs/crate/rust_cast/"
homepage = "https://github.com/azasypkin/rust-cast"
repository = "https://github.com/azasypkin/rust-cast"
readme = "README.md"
license = "MIT"
keywords = ["cast", "chromecast", "google"]
version = "0.20.0"
authors = ["Aleh Zasypkin <[email protected]>"]
categories = ["api-bindings", "hardware-support", "multimedia"]
edition = "2021"
exclude = [
".github/*",
"examples/*",
"protobuf/*",
]
[dependencies]
byteorder = "1.5"
log = "0.4"
protobuf = "=3.7.1"
rustls = "0.23"
rustls-native-certs = "0.8"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "1"
[dev-dependencies]
ansi_term = "0.12"
docopt = "1"
env_logger = "0.11"
mdns-sd = "0.11"
[build-dependencies]
protobuf-codegen = "=3.7.1"
[features]
thread_safe = []
cast = []