[package]
edition = "2024"
rust-version = "1.85"
name = "cmppprotocol"
version = "0.1.0"
build = false
include = [
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/CHANGELOG.md",
"/src/**",
"/tests/**",
"/examples/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CMPP 2.0 client protocol library"
documentation = "https://docs.rs/cmppprotocol"
readme = "README.md"
keywords = [
"cmpp",
"sms",
"protocol",
"tokio",
"codec",
]
categories = [
"network-programming",
"asynchronous",
]
license = "MIT"
repository = "https://github.com/leviathan-1776/cmppprotocol"
resolver = "2"
[lib]
name = "cmppprotocol"
path = "src/lib.rs"
[[example]]
name = "send_sms"
path = "examples/send_sms.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.bytes]
version = "1.11"
[dependencies.chrono]
version = "0.4"
[dependencies.encoding_rs]
version = "0.8"
[dependencies.log]
version = "0.4"
[dependencies.md-5]
version = "0.11"
[dependencies.socket2]
version = "0.6"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.52"
features = ["full"]
[dependencies.tokio-stream]
version = "0.1"
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]