forked from reujab/silver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (40 loc) · 1.01 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
42
43
44
[package]
name = "silver"
version = "2.0.1"
authors = ["reujab <reujab@gmail.com>"]
description = "A cross-shell customizable powerline-like prompt with icons"
repository = "https://github.com/reujab/silver"
readme = "readme.md"
keywords = ["shell", "prompt", "powerline", "agnoster", "icons"]
categories = ["command-line-utilities"]
license = "MIT"
edition = "2018"
[dependencies]
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
chrono = "0.4"
clap = "=3.0.0-beta.2"
clap_derive = "=3.0.0-beta.2"
confy = { git = "https://github.com/rust-cli/confy", features = [ "yaml_conf" ], default-features = false }
dirs = "2"
git2 = "0.15"
hostname = "0.3"
humantime = "2"
humantime-serde = "1.0"
once_cell = "1.4"
lazy_static = "1.4"
libc = "0.2"
regex = "1"
rust-ini = "0.15"
url = "2"
shellexpand = "2.0"
sysinfo = "0.15"
[target.'cfg(not(windows))'.dependencies]
users = "0.10"
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = [
"handleapi",
"processthreadsapi",
"securitybaseapi"
]