v0.7: GraphView rewrite (@blinksgg/canvas), WhiteboardView, DatabaseView (table/gallery/list), GitPanel, backlink context, dataview queries v0.8: OutlinePanel, TimelineView, StatusBar (doc stats), TableEditor, RandomNote, link suggestions v0.9: ImportExport (ZIP/folder), ShortcutsEditor (rebind+persist), GraphAnalytics (orphans/most-connected), note pinning Backend: 15 new Rust commands, zip crate, rand crate Frontend: 18 new components, ~1400 lines CSS Dependencies: @blinksgg/canvas, jotai, graphology, d3-force
29 lines
585 B
TOML
29 lines
585 B
TOML
[package]
|
|
name = "graph-notes"
|
|
version = "0.9.0"
|
|
description = "A graph-based note-taking app"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "graph_notes_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-opener = "2"
|
|
tauri-plugin-fs = "2"
|
|
tauri-plugin-dialog = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
walkdir = "2"
|
|
regex = "1"
|
|
chrono = "0.4"
|
|
aes-gcm = "0.10"
|
|
argon2 = "0.5"
|
|
rand = "0.8"
|
|
base64 = "0.22"
|
|
zip = "2"
|