botui/Cargo.toml

73 lines
1.5 KiB
TOML
Raw Normal View History

2025-12-03 18:42:22 -03:00
[package]
name = "botui"
2026-02-05 11:20:06 -03:00
version = "6.1.2"
2025-12-03 18:42:22 -03:00
edition = "2021"
description = "General Bots UI - Pure web interface"
2025-12-03 18:42:22 -03:00
license = "AGPL-3.0"
2025-12-21 23:40:44 -03:00
repository = "https://github.com/GeneralBots/BotServer"
keywords = ["chatbot", "ui", "web-interface", "general-bots"]
categories = ["web-programming", "gui"]
2025-12-03 18:42:22 -03:00
[dependencies.botlib]
2026-01-23 09:37:48 -03:00
workspace = true
2025-12-03 18:42:22 -03:00
features = ["http-client"]
[features]
default = ["ui-server", "chat", "drive", "tasks", "admin"]
2025-12-03 18:42:22 -03:00
ui-server = []
embed-ui = ["rust-embed"]
2025-12-03 18:42:22 -03:00
# App Features
chat = []
mail = []
calendar = []
drive = []
tasks = []
docs = []
paper = []
sheet = []
slides = []
meet = []
research = []
analytics = []
monitoring = []
admin = []
settings = []
sources = []
attendant = []
tools = []
video = []
learn = []
social = []
dashboards = []
designer = []
workspace = []
project = []
goals = []
player = []
canvas = []
people = []
billing = []
products = []
2026-01-23 09:37:48 -03:00
editor = []
tickets = []
2025-12-03 18:42:22 -03:00
[dependencies]
2026-01-23 09:37:48 -03:00
anyhow = { workspace = true }
axum = { workspace = true }
futures-util = { workspace = true }
log = { workspace = true }
mime_guess.workspace = true
2026-01-23 09:37:48 -03:00
native-tls = { workspace = true }
reqwest = { workspace = true, features = ["json"] }
rust-embed = { workspace = true, optional = true }
2026-01-23 09:37:48 -03:00
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["full"] }
2026-01-24 22:06:22 -03:00
tokio-tungstenite = { workspace = true, features = ["native-tls", "connect"] }
2026-01-23 09:37:48 -03:00
tower-http = { workspace = true, features = ["cors", "fs", "trace"] }
2025-12-21 23:40:44 -03:00
[lints]
workspace = true