diff options
Diffstat (limited to 'crates/fidget-spinner-store-sqlite/Cargo.toml')
| -rw-r--r-- | crates/fidget-spinner-store-sqlite/Cargo.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/crates/fidget-spinner-store-sqlite/Cargo.toml b/crates/fidget-spinner-store-sqlite/Cargo.toml new file mode 100644 index 0000000..54e0784 --- /dev/null +++ b/crates/fidget-spinner-store-sqlite/Cargo.toml @@ -0,0 +1,21 @@ +[package] +name = "fidget-spinner-store-sqlite" +description = "Per-project SQLite store for the Fidget Spinner DAG spine" +edition.workspace = true +license.workspace = true +publish = false +rust-version.workspace = true +version.workspace = true + +[dependencies] +camino.workspace = true +fidget-spinner-core = { path = "../fidget-spinner-core" } +rusqlite.workspace = true +serde.workspace = true +serde_json.workspace = true +thiserror.workspace = true +time.workspace = true +uuid.workspace = true + +[lints] +workspace = true |