Files
iAs/ias-context/Cargo.toml
T
wunianxiao 640ba9e7d2 feat: add React UI and AI page sharing tools
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.
2026-07-07 22:27:14 +08:00

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"