21 lines
411 B
TOML
21 lines
411 B
TOML
[package]
|
|
name = "symclaw-ffi"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT OR Apache-2.0"
|
|
description = "C FFI bindings for SymClaw symbolic math engine"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "staticlib"]
|
|
|
|
[lints.rust]
|
|
unsafe_code = "allow"
|
|
|
|
[lints.clippy]
|
|
missing_safety_doc = "allow"
|
|
not_unsafe_ptr_arg_deref = "allow"
|
|
|
|
[dependencies]
|
|
symclaw-core = { path = "../symclaw-core" }
|
|
ordered-float.workspace = true
|