| Crates.io | coolprop-sys |
| lib.rs | coolprop-sys |
| version | 7.2.0 |
| created_at | 2025-05-04 17:22:50.928226+00 |
| updated_at | 2025-12-24 21:29:45.316506+00 |
| description | Raw FFI bindings to CoolProp |
| homepage | https://github.com/portyanikhin/rfluids |
| repository | https://github.com/portyanikhin/rfluids |
| max_upload_size | |
| id | 1659817 |
| size | 96,878 |
Raw FFI bindings to CoolProp
Linux x86-64macOS AArch64macOS x86-64Windows AArch64Windows x86-64coolprop-sys requires rustc 1.85.0 or later.
Add this to your Cargo.toml:
[dependencies]
coolprop-sys = "7"
Or via command line:
cargo add coolprop-sys
🎁 It comes with native CoolProp dynamic libraries for supported platforms. The library
required for your platform will be automatically copied to the target directory during build.
It also includes pre-generated FFI bindings, so libclang is not required for normal builds.
If you need to regenerate the FFI bindings (requires libclang), enable the
regen-bindings feature.
Add this to your Cargo.toml:
[dependencies]
coolprop-sys = { version = "7", features = ["regen-bindings"] }
Or via command line:
cargo add coolprop-sys --features regen-bindings