pksunkara/cargo-workspaces

Exclude crates

Closed this issue · 2 comments

In my project workspace, I have 3 cargo crates. 2 of them are to be published if their version changes. However the third one is only used some kind of integration testing program: it should not be published to crates.io.

Is there any such option to exclude a specific crate from publication? If not, I'd like to request this feature.

Try publish = false

Thank you I didn't know about the existance of that feature.