ai-cortex-sdk 0.1.1

Rust client SDK for AI Cortex server: PAT auth, device binding, software store, offline license (Ed25519), and auto-update (check-update pull + SSE push).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod client;
pub mod config;
pub mod device;
pub mod error;
pub mod models;
pub mod sse;

pub use client::{verify_offline_license, CortexClient};
pub use config::CortexConfig;
pub use error::SdkError;
pub use models::{OfflineLicenseFile, OfflineLicensePayload, UpdateEvent, UpdateInfo, VersionBrief};
pub use sse::UpdateEventStream;