Some checks failed
Documentation Lint & Validation / Markdown Linting (push) Has been cancelled
Documentation Lint & Validation / Validate mdBook Configuration (push) Has been cancelled
Documentation Lint & Validation / Content & Structure Validation (push) Has been cancelled
mdBook Build & Deploy / Build mdBook (push) Has been cancelled
Rust CI / Security Audit (push) Has been cancelled
Rust CI / Check + Test + Lint (nightly) (push) Has been cancelled
Rust CI / Check + Test + Lint (stable) (push) Has been cancelled
Documentation Lint & Validation / Lint & Validation Summary (push) Has been cancelled
mdBook Build & Deploy / Documentation Quality Check (push) Has been cancelled
mdBook Build & Deploy / Deploy to GitHub Pages (push) Has been cancelled
mdBook Build & Deploy / Notification (push) Has been cancelled
44 lines
891 B
TOML
44 lines
891 B
TOML
[package]
|
|
name = "vapora-shared"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["rlib"]
|
|
|
|
[dependencies]
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
toml = { workspace = true }
|
|
|
|
# Error handling
|
|
thiserror = { workspace = true }
|
|
|
|
# Utilities
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
|
|
# Database (for error conversion) - optional for WASM
|
|
surrealdb = { workspace = true, optional = true }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
|
|
# Validation
|
|
regex = { workspace = true }
|
|
|
|
# Async runtime (for validation pipeline) - backend only
|
|
tokio = { workspace = true, features = ["process", "io-util"], optional = true }
|
|
|
|
[features]
|
|
default = ["backend"]
|
|
backend = ["surrealdb", "tokio"]
|
|
|
|
[dev-dependencies]
|
|
# Testing
|