gitdataai/libs/api/Cargo.toml
ZhenYi 14f6e1e500 feat(core): initialize project with access control and AI integration
- 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
2026-05-03 06:04:31 +08:00

56 lines
1.6 KiB
TOML

[package]
name = "api"
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 = "api"
[[bin]]
path = "gen_api.rs"
name = "gen_api"
[dependencies]
db = { workspace = true }
config = { workspace = true }
queue = { workspace = true }
email = { workspace = true }
tracing = { workspace = true }
service = { workspace = true }
session = { workspace = true }
git = { workspace = true }
#frontend = { workspace = true }
models = { workspace = true }
room = { workspace = true }
transport = { workspace = true }
serde = { workspace = true, features = ["derive"] }
utoipa = { workspace = true, features = ["actix_extras", "chrono", "uuid", "preserve_order", "macros", "time"] }
serde_json = { workspace = true }
actix-web = { workspace = true }
uuid = { workspace = true }
anyhow = { workspace = true }
actix-cors = { workspace = true }
base64 = { workspace = true }
actix-ws = { workspace = true, features = [] }
actix = { workspace = true, features = ["macros"] }
tokio-stream = { workspace = true, features = ["sync"] }
futures = { workspace = true }
futures-util = { workspace = true }
tokio = { workspace = true, features = ["sync", "rt"] }
chrono = { workspace = true }
mime_guess2 = { workspace = true, features = ["phf-map"] }
sea-orm = "2.0.0-rc.37"
rust_decimal = "1.40.0"
actix-multipart = { workspace = true, features = ["tempfile"] }
redis = { workspace = true }
[lints]
workspace = true