sipx-cli 1.0.0-rc.2

sipx — a command line SIP softphone
[package]
name = "sipx-cli"
description = "sipx — a command line SIP softphone"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true

[features]
default = []
dtls = ["sipx-call/dtls"]
opus = ["sipx-call/opus", "sipx-media/opus"]
device-audio = ["dep:cpal"]

[[bin]]
name = "sipx"
path = "src/main.rs"

[dependencies]
sipx-sip.workspace = true
sipx-rtp.workspace = true
bytes.workspace = true
sipx-call.workspace = true
sipx-app-protocol.workspace = true
sipx-media.workspace = true
sipx-sdp.workspace = true
sipx-ua = { workspace = true, features = ["runtime"] }
sipx-transport.workspace = true
sipx-audio.workspace = true
anyhow.workspace = true
rand.workspace = true
serde_json.workspace = true
sha2.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
tokio = { workspace = true, features = ["full"] }
tokio-util.workspace = true
cpal = { workspace = true, optional = true }

[dev-dependencies]
sipx-audio.workspace = true
# Path-only so Cargo omits workspace-only fixture support from the normalized registry manifest.
sipx-testkit = { path = "../sipx-testkit" }
tokio = { workspace = true, features = ["full"] }

[lints]
workspace = true

# docs.rs builds default features; `scripts/build-docs.sh` builds `--all-features`. Without this the
# two front doors document different APIs, and the one a reader lands on from crates.io is the one
# missing the optional half — for `sipx-media` that is the only `Handshake` implementation (`A-8`).
[package.metadata.docs.rs]
all-features = true