Rollator/Cargo.toml

29 lines
910 B
TOML

[package]
name = "rollator"
version = "0.1.0"
edition = "2021"
publish = false
authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT"
description = "GUI toolkit for tabletop games"
readme = "README.md"
homepage = "https://git.cscherr.de/PlexSheep/rollator"
repository = "https://git.cscherr.de/PlexSheep/rollator"
keywords = []
[dependencies]
egui = "0.28.1"
eframe = { version = "0.28.1", default-features = true, 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.
] }
serde = "1.0.207"
libpt = { version = "0.6.0", features = ["cli"] }
clap = { version = "4.5.15", features = ["derive"] }
image = "0.25.2"
rand = "0.8.5"
rfd = "0.14.1"