[package]
edition = "2021"
rust-version = "1.63.0"
name = "smpp-codec"
version = "0.2.1"
build = false
exclude = [
".github",
".gitignore",
"sonar-project.properties",
"PROGRESS.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A comprehensive SMPP v5 protocol codec for Rust."
readme = "README.md"
keywords = [
"smpp",
"sms",
"codec",
"protocol",
"telecom",
]
categories = [
"encoding",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/J93d/smpp-codec"
[lib]
name = "smpp_codec"
path = "src/lib.rs"
[[example]]
name = "alert_notification"
path = "examples/alert_notification.rs"
[[example]]
name = "bind_transceiver"
path = "examples/bind_transceiver.rs"
[[example]]
name = "broadcast_sm"
path = "examples/broadcast_sm.rs"
[[example]]
name = "cancel_broadcast_sm"
path = "examples/cancel_broadcast_sm.rs"
[[example]]
name = "cancel_sm"
path = "examples/cancel_sm.rs"
[[example]]
name = "data_sm"
path = "examples/data_sm.rs"
[[example]]
name = "deliver_sm"
path = "examples/deliver_sm.rs"
[[example]]
name = "delivery_report"
path = "examples/delivery_report.rs"
[[example]]
name = "enquire_link"
path = "examples/enquire_link.rs"
[[example]]
name = "generic_nack"
path = "examples/generic_nack.rs"
[[example]]
name = "outbind"
path = "examples/outbind.rs"
[[example]]
name = "query_broadcast_sm"
path = "examples/query_broadcast_sm.rs"
[[example]]
name = "query_sm"
path = "examples/query_sm.rs"
[[example]]
name = "replace_sm"
path = "examples/replace_sm.rs"
[[example]]
name = "submit_multi"
path = "examples/submit_multi.rs"
[[example]]
name = "submit_sm"
path = "examples/submit_sm.rs"
[[example]]
name = "tool_client"
path = "examples/tool_client.rs"
[[example]]
name = "tool_server"
path = "examples/tool_server.rs"
[[example]]
name = "unbind"
path = "examples/unbind.rs"
[[test]]
name = "ancillary_tests"
path = "tests/ancillary_tests.rs"
[[test]]
name = "benchmarks"
path = "tests/benchmarks.rs"
[[test]]
name = "bind_tests"
path = "tests/bind_tests.rs"
[[test]]
name = "broadcast_tests"
path = "tests/broadcast_tests.rs"
[[test]]
name = "common_tests"
path = "tests/common_tests.rs"
[[test]]
name = "data_sm_tests"
path = "tests/data_sm_tests.rs"
[[test]]
name = "delivery_tests"
path = "tests/delivery_tests.rs"
[[test]]
name = "encoding_tests"
path = "tests/encoding_tests.rs"
[[test]]
name = "hex_debug"
path = "tests/hex_debug.rs"
[[test]]
name = "pdu_error_tests"
path = "tests/pdu_error_tests.rs"
[[test]]
name = "roundtrip_tests"
path = "tests/roundtrip_tests.rs"
[[test]]
name = "session_tests"
path = "tests/session_tests.rs"
[[test]]
name = "submission_tests"
path = "tests/submission_tests.rs"
[[test]]
name = "submit_multi_tests"
path = "tests/submit_multi_tests.rs"
[[test]]
name = "tlv_tests"
path = "tests/tlv_tests.rs"
[dependencies.rand]
version = "0.9.2"
[dev-dependencies.doc-comment]
version = "0.3"