wires

summary refs log tree commit diff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorwires <wires@noreply.wires.systems>2025-10-24 11:29:46 -0400
committerwires <wires@noreply.wires.systems>2025-10-24 11:29:46 -0400
commit92e4cfc123a1d26265128634850a2b73bac761c2 (patch)
treebdbab6c9ac4a8e981888700e16a7e79b1afb3b27 /Cargo.toml
parentinitial commit (diff)
downloadwyrd-92e4cfc123a1d26265128634850a2b73bac761c2.tar.gz
first draft of sqlite wrapper HEAD main
Diffstat (limited to '')
-rw-r--r--Cargo.toml18
1 files changed, 15 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e01005b..636ecc3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,9 +1,21 @@
-[package]
-name = "wyrd"
-version = "0.1.0"
+[workspace]
+resolver = "3"
+members = ["wyrd_sqlite"]
+
+[workspace.package]
 edition = "2024"
 authors = ["wires <wires@wires.systems>"]
 license = "GPL-3.0-only"
 repository = "https://git.wires.systems/wyrd"
 
+[package]
+name = "wyrd"
+version = "0.1.0"
+edition.workspace = true
+authors.workspace = true
+license.workspace = true
+repository.workspace = true
+
 [dependencies]
+anyhow = "1.0.100"
+wyrd_sqlite = { path = "wyrd_sqlite" }