2025-06-19 23:16:57 -03:00
|
|
|
[package]
|
|
|
|
|
name = "gbserver"
|
2024-12-22 20:56:52 -03:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
2025-06-30 10:14:25 -03:00
|
|
|
authors = ["Rodrigo Rodriguez <me@rodrigorodriguez.com>"]
|
|
|
|
|
description = "General Bots Server"
|
2025-10-04 20:42:49 -03:00
|
|
|
license = "AGPL-3.0"
|
2025-06-30 10:14:25 -03:00
|
|
|
repository = "https://alm.pragmatismo.com.br/generalbots/gbserver"
|
2024-12-22 20:56:52 -03:00
|
|
|
|
2025-08-16 18:13:03 -03:00
|
|
|
[features]
|
2025-10-04 20:42:49 -03:00
|
|
|
default = ["postgres", "qdrant"]
|
2025-08-16 18:13:03 -03:00
|
|
|
local_llm = []
|
2025-10-04 20:42:49 -03:00
|
|
|
postgres = ["sqlx/postgres"]
|
|
|
|
|
qdrant = ["langchain-rust/qdrant"]
|
2025-08-16 18:13:03 -03:00
|
|
|
|
2025-06-19 23:16:57 -03:00
|
|
|
[dependencies]
|
2025-10-04 20:42:49 -03:00
|
|
|
actix-cors = "0.7"
|
|
|
|
|
actix-multipart = "0.7"
|
|
|
|
|
actix-web = "4.9"
|
|
|
|
|
actix-ws = "0.3"
|
2025-07-17 20:26:26 -03:00
|
|
|
anyhow = "1.0"
|
|
|
|
|
async-stream = "0.3"
|
2025-10-04 20:42:49 -03:00
|
|
|
async-trait = "0.1"
|
|
|
|
|
aes-gcm = "0.10"
|
|
|
|
|
argon2 = "0.5"
|
|
|
|
|
base64 = "0.22"
|
|
|
|
|
bytes = "1.8"
|
2025-07-02 14:22:11 -03:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2025-03-08 21:51:28 -03:00
|
|
|
dotenv = "0.15"
|
2025-10-04 20:42:49 -03:00
|
|
|
downloader = "0.2"
|
|
|
|
|
env_logger = "0.11"
|
2025-07-17 20:26:26 -03:00
|
|
|
futures = "0.3"
|
|
|
|
|
futures-util = "0.3"
|
2025-10-04 20:42:49 -03:00
|
|
|
imap = "2.4"
|
|
|
|
|
langchain-rust = { version = "4.6", features = ["qdrant", "postgres"] }
|
|
|
|
|
lettre = { version = "0.11", features = ["smtp-transport", "builder", "tokio1", "tokio1-native-tls"] }
|
|
|
|
|
livekit = "0.7"
|
|
|
|
|
log = "0.4"
|
|
|
|
|
mailparse = "0.15"
|
2025-06-30 10:14:25 -03:00
|
|
|
minio = { git = "https://github.com/minio/minio-rs", branch = "master" }
|
2025-07-04 10:39:31 -03:00
|
|
|
native-tls = "0.2"
|
2025-10-04 20:42:49 -03:00
|
|
|
num-format = "0.4"
|
|
|
|
|
qdrant-client = "1.12"
|
|
|
|
|
rhai = "1.22"
|
|
|
|
|
redis = { version = "0.27", features = ["tokio-comp"] }
|
|
|
|
|
regex = "1.11"
|
|
|
|
|
reqwest = { version = "0.12", features = ["json", "stream"] }
|
|
|
|
|
scraper = "0.20"
|
2025-06-19 23:16:57 -03:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
|
serde_json = "1.0"
|
2025-10-04 20:42:49 -03:00
|
|
|
smartstring = "1.0"
|
|
|
|
|
sqlx = { version = "0.8", features = ["time", "uuid", "runtime-tokio-rustls", "postgres", "chrono"] }
|
2025-06-30 10:14:25 -03:00
|
|
|
tempfile = "3"
|
2025-10-04 20:42:49 -03:00
|
|
|
thirtyfour = "0.34"
|
|
|
|
|
tokio = { version = "1.41", features = ["full"] }
|
|
|
|
|
tokio-stream = "0.1"
|
2025-06-30 10:14:25 -03:00
|
|
|
tracing = "0.1"
|
2025-07-02 14:22:11 -03:00
|
|
|
tracing-subscriber = { version = "0.3", features = ["fmt"] }
|
2025-07-21 12:16:17 -03:00
|
|
|
urlencoding = "2.1"
|
2025-10-04 20:42:49 -03:00
|
|
|
uuid = { version = "1.11", features = ["serde", "v4"] }
|
|
|
|
|
zip = "2.2"
|