Files
trailbase/crates/sqlvalue/Cargo.toml
T
Sebastian Jeltsch 117bbcce82 Move trailbase-common to trailbase-sqlvalue.
Note that both trailbase-sqlvalue and trailbase-wasm-common should probably go away with WASIp3 using WASI for for all guest-host interactions.
2025-10-22 09:50:31 +02:00

22 lines
513 B
TOML

[package]
name = "trailbase-sqlvalue"
version = "0.1.0"
edition = "2024"
license = "OSL-3.0"
description = "Common data structures for TrailBase"
homepage = "https://trailbase.io"
repository = "https://github.com/trailbaseio/trailbase"
readme = "../../README.md"
[features]
default = []
rusqlite = ["dep:rusqlite"]
[dependencies]
base64 = { workspace = true }
serde = { workspace = true }
thiserror = "2.0.12"
ts-rs = { workspace = true }
rusqlite= { workspace = true, optional = true }
serde_bytes = "0.11.19"