2019-10-04 13:30:46 +00:00
|
|
|
|
[package]
|
|
|
|
|
name = "starship"
|
2020-01-16 04:56:59 +00:00
|
|
|
|
version = "0.33.1"
|
2019-10-04 13:30:46 +00:00
|
|
|
|
edition = "2018"
|
|
|
|
|
authors = ["Matan Kushner <hello@matchai.me>"]
|
|
|
|
|
homepage = "https://starship.rs"
|
|
|
|
|
documentation = "https://starship.rs/guide/"
|
|
|
|
|
repository = "https://github.com/starship/starship"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
license = "ISC"
|
|
|
|
|
keywords = ["prompt", "shell", "bash", "fish", "zsh"]
|
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
|
description = """
|
|
|
|
|
The cross-shell prompt for astronauts. ☄🌌️
|
|
|
|
|
"""
|
|
|
|
|
exclude = ["docs/**/*"]
|
|
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
|
is-it-maintained-issue-resolution = { repository = "starship/starship" }
|
|
|
|
|
is-it-maintained-open-issues = { repository = "starship/starship" }
|
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = ["battery"]
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
clap = "2.33.0"
|
|
|
|
|
ansi_term = "0.12.1"
|
|
|
|
|
dirs = "2.0.2"
|
2019-12-13 05:26:33 +00:00
|
|
|
|
git2 = { version = "0.11.0", default-features = false, features = [] }
|
2020-01-18 18:40:36 +00:00
|
|
|
|
toml = "0.5.6"
|
2020-01-23 05:28:14 +00:00
|
|
|
|
serde_json = "1.0.45"
|
2019-12-23 15:23:45 +00:00
|
|
|
|
rayon = "1.3.0"
|
2019-10-04 13:30:46 +00:00
|
|
|
|
pretty_env_logger = "0.3.1"
|
2019-12-17 16:09:37 +00:00
|
|
|
|
log = "0.4.8"
|
2019-10-04 13:30:46 +00:00
|
|
|
|
# battery is optional (on by default) because the crate doesn't currently build for Termux
|
|
|
|
|
# see: https://github.com/svartalf/rust-battery/issues/33
|
2019-11-27 05:52:09 +00:00
|
|
|
|
battery = { version = "0.7.5", optional = true }
|
2019-10-04 13:30:46 +00:00
|
|
|
|
path-slash = "0.1.1"
|
2019-11-12 02:46:25 +00:00
|
|
|
|
unicode-segmentation = "1.6.0"
|
2019-12-19 05:27:49 +00:00
|
|
|
|
gethostname = "0.2.1"
|
2020-01-20 06:00:02 +00:00
|
|
|
|
once_cell = "1.3.1"
|
2019-10-04 13:30:46 +00:00
|
|
|
|
chrono = "0.4"
|
2020-01-20 05:41:29 +00:00
|
|
|
|
sysinfo = "0.10.5"
|
2019-10-04 13:30:46 +00:00
|
|
|
|
byte-unit = "3.0.3"
|
|
|
|
|
starship_module_config_derive = { version = "0.1.0", path = "starship_module_config_derive" }
|
|
|
|
|
yaml-rust = "0.4"
|
2020-01-08 05:27:30 +00:00
|
|
|
|
nom = "5.1.0"
|
2020-01-20 06:18:52 +00:00
|
|
|
|
os_info = "1.3.2"
|
2019-12-14 23:40:12 +00:00
|
|
|
|
urlencoding = "1.0.0"
|
|
|
|
|
open = "1.3.2"
|
2020-01-19 16:00:40 +00:00
|
|
|
|
ureq = { version = "0.11.3", default-features = false, features = ["tls"] }
|
|
|
|
|
serde_urlencoded = "0.6.1"
|
2020-01-02 04:19:08 +00:00
|
|
|
|
unicode-width = "0.1.7"
|
|
|
|
|
textwrap = "0.11.0"
|
|
|
|
|
term_size = "0.3.1"
|
2019-10-04 13:30:46 +00:00
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = "3.1.0"
|
|
|
|
|
|
2019-10-13 04:33:47 +00:00
|
|
|
|
[profile.release]
|
|
|
|
|
codegen-units = 1
|
|
|
|
|
lto = true
|
|
|
|
|
|
2019-10-04 13:30:46 +00:00
|
|
|
|
[[bin]]
|
|
|
|
|
name = "starship"
|
|
|
|
|
path = "src/main.rs"
|