-
Notifications
You must be signed in to change notification settings - Fork 65
/
Cargo.toml
72 lines (62 loc) · 1.98 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
[package]
name = "halloy"
version = "0.1.0"
authors = ["Casper Rogild Storm", "Cory Forsstrom"]
description = "Halloy is an open-source IRC client written in Rust, with the Iced GUI library. It aims to provide a simple and fast client for Mac, Windows, and Linux platforms."
documentation = "https://halloy.squidowl.org/"
license = "GPL-3.0-or-later"
edition = "2021"
[features]
default = []
debug = ["iced/debug"]
dev = ["debug", "data/dev"]
[dependencies]
data = { version = "0.1.0", path = "data" }
ipc = { version = "0.1.0", path = "ipc" }
notify-rust = "4"
chrono = { version = "0.4", features = ['serde'] }
fern = "0.6.1"
iced = { version = "0.14.0-dev", default-features = false, features = [
"wgpu",
"tiny-skia",
"fira-sans",
"tokio",
"lazy",
"advanced",
"image",
"multi-window",
] }
log = "0.4.16"
once_cell = "1.18"
palette = "0.7.4"
thiserror = "1.0.30"
tokio = { version = "1.0", features = ["rt", "fs", "process"] }
unicode-segmentation = "1.6"
open = "5.0.1"
bytesize = "1.3.0"
timeago = "0.4.2"
futures = "0.3.30"
itertools = "0.13.0"
rodio = "0.19.0"
strum = { version = "0.26.3", features = ["derive"] }
tokio-stream = { version = "0.1.16", features = ["fs"] }
# change to 1.2.0 when it is released https://github.com/frewsxcv/rust-dark-light/issues/38
dark-light = { git = "https://github.com/frewsxcv/rust-dark-light", rev = "3eb3e93dd0fa30733c3e93082dd9517fb580ae95" }
anyhow = "1.0.91"
[dependencies.uuid]
version = "1.0"
features = ["v4"]
[dependencies.rfd]
version = "0.14.1"
default-features = false
features = ["xdg-portal", "tokio"]
[target.'cfg(windows)'.dependencies]
image = "0.24.6"
[target.'cfg(windows)'.build-dependencies]
embed-resource = "2.1.1"
windows_exe_info = "0.4"
[workspace]
members = ["data", "ipc", "irc", "irc/proto"]
[patch.crates-io]
iced = { git = "https://github.com/iced-rs/iced", rev = "d660fad33d97cf78507c6797b5fe45b3daf47454" }
iced_core = { git = "https://github.com/iced-rs/iced", rev = "d660fad33d97cf78507c6797b5fe45b3daf47454" }