| 1 | [package] |
| 2 | name = "codewhale-memory" |
| 3 | version.workspace = true |
| 4 | edition = "2024" |
| 5 | rust-version.workspace = true |
| 6 | description = "Local, scoped, provenance-bearing memory and resumable state for CodeWhale" |
| 7 | license = "MIT" |
| 8 | repository.workspace = true |
| 9 | |
| 10 | [lib] |
| 11 | name = "codewhale_memory" |
| 12 | path = "src/lib.rs" |
| 13 | |
| 14 | [[bin]] |
| 15 | name = "cw-memory" |
| 16 | path = "src/main.rs" |
| 17 | |
| 18 | [dependencies] |
| 19 | clap = { version = "4.5", features = ["derive"] } |
| 20 | regex = "1.11" |
| 21 | rusqlite = { version = "0.40.2", features = ["bundled"] } |
| 22 | serde = { version = "1.0", features = ["derive"] } |
| 23 | serde_json = "1.0" |
| 24 | sha2 = "0.11" |
| 25 | thiserror = "2.0" |
| 26 | uuid = { version = "1.11", features = ["v4"] } |
| 27 | |
| 28 | [dev-dependencies] |
| 29 | tempfile = "3.27" |
| 30 | |
| 31 | [lints.rust] |
| 32 | unsafe_code = "forbid" |
| 33 |