-
Notifications
You must be signed in to change notification settings - Fork 213
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
feat: split CLI implementation into a new iroh-cli crate #2076
Conversation
e297bac
to
3cd50aa
Compare
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.
Great to see some pub(crate)
efforts!
also love how the features are a bit easier this way
@@ -136,7 +136,7 @@ jobs: | |||
|
|||
- name: Check MSRV all features | |||
run: | | |||
cargo +$MSRV check --workspace --all-targets --features cli | |||
cargo +$MSRV check --workspace --all-targets |
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.
The name
does not really match what it does. I don't know which one it should be though? Maybe it should be --all-features?
Isolates the CLI implementation to its own crate. --------- Co-authored-by: Floris Bruynooghe <[email protected]>
Isolates the CLI implementation to its own crate.