blob: 01d6f443aea637849694ff164003d9a15a82a220 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
[package]
name = "fidget-spinner-store-sqlite"
categories.workspace = true
description = "SQLite-backed per-project frontier ledger store for Fidget Spinner"
edition.workspace = true
keywords.workspace = true
license.workspace = true
publish = false
readme.workspace = true
repository.workspace = true
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
|