2026-02-14 18:20:07 +01:00
|
|
|
[package]
|
2026-04-12 01:35:34 +02:00
|
|
|
name = "tolaria"
|
2026-02-14 18:20:07 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Personal knowledge and life management app"
|
2026-04-17 10:53:56 +02:00
|
|
|
authors = ["Luca Rossi"]
|
|
|
|
|
license = "AGPL-3.0-or-later"
|
2026-02-14 18:20:07 +01:00
|
|
|
repository = ""
|
|
|
|
|
edition = "2021"
|
|
|
|
|
rust-version = "1.77.2"
|
|
|
|
|
|
|
|
|
|
[lib]
|
2026-04-12 01:35:34 +02:00
|
|
|
name = "tolaria_lib"
|
2026-02-14 18:20:07 +01:00
|
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
2026-02-14 18:54:27 +01:00
|
|
|
tauri-build = { version = "2.5.4", features = [] }
|
2026-02-14 18:20:07 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
serde_json = "1.0"
|
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
feat: add custom views backend — YAML parser, filter engine, Tauri commands
Introduce `.laputa/views/*.yml` for user-defined filtered note lists.
Rust backend: serde_yaml parsing, recursive AND/OR filter evaluation
with 10 operators (equals, contains, any_of, is_empty, before/after,
etc.), wikilink stem matching, and file CRUD. Three Tauri commands:
list_views, save_view_cmd, delete_view_cmd.
ADR 0040 documents the architecture.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-02 15:57:22 +02:00
|
|
|
serde_yaml = "0.9"
|
2026-02-14 18:20:07 +01:00
|
|
|
log = "0.4"
|
2026-04-27 23:54:50 +02:00
|
|
|
notify = "6.1"
|
2026-02-26 11:09:07 +01:00
|
|
|
tauri = { version = "2.10.0", features = ["protocol-asset", "devtools"] }
|
2026-02-14 18:20:07 +01:00
|
|
|
tauri-plugin-log = "2"
|
|
|
|
|
gray_matter = "0.2"
|
|
|
|
|
walkdir = "2"
|
|
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2026-02-20 22:55:49 +01:00
|
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
|
|
|
|
futures-util = "0.3"
|
2026-02-21 10:07:02 +01:00
|
|
|
base64 = "0.22"
|
2026-02-21 19:13:03 +01:00
|
|
|
regex = "1"
|
2026-02-21 17:14:02 +01:00
|
|
|
dirs = "5"
|
2026-02-23 14:42:39 +01:00
|
|
|
tauri-plugin-dialog = "2"
|
2026-02-22 12:10:24 +01:00
|
|
|
tauri-plugin-updater = "2.10.0"
|
|
|
|
|
tauri-plugin-process = "2.3.1"
|
2026-02-24 22:20:33 +01:00
|
|
|
tauri-plugin-opener = "2"
|
2026-04-11 18:34:39 +02:00
|
|
|
tauri-plugin-prevent-default = "4.0.4"
|
2026-03-25 16:20:09 +01:00
|
|
|
sentry = "0.37"
|
|
|
|
|
uuid = { version = "1", features = ["v4"] }
|
2026-04-22 21:18:38 +02:00
|
|
|
tempfile = "3"
|
2026-02-14 18:20:07 +01:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|