diff options
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" } |