Self-hosted, federated location sharing app and server that prioritizes user privacy and security
end-to-end-encryption
location-sharing
privacy
self-hosted
federated
1[package]
2name = "privacypin"
3version = "0.1.0"
4description = "A Tauri App"
5authors = ["you"]
6edition = "2021"
7
8# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
10[lib]
11# The `_lib` suffix may seem redundant but it is necessary
12# to make the lib name unique and wouldn't conflict with the bin name.
13# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
14name = "privacypin_lib"
15crate-type = ["staticlib", "cdylib", "rlib"]
16
17[build-dependencies]
18tauri-build = { version = "2", features = [] }
19
20[dependencies]
21tauri = { version = "2", features = [] }
22tauri-plugin-opener = "2"
23tauri-plugin-store = "2.4.1"
24serde = { version = "1", features = ["derive"] }
25serde_json = "1"