This initial commit scaffolds the project with essential docs, assets, and build configs. It adds Android icons, design assets, and release metadata to support mobile targets. A fastlane config and F-Droid manifest are included to streamline builds. - Adds F-Droid configuration for automated builds - Includes license and privacy policy documents - Provides app icons and assets for Android and design system
19 lines
436 B
TOML
19 lines
436 B
TOML
[package]
|
|
name = "tauri-plugin-wallpaper"
|
|
version = "0.1.0"
|
|
authors = [ "LockScreenWallpaper" ]
|
|
description = ""
|
|
license = "GPL-3.0-only"
|
|
edition = "2021"
|
|
rust-version = "1.77.2"
|
|
exclude = ["/examples", "/dist-js", "/guest-js", "/node_modules"]
|
|
links = "tauri-plugin-wallpaper"
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.11.3" }
|
|
serde = "1.0"
|
|
thiserror = "2"
|
|
|
|
[build-dependencies]
|
|
tauri-plugin = { version = "2.6.3", features = ["build"] }
|