21 lines
807 B
TOML
21 lines
807 B
TOML
[package]
|
|
name = "tsclientlib-query-spike"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
description = "Chanora PoC: query live TeamSpeak client profile and connection data over the full client protocol."
|
|
|
|
[workspace]
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
base64 = "0.22"
|
|
clap = { version = "4", features = ["derive"] }
|
|
futures = "0.3"
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread", "time"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
time = { version = "0.3", features = ["formatting"] }
|
|
tsclientlib = { git = "https://github.com/ReSpeak/tsclientlib.git", rev = "04aa2491", default-features = false, features = ["default-tls"] }
|
|
tsproto-packets = { git = "https://github.com/ReSpeak/tsclientlib.git", rev = "04aa2491", package = "tsproto-packets" }
|