-
Notifications
You must be signed in to change notification settings - Fork 42
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
Adding net crate #123
Merged
Merged
Adding net crate #123
Changes from 21 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
3c5f8fe
Adding async netcode
kokoISnoTarget d8106dd
Restructuring of the components
kokoISnoTarget 4b338f2
Fixing screenshot example.
kokoISnoTarget afd4230
Refactor some of the net api
kokoISnoTarget 5075935
Parse stylsheets on the fetch thread.
kokoISnoTarget 54cad68
Make it possible to insert stylesheets at the correct position for un…
kokoISnoTarget eb74859
improve net api
kokoISnoTarget a88f239
Use an request method provided by Handler instead of GET
kokoISnoTarget 407942e
improve non_blocking provider
kokoISnoTarget f5a65ea
Workaround for css loading
kokoISnoTarget 0977cef
Merge main into net
kokoISnoTarget 0f3ef6e
Remove workaround
kokoISnoTarget effed75
Reset inline nodes
kokoISnoTarget 328194a
Reduce size of Resource
kokoISnoTarget 98bad27
Merge main into net
kokoISnoTarget 5f6bd08
Moving to dynamic dispatch, adding callback, adding traits crate, rem…
kokoISnoTarget f589134
Merge main into net
kokoISnoTarget 54a9167
fmt, clippy and some git weirdness
kokoISnoTarget 6dea976
Small api teaks
kokoISnoTarget 9792b4a
Fixing double borrow introduced with #132
kokoISnoTarget 21bf9c7
Basic font-face support
kokoISnoTarget e886dd4
fmt
gitbutler-client cef520f
Merge main into net, i hope this can get merged
kokoISnoTarget 44f0c7d
git
kokoISnoTarget eacb380
typo + remove html-escape from dioxus-blitz
kokoISnoTarget 8fd517d
Merge branch 'main' into net
kokoISnoTarget 4d0cbc7
Fix screenshot.rs
kokoISnoTarget File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,9 @@ style = { workspace = true } | |
tracing = { workspace = true, optional = true } | ||
blitz = { path = "../blitz" } | ||
blitz-dom = { path = "../dom" } | ||
blitz-net = { path = "../net" } | ||
blitz-traits = { path = "../traits" } | ||
html-escape = "0.2.13" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nope, forgot to remove it. |
||
url = { version = "2.5.0", features = ["serde"] } | ||
ureq = "2.9" | ||
rustc-hash = "1.1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Typo: "prerequsits" should be "prerequisites"