[workspace] members = [ "crates/core", "crates/db-sqlite", "crates/plugin-runtime", "src-tauri", ] default-members = ["src-tauri"] resolver = "2" [workspace.package] version = "0.4.0" edition = "2024" license-file = "LICENSE" [workspace.dependencies] # Core dependencies chrono = { version = "0.4.43", features = ["serde"] } chrono-tz = "0.10" uuid = { version = "1.16", features = ["v4", "v5", "serde"] } serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.149" async-trait = "0.1" thiserror = "2" # Async runtime tokio = { version = "1.49", features = ["rt-multi-thread", "macros"] } # Database - SQLx sqlx = { version = "0.8", features = ["runtime-tokio"] } # Authentication argon2 = "0.5" # Email integration async-imap = { version = "0.11", default-features = false, features = ["runtime-tokio"] } tokio-native-tls = "0.3" tokio-util = "0.7" futures-util = { version = "0.3", default-features = false, features = ["std", "async-await"] } mailparse = "0.16" lettre = { version = "0.11", default-features = false, features = ["tokio1", "tokio1-native-tls", "smtp-transport", "builder"] } # HTTP client reqwest = { version = "0.12", default-features = false, features = ["json", "native-tls"] } # Security / OAuth rand = "0.9" base64 = "0.22" sha2 = "0.10" # Secure credential storage keyring = { version = "3", features = ["apple-native", "linux-native", "windows-native"] } # Tauri tauri = "2.10.2" tauri-build = "2.5.5" tauri-plugin-dialog = "2.6.0" tauri-plugin-shell = "2.3.5" tauri-plugin-notification = "2.3.3" tauri-plugin-window-state = "2.4.1" tauri-plugin-updater = "2" tauri-plugin-process = "2" # Plugin system rhai = { version = "1.17", features = ["sync", "serde"] } notify = "6.0" notify-debouncer-mini = "0.4" theme-common = { path = "../../MNW/shared/theme-common" } toml = "0.8" # Enums strum = "0.26" strum_macros = "0.26" # iCalendar parsing ical = "0.11" # CSV csv = "1.3" # Export/Backup icalendar = "0.16" flate2 = "1.0" # Browser opening open = "5" # Markdown rendering + HTML sanitization docengine = { path = "../../MNW/shared/docengine" } # Logging tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } # Tag standard tagtree = { path = "../../MNW/shared/tagtree" } # Internal crates goingson-core = { path = "crates/core" } goingson-db-sqlite = { path = "crates/db-sqlite" } goingson-plugin-runtime = { path = "crates/plugin-runtime" }