[package]
edition = "2024"
rust-version = "1.86.0"
name = "egui_font_loader"
version = "0.34.1"
authors = ["RakuJa"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Egui simple font loader"
readme = "README.md"
keywords = [
"egui",
"font",
"loader",
]
license = "MIT"
repository = "https://github.com/RakuJa/egui_font_loader"
[lib]
name = "egui_font_loader"
path = "src/lib.rs"
[dependencies.egui]
version = "0.34.1"
[dependencies.thiserror]
version = "2"
[lints.clippy.cast_possible_truncation]
level = "allow"
priority = 2
[lints.clippy.cast_precision_loss]
level = "allow"
priority = 2
[lints.clippy.future_not_send]
level = "allow"
priority = 2
[lints.clippy.module_name_repetitions]
level = "allow"
priority = 2
[lints.clippy.nursery]
level = "warn"
priority = 1
[lints.clippy.pedantic]
level = "warn"
priority = 1
[lints.clippy.struct_field_names]
level = "allow"
priority = 2
[lints.rust]
unsafe_code = "forbid"