Some checks are pending
Documentation Lint & Validation / Markdown Linting (push) Waiting to run
Documentation Lint & Validation / Validate mdBook Configuration (push) Waiting to run
Documentation Lint & Validation / Content & Structure Validation (push) Waiting to run
Documentation Lint & Validation / Lint & Validation Summary (push) Blocked by required conditions
mdBook Build & Deploy / Build mdBook (push) Waiting to run
mdBook Build & Deploy / Documentation Quality Check (push) Blocked by required conditions
mdBook Build & Deploy / Deploy to GitHub Pages (push) Blocked by required conditions
mdBook Build & Deploy / Notification (push) Blocked by required conditions
Rust CI / Security Audit (push) Waiting to run
Rust CI / Check + Test + Lint (nightly) (push) Waiting to run
Rust CI / Check + Test + Lint (stable) (push) Waiting to run
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
|