This cargo command allows to wrap dependencies as dylibs.
For why you might want this see Speeding up incremental Rust compilation with dylibs.
shell
cargo install cargo-add-dynamic
To add a new dependency as a dylib to the current project run for example
shell
cargo add-dynamic polars --features csv-file,lazy,list,describe,rows,fmt,strings,temporal
This will create a sub-package polars-dynamic
with the following content.
polars-dynamic/Cargo.toml
```toml [package] name = "polars-dynamic" version = "0.1.0" edition = "2021"
[dependencies] polars = { version = "0.23.2", features = ["csv-file", "lazy", "list", "describe", "rows", "fmt", "strings", "temporal"] }
[lib] crate-type = ["dylib"] ```
polars-dynamic/src/lib.rs
rust
pub use polars::*;
And it will add polars = { version = "0.1.0", path = "polars-dynamic", package = "polars-dynamic" }
to the dependencies of the current package.
``
add-dynamic
Cargo command similar to
cargo add` that will add a dependency
USAGE:
cargo-add-dynamic [OPTIONS]
ARGS:
OPTIONS:
-F, --features