ironlicensing-rust/Cargo.toml
David Friedel 34842f5bd6 Implement IronLicensing Rust SDK
- Add LicenseClient with validation, activation, deactivation
- Add feature checking with has_feature/require_feature pattern
- Add trial management and in-app purchase support
- Add thread-safe operations with parking_lot::RwLock
- Add global client with once_cell for singleton pattern
- Add machine ID persistence for activation tracking

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-25 11:52:35 +00:00

32 lines
973 B
TOML

[package]
name = "ironlicensing"
version = "1.0.0"
edition = "2021"
authors = ["IronServices <support@ironservices.com>"]
description = "Official Rust SDK for IronLicensing - Software licensing and activation"
license = "MIT"
repository = "https://github.com/IronServices/ironlicensing-rust"
homepage = "https://ironlicensing.com"
documentation = "https://docs.rs/ironlicensing"
keywords = ["licensing", "activation", "software-licensing", "drm"]
categories = ["api-bindings", "authentication"]
readme = "README.md"
[dependencies]
reqwest = { version = "0.11", features = ["json", "blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"], optional = true }
thiserror = "1.0"
uuid = { version = "1.0", features = ["v4"] }
parking_lot = "0.12"
once_cell = "1.18"
dirs = "5.0"
hostname = "0.3"
[features]
default = []
[dev-dependencies]
tokio = { version = "1.0", features = ["full", "test-util"] }