[package]
edition = "2024"
rust-version = "1.92"
name = "iconflow"
version = "2.1.0"
authors = ["FerrisMind"]
build = false
include = [
"/src/**/*",
"/assets/fonts/**/*.ttf",
"/assets/icons/*.png",
"/assets/icons/*.svg",
"/ASSETS_MANIFEST.json",
"/LICENSE",
"/README.md",
"/CHANGELOG.md",
"/Cargo.toml",
"/rust-toolchain.toml",
"/THIRD_PARTY_LICENSES_FONTS.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unified icon library for Rust GUI apps with 14 embedded icon packs (Bootstrap, Heroicons, Phosphor, Lucide, Tabler, and more). Type-safe API for egui, iced and more"
homepage = "https://github.com/FerrisMind/iconflow"
documentation = "https://docs.rs/iconflow"
readme = "README.md"
keywords = [
"icons",
"gui",
"egui",
"iced",
"fonts",
]
categories = [
"gui",
"graphics",
"rendering",
"visualization",
"embedded",
]
license = "MIT"
repository = "https://github.com/FerrisMind/iconflow"
[features]
all-packs = [
"pack-bootstrap",
"pack-carbon",
"pack-devicon",
"pack-feather",
"pack-fluentui",
"pack-heroicons",
"pack-iconoir",
"pack-ionicons",
"pack-lobe",
"pack-lucide",
"pack-octicons",
"pack-phosphor",
"pack-remixicon",
"pack-tabler",
"heroicons-tiny",
"heroicons-mini",
"octicons-tiny",
]
default = []
heroicons-mini = ["pack-heroicons"]
heroicons-tiny = ["pack-heroicons"]
octicons-tiny = ["pack-octicons"]
pack-bootstrap = []
pack-carbon = []
pack-devicon = []
pack-feather = []
pack-fluentui = []
pack-heroicons = []
pack-iconoir = []
pack-ionicons = []
pack-lobe = []
pack-lucide = []
pack-octicons = []
pack-phosphor = []
pack-remixicon = []
pack-tabler = []
[lib]
name = "iconflow"
path = "src/lib.rs"
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.eframe]
version = "0.33"
[dev-dependencies.iced]
version = "0.14"
features = ["advanced"]
[lints.clippy.all]
level = "warn"
priority = -1
[profile.bench]
panic = "unwind"
strip = "none"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"