[package]
edition = "2024"
rust-version = "1.95"
name = "kr580"
version = "1.0.0"
build = "build.rs"
exclude = [
"assets/icons/icon.png",
"assets/icons/file-580.png",
"assets/icons/installer-setup.png",
"assets/icons/installer-uninstall.png",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "kr"
description = "Desktop KR580VM80 / Intel 8080 emulator."
homepage = "https://github.com/WhoSowSee/KR580"
readme = "README-EN.md"
keywords = [
"emulator",
"8080",
"kr580",
"desktop",
]
categories = ["emulators"]
license = "MIT"
repository = "https://github.com/WhoSowSee/KR580"
[lib]
name = "k580_ui"
path = "src/lib.rs"
[[bin]]
name = "k580"
path = "src/main.rs"
[[bin]]
name = "k580-installer"
path = "src/bin/k580-installer.rs"
[[bin]]
name = "k580-uninstaller"
path = "src/bin/k580-uninstaller.rs"
[[bin]]
name = "kr"
path = "src/bin/kr.rs"
[[test]]
name = "app_commands"
path = "tests/app_commands.rs"
[[test]]
name = "device_bus"
path = "tests/device_bus.rs"
[[test]]
name = "export_options"
path = "tests/export_options.rs"
[[test]]
name = "monitor_text_geometry"
path = "tests/monitor_text_geometry.rs"
[[test]]
name = "network_commands"
path = "tests/network_commands.rs"
[[test]]
name = "persistence_formats"
path = "tests/persistence_formats.rs"
[[test]]
name = "printer_commands"
path = "tests/printer_commands.rs"
[[test]]
name = "square_program"
path = "tests/square_program.rs"
[[test]]
name = "storage_commands"
path = "tests/storage_commands.rs"
[dependencies.calamine]
version = "0.35"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.iced]
version = "0.14.0"
features = [
"tokio",
"image",
"svg",
"canvas",
"advanced",
]
[dependencies.image]
version = "0.25"
[dependencies.k580-core]
version = "1.0.0"
[dependencies.png]
version = "0.17"
[dependencies.printpdf]
version = "0.9.1"
features = ["text_layout"]
default-features = false
[dependencies.rfd]
version = "0.15"
[dependencies.rust_xlsxwriter]
version = "0.92"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"time",
"net",
"io-util",
"fs",
"sync",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_Globalization",
"Win32_Graphics_Dwm",
"Win32_Graphics_Gdi",
"Win32_Security",
"Win32_System_Registry",
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
]
[target."cfg(windows)".build-dependencies.winresource]
version = "0.1"