Split the server into three crates (#56)

This will make it easier to build variations on the server, or embed it
into larger projects.
This commit is contained in:
Dustin J. Mitchell 2024-11-17 15:12:42 -05:00 committed by GitHub
parent 5769781553
commit 47ce4c1e3b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 1243 additions and 57 deletions

17
sqlite/Cargo.toml Normal file
View file

@ -0,0 +1,17 @@
[package]
name = "taskchampion-sync-server-storage-sqlite"
version = "0.4.1"
authors = ["Dustin J. Mitchell <dustin@mozilla.com>"]
edition = "2021"
[dependencies]
taskchampion-sync-server-core = { path = "../core" }
uuid.workspace = true
anyhow.workspace = true
thiserror.workspace = true
rusqlite.workspace = true
chrono.workspace = true
[dev-dependencies]
tempfile.workspace = true
pretty_assertions.workspace = true