From 4093991b86740522f30c3a806d408de877707f9f Mon Sep 17 00:00:00 2001 From: James Wu Date: Mon, 25 Mar 2024 19:31:08 -0400 Subject: [PATCH] Further decrease dependency requirements. We'll still use the latest packages in OSS --- Cargo.toml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index bd15d7f..af35d3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tlparse" -version = "0.3.9" +version = "0.3.10" edition = "2021" authors = ["Edward Z. Yang "] description = "Parse TORCH_LOG logs produced by PyTorch torch.compile" @@ -18,15 +18,15 @@ path = "src/cli.rs" [dependencies] anyhow = "1.0.75" base16ct = "0.2.0" -clap = { version = "4.5.0", features = ["derive"] } +clap = { version = "4.5.2", features = ["derive"] } fxhash = "0.2.1" -html-escape = "0.2.13" +html-escape = "0.2.5" indexmap = "2.1.0" -indicatif = "0.17.8" -md-5 = "0.10.6" -once_cell = "1.19.0" +indicatif = "0.17.6" +md-5 = "0.10" +once_cell = "1.12" opener = "0.6.1" -regex = "1.10.3" -serde = { version = "1.0.197", features = ["serde_derive"] } +regex = "1.9.2" +serde = { version = "1.0.185", features = ["serde_derive"] } serde_json = "1.0.100" tinytemplate = "1.2.1"