-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
80 lines (73 loc) · 2.1 KB
/
Copy pathCargo.toml
File metadata and controls
80 lines (73 loc) · 2.1 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
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "vortex"
version = "0.3.0-beta.1"
description = "A desktop download manager"
authors = ["mpiton"]
edition = "2024"
rust-version = "1.95"
license = "GPL-3.0-only"
[lib]
name = "vortex_lib"
crate-type = ["lib", "cdylib", "staticlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = ["tray-icon", "image-png"] }
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
thiserror = "2.0.20"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
sea-orm = { version = "1.1.20", features = ["sqlx-sqlite", "runtime-tokio-native-tls", "macros"], default-features = false }
sea-orm-migration = { version = "1.1.20", features = ["sqlx-sqlite", "runtime-tokio-native-tls"], default-features = false }
tokio = { version = "1.53.1", features = ["full"] }
anyhow = "1.0.104"
reqwest = { version = "0.13.4", features = ["stream", "blocking", "socks"] }
tokio-util = { version = "0.7.19", features = ["rt"] }
futures-util = "0.3.34"
bytes = "1.12.1"
bincode = "2"
command-group = "=5.0.1"
extism = "=1.30.0"
notify = "8.2.0"
toml = "1.1.5"
dashmap = "6.1.0"
dirs = "6.0.0"
uuid = { version = "1.26.0", features = ["v4"] }
tauri-plugin-clipboard-manager = "2.3.3"
tauri-plugin-notification = "2.4.0"
regex = "1"
zip = "8.5.1"
tar = "0.4.46"
flate2 = "1.1.10"
bzip2 = "0.6.1"
xz2 = "0.1.7"
zstd = "0.13.3"
sevenz-rust2 = "0.20.2"
unrar = "0.5.8"
tauri-plugin-updater = "2.11.0"
keyring = "3.6.3"
sha2 = "0.11.0"
hex = "0.4.3"
tauri-plugin-dialog = "2.7.3"
md-5 = "0.11.0"
digest = "0.11.3"
aes-gcm = "0.10.3"
pbkdf2 = "0.13.0"
hmac = "0.13.0"
rand = "0.10.2"
url = "2.5.8"
base64 = "0.22.1"
[target.'cfg(unix)'.dependencies]
libc = "0.2.189"
tauri-plugin-pilot = "0.4.0"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_Storage_FileSystem"] }
[dev-dependencies]
criterion = { version = "4.7.0", package = "codspeed-criterion-compat" }
tempfile = "3.27.0"
tokio = { version = "1.53.1", features = ["test-util"] }
wiremock = "0.6.5"
[[bench]]
name = "domain_benchmarks"
harness = false