2019-04-02 03:23:03 +00:00
|
|
|
|
[package]
|
|
|
|
|
name = "starship"
|
2019-08-27 18:10:48 +00:00
|
|
|
|
version = "0.13.1"
|
2019-04-02 03:23:03 +00:00
|
|
|
|
edition = "2018"
|
2019-07-10 17:09:45 +00:00
|
|
|
|
authors = ["Matan Kushner <hello@matchai.me>"]
|
2019-08-26 19:07:47 +00:00
|
|
|
|
homepage = "https://starship.rs"
|
2019-07-20 02:13:11 +00:00
|
|
|
|
documentation = "https://starship.rs/guide/"
|
2019-08-26 19:07:47 +00:00
|
|
|
|
repository = "https://github.com/starship/starship"
|
2019-07-10 17:09:45 +00:00
|
|
|
|
readme = "README.md"
|
|
|
|
|
license = "ISC"
|
|
|
|
|
keywords = ["prompt", "shell", "bash", "fish", "zsh"]
|
|
|
|
|
categories = ["command-line-utilities"]
|
|
|
|
|
description = """
|
|
|
|
|
The cross-shell prompt for astronauts. ☄🌌️
|
|
|
|
|
"""
|
2019-07-20 02:13:11 +00:00
|
|
|
|
exclude = ["docs/**/*"]
|
2019-07-10 17:09:45 +00:00
|
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
|
azure-devops = { project = "starship-control/starship", pipeline = "Starship Test Suite" }
|
|
|
|
|
is-it-maintained-issue-resolution = { repository = "starship/starship" }
|
|
|
|
|
is-it-maintained-open-issues = { repository = "starship/starship" }
|
|
|
|
|
maintenance = { status = "actively-developed" }
|
2019-04-02 03:23:03 +00:00
|
|
|
|
|
2019-08-26 18:09:39 +00:00
|
|
|
|
[features]
|
|
|
|
|
default = ["battery"]
|
|
|
|
|
|
2019-04-02 03:23:03 +00:00
|
|
|
|
[dependencies]
|
2019-04-18 04:06:31 +00:00
|
|
|
|
clap = "2.33.0"
|
2019-07-15 17:33:54 +00:00
|
|
|
|
ansi_term = "0.12.0"
|
2019-07-29 15:11:13 +00:00
|
|
|
|
dirs = "2.0.2"
|
2019-08-21 17:17:13 +00:00
|
|
|
|
git2 = "0.10.0"
|
2019-08-14 15:28:07 +00:00
|
|
|
|
toml = "0.5.3"
|
2019-07-01 16:24:11 +00:00
|
|
|
|
serde_json = "1.0.40"
|
2019-06-13 14:59:39 +00:00
|
|
|
|
rayon = "1.1.0"
|
2019-08-19 15:51:55 +00:00
|
|
|
|
pretty_env_logger = "0.3.1"
|
2019-07-29 15:34:32 +00:00
|
|
|
|
log = "0.4.8"
|
2019-08-26 18:09:39 +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
|
|
|
|
|
battery = { version = "0.7.4", optional = true }
|
2019-08-26 16:53:40 +00:00
|
|
|
|
lazy_static = "1.4.0"
|
2019-07-29 00:15:40 +00:00
|
|
|
|
path-slash = "0.1.1"
|
2019-04-16 00:54:52 +00:00
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-07-01 22:21:27 +00:00
|
|
|
|
tempfile = "3.1.0"
|