chore: Update tts dependency.
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Nolan Darilek 2022-09-07 13:07:37 -05:00
parent 4d39402860
commit a9dafc3309
2 changed files with 6 additions and 6 deletions

View File

@ -10,14 +10,14 @@ steps:
- apt-get update -qq - apt-get update -qq
- apt-get install -qqy llvm-dev libclang-dev clang libspeechd-dev pkg-config libx11-dev libasound2-dev libudev-dev libxcb-xfixes0-dev libwayland-dev libxkbcommon-dev libvulkan-dev libpulse-dev - apt-get install -qqy llvm-dev libclang-dev clang libspeechd-dev pkg-config libx11-dev libasound2-dev libudev-dev libxcb-xfixes0-dev libwayland-dev libxkbcommon-dev libvulkan-dev libpulse-dev
- cargo fmt --check - cargo fmt --check
- cargo test - cargo test --no-default-features --features=speech_dispatcher_0_10
- cargo clippy - cargo clippy
- name: release - name: release
image: rust image: rust
commands: commands:
- apt-get update -qq - apt-get update -qq
- apt-get install -qqy llvm-dev libclang-dev clang libspeechd-dev pkg-config libx11-dev libasound2-dev libudev-dev libxcb-xfixes0-dev libwayland-dev libxkbcommon-dev libvulkan-dev libpulse-dev - apt-get install -qqy llvm-dev libclang-dev clang libspeechd-dev pkg-config libx11-dev libasound2-dev libudev-dev libxcb-xfixes0-dev libwayland-dev libxkbcommon-dev libvulkan-dev libpulse-dev
- cargo publish - cargo publish --no-default-features --features=speech_dispatcher_0_10
when: when:
ref: ref:
- refs/tags/v* - refs/tags/v*

View File

@ -1,8 +1,8 @@
[package] [package]
name = "bevy_tts" name = "bevy_tts"
version = "0.1.2"
description = "Text-to-speech for the Bevy game engine" description = "Text-to-speech for the Bevy game engine"
repository = "https://labs.lightsout.games/projects/bevy_tts" repository = "https://labs.lightsout.games/projects/bevy_tts"
version = "0.1.1"
authors = ["Nolan Darilek <nolan@thewordnerd.info>"] authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
edition = "2021" edition = "2021"
@ -10,15 +10,15 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features] [features]
default = ["speech_dispatcher_0_10_2", "tolk"] default = ["speech_dispatcher_0_11", "tolk"]
speech_dispatcher_0_10 = ["tts/speech_dispatcher_0_10"] speech_dispatcher_0_10 = ["tts/speech_dispatcher_0_10"]
speech_dispatcher_0_10_2 = ["tts/speech_dispatcher_0_10_2"] speech_dispatcher_0_11 = ["tts/speech_dispatcher_0_11"]
tolk = ["tts/tolk"] tolk = ["tts/tolk"]
[dependencies] [dependencies]
bevy = { version = "0.8", default-features = false } bevy = { version = "0.8", default-features = false }
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
tts = { version = "0.23.1", default-features = false } tts = { version = "0.24", default-features = false }
[dev-dependencies] [dev-dependencies]
bevy = { version = "0.8", default-features = true } bevy = { version = "0.8", default-features = true }