[package] name = "ollama-rs-mangle-fork" version = "0.1.1" edition = "2021" license-file = "LICENSE.md" description = "A Rust library for interacting with the Ollama API" repository = "https://github.com/manglemix/ollama-rs" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] reqwest = { version = "0.11.22" } serde = { version = "1.0.190", features = ["derive"] } serde_json = "1.0.108" tokio = { version = "1", features = ["full"], optional = true } tokio-stream = { version = "0.1.14", optional = true } [features] stream = ["tokio-stream", "reqwest/stream", "tokio"] [dev-dependencies] tokio = { version = "1", features = ["full"] } ollama-rs = { path = ".", features = ["stream"] }