[package]
edition = "2024"
name = "profile_kit"
version = "0.1.1"
authors = ["Jerry Maheswara <jerrymaheswara@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A flexible, lightweight Rust library for managing user profiles."
documentation = "https://docs.rs/profile_kit"
readme = "README.md"
keywords = [
"profile",
"user",
"kit",
"identity",
"management",
]
categories = [
"web-programming",
"authentication",
]
license = "Apache-2.0"
repository = "https://github.com/jerry-maheswara-github/profile_kit"
[lib]
name = "profile_kit"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[test]]
name = "model_test"
path = "tests/model_test.rs"
[[test]]
name = "repository_test"
path = "tests/repository_test.rs"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.uuid]
version = "1.16.0"
features = [
"serde",
"v7",
]