Research-Stack/5-Applications/notion-native-tauri
dependabot[bot] 47964b85f2 Bump the notion-tauri-cargo-minor-patch group
Bumps the notion-tauri-cargo-minor-patch group in /5-Applications/notion-native-tauri with 2 updates: [tauri](https://github.com/tauri-apps/tauri) and [tauri-build](https://github.com/tauri-apps/tauri).

Updates `tauri` from 2.11.1 to 2.11.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](https://github.com/tauri-apps/tauri/compare/tauri-v2.11.1...tauri-v2.11.2)

Updates `tauri-build` from 2.6.1 to 2.6.2
- [Release notes](https://github.com/tauri-apps/tauri/releases)
- [Commits](https://github.com/tauri-apps/tauri/compare/tauri-build-v2.6.1...tauri-build-v2.6.2)

---
updated-dependencies:
- dependency-name: tauri
  dependency-version: 2.11.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: notion-tauri-cargo-minor-patch
- dependency-name: tauri-build
  dependency-version: 2.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: notion-tauri-cargo-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
(cherry picked from commit ca226eb8cbad60de00487216277d0257c642d700)
2026-05-20 23:03:27 -05:00
..
gen/schemas Add ENE research topic candidates, compression-core, notion-native-tauri, linear-native-tauri 2026-05-04 19:08:20 -05:00
src Remediate dependency alert residue 2026-05-11 23:26:12 -05:00
build-and-install.sh Add ENE research topic candidates, compression-core, notion-native-tauri, linear-native-tauri 2026-05-04 19:08:20 -05:00
build.rs Add ENE research topic candidates, compression-core, notion-native-tauri, linear-native-tauri 2026-05-04 19:08:20 -05:00
Cargo.lock Bump the notion-tauri-cargo-minor-patch group 2026-05-20 23:03:27 -05:00
Cargo.toml Remove reqwest to fix ring linking errors; simplify dependencies 2026-05-04 19:27:44 -05:00
README.md Add ENE research topic candidates, compression-core, notion-native-tauri, linear-native-tauri 2026-05-04 19:08:20 -05:00
tauri.conf.json Fix Tauri builds: navigate API, unused imports, build config 2026-05-04 19:22:01 -05:00

Notion Native (Tauri)

Lightweight native Linux wrapper for Notion Web, replacing the broken Electron build.

Features

  • Multi-threaded: Tokio runtime with 4 worker threads + background prefetch
  • GPU-accelerated: Uses system WebKitGTK WebView (Mesa/Vulkan compositing)
  • No bundled Chromium: ~1/50th the size of Electron Notion
  • Native Rust: Compiled binary, not interpreted JS

Build

cd "/home/allaun/Documents/Research Stack/5-Applications/notion-native-tauri"
cargo build --release

First compile: ~10-20 minutes (downloads and compiles all dependencies).

Install

# Build Debian package
cargo tauri bundle --bundles deb

# Or run directly without packaging
./target/release/notion-native-tauri

Launch

notion-native-tauri

vs Electron Notion

Electron Notion Notion Native (Tauri)
Renderer Bundled Chromium System WebKitGTK
Binary size ~200 MB ~15 MB
RAM idle ~400 MB ~80 MB
GPU Broken on NVIDIA/Wayland Uses native Mesa compositor
Threads Single main thread Tokio multi-threaded pool