TeamSpeak3 Plugin API 
The documentation can be found here:
TeamSpeak 3.6 updates the plugin api version to 26. Version 0.3 is compatible with this version.
At the moment, not all methods that are exposed by the TeamSpeak API are available for plugins. If a method that you need is missing, please file an issue or open a pull request.
Usage
Add the following to your Cargo.toml
:
[]
= "<pluginname>"
= "<version>"
= ["<your name>"]
= "<description>"
[]
= "<pluginname>"
= ["cdylib"]
[]
= "0.3"
Example
A fully working example, which creates a plugin that does nothing:
extern crate ts3plugin;
use *;
;
create_plugin!;
Projects using this library
License
Licensed under either of
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.