mirror of
https://github.com/lightsoutgames/bevy_tts.git
synced 2024-11-09 22:55:56 +00:00
This commit is contained in:
parent
4d39402860
commit
a9dafc3309
|
@ -10,14 +10,14 @@ steps:
|
|||
- 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
|
||||
- cargo fmt --check
|
||||
- cargo test
|
||||
- cargo test --no-default-features --features=speech_dispatcher_0_10
|
||||
- cargo clippy
|
||||
- name: release
|
||||
image: rust
|
||||
commands:
|
||||
- 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
|
||||
- cargo publish
|
||||
- cargo publish --no-default-features --features=speech_dispatcher_0_10
|
||||
when:
|
||||
ref:
|
||||
- refs/tags/v*
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
[package]
|
||||
name = "bevy_tts"
|
||||
version = "0.1.2"
|
||||
description = "Text-to-speech for the Bevy game engine"
|
||||
repository = "https://labs.lightsout.games/projects/bevy_tts"
|
||||
version = "0.1.1"
|
||||
authors = ["Nolan Darilek <nolan@thewordnerd.info>"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
edition = "2021"
|
||||
|
@ -10,15 +10,15 @@ edition = "2021"
|
|||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[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_2 = ["tts/speech_dispatcher_0_10_2"]
|
||||
speech_dispatcher_0_11 = ["tts/speech_dispatcher_0_11"]
|
||||
tolk = ["tts/tolk"]
|
||||
|
||||
[dependencies]
|
||||
bevy = { version = "0.8", default-features = false }
|
||||
crossbeam-channel = "0.5"
|
||||
tts = { version = "0.23.1", default-features = false }
|
||||
tts = { version = "0.24", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
bevy = { version = "0.8", default-features = true }
|
||||
|
|
Loading…
Reference in New Issue
Block a user