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.
23 lines
488 B
TOML
23 lines
488 B
TOML
[package]
|
|
name = "ias-context"
|
|
version = "0.1.2"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
ias-common = { path = "../ias-common" }
|
|
axum = "0.8.9"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
reqwest = { version = "0.12", default-features = false, features = [
|
|
"json",
|
|
"rustls-tls",
|
|
] }
|
|
sqlx = { version = "0.9.0", features = [
|
|
"runtime-tokio",
|
|
"tls-rustls",
|
|
"postgres",
|
|
"chrono",
|
|
] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
anyhow = "1"
|