comparison rust/rhg/Cargo.toml @ 48952:8848c3453661

rhg: upgrade dependencies This upgrades all dependencies to their latest version, except `clap`, which is upgraded to the last 2.x series version, since 3.x does not support our minimum supported Rust version of 1.48.0. This contains a security fix for `regex` which does not affect us too much, but doesn't hurt, and the rest of the upgrades are there simply to keep up. Differential Revision: https://phab.mercurial-scm.org/D12357
author Raphaël Gomès <rgomes@octobus.net>
date Wed, 09 Mar 2022 11:17:09 +0100
parents 39c447e03dbc
children a932cad26d37
comparison
equal deleted inserted replaced
48951:cf99c4af1079 48952:8848c3453661
6 "Raphaël Gomès <raphael.gomes@octobus.net>", 6 "Raphaël Gomès <raphael.gomes@octobus.net>",
7 ] 7 ]
8 edition = "2018" 8 edition = "2018"
9 9
10 [dependencies] 10 [dependencies]
11 atty = "0.2" 11 atty = "0.2.14"
12 hg-core = { path = "../hg-core"} 12 hg-core = { path = "../hg-core"}
13 chrono = "0.4.19" 13 chrono = "0.4.19"
14 clap = "2.33.1" 14 clap = "2.34.0"
15 derive_more = "0.99" 15 derive_more = "0.99.17"
16 home = "0.5.3" 16 home = "0.5.3"
17 lazy_static = "1.4.0" 17 lazy_static = "1.4.0"
18 log = "0.4.11" 18 log = "0.4.14"
19 micro-timer = "0.3.1" 19 micro-timer = "0.4.0"
20 regex = "1.3.9" 20 regex = "1.5.5"
21 env_logger = "0.7.1" 21 env_logger = "0.9.0"
22 format-bytes = "0.3.0" 22 format-bytes = "0.3.0"
23 users = "0.11.0" 23 users = "0.11.0"