18 lines
525 B
TOML
18 lines
525 B
TOML
[package]
|
|
name = "tauri_git_lite"
|
|
version = "0.1.0"
|
|
description = "Rust backend for a lightweight Git desktop client"
|
|
edition = "2021"
|
|
rust-version = "1.77"
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-dialog = "=2.7.0"
|
|
keyring = { version = "3", features = ["apple-native", "windows-native", "async-secret-service", "crypto-rust", "async-io"] }
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|