-
Notifications
You must be signed in to change notification settings - Fork 10
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
ci: Update deny.toml to reflect the latest changes #83
Merged
Conversation
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
Signed-off-by: Alexandru Vasile <[email protected]>
Signed-off-by: Alexandru Vasile <[email protected]>
Signed-off-by: Alexandru Vasile <[email protected]>
Signed-off-by: Alexandru Vasile <[email protected]>
jsdw
reviewed
Sep 26, 2024
Comment on lines
+94
to
+111
[graph] | ||
# If 1 or more target triples (and optionally, target_features) are specified, only | ||
# the specified targets will be checked when running `cargo deny check`. This means, | ||
# if a particular package is only ever used as a target specific dependency, such | ||
# as, for example, the `nix` crate only being used via the `target_family = "unix"` | ||
# configuration, that only having windows targets in this list would mean the nix | ||
# crate, as well as any of its exclusive dependencies not shared by any other | ||
# crates, would be ignored, as the target list here is effectively saying which | ||
# targets you are building for. | ||
targets = [ | ||
# The triple can be any string, but only the target triples built in to | ||
# rustc (as of 1.40) can be checked against actual config expressions | ||
#{ triple = "x86_64-unknown-linux-musl" }, | ||
# You can also specify which target_features you promise are enabled for a particular | ||
# target. target_features are currently not validated against the actual valid | ||
# features supported by the target architecture. | ||
#{ triple = "wasm32-unknown-unknown", features = ["atomics"] }, | ||
] |
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.
I guess this is just kept to document the feature?
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.
It's probably copy-pasted from the template that cargo-deny generates
jsdw
approved these changes
Sep 26, 2024
niklasad1
approved these changes
Sep 26, 2024
bkontur
added a commit
to paritytech/parity-bridges-common
that referenced
this pull request
Oct 4, 2024
bkontur
added a commit
to paritytech/parity-bridges-common
that referenced
this pull request
Oct 7, 2024
… support (#3059) * Add `LaneId` generic param * Version * Update testnet runtimes * New polkadot-sdk version * Removed unnecessary `type LaneId` * 1.7.10 -> 1.7.0 * change bullseye? * fix test * I have no idea, inspired by paritytech/frame-metadata#83 * Bump master polkadot-sdk * Fix clippy for new rustc - next regeneration should be fixed when paritytech/subxt#1814 is released * Switch clippy from nightly to stable, because of nalgebra deps hangs 6hours: rust-lang/rust#130056 and also polkadot-sdk is using stable for clippy and doc: https://gitlab.parity.io/parity/mirrors/parity-bridges-common/-/jobs/7515555 https://gitlab.parity.io/parity/mirrors/parity-bridges-common/-/jobs/7515561
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
For more details check: EmbarkStudios/cargo-deny#611
cc @paritytech/subxt-team