-
Notifications
You must be signed in to change notification settings - Fork 14
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(dgw): support TRP streaming #1188
Conversation
Let maintainers know that an action is required on their side
|
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.
thought: Maybe ascii-streamer
should be term-streamer
if we’re going to support more protocols? Is ascii appropriate for both asciinema and trp? Thoughts?
crates/ascii-streamer/Cargo.toml
Outdated
@@ -5,9 +5,11 @@ edition = "2021" | |||
|
|||
[dependencies] | |||
anyhow = "1.0" | |||
serde_json = "1.0" | |||
tokio = { version = "1.42", features = ["io-util", "sync"] } | |||
tokio = { version = "1.42", features = ["io-util", "sync", "macros", "rt-multi-thread", "time"] } |
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.
question: Can you document why more features are necessary 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.
in Cargo.toml
or here in Github?
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.
It’s better to document at the relevant places as GitHub PRs are not something we can refer to easily.
WIth regards to this, the argument could be that the output format is always asciinema v2, so it would not be wired to call this crate |
Added dependency tokio macro for Added dependency tokio time for Added dependency tokio rt-multi-thread for |
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.
Good work, feel free to merge!
Thank you! |
No description provided.