diff options
author | Ashelyn Rose <git@ashen.earth> | 2025-02-16 15:18:09 -0700 |
---|---|---|
committer | Ashelyn Rose <git@ashen.earth> | 2025-02-16 15:18:09 -0700 |
commit | 5e8d3bc7008d29115bc520a75a9e49c00e2c270f (patch) | |
tree | dc3aab4ba61ff0b558cdee8cbe08e07533be5596 /app/Cargo.toml | |
parent | b5d6d25912993b91bc1b3ec52c352431398c36d9 (diff) |
Can now sign in and fetch account data
Diffstat (limited to 'app/Cargo.toml')
-rw-r--r-- | app/Cargo.toml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/app/Cargo.toml b/app/Cargo.toml index 45b24b1..f11ae44 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -11,7 +11,12 @@ crate-type = ["staticlib", "cdylib", "rlib"] tauri-build = { version = "2", features = [] } [dependencies] -tauri = { version = "2", features = ["config-toml"] } -tauri-plugin-opener = "2" +reqwest = { version = "0.12.12", features = ["json"] } serde = { version = "1", features = ["derive"] } serde_json = "1" +tauri = { version = "2", features = ["config-toml"] } +tauri-plugin-opener = "2" +tauri-plugin-deep-link = "2" +tauri-plugin-single-instance = {version = "2", features = ["deep-link"] } +tokio = "1.43.0" +url = "2.5.4" |