Some checks failed
CI / Linux x86_64 (Forgejo) (push) Failing after 1s
The old 'F∆I Platform' product name and platform@flemming.ai contact survived in docs/NOTICE/descriptions/help text; the product is Ch∆In and the contact is chain@flemming.ai. Generic 'cross-platform/platform-native' left untouched. Signed-off-by: flemming-it <sf@flemming.it>
37 lines
792 B
TOML
37 lines
792 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/fai-module-sdk",
|
|
"crates/fai-module-sdk-macros",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.2"
|
|
edition = "2024"
|
|
authors = ["Dr. Stefan Flemming <chain@flemming.ai>"]
|
|
license = "Apache-2.0"
|
|
repository = "https://git.flemming.ai/fai/module-sdk-rust"
|
|
homepage = "https://flemming.ai/"
|
|
rust-version = "1.85"
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_op_in_unsafe_fn = "warn"
|
|
|
|
[workspace.lints.clippy]
|
|
unwrap_used = "deny"
|
|
expect_used = "deny"
|
|
panic = "deny"
|
|
print_stdout = "deny"
|
|
print_stderr = "deny"
|
|
todo = "deny"
|
|
unimplemented = "deny"
|
|
|
|
[workspace.dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
proc-macro2 = "1"
|
|
quote = "1"
|
|
syn = { version = "2", features = ["full"] }
|
|
wit-bindgen = "0.36"
|
|
sha2 = "0.10"
|