-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (62 loc) · 2.15 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (62 loc) · 2.15 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
[package]
name = "rustcord"
version = "0.1.0"
edition = "2024"
[workspace]
resolver = "2"
[features]
default = ["audio", "microphone", "webview"]
audio = ["dep:rodio"]
microphone = ["dep:cpal"]
webview = ["dep:gtk", "dep:url", "dep:winit", "dep:wry"]
[dependencies]
eframe = { version = "0.31", default-features = false, features = [
"accesskit",
"default_fonts",
"glow",
"persistence",
"wayland",
"x11",
] }
egui = "0.31"
egui_extras = { version = "0.31", features = ["svg"] }
egui-twemoji = "0.7"
twemoji-assets = { version = "1.5", default-features = false, features = ["svg"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "multipart", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
urlencoding = "2"
tokio = { version = "1", features = ["rt-multi-thread", "time", "macros", "sync", "net", "process", "io-util"] }
futures-util = "0.3"
tokio-tungstenite = { version = "0.27", features = ["rustls-tls-webpki-roots"] }
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "gif", "webp"] }
crypto_secretbox = "0.2.0-pre.0"
chacha20poly1305 = "0.11.0-rc.1"
davey = "0.1.4"
ropus = "0.12"
rodio = { version = "0.21.1", optional = true, default-features = false, features = ["playback"] }
cpal = { version = "0.16", optional = true }
base64 = "0.22"
bytes = "1"
rand = "0.9"
sha2 = "0.10"
rsa = "0.9"
qrcode = "0.14"
prost = "0.13"
gtk = { version = "0.18.2", optional = true }
winit = { version = "0.30", optional = true }
wry = { version = "0.55.1", optional = true }
url = { version = "2", optional = true }
thiserror = "2"
uuid = { version = "1", features = ["v4"] }
webrtc = "0.17.1"
ashpd = { version = "0.13", default-features = false, features = ["tokio", "screencast"] }
libc = "0.2"
[target.'cfg(not(any(target_arch = "wasm32", target_os = "android")))'.dependencies]
arboard = { version = "3.6", default-features = false, features = ["image-data"] }
[profile.dev]
# Keep line tables for useful backtraces without hundreds of MiB of full debug info.
debug = 1
[profile.dev.package."*"]
# Dependencies rarely need source-level debugging during app development.
debug = false