Files
topgrade/Cargo.toml

48 lines
1.1 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-10-26 21:36:50 +03:00
version = "3.2.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"
2019-01-14 09:28:20 +02:00
failure = "0.1.5"
failure_derive = "0.1.5"
2019-06-02 09:08:47 +03:00
serde = { version = "1.0.92", features = ["derive"] }
toml = "0.5.1"
2018-12-09 10:30:41 +02:00
which_crate = { version = "2.0.1", 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"
self_update_crate = { version = "0.7.0", optional = true, package = "self_update" }
2019-06-02 09:08:47 +03:00
lazy_static = "1.3.0"
rust-ini = "0.13.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"
2019-09-28 14:41:06 +03:00
strum = { version = "0.16.0", features = ["derive"]}
[target.'cfg(unix)'.dependencies]
2019-08-13 14:27:41 +03:00
nix = "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 = []
self-update = ["self_update_crate", "openssl-probe"]