teamtalk 1.2.0

TeamTalk SDK for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "teamtalk"
version = "1.2.0"
authors = ["BlindMaster24"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TeamTalk SDK for Rust"
homepage = "https://github.com/BlindMaster24/TeamTalkRust"
readme = "README.md"
license = "MIT"
repository = "https://github.com/BlindMaster24/TeamTalkRust"
resolver = "2"

[package.metadata.docs.rs]
all-features = true

[features]
async = ["dep:futures"]
default = ["tls-native"]
dispatch = []
logging = ["dep:tracing"]
mock = ["dispatch"]
offline = []
plugins = ["dep:libloading"]
scripts = ["dep:mlua"]
tls-native = ["reqwest/native-tls"]
tls-rustls = ["reqwest/rustls-tls"]

[lib]
name = "teamtalk"
path = "src/lib.rs"

[[example]]
name = "async_event_stream"
path = "examples/async_event_stream.rs"

[[example]]
name = "audio_profile"
path = "examples/audio_profile.rs"

[[example]]
name = "audio_stream"
path = "examples/audio_stream.rs"

[[example]]
name = "auto_reconnect"
path = "examples/auto_reconnect.rs"

[[example]]
name = "cache_snapshot"
path = "examples/cache_snapshot.rs"

[[example]]
name = "client_manager"
path = "examples/client_manager.rs"

[[example]]
name = "connect_login"
path = "examples/connect_login.rs"

[[example]]
name = "connection_state"
path = "examples/connection_state.rs"

[[example]]
name = "dispatch_handlers"
path = "examples/dispatch_handlers.rs"

[[example]]
name = "event_bus"
path = "examples/event_bus.rs"

[[example]]
name = "hooks"
path = "examples/hooks.rs"

[[example]]
name = "lua_script_commands"
path = "examples/lua_script_commands.rs"

[[example]]
name = "lua_script_events"
path = "examples/lua_script_events.rs"

[[example]]
name = "message_builder"
path = "examples/message_builder.rs"

[[example]]
name = "multi_clients"
path = "examples/multi_clients.rs"

[[example]]
name = "plugin_loader"
path = "examples/plugin_loader.rs"

[[example]]
name = "poll_helpers"
path = "examples/poll_helpers.rs"

[[example]]
name = "reconnect_hooks"
path = "examples/reconnect_hooks.rs"

[[example]]
name = "record_channel_on_command"
path = "examples/record_channel_on_command.rs"

[[example]]
name = "record_session"
path = "examples/record_session.rs"

[[example]]
name = "recording_rotate"
path = "examples/recording_rotate.rs"

[[example]]
name = "recording_session"
path = "examples/recording_session.rs"

[[example]]
name = "sound_devices"
path = "examples/sound_devices.rs"

[[example]]
name = "synced_user_recording"
path = "examples/synced_user_recording.rs"

[[example]]
name = "text_echo"
path = "examples/text_echo.rs"

[[example]]
name = "user_recording"
path = "examples/user_recording.rs"

[[test]]
name = "async_tests"
path = "tests/async_tests.rs"

[[test]]
name = "banned_user_tests"
path = "tests/banned_user_tests.rs"

[[test]]
name = "client_logic_tests"
path = "tests/client_logic_tests.rs"

[[test]]
name = "connection_tests"
path = "tests/connection_tests.rs"

[[test]]
name = "dispatch_tests"
path = "tests/dispatch_tests.rs"

[[test]]
name = "error_message_tests"
path = "tests/error_message_tests.rs"

[[test]]
name = "events_tests"
path = "tests/events_tests.rs"

[[test]]
name = "file_transfer_tests"
path = "tests/file_transfer_tests.rs"

[[test]]
name = "flags_property_tests"
path = "tests/flags_property_tests.rs"

[[test]]
name = "media_tests"
path = "tests/media_tests.rs"

[[test]]
name = "mock_tests"
path = "tests/mock_tests.rs"

[[test]]
name = "offline_tests"
path = "tests/offline_tests.rs"

[[test]]
name = "recording_session_tests"
path = "tests/recording_session_tests.rs"

[[test]]
name = "recording_synced_tests"
path = "tests/recording_synced_tests.rs"

[[test]]
name = "recording_user_tests"
path = "tests/recording_user_tests.rs"

[[test]]
name = "registry_tests"
path = "tests/registry_tests.rs"

[[test]]
name = "scripts_tests"
path = "tests/scripts_tests.rs"

[[test]]
name = "server_properties_tests"
path = "tests/server_properties_tests.rs"

[[test]]
name = "statistics_tests"
path = "tests/statistics_tests.rs"

[[test]]
name = "strings_tests"
path = "tests/strings_tests.rs"

[[test]]
name = "text_message_tests"
path = "tests/text_message_tests.rs"

[[test]]
name = "types_defaults_tests"
path = "tests/types_defaults_tests.rs"

[[test]]
name = "types_misc_tests"
path = "tests/types_misc_tests.rs"

[[test]]
name = "types_more_tests"
path = "tests/types_more_tests.rs"

[[test]]
name = "types_roundtrip_tests"
path = "tests/types_roundtrip_tests.rs"

[[test]]
name = "types_snapshot_extra_tests"
path = "tests/types_snapshot_extra_tests.rs"

[[test]]
name = "types_snapshot_more_tests"
path = "tests/types_snapshot_more_tests.rs"

[[test]]
name = "types_snapshot_tests"
path = "tests/types_snapshot_tests.rs"

[[test]]
name = "types_tests"
path = "tests/types_tests.rs"

[[test]]
name = "user_tests"
path = "tests/user_tests.rs"

[[test]]
name = "utils_property_tests"
path = "tests/utils_property_tests.rs"

[[test]]
name = "utils_tests"
path = "tests/utils_tests.rs"

[dependencies.dirs]
version = "6.0"

[dependencies.evalexpr]
version = "13.1"

[dependencies.futures]
version = "0.3"
optional = true

[dependencies.libloading]
version = "0.8"
optional = true

[dependencies.mlua]
version = "0.11"
features = [
    "lua54",
    "vendored",
]
optional = true

[dependencies.once_cell]
version = "1.20"

[dependencies.rand]
version = "0.8"

[dependencies.regex]
version = "1.11"

[dependencies.reqwest]
version = "0.12"
features = ["blocking"]
default-features = false

[dependencies.sevenz-rust2]
version = "0.20"

[dependencies.teamtalk-sys]
version = "0.1.0"

[dependencies.thiserror]
version = "2.0"

[dependencies.tracing]
version = "0.1"
optional = true

[dev-dependencies.insta]
version = "1.46.1"

[dev-dependencies.pretty_assertions]
version = "1.4.1"

[dev-dependencies.proptest]
version = "1.9.0"

[dev-dependencies.rstest]
version = "0.26.1"