-
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.
chore: moved c509-certificate crate (#4)
* chore: moved c509-certificate crate * chore: clean up cspell exclusions
- Loading branch information
Showing
49 changed files
with
5,750 additions
and
19 deletions.
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,7 +1,5 @@ | ||
name: Branch Deleted | ||
|
||
# cspell: words earthfile | ||
|
||
on: | ||
delete: | ||
branches: | ||
|
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,93 @@ | ||
# Use MOLD linker where possible, but ONLY in CI applicable targets. | ||
|
||
# Configure how Docker container targets build. | ||
|
||
# If you want to customize these targets for a local build, then customize them in your: | ||
# $CARGO_HOME/config.toml | ||
# NOT in the project itself. | ||
# These targets are ONLY the targets used by CI and inside docker builds. | ||
|
||
# DO NOT remove `"-C", "target-feature=+crt-static"` from the rustflags for these targets. | ||
|
||
# Should be the default to have fully static rust programs in CI | ||
[target.x86_64-unknown-linux-musl] | ||
linker = "clang" | ||
rustflags = [ | ||
"-C", "link-arg=-fuse-ld=/usr/bin/mold", | ||
"-C", "target-feature=-crt-static" | ||
] | ||
|
||
# Should be the default to have fully static rust programs in CI | ||
[target.aarch64-unknown-linux-musl] | ||
linker = "clang" | ||
rustflags = [ | ||
"-C", "link-arg=-fuse-ld=/usr/bin/mold", | ||
"-C", "target-feature=-crt-static" | ||
] | ||
|
||
[build] | ||
rustflags = [] | ||
rustdocflags = [ | ||
"--enable-index-page", | ||
"-Z", | ||
"unstable-options", | ||
] | ||
|
||
[profile.dev] | ||
opt-level = 1 | ||
debug = true | ||
debug-assertions = true | ||
overflow-checks = true | ||
lto = false | ||
panic = "unwind" | ||
incremental = true | ||
codegen-units = 256 | ||
|
||
[profile.release] | ||
opt-level = 3 | ||
debug = false | ||
debug-assertions = false | ||
overflow-checks = false | ||
lto = "thin" | ||
panic = "unwind" | ||
incremental = false | ||
codegen-units = 16 | ||
|
||
[profile.test] | ||
opt-level = 3 | ||
debug = true | ||
lto = false | ||
debug-assertions = true | ||
incremental = true | ||
codegen-units = 256 | ||
|
||
[profile.bench] | ||
opt-level = 3 | ||
debug = false | ||
debug-assertions = false | ||
overflow-checks = false | ||
lto = "thin" | ||
incremental = false | ||
codegen-units = 16 | ||
|
||
[alias] | ||
lint = "clippy --all-targets" | ||
lintfix = "clippy --all-targets --fix --allow-dirty" | ||
lint-vscode = "clippy --message-format=json-diagnostic-rendered-ansi --all-targets" | ||
|
||
docs = "doc --release --no-deps --document-private-items --bins --lib --examples" | ||
# nightly docs build broken... when they are'nt we can enable these docs... --unit-graph --timings=html,json -Z unstable-options" | ||
testunit = "nextest run --release --bins --lib --tests --benches --no-fail-fast -P ci" | ||
testcov = "llvm-cov nextest --release --bins --lib --tests --benches --no-fail-fast -P ci" | ||
testdocs = "test --doc --release" | ||
|
||
# Rust formatting, MUST be run with +nightly | ||
fmtchk = "fmt -- --check -v --color=always" | ||
fmtfix = "fmt -- -v" | ||
|
||
[term] | ||
quiet = false # whether cargo output is quiet | ||
verbose = false # whether cargo provides verbose output | ||
color = "auto" # whether cargo colorizes output use `CARGO_TERM_COLOR="off"` to disable. | ||
progress.when = "never" # whether cargo shows progress bar | ||
progress.width = 80 # width of progress bar |
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,48 @@ | ||
[store] | ||
# The directory under the workspace root at which nextest-related files are | ||
# written. Profile-specific storage is currently written to dir/<profile-name>. | ||
# dir = "target/nextest" | ||
|
||
[profile.default] | ||
# Print out output for failing tests as soon as they fail, and also at the end | ||
# of the run (for easy scrollability). | ||
failure-output = "immediate-final" | ||
|
||
# Do not cancel the test run on the first failure. | ||
fail-fast = true | ||
|
||
status-level = "all" | ||
final-status-level = "all" | ||
|
||
[profile.ci] | ||
# Print out output for failing tests as soon as they fail, and also at the end | ||
# of the run (for easy scrollability). | ||
failure-output = "immediate-final" | ||
# Do not cancel the test run on the first failure. | ||
fail-fast = false | ||
|
||
status-level = "all" | ||
final-status-level = "all" | ||
|
||
|
||
[profile.ci.junit] | ||
# Output a JUnit report into the given file inside 'store.dir/<profile-name>'. | ||
# If unspecified, JUnit is not written out. | ||
|
||
path = "junit.xml" | ||
|
||
# The name of the top-level "report" element in JUnit report. If aggregating | ||
# reports across different test runs, it may be useful to provide separate names | ||
# for each report. | ||
report-name = "nextest" | ||
|
||
# Whether standard output and standard error for passing tests should be stored in the JUnit report. | ||
# Output is stored in the <system-out> and <system-err> elements of the <testcase> element. | ||
store-success-output = true | ||
|
||
# Whether standard output and standard error for failing tests should be stored in the JUnit report. | ||
# Output is stored in the <system-out> and <system-err> elements of the <testcase> element. | ||
# | ||
# Note that if a description can be extracted from the output, it is always stored in the | ||
# <description> element. | ||
store-failure-output = true |
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,11 @@ | ||
### Rust ### | ||
# Generated by Cargo | ||
# will have compiled files and executables | ||
debug/ | ||
target/ | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
|
||
# MSVC Windows builds of rustc generate these, which store debugging information | ||
*.pdb |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.