From d35690c167ef46e9f496d3415ed5aa735dcedfd4 Mon Sep 17 00:00:00 2001 From: 1plus <122733139+Chen1Plus@users.noreply.github.com> Date: Fri, 16 Aug 2024 17:58:35 +0800 Subject: [PATCH] Update Cargo.toml --- Cargo.toml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 69ac067..02a3de5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,20 +5,20 @@ edition = "2021" [dependencies] # Serialization -serde = { version = "1.0.205", features = ["derive"] } -serde_json = "1.0.122" -typetag = "0.2.17" +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +typetag = "0.2" # File system -dirs = "5.0.1" -relative-path = { version = "1.9.3", features = ["serde"] } -tempfile = "3.12.0" -zip = "2.1.6" +dirs = "5.0" +relative-path = { version = "1.9", features = ["serde"] } +tempfile = "3.12" +zip = "2.1" # Web access -git2 = "0.19.0" -reqwest = { version = "0.12.5", features = ["blocking"] } +git2 = "0.19" +reqwest = { version = "0.12", features = ["blocking"] } # Else -anyhow = "1.0.86" -clap = { version = "4.5.15", features = ["derive"] } +anyhow = "1.0" +clap = { version = "4.5", features = ["derive"] }