# Standalone Cargo.toml — targets wasm32-wasip2. # # Build: # cargo build --release --target wasm32-wasip2 # # Output: target/wasm32-wasip2/release/studio_theme_solarized.wasm [package] name = "studio_theme_solarized" version = "0.1.0" # Track the SDK's edition — wit-bindgen 0.36 codegen does not # yet support edition 2024. edition = "2021" authors = ["Dr. Stefan Flemming "] license = "Apache-2.0" publish = false description = "F∆I Studio plugin — Solarized Light and Dark theme" repository = "https://git.flemming.ai/chain-plugins/studio-theme-solarized" rust-version = "1.85" [lib] crate-type = ["cdylib"] [dependencies] # Local path during bootstrap; externally this is the git # dependency https://git.flemming.ai/fai/chain-plugin-sdk-rust # pinned to a released tag (see docs/advanced/plugin-sdk.md). chain-plugin-sdk = { path = "../../fai_chain_plugin_sdk_rust" } [package.metadata.component] package = "chain:studio-plugin" [profile.release] opt-level = "s" lto = true codegen-units = 1 strip = true