[package]
edition = "2021"
name = "sip-core"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SIP protocol library for parsing, serialization, and dialog management"
homepage = "https://github.com/xmppjingle/sipr"
readme = false
keywords = [
"sip",
"voip",
"protocol",
"rfc3261",
"telephony",
]
categories = [
"network-programming",
"parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/xmppjingle/sipr"
[lib]
name = "sip_core"
path = "src/lib.rs"
[dependencies.bytes]
version = "1"
[dependencies.rand]
version = "0.8"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]