-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathCargo.toml
46 lines (41 loc) · 1014 Bytes
/
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
42
43
44
45
[package]
name = "frum"
version = "0.1.2"
authors = ["Takayuki Maeda <[email protected]>"]
edition = "2018"
license = "MIT"
homepage = "https://github.com/TaKO8Ki/frum"
repository = "https://github.com/TaKO8Ki/frum"
build = "build.rs"
readme = "README.md"
description = "A blazing fast and simple Ruby version manager written in Rust"
[dependencies]
anyhow = "1.0"
chrono = "0.4"
clap = "2.33.3"
colored = "2.0.0"
dirs = "3.0.1"
encoding_rs_io = "0.1.7"
env_logger = "0.8.3"
indoc = "1.0.3"
itertools = "0.10.1"
log = "0.4.14"
num_cpus = "1.13.0"
regex = "1"
reqwest = { version = "0.11.1", features = ["blocking", "json", "rustls-tls"], default-features = false }
semver = "0.11.0"
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.64"
tar = "0.4.33"
tempfile = "3.2.0"
thiserror = "1.0"
xz2 = "0.1.6"
zip = "0.5.11"
[target.'cfg(windows)'.dependencies]
csv = "1.1.5"
[build-dependencies]
embed-resource = "1.6.1"
[dev-dependencies]
regex = "1"
walkdir = "2"
difference = "2.0.0"