-
Notifications
You must be signed in to change notification settings - Fork 0
Deprecate cargo macros #213
Comments
Comment by pksunkara I would agree but we use them in |
Comment by kbknapp
I'm more worried that because these aren't clap related, what if people want more cargo metadata exposed? These started as just I also agree they're pretty widely used which I think adds support to us taking it slow if we move forward (deprecate for a while, remove in a future major release), and also adds support to us creating the crate in our org with an identical API to make the transition painless. |
Comment by epage I can understand the desire to spin things off. I've wanted I agree that the right route forward is a crate we delegate to but still provide a convenience for clap users. |
Comment by epage Since a deprecation is not a breaking change, should we move this out of the 3.0 milestone? |
Comment by pksunkara It is in 3.0 milestone similar to #2835 because we need to add deprecation warnings. |
Comment by epage We should not be deprecating anything without having a replacement to point people towards. Unless we are creating the crate now, we shouldn't do this. With #2835, we have replacements (builder, derive, from usage) that we can point people to as the recommended approach. |
Comment by kbknapp
Good point. My point was just to deprecate for 3.0 like @pksunkara mentioned, but you're correct we could deprecate anywhere in the 3.x lifetime. I'll place this at the 3.1 milestone as a placeholder for "decide on this sometime in 3.x" And of course we're not locked into spinning these out, I'm open to suggestions and opinions on the matter too. |
Comment by joshtriplett I think it'd be perfectly reasonable to just make these non-public before 3.0, as long as the top-level app_from_crate macro still exists. I don't think we have to provide a replacement first. These macros just existed to pass to the appropriate clap functions. |
Comment by epage
For context, I'm recommending in clap-rs/clap#2617 that we provide built-in transition paths for users via deprecations to streamline the upgrade process. We can do breaking changes but ideally we have a deprecation windows first |
Comment by pksunkara
IIRC, people actually use those underlying macros directly instead of |
Issue by kbknapp
Saturday Oct 09, 2021 at 17:32 GMT
Originally opened as clap-rs/clap#2840
Please complete the following tasks
Clap Version
3.0.0-beta.4
Describe your use case
I'm proposing removing the convenience macros for getting information from
cargo
at build time. Specifically:crate_license
crate_version
crate_authors
crate_description
crate_name
None of these utilize anything inside of
clap
and simply call out to checking environment variables thatcargo
populates at compile time.Describe the solution you'd like
These would be prime candidates for spinning off into a crate dedicated to such information about Cargo. I'd actually be kind of surprised if a crate with this functionality doesn't already exist. If one doesn't exist, I'm not against hosting one inside the clap-rs org, but being that it's not actually clap related this repository is probably a bad fit.
I propose we deprecate for v3, and remove for v4. That gives us time to either find a crate to suggest or pull these macros into one ourselves.
Alternatives, if applicable
Additional Context
I'm open to suggestions and thoughts on the matter.
The text was updated successfully, but these errors were encountered: