celestial/Cargo.toml

23 lines
568 B
TOML
Raw Normal View History

2024-05-03 20:31:39 +02:00
[package]
name = "celestial"
version = "0.1.0"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.82"
derive-getters = "0.3.0"
derive_builder = "0.20.0"
2024-05-03 20:31:39 +02:00
dotenv = "0.15.0"
env_logger = "0.11.3"
envy = "0.4.2"
log = "0.4.21"
matrix-sdk = "0.7.1"
ollama-rs = {version="0.1.9", features = ["stream", "chat-history"]}
2024-05-03 20:31:39 +02:00
serde = "1.0.200"
tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread"] }
tokio-stream = "0.1.15"
2024-05-03 20:31:39 +02:00
tracing-subscriber = "0.3.15"