惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
博客园_首页
博客园 - 聂微东
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
The Cloudflare Blog
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
D
Docker
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
B
Blog RSS Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
Jina AI
Jina AI
博客园 - Franky
D
DataBreaches.Net

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The Dev Tools I Actually Use as a Solo Rust + Tauri Devel...
hiyoyo · 2026-06-12 · via DEV Community
Cover image for The Dev Tools I Actually Use as a Solo Rust + Tauri Developer in 2026

hiyoyo

All tests run on an 8-year-old MacBook Air. All results from shipping 7 Mac apps as a solo developer. No sponsored opinion.

Not a listicle of everything possible. Just what I actually open every day.


Editor: VS Code with specific extensions

rust-analyzer: non-negotiable. Inline type hints, error detection, jump to definition. Rust without rust-analyzer is painful.

Continue: local LLM autocomplete via Ollama. Handles boilerplate and repetitive patterns without API calls.

Even Better TOML: Cargo.toml syntax and validation. Small but useful.

Tauri: official Tauri extension with command palette integration.


AI: three tools, different jobs

Ollama + qwen2.5-coder:1.5b: autocomplete. Runs locally. Never leaves the machine.

Gemini: quick questions, syntax lookups, anything where speed matters more than depth. Free tier covers daily use.

Claude: hard Rust bugs, architecture decisions, anything where being wrong is expensive. Free tier for targeted use.


Terminal: iTerm2

Default macOS Terminal works. iTerm2's split panes are useful when running npm run tauri dev alongside a shell for ADB commands.


Version control: Git + GitHub

Commit before handing off to AI tools. This saved me twice when AI tools made silent regressions — I could diff against the last commit and see exactly what changed.

The rule: never let AI touch code that isn't committed.


Debugging: browser DevTools + RUST_LOG

Tauri apps have a WebView. Cmd+Option+I opens DevTools in dev mode. Frontend bugs debugged exactly like a web app.

Backend: RUST_LOG=debug npm run tauri dev shows Rust log output in the terminal.


Design: minimal

I'm not a designer. For UI, I use Tailwind CSS utility classes and reference existing Mac app conventions. I don't use Figma.

For app icons — my weakest point — I iterate on simple concepts and accept "good enough." The icon isn't the product.


What I don't use

  • A project management tool (GitHub Issues is enough)
  • A staging environment (the app runs locally by definition)
  • A CI/CD pipeline (manual builds, notarize before each release)
  • A documentation platform (README + dev.to articles)

Solo dev means every tool has to justify its overhead. Most don't.


TL;DR: My daily stack as a solo Rust + Tauri dev: VS Code with rust-analyzer, three-tier AI (Ollama locally, Gemini for quick lookups, Claude for hard bugs), iTerm2, and Git with a strict "commit before AI" rule. No Figma, no CI/CD, no project management tool — if it can't justify its overhead, it's out.


If this was useful, a ❤️ helps more than you'd think — thanks!

HiyokoAutoSync | X → @hiyoyok