SQL client đa nền tảng viết bằng Rust, sử dụng GPUI framework (Zed Editor) cho UI.
- SQL Editor với tab management
- Table Viewer với editable data grid
- Connection Manager — SQLite & PostgreSQL
- Custom Titlebar với Mica backdrop (Windows)
- Theme System với hot-reload
truyvansql/
├── engine/ # Thư viện lõi (library)
├── desktop/ # Ứng dụng GUI (binary)
├── assets/ # Icons (RustEmbed)
├── cli/ # CLI tool (WIP)
├── docs/ # Tài liệu kỹ thuật
└── themes/ # JSON theme files
| Thành phần |
Công nghệ |
| UI |
GPUI, gpui-component |
| Database |
sqlx (SQLite + PostgreSQL) |
| Async |
tokio |
| Icons |
RustEmbed |
# Build
cargo build
# Run desktop
cargo run -p desktop
# Test
cargo test