Skip to content
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

New frontend web client #557

Merged
merged 10 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
* @ia0
/crates/runner-host/crates/web-client/ @chris-dietz @ia0
140 changes: 140 additions & 0 deletions crates/runner-host/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion crates/runner-host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ usb-device = { version = "0.3.2", optional = true }
usbd-serial = { version = "0.2.2", optional = true }
usbip-device = { version = "0.2.0", optional = true }
wasefire-board-api = { path = "../board", features = ["std"] }
wasefire-cli-tools = { path = "../cli-tools", optional = true }
wasefire-error = { path = "../error" }
wasefire-interpreter = { path = "../interpreter", optional = true }
wasefire-logger = { path = "../logger" }
Expand Down Expand Up @@ -55,7 +56,7 @@ usb = [
"wasefire-scheduler/board-api-platform-protocol",
"wasefire-scheduler/board-api-usb-serial",
]
web = ["dep:web-server"]
web = ["dep:wasefire-cli-tools", "dep:web-server"]
# Exactly one is enabled by xtask.
debug = ["wasefire-logger/log", "wasefire-protocol-usb?/log", "wasefire-scheduler/log"]
release = []
Expand Down
1 change: 1 addition & 0 deletions crates/runner-host/crates/web-client/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/dist/
Loading