-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 1.15 KB
/
Copy pathCargo.toml
File metadata and controls
34 lines (29 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "sqlrite-desktop"
version = "0.14.0"
description = "SQLRite desktop app — Tauri 2 shell around the engine"
authors = ["Joao Henrique Machado Silva <joaoh82@gmail.com>"]
edition = "2024"
rust-version = "1.85"
license = "MIT"
# Binary target for the Tauri app. The actual entry point lives in
# src/main.rs; we also expose a tiny lib for mobile (not wired up yet,
# but Tauri 2's templates keep this shape so adding iOS/Android later is
# a non-event).
[[bin]]
name = "sqlrite-desktop"
path = "src/main.rs"
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
# Engine lives at the workspace root; reference it by path. Version
# pinning can wait for a proper release cut.
# `package = "sqlrite-engine"` — crates.io name — with an import alias
# of `sqlrite` so Tauri command code can keep saying `use sqlrite::…`.
sqlrite = { package = "sqlrite-engine", path = "../.." }
tauri = { version = "2", features = [] }
# Tauri 2 plugins must be opted into explicitly; the dialog plugin
# powers the "Open…" / "Save As…" file pickers.
tauri-plugin-dialog = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"