deweygui 1.0.0

An agentic-first GUI framework with pluggable rendering backends and complete ontology for AI agent discoverability
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.85"
name = "deweygui"
version = "1.0.0"
authors = ["NERVOSYS <admin@nervosys.ai>"]
build = false
exclude = [
    "reference/",
    ".github/",
    "docs/",
    "scripts/",
    "CHAT-SUMMARY.md",
    "target/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An agentic-first GUI framework with pluggable rendering backends and complete ontology for AI agent discoverability"
homepage = "https://nervosys.ai/dewey"
documentation = "https://docs.rs/deweygui"
readme = "README.md"
keywords = [
    "gui",
    "egui",
    "wgpu",
    "agent",
    "ontology",
]
categories = [
    "gui",
    "rendering",
    "accessibility",
]
license = "AGPL-3.0-or-later"
repository = "https://github.com/nervosys/Dewey"

[features]
accesskit = ["dep:accesskit"]
agpu-backend = [
    "dep:agpu",
    "dep:winit",
    "dep:pollster",
]
default = ["egui-backend"]
derive = ["dep:dewey-derive"]
egui-backend = [
    "dep:egui",
    "dep:eframe",
]
ws-transport = ["dep:tungstenite"]

[lib]
name = "dewey"
path = "src/lib.rs"

[[example]]
name = "agent_demo"
path = "examples/agent_demo.rs"

[[example]]
name = "agent_headless"
path = "examples/agent_headless.rs"

[[example]]
name = "canvas_drawing"
path = "examples/canvas_drawing.rs"

[[example]]
name = "chat"
path = "examples/chat.rs"

[[example]]
name = "chat_agpu"
path = "examples/chat_agpu.rs"
required-features = ["agpu-backend"]

[[example]]
name = "counter"
path = "examples/counter.rs"

[[example]]
name = "counter_agpu"
path = "examples/counter_agpu.rs"
required-features = ["agpu-backend"]

[[example]]
name = "hello"
path = "examples/hello.rs"

[[example]]
name = "llm_chat"
path = "examples/llm_chat.rs"
required-features = ["agpu-backend"]

[[example]]
name = "ontology_explorer"
path = "examples/ontology_explorer.rs"

[[example]]
name = "showcase"
path = "examples/showcase.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"

[[test]]
name = "property_tests"
path = "tests/property_tests.rs"

[[bench]]
name = "core_benches"
path = "benches/core_benches.rs"
harness = false

[dependencies.accesskit]
version = "0.24"
optional = true

[dependencies.agpu]
version = "2.0.0"
optional = true
package = "aga"

[dependencies.compact_str]
version = "0.8"

[dependencies.dewey-derive]
version = "1.0.0"
optional = true

[dependencies.eframe]
version = "0.31"
features = [
    "default_fonts",
    "wgpu",
]
optional = true
default-features = false

[dependencies.egui]
version = "0.31"
optional = true

[dependencies.env_logger]
version = "0.11"

[dependencies.log]
version = "0.4"

[dependencies.pollster]
version = "0.4"
optional = true

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.serde_json]
version = "1"

[dependencies.tokio]
version = "1"
features = [
    "rt",
    "sync",
    "time",
    "macros",
]

[dependencies.tungstenite]
version = "0.24"
optional = true

[dependencies.winit]
version = "0.30"
optional = true

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.proptest]
version = "1"