Files
topgrade/Cargo.toml

52 lines
1.2 KiB
TOML
Raw Normal View History

2018-05-29 23:48:30 +03:00
[package]
name = "topgrade"
2018-06-03 13:36:47 +03:00
description = "Upgrade all the things"
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"
2019-12-30 09:25:22 +02:00
version = "3.6.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-01-05 21:55:05 +02:00
which_crate = { version = "3.1.0", package = "which" }
shellexpand = "1.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"
2018-12-12 13:05:02 +02:00
walkdir = "2.2.7"
2019-09-10 22:54:20 +03:00
console = "0.9.0"
2019-11-15 07:08:46 +02:00
self_update_crate = { version = "0.8.0", optional = true, package = "self_update" }
2019-06-02 09:08:47 +03:00
lazy_static = "1.3.0"
2020-01-05 21:55:05 +02:00
rust-ini = "0.14.0"
2019-05-21 16:40:00 +03:00
chrono = "0.4.6"
2019-06-02 09:08:47 +03:00
tokio = "0.1.21"
tokio-process = "0.2.3"
futures = "0.1.27"
openssl-probe = { version = "0.1.2", optional = true }
2019-08-04 09:33:01 +03:00
pretty_env_logger = "0.3.0"
glob = "0.3.0"
2020-01-05 21:55:05 +02:00
strum = { version = "0.17.1", features = ["derive"] }
thiserror = "1.0.9"
anyhow = "1.0.25"
2019-12-12 20:24:22 +02:00
tempfile = "3.1.0"
2020-01-03 10:26:21 +02:00
[target.'cfg(target_os = "macos")'.dependencies]
notify-rust = "3.6.3"
[target.'cfg(unix)'.dependencies]
2020-01-05 21:55:05 +02:00
nix = "0.16.1"
2018-08-19 14:41:13 +03:00
[profile.release]
lto = true
2018-11-07 14:31:44 +02:00
[features]
default = []
self-update = ["self_update_crate", "openssl-probe"]