-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (80 loc) · 2.17 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (80 loc) · 2.17 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
81
82
[workspace.package]
version = "0.1.0"
description = "Bottles Next is the evolution of Bottles"
authors = ["Eduardo Flores <edfloreshz@proton.me", "Inam Ul Haq <inam123451@gmail.com>"]
edition = "2024"
license = "GPL-3.0"
repository = "https://github.com/bottlesdevs/bottles-next"
homepage = ""
categories = [""]
keywords = [""]
exclude = [""]
readme = "README.md"
[workspace]
members = [
"crates/download-manager",
"crates/fvs2-rs",
"crates/http-client",
"crates/next-cli",
"crates/next-core",
"crates/next-config",
"crates/next-ui",
"crates/next-winebridge",
"crates/next-proto",
]
default-members = [
"crates/download-manager",
"crates/fvs2-rs",
"crates/http-client",
"crates/next-cli",
"crates/next-core",
"crates/next-ui",
"crates/next-config",
"crates/next-proto",
]
resolver = "3"
[workspace.dependencies]
async-fs = "2.2"
async-broadcast = "0.7"
async-channel = "2.5"
async-compression = { version = "0.4", default-features = false, features = ["futures-io", "gzip"] }
async-executor = "1.13"
async-io = "2.6"
async-process = "2.5"
async-trait = "0.1"
blocking = "1.6"
bottles-core = { path = "crates/next-core" }
download-manager = { path = "crates/download-manager" }
fvs-rs = { path = "crates/fvs2-rs" }
next-config = { path = "crates/next-config" }
next-proto = { path = "crates/next-proto" }
serde = { version = "1.0", features = ["derive"] }
serde-value = "0.7"
serde_json = "1.0"
sha2 = "0.10"
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["env-filter", "fmt"]}
tonic = "0.14"
prost = "0.14"
prost-types = "0.14"
tonic-prost = "0.14"
tonic-health = "0.14"
tonic-prost-build = "0.14"
tokio = "1.48"
tokio-stream = "0.1"
tokio-util = "0.7"
reqwest = { version = "0.12", features = ["stream"] }
anyhow = "1.0"
futures-core = "0.3"
futures-lite = "2.6"
futures-util = "0.3"
http = "1"
http-client = { path = "crates/http-client", default-features = false }
derive_builder = "0.20"
inventory = "0.3"
uuid = { version = "1", features = ["v4"] }
url = "2"
directories = "6.0"
smol-tar = "0.1"
regdiff-rs = { git = "https://github.com/bottlesdevs/regdiff-rs", rev = "3266ab15abca4ef470b1ec5797cfeaa24e003510" }