Files
ironnotify-rust/Cargo.toml
David Friedel 3b7df29718 Implement IronNotify Rust SDK
- NotifyClient with Arc-based sharing
- Fluent EventBuilder API
- HTTP transport with reqwest
- Offline queue with JSON persistence
- Severity levels and notification actions
- Thread-safe with parking_lot RwLock
- Async/await with Tokio
- Global client with once_cell
- Full README with examples
2025-12-25 11:03:13 +00:00

27 lines
829 B
TOML

[package]
name = "ironnotify"
version = "0.1.0"
edition = "2021"
authors = ["IronServices <support@ironservices.com>"]
description = "Event notifications and alerts SDK for Rust applications"
license = "MIT"
repository = "https://github.com/IronServices/ironnotify-rust"
documentation = "https://docs.rs/ironnotify"
readme = "README.md"
keywords = ["notifications", "alerts", "events", "push", "messaging"]
categories = ["api-bindings", "web-programming"]
[dependencies]
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["rt-multi-thread", "sync", "fs"] }
chrono = { version = "0.4", features = ["serde"] }
thiserror = "1.0"
dirs = "5.0"
once_cell = "1.19"
parking_lot = "0.12"
[dev-dependencies]
tokio-test = "0.4"