-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
91 lines (77 loc) · 2.35 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
89
90
91
[workspace]
members = [
".",
"./crates/steel_core",
"./crates/glass",
"./visual-tests",
]
[workspace.dependencies]
eframe = "0.30"
egui_extras = "0.30"
ecolor = "0.30"
# Supporting library for rodio's "alsa-sys" dependency: librust-alsa-sys-dev
# TODO(TicClick): The fork is a workaround for Windows not respecting default audio device change.
# It can be removed along with TicClick/cpal once https://github.com/RustAudio/rodio/issues/463 is resolved.
rodio = { git = "https://github.com/TicClick/rodio.git", branch = "master" } # v0.17.3
# other dependencies
chrono = { version = "0.4.39", features = ["serde"] }
irc = "1.0.0"
irc-proto = "1.0.0"
futures = "0.3.31"
serde = "1.0.216"
serde_yaml = "0.9.34"
serde_json = "1.0.133"
tokio = { version = "1.42.0", features = ["rt"] }
thiserror = "2.0.8"
simplelog = "0.12.2"
log = "0.4.22"
log-panics = { version = "2.1.0", features = ["with-backtrace"] }
time = { version = "0.3.37", features = ["macros"] }
percent-encoding = "2.3.1"
ureq = { version = "2.12.1", features = ["json", "native-tls"] }
flate2 = "1.0.35"
tar = "0.4.43"
zip = "2.2.2"
md5 = "0.7.0"
png = "0.17.16"
winresource = "0.1.19"
winit-test = "0.2.0"
[package]
name = "steel"
version = "0.8.5"
edition = "2021"
build = "src/build.rs"
[build-dependencies]
winresource = "0.1"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
steel_core = { version = "*", path = "./crates/steel_core" }
glass = { version = "*", path = "./crates/glass", optional = true}
eframe = { workspace = true }
egui_extras = { workspace = true }
chrono = { workspace = true }
irc = { workspace = true }
irc-proto = { workspace = true }
futures = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_yaml = { workspace = true }
tokio = { workspace = true }
thiserror = { workspace = true }
simplelog = { workspace = true }
log = { workspace = true }
log-panics = { workspace = true }
time = { workspace = true }
percent-encoding = { workspace = true }
ureq = { workspace = true }
flate2 = { workspace = true }
tar = { workspace = true }
zip = { workspace = true }
md5 = { workspace = true }
rodio = { workspace = true }
png = { workspace = true }
winresource = { workspace = true }
serde_json = { workspace = true }
winit-test = { workspace = true }
[features]
default = []
glass = ["dep:glass"]