[package]
edition = "2024"
rust-version = "1.98"
name = "sccp-protocol"
version = "0.3.9"
authors = ["coral <jonas@jonasbengtson.se>"]
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cisco SCCP (Skinny Client Control Protocol) codec/server"
documentation = "https://docs.rs/sccp-protocol"
readme = false
keywords = [
"sccp",
"skinny",
"cisco",
"voip",
"telephony",
]
categories = [
"network-programming",
"encoding",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/coral/sccp-rs"
resolver = "2"
[lib]
name = "sccp_protocol"
path = "src/lib.rs"
[[test]]
name = "reference_fixtures"
path = "tests/reference_fixtures.rs"
[[test]]
name = "service_wire_contracts"
path = "tests/service_wire_contracts.rs"
[[test]]
name = "station_ui_fixtures"
path = "tests/station_ui_fixtures.rs"
[[test]]
name = "xml_architecture"
path = "tests/xml_architecture.rs"
[dependencies.binrw]
version = "0.15"
[dependencies.bitflags]
version = "2"
[dependencies.form_urlencoded]
version = "1"
[dependencies.percent-encoding]
version = "2"
[dependencies.quick-xml]
version = "0.42.0"
features = [
"serialize",
"encoding",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.socket2]
version = "0.6"
features = ["all"]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"macros",
"net",
"rt-multi-thread",
"signal",
"sync",
"time",
"io-util",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2"
[dev-dependencies.sha2]
version = "0.11.0"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"net",
"rt-multi-thread",
"signal",
"sync",
"time",
"io-util",
"test-util",
]
[dev-dependencies.toml]
version = "1.1.4"
[lints.clippy]
await_holding_lock = "deny"
clone_on_ref_ptr = "warn"
redundant_clone = "warn"
[lints.rust]
unsafe_op_in_unsafe_fn = "deny"
unused_must_use = "deny"