mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Bump env_logger from 0.7.1 to 0.8.2 Bumps [env_logger](https://github.com/env-logger-rs/env_logger) from 0.7.1 to 0.8.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/env-logger-rs/env_logger/releases">env_logger's releases</a>.</em></p> <blockquote> <h2>0.8.2</h2> <p>Fixed a panic on io errors when writing to stdout / stderr (<a href="https://github-redirect.dependabot.com/env-logger-rs/env_logger/issues/184">#184</a>).</p> <h2>0.8.1</h2> <p>Update links in the documentation that were pointing to the old repository location.</p> <h2>0.8.0</h2> <p>Breaking changes:</p> <ul> <li>Update public dependency humantime to 2.0</li> </ul> <p>Improvements:</p> <ul> <li>Update default colors for debug (white => blue) and trace (black => cyan)</li> </ul> <p>Deprecations:</p> <ul> <li><code>env_logger::from_env</code> has been deprecated in favor of <code>env_logger::Builder::from_env</code></li> </ul> <p>This release raises the minimum supported Rust version to 1.41.0.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="0f53c8dd5b
"><code>0f53c8d</code></a> Release version 0.8.2</li> <li><a href="26e821b94f
"><code>26e821b</code></a> Update repository links and release 0.8.1</li> <li><a href="9ffe00de4f
"><code>9ffe00d</code></a> Release version 0.8.0</li> <li><a href="2b33c97117
"><code>2b33c97</code></a> Fix rustc & clippy lints</li> <li><a href="b8c3754a1d
"><code>b8c3754</code></a> chore(examples): add syslog friendly format (<a href="https://github-redirect.dependabot.com/env-logger-rs/env_logger/issues/174">#174</a>)</li> <li><a href="a5a7ddc34e
"><code>a5a7ddc</code></a> ci(docs): remove ci crate (<a href="https://github-redirect.dependabot.com/env-logger-rs/env_logger/issues/173">#173</a>)</li> <li><a href="3a331e4636
"><code>3a331e4</code></a> chore(readme): fix badge links</li> <li><a href="eeedfa99be
"><code>eeedfa9</code></a> ci(docs): add manual run trigger (<a href="https://github-redirect.dependabot.com/env-logger-rs/env_logger/issues/171">#171</a>)</li> <li><a href="2793bb5696
"><code>2793bb5</code></a> ci(workflow): add documentation workflow (<a href="https://github-redirect.dependabot.com/env-logger-rs/env_logger/issues/170">#170</a>)</li> <li><a href="0ef5cffa29
"><code>0ef5cff</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/env-logger-rs/env_logger/issues/168">#168</a> from KodrAus/chore/build-fn-cleanup</li> <li>Additional commits viewable in <a href="https://github.com/env-logger-rs/env_logger/compare/v0.7.1...v0.8.2">compare view</a></li> </ul> </details> <br /> [](https://dependabot.com/compatibility-score/?dependency-name=env_logger&package-manager=cargo&previous-version=0.7.1&new-version=0.8.2) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details>
147 lines
4 KiB
TOML
147 lines
4 KiB
TOML
[configs]
|
|
skip-check-length = false
|
|
skip-check-licenses = false
|
|
check-alphabetical-order = true
|
|
check-ordered-json-keys = [
|
|
"./resources/prefs.json",
|
|
]
|
|
lint-scripts = [
|
|
"./python/servo/lints/wpt_lint.py",
|
|
]
|
|
|
|
# Packages which we avoid using in Servo.
|
|
# For each blocked package, we can list the exceptions,
|
|
# which are packages allowed to use the blocked package.
|
|
[blocked-packages]
|
|
num = []
|
|
rand = [
|
|
"hashglobe", # Only used in tests
|
|
"ipc-channel",
|
|
"phf_generator",
|
|
"quickcheck", # Only used in tests
|
|
"servo_rand",
|
|
"tempfile",
|
|
"uuid",
|
|
"tungstenite",
|
|
"ws",
|
|
]
|
|
|
|
[ignore]
|
|
# Ignored packages with duplicated versions
|
|
packages = [
|
|
"arrayvec",
|
|
"base64",
|
|
"cfg-if",
|
|
"cloudabi",
|
|
"cocoa",
|
|
"env_logger",
|
|
"fixedbitset",
|
|
"gleam",
|
|
"humantime",
|
|
"libloading",
|
|
"lock_api",
|
|
"metal",
|
|
"miniz_oxide",
|
|
"num-rational",
|
|
"parking_lot",
|
|
"parking_lot_core",
|
|
"petgraph",
|
|
"ron",
|
|
"wayland-sys",
|
|
|
|
# https://github.com/servo/servo/issues/26933
|
|
"futures",
|
|
"tokio-openssl",
|
|
"tokio",
|
|
"http",
|
|
"bytes",
|
|
|
|
# https://github.com/servo/servo/pull/23288#issuecomment-494687746
|
|
"gl_generator",
|
|
|
|
# Lots of crates to update.
|
|
"smallvec",
|
|
|
|
# https://github.com/servo/servo/issues/24421
|
|
"proc-macro2",
|
|
"quote",
|
|
"unicode-xid",
|
|
|
|
# https://github.com/servo/servo/pull/25518
|
|
"core-foundation",
|
|
"core-foundation-sys",
|
|
"core-graphics",
|
|
"lyon_geom",
|
|
|
|
# Duplicated by webrender debugger via ws
|
|
"digest",
|
|
"generic-array",
|
|
"opaque-debug",
|
|
"sha-1",
|
|
"block-buffer",
|
|
|
|
# Duplicated by futures
|
|
"pin-project",
|
|
"pin-project-internal",
|
|
]
|
|
# Files that are ignored for all tidy and lint checks.
|
|
files = [
|
|
"./components/net/tests/parsable_mime/text",
|
|
# Mako does not lend itself easily to splitting long lines
|
|
"./components/style/properties/helpers/animated_properties.mako.rs",
|
|
"./components/style/properties/shorthands/text.mako.rs",
|
|
# Long regexes are long.
|
|
"./components/style/gecko/regen_atoms.py",
|
|
# Helper macro where actually a pseudo-element per line makes sense.
|
|
"./components/style/gecko/non_ts_pseudo_class_list.rs",
|
|
"./resources/hsts_preload.json",
|
|
"./tests/wpt/metadata/MANIFEST.json",
|
|
"./tests/wpt/mozilla/meta/MANIFEST.json",
|
|
# Long encoded string
|
|
"./tests/wpt/mozilla/tests/mozilla/resources/brotli.py",
|
|
"./tests/wpt/webgl/meta/MANIFEST.json",
|
|
"./support/android/openssl.sh",
|
|
# Upstream code from Khronos/WebGL uses tabs for indentation
|
|
"./tests/wpt/webgl/tests",
|
|
# Our import script is not currently respecting the lint.
|
|
"./tests/wpt/webgl/tools/import-conformance-tests.py",
|
|
# Ignore those files since the issues reported are on purpose
|
|
"./tests/html/bad-line-ends.html",
|
|
"./tests/wpt/mozilla/tests/css/fonts",
|
|
"./tests/wpt/mozilla/tests/css/pre_with_tab.html",
|
|
"./tests/wpt/mozilla/tests/mozilla/textarea_placeholder.html",
|
|
# Python 3 syntax causes "E901 SyntaxError" when flake8 runs in Python 2
|
|
"./etc/taskcluster/decision_task.py",
|
|
"./etc/taskcluster/decisionlib.py",
|
|
"./tests/wpt/reftests-report/gen.py",
|
|
"./components/style/properties/build.py",
|
|
]
|
|
# Directories that are ignored for the non-WPT tidy check.
|
|
directories = [
|
|
# Upstream
|
|
"./support/android/apk",
|
|
"./support/hololens",
|
|
"./support/linux/gstreamer",
|
|
"./support/magicleap/Servo2D/.vscode",
|
|
"./support/magicleap/Servo2D/code/inc.gen",
|
|
"./support/magicleap/Servo2D/code/src.gen",
|
|
"./support/magicleap/Servo2D/pipeline",
|
|
"./tests/wpt/harness",
|
|
"./tests/wpt/update",
|
|
"./tests/wpt/web-platform-tests",
|
|
"./tests/wpt/mozilla/tests/mozilla/referrer-policy",
|
|
"./tests/wpt/mozilla/tests/webgl",
|
|
"./tests/wpt/sync",
|
|
"./python/tidy/servo_tidy_tests",
|
|
"./components/script/dom/bindings/codegen/parser",
|
|
"./components/script/dom/bindings/codegen/ply",
|
|
"./python/_virtualenv*",
|
|
"./components/hashglobe/src",
|
|
# Generated and upstream code combined with our own. Could use cleanup
|
|
"./target",
|
|
]
|
|
|
|
# Directories that are checked for correct file extension
|
|
[check_ext]
|
|
# directory, list of expected file extensions
|
|
"./components/script/dom/webidls" = [".webidl"]
|