forked from azasypkin/rust-cast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 935 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
[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.18.1"
authors = ["Aleh Zasypkin <[email protected]>"]
categories = ["api-bindings", "hardware-support", "multimedia"]
edition = "2021"
exclude = [
".github/*",
"examples/*",
"protobuf/*",
]
[dependencies]
byteorder = "1.4.3"
log = "0.4.17"
openssl = "0.10.45"
protobuf = "=3.2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.93"
[dev-dependencies]
ansi_term = "0.12.1"
docopt = "1.1.1"
env_logger = "0.10.0"
mdns-sd = "0.6.1"
[build-dependencies]
protobuf-codegen = "=3.2.0"
[features]
thread_safe = []