Rollator/Cargo.toml

29 lines
912 B
TOML
Raw Normal View History

2024-08-12 21:24:37 +02:00
[package]
2024-08-12 23:44:00 +02:00
name = "rollator"
2024-08-12 21:24:37 +02:00
version = "0.1.0"
edition = "2021"
publish = false
authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT"
2024-08-12 23:44:00 +02:00
description = "GUI toolkit for tabletop games"
2024-08-12 21:24:37 +02:00
readme = "README.md"
2024-08-12 23:44:00 +02:00
homepage = "https://git.cscherr.de/PlexSheep/rollator"
repository = "https://git.cscherr.de/PlexSheep/rollator"
keywords = []
2024-08-12 21:24:37 +02:00
[dependencies]
2024-08-12 23:44:00 +02:00
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.
] }
log = "0.4"
env_logger = "0.10"
serde = "1.0.207"
libpt = { version = "0.6.0", features = ["cli"] }
clap = { version = "4.5.15", features = ["derive"] }
image = "0.25.2"