Some checks failed
CI / Linux x86_64 (Forgejo) (push) Failing after 1s
The fai-module-sdk repo was renamed from `fai/module-sdk` to `fai/module-sdk-rust` to align with the three SDK families convention (base + language suffix). Pin updated accordingly. The old git.flemming.ws URL is also retired in this pass. Signed-off-by: flemming-it <sf@flemming.it>
49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
# Standalone Cargo.toml — targets wasm32-wasip2.
|
|
#
|
|
# Build with:
|
|
# cargo build --release --target wasm32-wasip2
|
|
|
|
[package]
|
|
name = "text_translate"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "Apache-2.0"
|
|
publish = false
|
|
description = "F∆I module providing text.translate"
|
|
|
|
[lib]
|
|
# cdylib for the wasm artifact, rlib so integration tests can
|
|
# link against the module's `invoke` function on the host.
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
fai-module-sdk = { git = "https://git.flemming.ai/fai/module-sdk-rust.git", branch = "main" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
|
|
# WASI-0.2 HTTP client. Only compiled into the wasm32-wasip2 build.
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
waki = "0.5"
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1"
|
|
|
|
[profile.release]
|
|
opt-level = "s"
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = "symbols"
|
|
|
|
[lints.rust]
|
|
unsafe_op_in_unsafe_fn = "warn"
|
|
|
|
[lints.clippy]
|
|
unwrap_used = "deny"
|
|
expect_used = "deny"
|
|
panic = "deny"
|
|
print_stdout = "deny"
|
|
print_stderr = "deny"
|
|
|
|
[workspace]
|
|
# Empty so this package is NOT picked up by a parent.
|