aboutsummaryrefslogtreecommitdiffstats
path: root/crates/asist-tools/Cargo.toml
blob: 803c5372c403fab290ee9b9626806615be2b8f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "asist-tools"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true

[dependencies]
asist-core.workspace = true
asist-llm.workspace = true
serde_json.workspace = true
tracing.workspace = true
# TLS client only for requests that go out to the internet. The asist-core
# one is plain HTTP on purpose (it is enough for localhost and allows cutting a
# download mid-sentence), but a search engine lives behind HTTPS.
ureq = { version = "3", default-features = false, features = ["rustls", "json", "gzip"] }