[package]
edition = "2021"
name = "wavekat-sip"
version = "0.0.10"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SIP signaling and RTP transport for voice pipelines"
homepage = "https://crates.io/crates/wavekat-sip"
documentation = "https://docs.rs/wavekat-sip"
readme = "README.md"
keywords = [
"sip",
"rtp",
"voip",
"telephony",
"wavekat",
]
categories = [
"network-programming",
"multimedia::audio",
]
license = "Apache-2.0"
repository = "https://github.com/wavekat/wavekat-sip"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "wavekat_sip"
path = "src/lib.rs"
[[test]]
name = "caller_dial"
path = "tests/caller_dial.rs"
[[test]]
name = "dispatch_in_dialog"
path = "tests/dispatch_in_dialog.rs"
[[test]]
name = "pending_call_cancel"
path = "tests/pending_call_cancel.rs"
[dependencies.hostname]
version = "0.4"
[dependencies.rsip]
version = "0.4"
[dependencies.rsipstack]
version = "0.4"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
"net",
"sync",
"time",
]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"test-util",
]