2018-05-29 23:48:30 +03:00
|
|
|
[package]
|
|
|
|
|
name = "topgrade"
|
2018-06-03 13:36:47 +03:00
|
|
|
description = "Upgrade all the things"
|
2019-03-31 06:36:45 +01:00
|
|
|
categories = ["os"]
|
|
|
|
|
keywords = ["upgrade", "update"]
|
2018-11-25 13:13:47 +02:00
|
|
|
license-file = "LICENSE"
|
2018-06-03 13:36:47 +03:00
|
|
|
repository = "https://github.com/r-darwish/topgrade"
|
2020-07-06 14:40:16 +03:00
|
|
|
version = "5.1.0"
|
2018-05-29 23:48:30 +03:00
|
|
|
authors = ["Roey Darwish Dror <roey.ghost@gmail.com>"]
|
2018-06-03 13:36:47 +03:00
|
|
|
exclude = ["doc/screenshot.gif"]
|
2018-12-09 10:30:41 +02:00
|
|
|
edition = "2018"
|
2019-08-15 09:20:54 +03:00
|
|
|
readme = "README.md"
|
2018-05-29 23:48:30 +03:00
|
|
|
|
|
|
|
|
[dependencies]
|
2019-06-02 09:08:47 +03:00
|
|
|
directories = "2.0.1"
|
|
|
|
|
serde = { version = "1.0.92", features = ["derive"] }
|
|
|
|
|
toml = "0.5.1"
|
2020-06-18 22:25:27 +03:00
|
|
|
which_crate = { version = "4.0.0", package = "which" }
|
2020-02-29 20:15:28 +02:00
|
|
|
shellexpand = "2.0.0"
|
2019-09-04 21:07:43 +03:00
|
|
|
structopt = "0.3.0"
|
2018-10-31 12:56:32 +02:00
|
|
|
log = "0.4.6"
|
2020-05-15 21:10:15 +03:00
|
|
|
walkdir = "2.3.1"
|
2020-06-11 17:39:06 +03:00
|
|
|
console = "0.10.0"
|
2020-05-15 21:10:15 +03:00
|
|
|
lazy_static = "1.4.0"
|
2019-05-21 16:40:00 +03:00
|
|
|
chrono = "0.4.6"
|
2020-02-10 22:17:59 +02:00
|
|
|
pretty_env_logger = "0.4.0"
|
2019-08-11 12:41:09 +03:00
|
|
|
glob = "0.3.0"
|
2020-05-15 21:10:15 +03:00
|
|
|
strum = { version = "0.18.0", features = ["derive"] }
|
2019-12-11 23:05:38 +02:00
|
|
|
thiserror = "1.0.9"
|
|
|
|
|
anyhow = "1.0.25"
|
2019-12-12 20:24:22 +02:00
|
|
|
tempfile = "3.1.0"
|
2020-03-03 13:30:09 +02:00
|
|
|
cfg-if = "0.1.10"
|
2020-05-15 11:11:28 +03:00
|
|
|
tokio = { version = "0.2", features = ["rt-core", "process"] }
|
|
|
|
|
futures = "0.3"
|
2018-10-17 14:07:58 +03:00
|
|
|
|
2020-01-03 10:26:21 +02:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2020-06-18 22:25:27 +03:00
|
|
|
notify-rust = "4.0.0"
|
2020-01-03 10:26:21 +02:00
|
|
|
|
2018-10-17 14:07:58 +03:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2020-02-10 22:17:59 +02:00
|
|
|
nix = "0.17.0"
|
2020-06-18 22:25:27 +03:00
|
|
|
self_update_crate = { version = "0.16.0", optional = true, package = "self_update", features = ["archive-tar", "compression-flate2"] }
|
2020-05-09 07:22:51 +03:00
|
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2020-06-18 22:25:27 +03:00
|
|
|
self_update_crate = { version = "0.16.0", optional = true, package = "self_update", features = ["archive-zip", "compression-zip-deflate"] }
|
2018-08-19 14:41:13 +03:00
|
|
|
|
2020-02-29 20:15:28 +02:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
|
rust-ini = "0.15.0"
|
|
|
|
|
|
2018-08-19 14:41:13 +03:00
|
|
|
[profile.release]
|
|
|
|
|
lto = true
|
2018-11-07 14:31:44 +02:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
|
2020-05-09 07:22:51 +03:00
|
|
|
self-update = ["self_update_crate"]
|