33 lines
705 B
TOML
33 lines
705 B
TOML
[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"] }
|
|
|