-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make clap an optional dependency #69
Conversation
Codecov ReportPatch and project coverage have no change.
Additional details and impacted files@@ Coverage Diff @@
## main #69 +/- ##
=======================================
Coverage 72.72% 72.72%
=======================================
Files 3 3
Lines 176 176
=======================================
Hits 128 128
Misses 48 48 ☔ View full report in Codecov by Sentry. |
Or put in your `Cargo.toml` file: | ||
|
||
```toml | ||
tzf-rs = { version = "0.4.0", default-features = false } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will try this in tzfpy, and will merge this PR if everything is fine:
tzf-rs = { git = "https://github.com/wildwestrom/tzf-rs", rev = "6e523af", default-features = false}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Awesome, should I wait for the next semver version to see these changes? |
I have release It has been deployed to https://crates.io/crates/tzf-rs/0.4.1 |
Thank you very much. |
The readme should be updated to reflect the new version as well. |
Updated. |
I'd like to make clap an optional dependency if I just want to install the library, while also keeping the ability to use
cargo install
to install the binary.