[package]
edition = "2021"
rust-version = "1.83"
name = "kwtsms"
version = "0.1.10"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client for the kwtSMS API (kwtsms.com). Send SMS, check balance, validate numbers, and more."
homepage = "https://www.kwtsms.com"
documentation = "https://docs.rs/kwtsms"
readme = "README.md"
keywords = [
"sms",
"kwtsms",
"kuwait",
"messaging",
"api",
]
categories = [
"api-bindings",
"web-programming::http-client",
]
license = "MIT"
repository = "https://github.com/boxlinknet/kwtsms-rust"
[features]
default = []
integration = []
[lib]
name = "kwtsms"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/01_basic_usage.rs"
[[example]]
name = "bulk_sms"
path = "examples/03_bulk_sms.rs"
[[example]]
name = "error_handling"
path = "examples/04_error_handling.rs"
[[example]]
name = "otp_flow"
path = "examples/02_otp_flow.rs"
[[example]]
name = "otp_production"
path = "examples/05_otp_production.rs"
[[test]]
name = "errors_test"
path = "tests/errors_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "message_test"
path = "tests/message_test.rs"
[[test]]
name = "phone_test"
path = "tests/phone_test.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.ureq]
version = "2"
[dev-dependencies]