[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"] }