studio-translate-ollama/Cargo.toml
flemming-it 302932182c chore(plugin): adopt fai-plugin-sdk naming + fai-plugins repo URL
Aligns with the three SDK families convention in
fai/platform/docs/architecture/sdks.md.

Signed-off-by: flemming-it <sf@flemming.it>
2026-05-26 00:59:29 +02:00

32 lines
833 B
TOML

[package]
name = "studio_translate_ollama"
version = "0.1.0"
edition = "2021"
authors = ["Dr. Stefan Flemming <platform@flemming.ai>"]
license = "Apache-2.0"
publish = false
description = "F∆I Studio plugin — Ollama-backed translate hook"
repository = "https://git.flemming.ai/fai-plugins/studio-translate-ollama"
rust-version = "1.85"
[lib]
crate-type = ["cdylib"]
[dependencies]
fai-plugin-sdk = { path = "../../fai_plugin_sdk_rust" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# WASI-0.2 HTTP client. Only compiled into the wasm32-wasip2
# target; the rlib used by host-side tests doesn't need it.
[target.'cfg(target_arch = "wasm32")'.dependencies]
waki = "0.5"
[package.metadata.component]
package = "fai:studio-plugin"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
strip = true