mirror of
https://github.com/tauri-apps/plugins-workspace.git
synced 2026-01-31 00:45:24 +01:00
* chore: adjust prettier config, .gitignore and use taplo to format toml files This brings the plugins-workspace repository to the same code style of the main tauri repo * format toml * ignore examples gen dir * add .vscode/extensions.json * remove packageManager field * fmt * fix audit * taplo ignore permissions autogenerated files * remove create dummy dist * fix prettier workflow * install fmt in prettier workflow --------- Co-authored-by: Lucas Nogueira <lucas@tauri.app>
29 lines
818 B
TOML
29 lines
818 B
TOML
[package]
|
|
name = "tauri-plugin-geolocation"
|
|
description = "Get and track the device's current position"
|
|
version = "2.0.0-rc.3"
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
links = "tauri-plugin-geolocation"
|
|
|
|
[package.metadata.docs.rs]
|
|
rustc-args = ["--cfg", "docsrs"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
targets = ["x86_64-linux-android"]
|
|
|
|
[build-dependencies]
|
|
tauri-plugin = { workspace = true, features = ["build"] }
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
tauri = { workspace = true, features = ["specta"] }
|
|
log = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
specta = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "ios")'.dependencies]
|
|
tauri = { workspace = true, features = ["wry"] }
|