[package] name = "autolog" version = "0.1.0" edition = "2018" description = "A mini Rust library for logging when a function is called" homepage = "https://github.com/jewlexx/autolog" repository = "https://github.com/jewlexx/autolog" license = "MIT/Apache-2.0" documentation = "https://docs.rs/autolog" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] proc-macro = true [dependencies] litrs = "0.2" proc-macro2 = "1.0" quote = "1.0" syn = { version = "1.0", features = ["full"] } tracing = { version = "0.1", optional = true } [features] default = ["tracing"] [dev-dependencies] # Used to tell whether tracing is enabled or not parking_lot = "0.12" # Used for async testing smol = "1.2" # Used to test tracing tracing-subscriber = "0.3"