-
Notifications
You must be signed in to change notification settings - Fork 520
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
Remove cmake #620
Closed
Closed
Remove cmake #620
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
4b8c6a3
Checkpoint
Jake-Shadle e160a81
Fixup
Jake-Shadle 454cdec
Add deny.toml
Jake-Shadle b2beb41
Add cargo-deny to CI
Jake-Shadle f01ff47
Use flat_map not flatten for windows
Jake-Shadle c40adce
Ignore clippy lint
Jake-Shadle 9d3246e
Fix path when checked out in github
Jake-Shadle a56895c
Fix 1.51
Jake-Shadle cac3683
Silence ubuntu warning
Jake-Shadle fab7553
Tell Mac it is in 21st century
Jake-Shadle 87a6cb7
Ignore unmaintained advisory
Jake-Shadle b5fcf1b
Oops, revert force push overwrite
Jake-Shadle 350472c
Fix windows
Jake-Shadle 4ae711d
Fix windows again
Jake-Shadle bde457e
Fix windows...again
Jake-Shadle 63e1e2b
Fix windows...again
Jake-Shadle 3a5f037
Don't use iterators due to 1.51 being lame
Jake-Shadle b25cbd5
Ugh
Jake-Shadle b3f4558
C++ gonna C++
Jake-Shadle 7e1263a
Workaround Windows being lame until someone complains
Jake-Shadle c864934
Use HTTPS for protobuf submodule
Jake-Shadle 5281972
Fix prost version
Jake-Shadle 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "prost-build/third-party/protobuf"] | ||
path = prost-build/third-party/protobuf | ||
url = git@github.com:protocolbuffers/protobuf | ||
url = https://github.com/protocolbuffers/protobuf |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[advisories] | ||
ignore = [ | ||
# serde_cbor is unmaintained, but brought in by criterion | ||
"RUSTSEC-2021-0127", | ||
] | ||
|
||
[licenses] | ||
allow = ["Apache-2.0", "MIT", "BSD-3-Clause"] | ||
|
||
[bans] | ||
deny = [{ name = "cmake" }] | ||
skip = [ | ||
# old csv via old criterion | ||
{ name = "itoa", version = "=0.4.8" }, | ||
# Proptest includes 2 version :( | ||
{ name = "quick-error", version = "=1.2.3" }, | ||
] |
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.
Is the intent here to impose Embark Studio’s deny configuration onto Prost?
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.
This isn't "our" deny configuration, this is just a way to ensure that the dependency this PR is removing doesn't return in the future.