- Add gitignore and prettier configuration files for project scaffolding - Implement room access control service with project member verification - Create user access key management with CRUD operations and activity logging - Add accordion UI component for frontend expandable sections - Implement room AI configuration with list, upsert, and delete operations - Add AI event types for agent join/leave/status change tracking - Create streaming AI processing services for mode and react patterns - Build room AI service with model detection and idempotency handling - Integrate chat service orchestration for AI message processing - Add typing indicators and stream cancellation for AI interactions - Implement mention parsing and context extraction for AI agents
51 lines
1.4 KiB
TOML
51 lines
1.4 KiB
TOML
[package]
|
|
name = "transport"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
homepage.workspace = true
|
|
license.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
documentation.workspace = true
|
|
[lib]
|
|
path = "lib.rs"
|
|
name = "transport"
|
|
[dependencies]
|
|
tokio = { workspace = true, features = ["full"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
actix-web = { workspace = true }
|
|
actix-ws = { workspace = true }
|
|
actix = { workspace = true }
|
|
serde_json = { workspace = true, features = [] }
|
|
session = { workspace = true }
|
|
db = { workspace = true }
|
|
service = { workspace = true }
|
|
queue = { workspace = true }
|
|
tokio-stream = { workspace = true }
|
|
uuid = { workspace = true }
|
|
tracing = { workspace = true }
|
|
room = { workspace = true }
|
|
models = { workspace = true }
|
|
observability = { workspace = true }
|
|
email = { workspace = true }
|
|
config = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
async-nats = { workspace = true }
|
|
redis = { workspace = true, features = ["cluster-async"] }
|
|
hex = { workspace = true }
|
|
rand = { workspace = true, features = [] }
|
|
base64 = { workspace = true }
|
|
hmac = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
chrono = { workspace = true }
|
|
sea-orm = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|