[package] name = "logging" version = "0.1.0" authors = ["The Kata Containers community "] edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] serde_json = "1.0.39" # slog: # - Dynamic keys required to allow HashMap keys to be slog::Serialized. # - The 'max_*' features allow changing the log level at runtime # (by stopping the compiler from removing log calls). slog = { version = "2.5.2", features = ["dynamic-keys", "max_level_trace", "release_max_level_debug"] } slog-json = "2.3.0" slog-async = "2.3.0" slog-scope = "4.1.2" [dev-dependencies] tempfile = "3.1.0"