-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
58 lines (49 loc) · 1.69 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "app"
version = "1.0.0"
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 = "1.5.5", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0.214", features = ["derive"] }
tauri = { version = "1.7.2", features = ["api-all"] }
pathdiff = "0.2.2"
csv = "1.3.0"
image = { version = "0.25.4", features = ["rayon"] }
imageproc = "0.25.0"
rayon = "1.10.0"
chug = "1.1.0"
img-parts = "0.3.1"
tracing = "0.1.40"
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.36"
[target.'cfg(target_os = "windows")'.dependencies.ort]
version = "2.0.0-rc.6"
features = ["download-binaries", "cuda", "tensorrt"]
[target.'cfg(target_os = "linux")'.dependencies.ort]
version = "2.0.0-rc.6"
features = ["download-binaries", "cuda", "tensorrt"]
[target.'cfg(target_os = "macos")'.dependencies]
ort = { version = "2.0.0-rc.8", features = ["download-binaries", "coreml"] }
[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"]