You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
663 B
19 lines
663 B
[package] |
|
name = "rhasspy-skill-server" |
|
version = "0.1.0" |
|
authors = ["Paul van Tilburg <paul@luon.net>"] |
|
edition = "2018" |
|
description = """ |
|
A skill server for Rhasspy written in Rust that uses the Hermes MQTT protocol. |
|
It is mainly meant for personal use as it currently hardcodes a number of |
|
intents, but can also act as an example. |
|
""" |
|
license = "MIT" |
|
keywords = ["mqtt", "rhasspy", "hermes", "voice assistant"] |
|
|
|
[dependencies] |
|
# Use the GIt version until the crate is fully stabilized on Tokio 1.0 |
|
rumqttc = { git = "https://github.com/bytebeamio/rumqtt", version = "0.5.0" } |
|
serde = { version = "1.0", features = ["derive"] } |
|
serde_json = "1.0" |
|
tokio = "1.0"
|
|
|