forked from pisilinux-rs/yali-rs
80e3559d0d
- Split src/jobs/mod.rs into specialized domain files under src/jobs/ (autologin, bootloader, execution, finish, keyboard, location, netinstall, network, partition, users) for better modularity and cleaner architecture. - Integrated chrono-tz and enabled serde features on chrono in Cargo.toml. - Added missing assets (remixicon font, icons, slides images/configs). - Integrated localized slideshow presentation directly into UI, reading configurations from TOML. - Updated Makefile to correctly target and install slideshow files into system directories. - Cleaned up obsolete bin utility slides_test.rs.
29 lines
815 B
TOML
29 lines
815 B
TOML
[package]
|
||
name = "yali-rs"
|
||
version = "4.0.0"
|
||
edition = "2024"
|
||
default-run = "yali-rs"
|
||
|
||
[dependencies]
|
||
eframe = { version = "0.27", features = ["default", "wgpu"] }
|
||
egui_extras = { version = "0.27", features = ["image", "file", "svg"] }
|
||
image = { version = "0.24", features = ["png"] }
|
||
serde = { version = "1.0", features = ["derive"] }
|
||
toml = "0.8" # answer file ayrıştırma
|
||
zbus = "4.0"
|
||
tokio = { version = "1.0", features = ["full"] }
|
||
sysinfo = "0.30"
|
||
rust-i18n = "3.1"
|
||
lazy_static = "1.4"
|
||
async-trait = "0.1"
|
||
chrono = { version = "0.4", features = ["serde"] }
|
||
chrono-tz = "0.8"
|
||
xkbcommon = "0.9"
|
||
|
||
[[bin]]
|
||
name = "yali-rs"
|
||
path = "src/main.rs"
|
||
|
||
[patch.crates-io]
|
||
# Yerel mudur veya comar-api kütüphaneleri buraya eklenebilir
|