[package] name = "makepad-widgets" version = "2.0.0" authors = ["Makepad "] edition = "2021" description = "Makepad widgets2" license = "MIT OR Apache-2.0" homepage = "https://github.com/makepad/makepad/" repository = "https://github.com/makepad/makepad/" metadata.makepad-auto-version = "N0YGjn7dnhc4DEHmww9lwuYwMVI=" [dependencies] makepad-draw = { path = "../draw", version = "2.0.0" } makepad-derive-widget = {path = "./derive_widget", version="2.0.0"} makepad-mbtile-reader = { path = "../libs/mbtile_reader", version = "1.0.0", optional = true } i_overlay = { path = "../libs/i_overlay", version = "7.0.3", optional = true, default-features = false } makepad-fast-inflate = { path = "../libs/fast_inflate", optional = true } # Silero VAD (the speech gate) from the speech model family; only that module. makepad-ai-speech = { path = "../libs/ai/models/speech", default-features = false, features = ["vad"], optional = true } # Speech-to-text sessions (Whisper here / machine / LAN, else the OS engine). # No default features: only the speech pipes, never the image/video backends. makepad-ai-hub = { path = "../libs/ai/hub", default-features = false, features = ["stt"], optional = true } makepad-cef = { path = "../libs/cef", optional = true } makepad-html = { path = "../libs/html", version = "1.0.0" } unicode-segmentation = { version = "1.12.0", path = "../libs/unicode/unicode-segmentation" } pulldown-cmark = { version = "0.12.2", path = "../libs/pulldown-cmark", default-features = false, features = ["simd"] } makepad-latex-math = { path = "../libs/latex_math", version = "0.1.0" } makepad-pdf-parse = { path = "../libs/pdf_parse", version = "1.0.0", optional = true } ttf-parser = { path = "../libs/ttf-parser" } serde = { version = "1.0", optional = true, features = ["derive"] } [features] default = [] voice = ["dep:makepad-ai-speech", "dep:makepad-ai-hub"] maps = ["dep:makepad-mbtile-reader", "dep:makepad-fast-inflate", "dep:i_overlay"] pdf = ["dep:makepad-pdf-parse"] cef = ["dep:makepad-cef"] ## Enables certain public-facing types to derive serde serialization traits. serde = ["dep:serde", "makepad-draw/serde", "makepad-derive-widget/serde"]