-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
83 lines (75 loc) · 2.65 KB
/
Cargo.toml
File metadata and controls
83 lines (75 loc) · 2.65 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
name = "irminsul"
version = "0.1.15"
authors = ["Konkers <konkers@konkers.net>"]
edition = "2024"
include = ["LICENSE-APACHE", "LICENSE-MIT", "**/*.rs", "Cargo.toml"]
rust-version = "1.85"
[package.metadata.docs.rs]
all-features = true
targets = ["x86_64-unknown-linux-gnu", "wasm32-unknown-unknown"]
[dependencies]
anime-game-data = { git = "https://github.com/konkers/anime-game-data", rev = "d5dc51754ac96d65ad1201c85cd03cc9dc35bb72" }
anyhow = "1.0.99"
async-watcher = "0.3.0"
auto-artifactarium = { git = "https://github.com/konkers/auto-artifactarium", rev = "c5fa36b84e05ad0339fee8a0a420d26900b824b7" }
base64 = "0.22.1"
chrono = "0.4.42"
clap = { version = "4.5.47", features = ["derive"] }
ctrlc = "3.4.7"
eframe = { version = "0.32", default-features = false, features = [
"accesskit", # Make egui compatible with screen readers. NOTE: adds a lot of dependencies.
"default_fonts", # Embed the default egui fonts.
"glow", # Use the glow rendering backend. Alternative: "wgpu".
"persistence", # Enable restoring app state when restarting the app.
"wayland", # To support Linux (and CI)
"x11", # To support older Linux distributions (restores one of the default features)
] }
egui = "0.32"
egui-file-dialog = "0.11.0"
egui-notify = "0.20.0"
egui_extras = { version = "0.32.2", features = ["image", "svg", "webp"] }
egui_material_icons = "0.4.0"
env_logger = "0.11.8"
futures = "0.3.31"
futures-util = "0.3.31"
indexmap = "2.11.1"
log = "0.4.27"
notify = "5.2.0"
open = "5.3.2"
regex = "1.11.2"
reqwest = { version = "0.12.23", features = ["gzip", "stream"] }
self_update = "0.42.0"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.143", features = ["alloc"] }
tempfile = "3.21.0"
tokio = { version = "1.47.1", features = [
"rt",
"tokio-macros",
"macros",
"rt-multi-thread",
] }
tokio-util = "0.7.16"
tracing = { version = "0.1.41" }
tracing-appender = "0.2.3"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
[target.'cfg(windows)'.dependencies]
pktmon = { version = "0.6.2", features = ["tokio"] }
windows = { version = "0.61.3", features = [
"Win32_System_Console",
"Win32_System_Registry",
"Win32_UI_Shell",
] }
[build-dependencies]
winresource = "0.1.23"
[profile.release]
opt-level = 2 # fast and small wasm
# Optimize all dependencies even in debug builds:
[profile.dev.package."*"]
opt-level = 2
# Uncomment for local debugging
# [patch."https://github.com/konkers/anime-game-data"]
# anime-game-data = { path = "../anime-game-data" }
# Uncomment for local debugging
# [patch."https://github.com/konkers/auto-artifactarium"]
# auto-artifactarium = { path = "../auto-artifactarium" }