[package]
edition = "2024"
rust-version = "1.90"
name = "bezel-icons"
version = "0.1.23"
authors = ["clearloop <tianyi.gc@gmail.com>"]
build = "build.rs"
include = [
"src/**/*.rs",
"assets/**",
"build.rs",
"tests/**/*.rs",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Lucide icon set, ported into typed gpui-ready SVG constants"
homepage = "https://github.com/crabtalk/bezel"
readme = "README.md"
keywords = [
"gpui",
"gui",
"ui",
"components",
]
categories = ["gui"]
license = "MIT"
repository = "https://github.com/crabtalk/bezel"
resolver = "2"
[features]
accessibility = []
account = []
animals = []
arrows = []
buildings = []
charts = []
communication = []
connectivity = []
cursors = []
default = []
design = []
development = []
devices = []
emoji = []
files = []
finance = []
food-beverage = []
full = [
"accessibility",
"account",
"animals",
"arrows",
"buildings",
"charts",
"communication",
"connectivity",
"cursors",
"design",
"development",
"devices",
"emoji",
"files",
"finance",
"food-beverage",
"gaming",
"home",
"layout",
"mail",
"math",
"medical",
"multimedia",
"nature",
"navigation",
"notifications",
"people",
"photography",
"science",
"seasons",
"security",
"shapes",
"shopping",
"social",
"sports",
"sustainability",
"text",
"time",
"tools",
"transportation",
"travel",
"weather",
]
gaming = []
home = []
layout = []
mail = []
math = []
medical = []
multimedia = []
nature = []
navigation = []
notifications = []
people = []
photography = []
science = []
seasons = []
security = []
shapes = []
shopping = []
social = []
sports = []
sustainability = []
text = []
time = []
tools = []
transportation = []
travel = []
weather = []
[lib]
name = "icons"
path = "src/lib.rs"
[[test]]
name = "icons"
path = "tests/icons.rs"
required-features = ["full"]
[dependencies.gpui]
version = "0.3.10"
package = "bezel-gpui"
[dev-dependencies.usvg]
version = "0.46"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(feature, values("cargo-clippy"))']