-
Notifications
You must be signed in to change notification settings - Fork 235
refactor(iroh)!: make iroh::tls private #3018
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
Conversation
- makes `iroh::tls` private - match quinns tls setup for benchmarking
Documentation for this PR has been generated and is available at: https://n0-computer.github.io/iroh/pr/3018/docs/iroh/ Last updated: 2024-12-10T11:25:40Z |
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 only non-bench change is making tls private. I took a quick look at the bench changes and found nothing obviously wrong.
@@ -189,7 +189,7 @@ jobs: | |||
# uses: obi1kenobi/cargo-semver-checks-action@v2 | |||
uses: n0-computer/cargo-semver-checks-action@feat-baseline | |||
with: | |||
package: iroh, iroh-base, iroh-dns-server, iroh-net-bench, iroh-relay, iroh-net-report | |||
package: iroh, iroh-base, iroh-dns-server, iroh-bench, iroh-relay, iroh-net-report |
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.
so iroh-net-report does not get renamed to iroh-report for now?
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.
don't know if we want to do that, but that's seperate from this PR
Description
iroh::tls
privateBreaking Changes
iroh::tls
is removed from the public APINotes & open questions
The goal is to reduce the API surface of
iroh
, to what is really needed. I couldn't find any critical usage of this in our dependencies.Change checklist