1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14rust-version = "1.63.0" 15name = "tracing-core" 16version = "0.1.33" 17authors = ["Tokio Contributors <team@tokio.rs>"] 18build = false 19autobins = false 20autoexamples = false 21autotests = false 22autobenches = false 23description = """ 24Core primitives for application-level tracing. 25""" 26homepage = "https://tokio.rs" 27readme = "README.md" 28keywords = [ 29 "logging", 30 "tracing", 31 "profiling", 32] 33categories = [ 34 "development-tools::debugging", 35 "development-tools::profiling", 36 "asynchronous", 37] 38license = "MIT" 39repository = "https://github.com/tokio-rs/tracing" 40resolver = "2" 41 42[package.metadata.docs.rs] 43all-features = true 44rustc-args = [ 45 "--cfg", 46 "tracing_unstable", 47] 48rustdoc-args = [ 49 "--cfg", 50 "docsrs", 51 "--cfg", 52 "tracing_unstable", 53] 54 55[lib] 56name = "tracing_core" 57path = "src/lib.rs" 58 59[[test]] 60name = "dispatch" 61path = "tests/dispatch.rs" 62 63[[test]] 64name = "global_dispatch" 65path = "tests/global_dispatch.rs" 66 67[[test]] 68name = "local_dispatch_before_init" 69path = "tests/local_dispatch_before_init.rs" 70 71[[test]] 72name = "macros" 73path = "tests/macros.rs" 74 75[[test]] 76name = "missed_register_callsite" 77path = "tests/missed_register_callsite.rs" 78 79[dependencies.once_cell] 80version = "1.13.0" 81optional = true 82 83[features] 84default = [ 85 "std", 86 "valuable?/std", 87] 88std = ["once_cell"] 89 90[target."cfg(tracing_unstable)".dependencies.valuable] 91version = "0.1.0" 92optional = true 93default-features = false 94 95[badges.maintenance] 96status = "actively-developed" 97 98[lints.rust.unexpected_cfgs] 99level = "warn" 100priority = 0 101check-cfg = [ 102 "cfg(flaky_tests)", 103 "cfg(tracing_unstable)", 104] 105