mainmatter / cargo-autoinherit

(Auto)DRY for your Rust dependencies
Apache License 2.0
124 stars 8 forks source link

Add support for path dependencies #28

Open cbgbt opened 1 month ago

cbgbt commented 1 month ago
feat: add multiple-location support

Cargo supports specifying multiple locations for a dependency.
Specifically, a git or path location can coexist with a version
location. In these cases Cargo will use the version to refer to a
registry when the crate is published, or otherwise use the version as a
constraint against a local crate.

feat: add support for path dependencies