forked from Satellite-im/Uplink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
88 lines (79 loc) · 2.6 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[workspace]
members = [
"kit",
"ui",
"icons",
"common",
"extensions",
"native_extensions/emoji_selector",
]
[profile.rapid]
inherits = "dev"
opt-level = 2
incremental = true
overflow-checks = false
lto = "thin"
panic = "unwind"
codegen-units = 32
[profile.release.build-override]
opt-level = 3
codegen-units = 1
[workspace.package]
version = "0.1.6"
rust-version = "1.70"
[workspace.dependencies]
wry = { version = "0.27.2" }
dioxus = { git = "https://github.com/DioxusLabs/dioxus", rev = "73a2beb3275007a6550adc5c420f36e31b7ddef7" }
dioxus-hooks = { git = "https://github.com/DioxusLabs/dioxus", rev = "73a2beb3275007a6550adc5c420f36e31b7ddef7" }
dioxus-html = { git = "https://github.com/DioxusLabs/dioxus", rev = "73a2beb3275007a6550adc5c420f36e31b7ddef7" }
dioxus-router = { git = "https://github.com/DioxusLabs/dioxus", rev = "73a2beb3275007a6550adc5c420f36e31b7ddef7" }
dioxus-desktop = { git = "https://github.com/DioxusLabs/dioxus", rev = "73a2beb3275007a6550adc5c420f36e31b7ddef7", features = [
"transparent",
] }
raw-window-handle = "0.5"
dioxus-core = { git = "https://github.com/DioxusLabs/dioxus", rev = "73a2beb3275007a6550adc5c420f36e31b7ddef7" }
fermi = { git = "https://github.com/DioxusLabs/dioxus", rev = "73a2beb3275007a6550adc5c420f36e31b7ddef7" }
tokio-util = { version = "0.7", features = ["full"] }
arboard = "3.2"
humansize = "2.1.3"
uuid = { version = "1", features = ["serde", "v4"] }
libloading = "0.7.4"
warp = { git = "https://github.com/Satellite-im/Warp", rev = "5c1ee51e14ddd8f9c87e0e034cbe6455f48f05af" }
warp-ipfs = { git = "https://github.com/Satellite-im/Warp", rev = "5c1ee51e14ddd8f9c87e0e034cbe6455f48f05af" }
warp-blink-wrtc = { git = "https://github.com/Satellite-im/Warp", rev = "5c1ee51e14ddd8f9c87e0e034cbe6455f48f05af" }
rfd = "0.11.3"
mime = "0.3.16"
serde = "1.0"
serde_json = "1.0"
chrono = "0.4"
either = "1"
base64 = "0.20.0"
timeago = "0.4.0"
dirs = "4.0.0"
regex = "1.6.1"
opener = "0.5.0"
open = "3.2.0"
derive_more = "0.99"
colored = "2.0.0"
notify = "5.1.0"
rand = "0.8"
notify-rust = { version = "4.6.0", default-features = false, features = ["d"] }
titlecase = "2.2.1"
tempfile = "3.0.7"
fdlimit = "0.2"
once_cell = "1.17"
futures = "0.3"
tokio = { version = "1", features = ["full"] }
isolang = "2.2.0"
clap = { version = "4.1", features = ["derive"] }
fs_extra = "1.3"
walkdir = "2"
zip = "0.6.4"
image = "0.24"
linkify = "0.9.0"
reqwest = { version = "0.11", default-features=false, features = ["json", "rustls-tls", "stream"] }
select = "0.6.0"
common = { path = "common" }
extensions = { path = "extensions" }
kit = { path = "kit" }
icons = { path = "icons" }