chorus-rs
Official Rust SDK for Chorus — open-source CPaaS with SMS, Email, and OTP.
Re-exports chorus-core (types, traits, routing) and chorus-providers (Telnyx, Twilio, Plivo, Resend, SES, Mailgun, SMTP) so you only need one dependency.
Quick Start
use *;
use TelnyxSmsSender;
use Arc;
let telnyx = new;
let chorus = builder
.add_sms_provider
.default_from_sms
.build;
let msg = SmsMessage ;
chorus.send_sms.await?;