webarc/Cargo.toml

27 lines
853 B
TOML
Raw Normal View History

2024-12-29 16:51:34 +01:00
[package]
2024-12-29 17:22:57 +01:00
name = "webarc"
2024-12-29 16:51:34 +01:00
version = "0.1.0"
edition = "2021"
[dependencies]
env_logger = "0.10.0"
regex = "1.9.5"
chrono = { version = "0.4.38", features = ["serde"] }
futures = "0.3.30"
log = "0.4.20"
rocket = { version = "0.5.1", features = ["json"] }
serde = { version = "1.0.195", features = ["derive"] }
serde_json = "1.0.111"
tokio = { version = "1.35.1", features = ["full"] }
uuid = { version = "1.8.0", features = ["v4", "serde"] }
sqlx = { version = "0.8", features = ["postgres", "runtime-tokio-native-tls", "derive", "uuid", "chrono", "json"] }
maud = "0.26.0"
2024-12-30 21:25:40 +01:00
based = { git = "https://git.hydrar.de/jmarya/based", features = ["htmx"] }
2024-12-29 16:51:34 +01:00
url = "2.5.4"
2024-12-29 18:33:30 +01:00
reqwest = "0.12.11"
2024-12-30 14:06:32 +01:00
ollama-rs = "0.2.2"
pgvector = { version = "0.4", features = ["sqlx"] }
html2md = "0.2.14"
2025-01-02 19:00:47 +01:00
clap = { version = "4.5.23", features = ["cargo", "derive"] }
toml = "0.8.19"