-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
43 lines (39 loc) · 1.05 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
[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 = { version = "4", features = ["derive"] }
confy = { version = "0.6", features = [ "yaml_conf" ], default-features = false }
dirs = "5"
git2 = { version = "0.18", default-features = false }
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.20"
url = "2"
shellexpand = "3"
sysinfo = "0.30"
[target.'cfg(not(windows))'.dependencies]
users = { version = "0.11", package = "uzers" }
[target.'cfg(windows)'.dependencies.winapi]
version = "0.3"
features = [
"handleapi",
"processthreadsapi",
"securitybaseapi"
]