-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
74 lines (64 loc) · 1.72 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
edition = "2021"
publish = false
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.dependencies]
midoku-bindings = { git = "https://github.com/midokuapp/midoku-rs.git" }
midoku-config = { path = "crates/midoku-config" }
midoku-macros = { path = "crates/midoku-macros" }
midoku-path = { path = "crates/midoku-path" }
midoku-store = { path = "crates/midoku-store" }
midoku-theme = { path = "crates/midoku-theme" }
# dioxus = { git = "https://github.com/DioxusLabs/dioxus.git" }
dioxus = "0.6.1"
dioxus-free-icons = { version = "0.9", features = ["lucide"] }
flate2 = "1.0.34"
reqwest = { version = "0.12.12", default-features = false, features = [
"rustls-tls",
"charset",
"http2",
"macos-system-configuration",
] }
serde = "1.0.217"
serde_json = "1.0.134"
tar = "0.4.43"
thiserror = "2.0.9"
tokio = "1.43.0"
[package]
name = "midoku"
version = "0.1.0"
authors = ["Youn Mélois <[email protected]>"]
edition.workspace = true
publish.workspace = true
license = "GPL-3.0-or-later"
[dependencies]
midoku-bindings.workspace = true
midoku-config.workspace = true
midoku-path.workspace = true
midoku-store.workspace = true
midoku-theme.workspace = true
dioxus = { workspace = true, features = ["router"] }
dioxus-free-icons.workspace = true
flate2.workspace = true
reqwest = { workspace = true, features = ["json"] }
serde.workspace = true
serde_json.workspace = true
tar.workspace = true
thiserror.workspace = true
tokio.workspace = true
[features]
default = ["desktop"]
desktop = ["dioxus/desktop"]
mobile = ["dioxus/mobile"]
[profile]
[profile.wasm-dev]
inherits = "dev"
opt-level = 1
[profile.server-dev]
inherits = "dev"
[profile.android-dev]
inherits = "dev"