mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
319e75c7aa
Updates the requirements on [tracing-wasm](https://github.com/storyscript/tracing-wasm) to permit the latest version. <details> <summary>Commits</summary> <ul> <li><a href="09a0d75c45
"><code>09a0d75</code></a> Disable default features for dependencies and release 0.2.0</li> <li><a href="bbeca396ed
"><code>bbeca39</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/storyscript/tracing-wasm/issues/12">#12</a> from storyscript/readme-clarification</li> <li><a href="e35b182232
"><code>e35b182</code></a> add clarifying note to README.</li> <li><a href="259e118e7f
"><code>259e118</code></a> rustfmt</li> <li><a href="f2099cfe5e
"><code>f2099cf</code></a> Apply clippy suggestions</li> <li><a href="fde480fa11
"><code>fde480f</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/storyscript/tracing-wasm/issues/6">#6</a> from storyscript/config-builder</li> <li><a href="ad9d4b1903
"><code>ad9d4b1</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/storyscript/tracing-wasm/issues/7">#7</a> from storyscript/feat/default-level</li> <li><a href="64fedbd267
"><code>64fedbd</code></a> chore(config): change level to max_level</li> <li><a href="7cb160a7a9
"><code>7cb160a</code></a> feat(level): add default level in config from the builder</li> <li><a href="a9e7f2a4b8
"><code>a9e7f2a</code></a> WIP: Builder pattern for WASMLayerConfig</li> <li>Additional commits viewable in <a href="https://github.com/storyscript/tracing-wasm/compare/0.1.0...v0.2.0">compare view</a></li> </ul> </details> <br /> 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) </details>
28 lines
783 B
TOML
28 lines
783 B
TOML
[package]
|
|
name = "bevy_log"
|
|
version = "0.4.0"
|
|
edition = "2018"
|
|
authors = [
|
|
"Bevy Contributors <bevyengine@gmail.com>",
|
|
"Carter Anderson <mcanders1@gmail.com>",
|
|
]
|
|
description = "Provides logging for Bevy Engine"
|
|
homepage = "https://bevyengine.org"
|
|
repository = "https://github.com/bevyengine/bevy"
|
|
license = "MIT"
|
|
keywords = ["bevy"]
|
|
|
|
|
|
[dependencies]
|
|
bevy_app = { path = "../bevy_app", version = "0.4.0" }
|
|
bevy_utils = { path = "../bevy_utils", version = "0.4.0" }
|
|
|
|
tracing-subscriber = {version = "0.2.15", features = ["registry"]}
|
|
tracing-chrome = { version = "0.3.0", optional = true }
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
android_log-sys = "0.2.0"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
console_error_panic_hook = "0.1.6"
|
|
tracing-wasm = "0.2"
|