24 lines
762 B
TOML
24 lines
762 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"iced-app",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
authors = ["ReTeamspeak"]
|
|
repository = "https://github.com/re-teamspeak/re-teamspeak"
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
futures = "0.3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
tsclientlib = { git = "https://github.com/ReSpeak/tsclientlib.git", branch = "master", default-features = false, features = ["default-tls", "audio"] }
|
|
tsproto-packets = { git = "https://github.com/ReSpeak/tsclientlib.git", branch = "master" }
|