-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (57 loc) · 1.95 KB
/
Cargo.toml
File metadata and controls
67 lines (57 loc) · 1.95 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
67
[package]
name = "app"
version = "1.0.3"
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
default-run = "app"
edition = "2021"
rust-version = "1.57"
# [target.arm64-apple-darwin]
# rustflags = ["-C", "link-args=-weak_framework Metal"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "2.3.1", features = [] }
[dependencies]
serde_json = "1.0.148"
serde = { version = "1.0.219", features = ["derive"] }
tauri = { version = "2.7.0", features = [] }
pathdiff = "0.2.2"
csv = "1.4.0"
image = { version = "0.25.9", features = ["rayon"] }
imageproc = "0.26.0"
rayon = "1.11.0"
chug = "1.1.0"
img-parts = "0.4.0"
tracing = { version = "0.1.44", features = ["log"] }
ndarray = "0.16.1"
walkdir = "2.5.0"
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
tracing-test = { version = "0.2.5", feature = ["no-env-filter"] }
time = "0.3.47"
tauri-plugin-dialog = "2"
tauri-plugin-notification = "2"
tauri-plugin-log = "2.7.1"
once_cell = "1.17.2"
[target.'cfg(target_os = "windows")'.dependencies.ort]
version = "2.0.0-rc.9"
features = ["download-binaries", "directml"]
[target.'cfg(target_os = "linux")'.dependencies.ort]
version = "2.0.0-rc.9"
default-features = false
features = ["download-binaries", "half", "ndarray", "xnnpack"]
[target.'cfg(target_os = "macos")'.dependencies.ort]
version = "2.0.0-rc.9"
features = ["download-binaries", "coreml"]
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-updater = "2"
[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"]
# Enables Updater API
# updater = ["tauri/updater"]