Files
topgrade/Cargo.toml
Roey Darwish Dror a6b6b7aa4e Ctrl+C handling (#75)
As stated [here](https://doc.rust-lang.org/std/io/trait.BufRead.html#errors-1), `read_until` (and `read_line`) ignore Ctrl+C, so Topgrade does not respond to Ctrl+C in the retry prompt, and instead will exit only when enter is pressed after Ctrl+C. This is undesirable, so this pull request is a WIP until we find a solution.
2018-10-17 14:07:58 +03:00

33 lines
660 B
TOML

[package]
name = "topgrade"
description = "Upgrade all the things"
license-file = "LICENCE"
repository = "https://github.com/r-darwish/topgrade"
version = "0.16.0"
authors = ["Roey Darwish Dror <roey.ghost@gmail.com>"]
exclude = ["doc/screenshot.gif"]
[dependencies]
directories = "1.0.2"
failure = "0.1.2"
failure_derive = "0.1.2"
serde = "1.0.79"
serde_derive = "1.0.79"
toml = "0.4.8"
which = "2.0.0"
shellexpand = "1.0.0"
structopt = "0.2.10"
log = "0.4.5"
env_logger = "0.5.13"
term_size = "0.3.1"
termcolor = "1.0.4"
walkdir = "2.2.5"
console = "0.6.2"
[target.'cfg(unix)'.dependencies]
nix = "0.11"
lazy_static = "1.1.0"
[profile.release]
lto = true