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.

35 lines
1.1 KiB

[package]
name = "ssip-client"
version = "0.8.1"
authors = ["Laurent Pelecq <lpelecq+rust@circoise.eu>"]
edition = "2018"
description = "Client API for Speech Dispatcher"
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/lp-accessibility/ssip-client"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dirs = "4"
log = { version = "0.4", features = ["max_level_debug", "release_max_level_info"] }
mio = { version = "0.8", optional = true }
thiserror = "1"
strum = "0.24"
strum_macros = "0.24"
tokio = { version = "^1.21.2", features = ["io-util", "rt", "macros", "net"] }
async-std = { version = "1.12.0", default_features = true }
[features]
async-mio = ["mio/net", "mio/os-poll"]
tokio = ["tokio/io-util", "tokio/rt", "tokio/macros"]
async-std = ["async-std/default"]
[dev-dependencies]
mio = { version = "0.8", features = ["os-poll", "os-ext"] }
tokio = { version = "^1.21.2", features = ["io-util", "rt"] }
async-std = { version = "1.12.0", default_features = true }
lazy_static = "1"
popol = "1"
tempfile = "3"