Cargo Features

[dependencies]
mms-rs = { version = "2.0.0", default-features = false, features = ["dotnet", "cxx_api", "cpp_api", "c_api", "c_api_internal", "use_panics"] }
default = c_api, cxx_api

These default features are set whenever mms-rs is added without default-features = false somewhere in the dependency tree.

dotnet = c_api_internal, csbindgen
cxx_api default = cpp_api
cpp_api cxx_api = c_api_internal, cbindgen
c_api default = c_api_internal, cbindgen
c_api_internal c_api cpp_api? dotnet? = use_panics
use_panics c_api_internal?

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

cbindgen build c_api cpp_api?

Enables cbindgen ^0.24.5

csbindgen build dotnet?