comparison rust/rhg/Cargo.toml @ 52313:56e8841a454c

rust: remove `atty` dependency It is fully replaced with the now stable `std::io::IsTerminal` trait. This was the last dependency flagged as a warning by `cargo audit`, aside from `cpython` which we know about all too well: the plan is to transition to PyO3 soon-ish.
author Raphaël Gomès <rgomes@octobus.net>
date Mon, 04 Nov 2024 15:28:32 +0100
parents 492d167aa508
children
comparison
equal deleted inserted replaced
52312:492d167aa508 52313:56e8841a454c
6 "Raphaël Gomès <raphael.gomes@octobus.net>", 6 "Raphaël Gomès <raphael.gomes@octobus.net>",
7 ] 7 ]
8 edition = "2021" 8 edition = "2021"
9 9
10 [dependencies] 10 [dependencies]
11 atty = "0.2.14"
12 hg-core = { path = "../hg-core"} 11 hg-core = { path = "../hg-core"}
13 chrono = "0.4.23" 12 chrono = "0.4.23"
14 clap = { version = "4", features = ["cargo"] } 13 clap = { version = "4", features = ["cargo"] }
15 derive_more = "0.99.17" 14 derive_more = "0.99.17"
16 home = "0.5.4" 15 home = "0.5.4"