[package] name = "thoughtsync-core" version = "0.1.0" description = "ThoughtSync client core — local-first SQLite store and opt-in sync engine" authors = ["bvandeusen"] edition = "2021" [dependencies] serde = { workspace = true } serde_json = { workspace = true } log = { workspace = true } # Local-first store (M10.4): bundled = compile SQLite in, so there's no system # libsqlite dependency to vary across the AppImage / native / Windows / Android builds. rusqlite = { version = "0.32", features = ["bundled"] } uuid = { version = "1", features = ["v4"] } # RFC3339 timestamps for created_at/updated_at/remind_at (Date.parse-able on the JS side). chrono = { version = "0.4", default-features = false, features = ["clock"] } # HTTP for the opt-in server handshake (M10.6) and the sync engine (M10.7). # # native-tls, NOT rustls, deliberately: on x86_64-pc-windows-msvc native-tls resolves # to `schannel` — pure-Rust bindings to the OS TLS stack — so nothing C or assembly # has to cross-compile on the Windows lane, which is the fragile one. rustls would # instead pull in ring/aws-lc-rs and their assembler. On Linux native-tls uses # OpenSSL, whose headers (libssl-dev) ci-tauri already ships. # default-features off drops http2/charset we don't need for a JSON API. reqwest = { version = "0.12", default-features = false, features = ["json", "native-tls"] } # Verifying downloaded attachment bytes against the sha256 the server advertised. sha2 = "0.10" # Android has no system OpenSSL to link against, and `native-tls` resolves to # OpenSSL there — unlike Windows, where it lands on schannel and costs nothing. # Without this the build dies at `openssl-sys`: "Could not find directory of # OpenSSL installation". # # `vendored` compiles OpenSSL from source with the NDK toolchain. The alternative # was rustls on Android only, which builds faster — but rustls ships its own root # store, so the phone would trust a DIFFERENT set of certificates than the desktop # does. A self-hosted server behind a private or enterprise CA would then work on # one surface and fail on another, and "the surfaces behave the same" is worth more # than build minutes. # # Declared as a direct dependency purely to turn the feature on: cargo's feature # unification applies it to the copy `native-tls` pulls in transitively. [target.'cfg(target_os = "android")'.dependencies] openssl-sys = { version = "0.9", features = ["vendored"] }