-
Notifications
You must be signed in to change notification settings - Fork 79
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
move datagram to separate crate #199
base: master
Are you sure you want to change the base?
Conversation
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.
Generally looks great, good work!
Might be good if @darioalessandro or @ten3roberts could look, to see if they can still use it.
h3-quinn/Cargo.toml
Outdated
@@ -21,6 +21,7 @@ quinn = { version = "0.11", default-features = false, features = [ | |||
tokio-util = { version = "0.7.9" } | |||
futures = { version = "0.3.28" } | |||
tokio = { version = "1", features = ["io-util"], default-features = false } | |||
h3-datagram = { path = "../h3-datagram" } |
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.
Wondering, should it be optional? Is there enough code in here that people would benefit if they didn't need to compile it?
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.
Wondering, should it be optional? Is there enough code in here that people would benefit if they didn't need to compile it?
Changed it.
The goal of This PR is to separate the h3-datagram logic from the
h3
crate providing a new crateh3-datagram
.