diff options
| author | wires <wires@noreply.wires.systems> | 2025-10-24 11:29:46 -0400 |
|---|---|---|
| committer | wires <wires@noreply.wires.systems> | 2025-10-24 11:29:46 -0400 |
| commit | 92e4cfc123a1d26265128634850a2b73bac761c2 (patch) | |
| tree | bdbab6c9ac4a8e981888700e16a7e79b1afb3b27 /Cargo.toml | |
| parent | initial commit (diff) | |
| download | wyrd-92e4cfc123a1d26265128634850a2b73bac761c2.tar.gz | |
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 18 |
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" } |