cntm-nucleus 0.3.0

Nucleus authentication SDK for Rust.
Documentation

cntm-nucleus

Nucleus authentication SDK for Rust.

Warning: DEV PREVIEW — This crate is under active development and is NOT ready for production use. APIs may change without notice. For updates, watch the Nucleus repo.

CI Security License: MIT

crates.io

Rust

Rust Tokio


Verify sessions and manage users from your Rust backend.

Part of Nucleus — high-performance, self-hosted auth platform.

Installation

cargo add cntm-nucleus

Quick Start

use cntm_nucleus::NucleusClient;

let client = NucleusClient::new("sk_...");
let claims = client.verify_session(&token).await?;
println!("User ID: {}", claims.sub);

License

MIT