diff --git a/Cargo.lock b/Cargo.lock index fa30050d..bc5cb770 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3229,6 +3229,12 @@ version = "2.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" +[[package]] +name = "symlink" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7973cce6668464ea31f176d85b13c7ab3bba2cb3b77a2ed26abd7801688010a" + [[package]] name = "syn" version = "1.0.109" @@ -3642,11 +3648,12 @@ dependencies = [ [[package]] name = "tracing-appender" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf" +checksum = "050686193eb999b4bb3bc2acfa891a13da00f79734704c4b8b4ef1a10b368a3c" dependencies = [ "crossbeam-channel", + "symlink", "thiserror 2.0.18", "time", "tracing-subscriber", diff --git a/Cargo.toml b/Cargo.toml index f4aff45f..ae979fa2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -43,7 +43,7 @@ thiserror = "2.0.18" tokio = { version = "1.51.1", features = ["full"] } tokio-util = { version = "0.7.18", features = ["compat"] } tracing = "0.1.44" -tracing-appender = "0.2.3" +tracing-appender = "0.2.5" tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json"] } tui-markdown = { version = "0.3.7" } tui-textarea-2 = "0.10.2"