Skip to content
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ sbp_out.*
.build/

# rust
Cargo.lock
/Cargo.lock
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this needed? Aren't you copying the Cargo.lock file into the rust/ sub directory in the benchmark script?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a top-level Cargo.lock that we need to ignore (I think) so that we don't have a Cargo.lock if libsbp is pulled in as a dependency from git. Then there's a Cargo.lock that's in rust/sbp2json/Cargo.lock that we've checked in to pin deps, this is what gets copied to the benchmark build script's build directory. The benchmark build script is a little misnamed at the moment... since it's used for building the binaries we distribute for Linux, as well as the benchmark process.

/target

python/sbp/_version.py
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ the tools predate the Rust and Python versions, and also includes an `sbp2yaml`
tool as well as a `sbp2prettyjson` tool.

Finally, a Python version of the `sbp2json` tool exists, which is installable
on any platform that support Python via pip, e.g.:
on any platform that supports Python via pip, e.g.:

```
pip3 install sbp
Expand Down Expand Up @@ -123,7 +123,7 @@ You can then make this image operate on your local workspace like this:

Once in the image, simply type `make all` to gererate all the libsbp bindings.

#### Using the prebuilt one from dockerhub
#### Using the prebuilt one from DockerHub

You can also pull a copy from dockerhub (no guarantees on freshness):

Expand Down
Loading