-
Notifications
You must be signed in to change notification settings - Fork 0
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
refactor!: extract RPC definitions into here #5
Conversation
# Conflicts: # Cargo.lock
Documentation for this PR has been generated and is available at: https://n0-computer.github.io/iroh-docs/pr/5/docs/iroh_docs/ Last updated: 2024-11-13T09:47:12Z |
it is not better or worse than the new one, but it breaks less code
src/lib.rs
Outdated
@@ -48,6 +48,9 @@ mod ticket; | |||
#[cfg(feature = "engine")] | |||
#[cfg_attr(iroh_docsrs, doc(cfg(feature = "engine")))] | |||
pub mod engine; | |||
#[cfg(feature = "engine")] | |||
#[cfg_attr(iroh_docsrs, doc(cfg(feature = "engine")))] |
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.
this should be featurerpc
some small things, otherwise LGTM |
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.
Dig says LGTM
Depends on n0-computer/iroh-docs#5 --------- Co-authored-by: Diva M <divma@protonmail.com> Co-authored-by: Ruediger Klaehn <rklaehn@protonmail.com>
Depends on n0-computer/iroh-docs#5 --------- Co-authored-by: Diva M <divma@protonmail.com> Co-authored-by: Ruediger Klaehn <rklaehn@protonmail.com>
Add the rpc types and handler to docs, from iroh.
Really, this does add the rpc types and handler to docs, from iroh! Two lines to make check-cc happy.
Breaking changes:
spawn now takes 7 parameters instead of 6
Note:
I reverted the author_default() thing. Not that there was anything wrong with this, but I think breaking less code is good.