sms-client 1.5.4

Rust client library for sms-server - send/receive SMS through your own GSM hardware with HTTP/WebSocket support and no API subscriptions.
Documentation
[dependencies.futures-util]
optional = true
version = "0.3.31"

[dependencies.http]
optional = true
version = "1.3.1"

[dependencies.log]
version = "0.4.28"

[dependencies.native-tls]
optional = true
version = "0.2"

[dependencies.reqwest]
default-features = false
features = ["json"]
optional = true
version = "0.12.23"

[dependencies.rustls]
features = ["aws-lc-rs"]
optional = true
version = "0.23"

[dependencies.rustls-pemfile]
optional = true
version = "2.0"

[dependencies.rustls-pki-types]
optional = true
version = "1.0"

[dependencies.serde]
features = ["derive"]
version = "1.0.219"

[dependencies.serde_json]
version = "1.0.143"

[dependencies.thiserror]
version = "2.0.16"

[dependencies.tokio]
features = ["full"]
version = "1.47.1"

[dependencies.tokio-tungstenite]
default-features = false
features = ["connect"]
optional = true
version = "0.27.0"

[dependencies.tungstenite]
optional = true
version = "0.27.0"

[dependencies.url]
version = "2.5.7"

[features]
default = ["http"]
http = ["dep:reqwest"]
http-tls-native = ["http", "reqwest/native-tls"]
http-tls-rustls = ["http", "reqwest/rustls-tls"]
websocket = ["dep:futures-util", "dep:tokio-tungstenite", "dep:tungstenite", "dep:http"]
websocket-tls-native = ["websocket", "tokio-tungstenite/native-tls", "dep:native-tls"]
websocket-tls-rustls = ["websocket", "tokio-tungstenite/rustls-tls-webpki-roots", "dep:rustls", "dep:rustls-pemfile", "dep:rustls-pki-types"]

[lib]
name = "sms_client"
path = "src/lib.rs"

[package]
authors = ["morgverd <morgverd@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["hardware-support", "api-bindings"]
description = "Rust client library for sms-server - send/receive SMS through your own GSM hardware with HTTP/WebSocket support and no API subscriptions."
edition = "2024"
homepage = "https://github.com/morgverd/sms-client"
keywords = ["sms", "gsm", "http-client", "websocket-client"]
license = "AGPL-3.0-only"
name = "sms-client"
readme = "README.md"
repository = "https://github.com/morgverd/sms-client"
version = "1.5.4"