[package]
edition = "2021"
rust-version = "1.65"
name = "log-args-runtime"
version = "0.1.7"
authors = ["JS <mkjsm57@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple procedural macro to log function arguments using the tracing crate."
homepage = "https://github.com/MKJSM/rs-log-args"
readme = "README.md"
keywords = [
"logging",
"tracing",
"macro",
"proc-macro",
"arguments",
]
categories = [
"development-tools::debugging",
"development-tools::procedural-macro-helpers",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/MKJSM/rs-log-args"
[features]
default = []
with_context = []
[lib]
name = "log_args_runtime"
path = "src/lib.rs"
[dependencies.once_cell]
version = "1.19.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]
[dependencies.tracing]
version = "0.1.40"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["json"]