-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Julian Oeltjen <[email protected]>
- Loading branch information
1 parent
4794854
commit 1e8eefd
Showing
3 changed files
with
63 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -19,3 +19,9 @@ jobs: | |
cacheFrom: ghcr.io/vorausrobotik/voraus-ros-bridge-dev | ||
runCmd: cargo clippy --all-targets --all-features -- -Dwarnings | ||
push: never | ||
- name: Cargo deny license check | ||
uses: devcontainers/[email protected] | ||
with: | ||
chacheFrom: ghcr.io/vorausrobotik/voraus-ros-bride-dev | ||
runCmd: cargo deny check licenses | ||
push: never |
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,56 @@ | ||
[graph] | ||
all-features = false | ||
no-default-features = false | ||
|
||
[output] | ||
feature-depth = 1 | ||
|
||
# More documentation for the licenses section can be found here: | ||
# https://embarkstudios.github.io/cargo-deny/checks/licenses/cfg.html | ||
[licenses] | ||
allow = [ | ||
"MIT", | ||
"Apache-2.0", | ||
"Apache-2.0 WITH LLVM-exception", | ||
"MPL-2.0", | ||
"ISC", | ||
"BSD-3-Clause", | ||
"Unicode-DFS-2016", | ||
"Unicode-3.0", | ||
] | ||
confidence-threshold = 0.8 | ||
|
||
[[licenses.clarify]] | ||
name = "voraus_interfaces" | ||
expression = "MIT" | ||
license-files = [] | ||
|
||
[[licenses.clarify]] | ||
name = "builtin_interfaces" | ||
# License can not be inferred but is Apache License 2.0, see https://index.ros.org/p/builtin_interfaces/ | ||
expression = "Apache-2.0" | ||
license-files = [] | ||
|
||
[[licenses.clarify]] | ||
name = "geometry_msgs" | ||
# License can not be inferred but is Apache License 2.0, see https://index.ros.org/p/geometry_msgs/ | ||
expression = "Apache-2.0" | ||
license-files = [] | ||
|
||
[[licenses.clarify]] | ||
name = "sensor_msgs" | ||
# License can not be inferred but is Apache License 2.0, see https://index.ros.org/p/sensor_msgs/" | ||
expression = "Apache-2.0" | ||
license-files = [] | ||
|
||
[[licenses.clarify]] | ||
name = "std_msgs" | ||
# License can not be inferred but is Apache License 2.0, see https://index.ros.org/p/std_msgs/ | ||
expression = "Apache-2.0" | ||
license-files = [] | ||
|
||
[[licenses.clarify]] | ||
name = "std_srvs" | ||
# License can not be inferred but is Apache License 2.0, see https://index.ros.org/p/std_srvs/ | ||
expression = "Apache-2.0" | ||
license-files = [] |