You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
645 B
TOML
21 lines
645 B
TOML
[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]
|
|
dotenv = "0.15.0"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
rumqttc = version = "0.5"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.0", features = ["full"] }
|