-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (37 loc) · 1.16 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
[package]
name = "twitchy-mcbotface"
version = "0.1.0"
edition = "2021"
[lib]
name = "tmbf"
path = "src/lib.rs"
[[bin]]
name = "twitchy-mcbotface"
path = "src/main.rs"
[dependencies]
thiserror = "~1.0"
anyhow = "~1.0"
glow = "0.11"
glutin = "0.28.0"
#egui_glow = "0.17.0"
egui_glow = { path = "/home/wayne/projects/egui/egui_glow", features = [ "epi", "winit", "persistence" ] }
egui-winit = { path = "/home/wayne/projects/egui/egui-winit", features = [ "epi" ] }
winit = "0.26.1"
egui = { path = "/home/wayne/projects/egui/egui", default-features = true, features = [ "bytemuck" ] }
epi = { path = "/home/wayne/projects/egui/epi", features = [ "file_storage" ] }
epaint = { path = "/home/wayne/projects/egui/epaint" }
emath = { path = "/home/wayne/projects/egui/emath" }
egui_extras = { path = "/home/wayne/projects/egui/egui_extras" }
ndi-sdk = { path = "/home/wayne/projects/rust-ndi" }
image = "~0.24"
twitch-irc = { version = "~4.0", features = [ "with-serde" ] }
tokio = { version = "~1.17", features = [
"rt-multi-thread",
"rt",
] }
futures = "~0.3"
lock_api = "~0.4"
# config serialization/deserialization
serde = "1.0"
serde_yaml = "0.8"
unicode-segmentation = "~1.9"