| 1 |
[workspace] |
| 2 |
members = ["crates/ripgrow-core", "crates/ripgrow-tui"] |
| 3 |
resolver = "3" |
| 4 |
|
| 5 |
[workspace.package] |
| 6 |
version = "0.1.0" |
| 7 |
edition = "2024" |
| 8 |
license-file = "LICENSE" |
| 9 |
repository = "https://git.sr.ht/~maxjmath/ripgrow" |
| 10 |
|
| 11 |
[workspace.dependencies] |
| 12 |
ripgrow-core = { path = "crates/ripgrow-core" } |
| 13 |
rusqlite = { version = "0.37", features = ["bundled"] } |
| 14 |
thiserror = "2" |
| 15 |
chrono = { version = "0.4", default-features = false, features = ["clock", "serde"] } |
| 16 |
dirs = "6" |
| 17 |
ratatui = "0.29" |
| 18 |
crossterm = "0.29" |
| 19 |
supernote-push = { path = "../../Libraries/supernote-push" } |
| 20 |
serde = { version = "1", features = ["derive"] } |
| 21 |
toml = "0.8" |
| 22 |
|