bevy/crates/bevy_log/Cargo.toml

32 lines
868 B
TOML
Raw Normal View History

2020-11-13 01:23:57 +00:00
[package]
name = "bevy_log"
2021-04-06 18:48:48 +00:00
version = "0.5.0"
2020-11-13 01:23:57 +00:00
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]
2021-04-06 18:48:48 +00:00
bevy_app = { path = "../bevy_app", version = "0.5.0" }
bevy_utils = { path = "../bevy_utils", version = "0.5.0" }
2020-11-13 01:23:57 +00:00
tracing-subscriber = {version = "0.2.15", features = ["registry"]}
tracing-chrome = { version = "0.3.0", optional = true }
2020-11-13 01:23:57 +00:00
[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"
Update tracing-wasm requirement from 0.1 to 0.2 (#1539) 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="https://github.com/storyscript/tracing-wasm/commit/09a0d75c452ec6f6867f6d39a4b47b5794f58e5e"><code>09a0d75</code></a> Disable default features for dependencies and release 0.2.0</li> <li><a href="https://github.com/storyscript/tracing-wasm/commit/bbeca396eddbb3afd3e8d8ca80a7eeff6eeed75b"><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="https://github.com/storyscript/tracing-wasm/commit/e35b182232de7de422afc0b4019380ff89b46f61"><code>e35b182</code></a> add clarifying note to README.</li> <li><a href="https://github.com/storyscript/tracing-wasm/commit/259e118e7fcefcee1667ab369004e5e401b89766"><code>259e118</code></a> rustfmt</li> <li><a href="https://github.com/storyscript/tracing-wasm/commit/f2099cfe5ee866fb03eb5a53b05f71a06101babc"><code>f2099cf</code></a> Apply clippy suggestions</li> <li><a href="https://github.com/storyscript/tracing-wasm/commit/fde480fa117b8661d1675447f5c8411fcf7ed56c"><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="https://github.com/storyscript/tracing-wasm/commit/ad9d4b1903a20736eef8c5e0fbb8fa078a4fc05a"><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="https://github.com/storyscript/tracing-wasm/commit/64fedbd2670ec829f551f5fbb52e1551e7acfe3d"><code>64fedbd</code></a> chore(config): change level to max_level</li> <li><a href="https://github.com/storyscript/tracing-wasm/commit/7cb160a7a91e1f50f0d88da3a061e96a45c2e8b6"><code>7cb160a</code></a> feat(level): add default level in config from the builder</li> <li><a href="https://github.com/storyscript/tracing-wasm/commit/a9e7f2a4b87dd0c31d1b5b360ab708316d593346"><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>
2021-03-03 21:01:41 +00:00
tracing-wasm = "0.2"
[dev-dependencies]
bevy_internal = { path = "../bevy_internal", version = "0.5.0" }