Skip to main content

onshape_client_core/
lib.rs

1//! Pure Onshape API logic and types.
2//!
3//! This crate contains sans-IO types and logic for interacting with the Onshape REST API.
4//! No async runtime, HTTP client, or network access — all I/O is handled by `onshape-client-io`.
5
6pub mod auth;
7pub mod oauth;
8pub mod request;