code-system-graph-store-sqlite 1.0.2

Exact-schema SQLite persistence for Code System Graph.
Documentation
[package]
name = "code-system-graph-store-sqlite"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
description = "Exact-schema SQLite persistence for Code System Graph."
license.workspace = true
repository.workspace = true
homepage.workspace = true
readme.workspace = true
keywords.workspace = true
categories = ["database", "development-tools"]

[dependencies]
blake3 = "1.8.5"
code-system-graph-model = { version = "1.0.2", path = "../code-system-graph-model" }
rusqlite = { version = "0.40.1", features = ["backup", "bundled"] }
same-file = "1.0.6"
serde_json = "1.0.151"
sysinfo = { version = "0.39.6", default-features = false, features = ["system"] }
tempfile = "3.27.0"
thiserror = "2.0.19"

[lints]
workspace = true

[target.'cfg(unix)'.dependencies]
libc = "0.2"

[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61.2", features = [
    "Win32_Foundation",
    "Win32_Security",
    "Win32_Security_Authorization",
    "Win32_Storage_FileSystem",
    "Win32_System_Threading",
] }