fmi 0.6.0

A Rust interface to FMUs (Functional Mockup Units) that follow the FMI Standard. See http://www.fmi-standard.org/
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "fmi"
version = "0.6.0"
authors = ["John Hughes <jondo2010@gmail.com>"]
build = "build.rs"
include = [
    "Cargo.toml",
    "benches/*.rs",
    "examples/*.rs",
    "src/**/*.rs",
    "tests/*.rs",
    "build.rs",
]
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust interface to FMUs (Functional Mockup Units) that follow the FMI Standard. See http://www.fmi-standard.org/"
homepage = "https://github.com/jondo2010/rust-fmi"
readme = "README.md"
keywords = [
    "model",
    "ode",
    "modelica",
]
categories = [
    "science",
    "simulation",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jondo2010/rust-fmi"
resolver = "2"

[features]
arrow = [
    "dep:arrow",
    "fmi-schema/arrow",
]
default = [
    "fmi2",
    "fmi3",
    "ls-bus",
    "ls-bus-can",
]
fmi2 = [
    "fmi-schema/fmi2",
    "dep:libc",
    "dep:url",
]
fmi3 = ["fmi-schema/fmi3"]
ls-bus = [
    "fmi3",
    "fmi-sys/ls-bus",
    "dep:bytes",
]
ls-bus-can = ["ls-bus"]

[lib]
name = "fmi"
path = "src/lib.rs"

[dependencies.arrow]
version = "55.2"
optional = true

[dependencies.bytes]
version = "1.10"
optional = true

[dependencies.document-features]
version = "0.2"

[dependencies.fmi-schema]
version = "0.6.0"
default-features = false

[dependencies.fmi-sys]
version = "0.6.0"

[dependencies.itertools]
version = "0.14"

[dependencies.libc]
version = "0.2"
features = ["align"]
optional = true

[dependencies.libloading]
version = "0.8"

[dependencies.log]
version = "0.4"
features = [
    "std",
    "serde",
]

[dependencies.paste]
version = "1.0"

[dependencies.tempfile]
version = "3.1"

[dependencies.thiserror]
version = "2.0"

[dependencies.url]
version = "2.2"
optional = true

[dependencies.zip]
version = "7.2"

[build-dependencies.built]
version = "0.8"