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.
|
|
|
|
] }
|
|
|
|
serde = "1.0.207"
|
|
|
|
libpt = { version = "0.6.0", features = ["cli"] }
|
|
|
|
clap = { version = "4.5.15", features = ["derive"] }
|
2024-08-13 16:31:14 +02:00
|
|
|
image = "0.25.2"
|
2024-08-13 17:15:18 +02:00
|
|
|
rand = "0.8.5"
|
2024-08-13 17:20:19 +02:00
|
|
|
rfd = "0.14.1"
|