Skip to content

Commit

Permalink
Puffin http (#25)
Browse files Browse the repository at this point in the history
* move puffin_egui here from https://github.com/emilk/puffin_egui

* Add puffin_http

* Add puffin_viewer app

* Add default embark lints to puffin_http

* Add all libraries to check.sh

* fix CI

* ci fix

* use 0.0.0.0 instead of localhost

* ci fix

* bump puffin to 0.5.2
  • Loading branch information
emilk committed Jun 14, 2021
1 parent d3f2c86 commit 9208a45
Show file tree
Hide file tree
Showing 22 changed files with 4,386 additions and 11 deletions.
13 changes: 12 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -19,6 +19,12 @@ jobs:
toolchain: stable
override: true

- name: Install packages (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get -yq --no-install-suggests --no-install-recommends install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libasound2-dev # egui_glium dependencies
# make sure all code has been formatted with rustfmt
- run: rustup component add rustfmt
- name: check rustfmt
Expand Down Expand Up @@ -55,6 +61,11 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: fetch
- name: Install packages (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get -yq --no-install-suggests --no-install-recommends install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libasound2-dev # egui_glium dependencies
- name: cargo test build
uses: actions-rs/cargo@v1
with:
Expand All @@ -64,4 +75,4 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: test
args: --release
args: -p puffin puffin_egui -p puffin_http -p puffin-imgui -p --all-features
1 change: 0 additions & 1 deletion .gitignore
@@ -1,3 +1,2 @@
**/target/
**/*.rs.bk
Cargo.lock
5 changes: 5 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]


## [0.5.2]

* Add opt-in `serde` support.


## [0.5.1]

* Remove stderr warning about empty frames
Expand Down

0 comments on commit 9208a45

Please sign in to comment.