gbserver/Cargo.toml

63 lines
1.5 KiB
TOML
Raw Normal View History

[package]
name = "gbserver"
2024-12-22 20:56:52 -03:00
version = "0.1.0"
edition = "2021"
authors = ["Rodrigo Rodriguez <me@rodrigorodriguez.com>"]
description = "General Bots Server"
license = "AGPL"
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]
default = []
local_llm = []
[dependencies]
2025-07-04 10:39:31 -03:00
actix-cors = "0.6"
actix-multipart = "0.6"
actix-web = "4"
2025-08-14 09:42:05 -03:00
actix-ws = "0.3.0"
thirtyfour = { version = "0.30" }
downloader = "0.2.8"
anyhow = "1.0"
async-stream = "0.3"
2025-07-04 23:20:48 -03:00
bytes = "1.1"
2025-07-02 14:22:11 -03:00
chrono = { version = "0.4", features = ["serde"] }
dotenv = "0.15"
env_logger = "0.10"
futures = "0.3"
futures-util = "0.3"
2025-07-04 10:39:31 -03:00
imap = "2.0"
langchain-rust = "4.4.3"
2025-08-14 09:42:05 -03:00
lettre = { version = "0.10", features = [
"smtp-transport",
"builder",
"tokio1",
"tokio1-native-tls",
] }
log = "0.4"
2025-07-04 10:39:31 -03:00
mailparse = "0.13"
minio = { git = "https://github.com/minio/minio-rs", branch = "master" }
2025-07-04 10:39:31 -03:00
native-tls = "0.2"
reqwest = { version = "0.11", features = ["json", "stream"] }
rhai = "1.22.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2025-08-14 09:42:05 -03:00
smartstring = "1.0" # Use the latest version from crates.io
2025-08-16 18:13:03 -03:00
sqlx = { version = "0.7", features = [
"time",
"uuid",
"runtime-tokio-rustls",
"postgres",
"chrono",
] }
tempfile = "3"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1.17"
tracing = "0.1"
2025-07-02 14:22:11 -03:00
tracing-subscriber = { version = "0.3", features = ["fmt"] }
scraper = "0.18"
urlencoding = "2.1"
2025-07-29 21:39:24 -03:00
regex = "1.10"
2025-08-16 18:13:03 -03:00
uuid = { version = "1.4", features = ["serde", "v4"] } # v4, v7, etc. as needed
2025-08-14 09:42:05 -03:00
zip = "4.3.0"