profile_kit 0.1.1

A flexible, lightweight Rust library for managing user profiles.
Documentation
1
2
3
4
5
6
7
8
9
/// Domain-level abstractions for user profile operations.
///
/// This module contains traits that define contracts
/// for interacting with user profile storage backends.
///
/// Implementors of this trait may provide in-memory, database,
/// remote API (e.g., gRPC), or mock implementations.
pub mod traits;
pub use traits::UserProfileRepository;