[package]
edition = "2021"
name = "armas-basic"
version = "0.2.0"
authors = ["PoHsuan Lai"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core components and theme system for egui, inspired by shadcn/ui"
documentation = "https://pohsuanlai.github.io/Armas"
readme = "README.md"
keywords = [
"egui",
"ui",
"theme",
"components",
"material-design",
]
categories = ["gui"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/PoHsuanLai/Armas"
[lib]
name = "armas_basic"
path = "src/lib.rs"
[[test]]
name = "breadcrumbs_tests"
path = "tests/breadcrumbs_tests.rs"
[[test]]
name = "button_group_tests"
path = "tests/button_group_tests.rs"
[[test]]
name = "button_tests"
path = "tests/button_tests.rs"
[[test]]
name = "calendar_tests"
path = "tests/calendar_tests.rs"
[[test]]
name = "carousel_tests"
path = "tests/carousel_tests.rs"
[[test]]
name = "command_tests"
path = "tests/command_tests.rs"
[[test]]
name = "context_menu_tests"
path = "tests/context_menu_tests.rs"
[[test]]
name = "datepicker_tests"
path = "tests/datepicker_tests.rs"
[[test]]
name = "dialog_tests"
path = "tests/dialog_tests.rs"
[[test]]
name = "drawer_tests"
path = "tests/drawer_tests.rs"
[[test]]
name = "hover_card_tests"
path = "tests/hover_card_tests.rs"
[[test]]
name = "input_group_tests"
path = "tests/input_group_tests.rs"
[[test]]
name = "input_tests"
path = "tests/input_tests.rs"
[[test]]
name = "menu_tests"
path = "tests/menu_tests.rs"
[[test]]
name = "menubar_tests"
path = "tests/menubar_tests.rs"
[[test]]
name = "pagination_tests"
path = "tests/pagination_tests.rs"
[[test]]
name = "resizable_tests"
path = "tests/resizable_tests.rs"
[[test]]
name = "select_tests"
path = "tests/select_tests.rs"
[[test]]
name = "sheet_tests"
path = "tests/sheet_tests.rs"
[[test]]
name = "sidebar_tests"
path = "tests/sidebar_tests.rs"
[[test]]
name = "slider_tests"
path = "tests/slider_tests.rs"
[[test]]
name = "tabs_tests"
path = "tests/tabs_tests.rs"
[[test]]
name = "toggle_tests"
path = "tests/toggle_tests.rs"
[[test]]
name = "tree_view_tests"
path = "tests/tree_view_tests.rs"
[dependencies.armas-icon]
version = "0.2.0"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"wasmbind",
]
[dependencies.egui]
version = "0.33"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.eframe]
version = "0.33"
[dev-dependencies.egui_kittest]
version = "0.33"
features = [
"wgpu",
"snapshot",
]
[lints.clippy]
cast_possible_truncation = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
float_cmp = "allow"
needless_pass_by_ref_mut = "allow"
struct_excessive_bools = "allow"
suboptimal_flops = "allow"
too_many_arguments = "allow"
unused_self = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1