-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (37 loc) · 1005 Bytes
/
Cargo.toml
File metadata and controls
44 lines (37 loc) · 1005 Bytes
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
[package]
name = "open_speed_run"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "openspeedrun"
path = "src/main.rs"
[[bin]]
name = "openspeedrun-cli"
path = "src/cli/main.rs"
[[bin]]
name = "openspeedrun-cfg"
path = "src/cfg/main.rs"
[lib]
name = "openspeedrun"
path = "src/lib.rs"
[dependencies]
bytemuck = "1.14"
chrono = { version = "0.4", features = ["serde"] }
dirs = "6"
eframe = {version = "0.34", features = ["glow"] }
egui = "0.34"
egui_extras = { version = "0.34", features = ["syntect"] }
egui-phosphor = "0.11"
image = "0.25"
include_dir = "0.7"
rfd = "0.17"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
syntect = { version = "5.0", features = ["yaml-load"] }
tokio = { version = "1", features = ["full"] }
[target.'cfg(windows)'.dependencies]
named_pipe = "0.4.1"
rdev = "0.5"
winapi = { version = "0.3", features = ["winbase"] }
[patch.crates-io]
egui-phosphor = { git = "https://github.com/SrWither/egui-phosphor" }