[package]
edition = "2024"
name = "tael-gui"
version = "0.5.12"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Desktop GUI for tael, embedded by the `tael gui` command"
readme = false
keywords = [
"observability",
"opentelemetry",
"tracing",
"cli",
"ai-agents",
]
categories = [
"command-line-utilities",
"development-tools::profiling",
]
license = "MIT"
repository = "https://github.com/thousandbirdsinc/tael"
resolver = "2"
[lib]
name = "tael_gui_lib"
crate-type = [
"staticlib",
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bin]]
name = "tael-gui"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"blocking",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tauri]
version = "2"
features = ["webview-data-url"]
[dependencies.tokio]
version = "1"
features = ["full"]
[build-dependencies.tauri-build]
version = "2"
features = []