-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
39 lines (35 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "pocket-sync"
version = "0.0.0"
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
edition = "2021"
rust-version = "1.59"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.1", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.2", features = ["dialog-all", "fs-read-file", "http-request", "os-all", "shell-open"] }
zip = { version = "0.6.3", feature = ["deflate", "time"] }
reqwest = "0.11.12"
futures = "0.3.25"
futures-locks = "0.7.0"
tokio = "1.21.2"
tempdir = "0.3.7"
walkdir = "2.3.2"
bytes = "1.2.1"
time = "0.3.17"
ring = "0.16.20"
data-encoding = "2.3.2"
tauri-plugin-window-state = "0.1.0"
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = [ "custom-protocol" ]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = [ "tauri/custom-protocol" ]