-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (59 loc) · 2.03 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (59 loc) · 2.03 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "quilt-sync"
version = "0.20.1"
authors = ["Quilt Data, Inc."]
description = "Cross-platform desktop application for editing Quilt data packages"
documentation = "https://docs.quiltdata.com"
edition.workspace = true
homepage.workspace = true
license.workspace = true
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
# Keep the verbose notation, because it will be (re-)written by tauri-build anyway
tauri-build = { version = "2.6.3", features = [] }
[dependencies]
chrono.workspace = true
dotenv = "0.15"
dunce = "1"
mockall = "0.15.0"
opener = { version = "0.8.5", features = ["reveal"] }
quilt-rs = { path = "../../quilt-rs" }
quilt-uri = { path = "../../quilt-uri" }
rfd = { version = "0.17.2", default-features = false, features = ["gtk3"] }
rust-i18n = "4.2.1"
semver = "1.0.28"
sentry = { version = "0.49.1", features = ["tracing"] }
mixpanel-rs = "0.3.1"
notify = "8.2"
notify-debouncer-full = "0.7"
serde.workspace = true
serde_json.workspace = true
serde_qs = "1.1.2"
tauri = { version = "2.11.5", features = ["test", "devtools", "tray-icon", "image-png"] }
tauri-plugin-deep-link = "2.4.9"
tauri-plugin-process = "2.3.1"
tauri-plugin-shell = "2.3.5"
tauri-plugin-updater = "2.10.1"
tempfile.workspace = true
thiserror.workspace = true
tokio.workspace = true
tokio-stream.workspace = true
tracing.workspace = true
tracing-appender = "0.2.5"
tracing-subscriber = { workspace = true, features = ["env-filter"] }
url.workspace = true
urlencoding = "2.1.3"
zip = { version = "8", default-features = false, features = ["deflate"] }
[features]
# this feature is used for production builds or when `devPath` points to the filesystem
# DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]
[dev-dependencies]
serde_yaml.workspace = true
serial_test = "4"
tokio-test.workspace = true
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-single-instance = { version = "2.4.3", features = ["deep-link"] }
[lints]
workspace = true