-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (38 loc) · 1.07 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "phpup"
version = "0.1.8"
authors = ["Masanori Ueno <[email protected]>"]
license = "GPL-3.0"
edition = "2021"
repository = "https://github.com/masan4444/phpup"
description = "Cross-Platform PHP version manager"
keywords = ["php", "version", "manager"]
categories = ["command-line-utilities", "development-tools"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = "1.0.30"
clap = { version = "4.0.18", features = ["derive", "env"] }
clap_complete = "4.0.3"
itertools = "0.10.3"
once_cell = "1.9.0"
derive_more = "0.99.16"
serde = "1.0.133"
serde_json = "1.0.74"
serde_with = { version = "2.0.1", features = ["macros", "json"] }
regex = "1.5.4"
chrono = { version = "0.4.19", features = ["serde"] }
flate2 = "1.0.22"
tar = "0.4.38"
dirs = "4.0.0"
pathdiff = "0.2.1"
which = "4.2.4"
tempfile = "3.2.0"
num_cpus = "1.13.1"
colored = "2.0.0"
indoc = "1.0.3"
indicatif = "0.17.1"
md5 = "0.7.0"
sha2 = "0.10.2"
strum = { version = "0.24.1", features = ["derive"] }
[profile.release]
strip = "symbols"