Skip to content

Commit 2830e8c

Browse files
[CPP-39][CPP-40] Solution Tab - Table and Position Plot (#29)
* [CPP-39]Solutions Table and possibly Position Plot. * Making progress. * Merged in main. * Keep working * Have a very cruddy position plot showing. * Have a working table just need to add scrollbar. * Buttons are working. * Respond to review requests. * Adding autocancellation action. * Respond to review requests. * Respond to review requests.
1 parent 8cc2e85 commit 2830e8c

23 files changed

+3548
-656
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Cancelling previous actions runs.
2+
on: pull_request
3+
4+
jobs:
5+
cancel:
6+
name: auto-cancellation-running-action
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: fauguste/[email protected]
10+
with:
11+
githubToken: ${{ secrets.GITHUB_TOKEN }}

Cargo.lock

Lines changed: 133 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

console_backend/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ edition = "2018"
77

88
[dependencies]
99
capnp = "0.14"
10+
chrono = { version = "0.4", features = ["serde"] }
11+
csv = "1"
12+
paste = "1"
1013
pyo3 = { version = "0.13", features = ["extension-module"] }
1114
sbp = { git = "https://github.com/swift-nav/libsbp.git", rev = "0563350bb387e4a966a2b558adb7b05b2baf005f" }
15+
serde = { version = "1.0.123", features = ["derive"] }
16+
tempfile = "3.2.0"
1217
ordered-float = "2.0"
1318
ndarray = "0.14.0"
1419
glob = "0.3.0"

0 commit comments

Comments
 (0)