rhasspy-skill-server/Cargo.toml

20 lines
663 B
TOML
Raw Normal View History

2021-01-26 16:50:00 +01:00
[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"