veza/veza-common/Cargo.toml

34 lines
705 B
TOML
Raw Normal View History

2025-12-03 21:24:14 +00:00
[package]
name = "veza-common"
version = "0.1.0"
edition = "2021"
authors = ["Veza Team <team@veza.live>"]
description = "Common library for Veza project - shared types and utilities"
license = "MIT"
repository = "https://github.com/okinrev/veza-full-stack"
[dependencies]
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# UUID support
uuid = { version = "1.0", features = ["v4", "serde"] }
# Date/time handling
chrono = { version = "0.4", features = ["serde"] }
# Error handling
thiserror = "1.0"
# Regex support
regex = "1.0"
# Lazy static for compiled regex
lazy_static = "1.4"
[dev-dependencies]
# Testing
tokio = { version = "1.0", features = ["full"] }