640ba9e7d2
Move HTTP page rendering to the React app, fix multi-tool-call message handling, add API docs lookup, web page lookup, and Markdown preview page sharing.
25 lines
631 B
TOML
25 lines
631 B
TOML
[package]
|
|
name = "ias-mail"
|
|
version = "0.1.15"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
axum = "0.8.9"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
ias-http = { path = "../ias-http" }
|
|
futures = "0.3"
|
|
mail-parser = "0.11"
|
|
native-tls = "0.2"
|
|
tokio-native-tls = "0.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sqlx = { version = "0.9.0", features = [
|
|
"runtime-tokio",
|
|
"tls-rustls",
|
|
"postgres",
|
|
"chrono",
|
|
] }
|
|
tokio = { version = "1.0", features = ["rt", "sync", "time", "net", "io-util"] }
|
|
async-imap = { version = "0.11", default-features = false, features = ["runtime-tokio"] }
|