19 lines
635 B
TOML
19 lines
635 B
TOML
[package]
|
|
name = "tsidentity-import-spike"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
description = "Chanora PoC: import/export official TeamSpeak identity files and connect using the imported identity."
|
|
|
|
[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"] }
|
|
tsclientlib = { git = "https://github.com/ReSpeak/tsclientlib.git", rev = "04aa2491", default-features = false, features = ["default-tls"] }
|