2019-04-02 05:23:03 +02:00
|
|
|
|
[package]
|
|
|
|
|
name = "starship"
|
2019-07-29 04:47:48 +02:00
|
|
|
|
version = "0.4.0"
|
2019-04-02 05:23:03 +02:00
|
|
|
|
edition = "2018"
|
2019-07-10 19:09:45 +02:00
|
|
|
|
authors = ["Matan Kushner <hello@matchai.me>"]
|
|
|
|
|
repository = "https://github.com/starship/starship"
|
2019-07-20 04:13:11 +02:00
|
|
|
|
documentation = "https://starship.rs/guide/"
|
2019-07-10 19:09:45 +02: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 04:13:11 +02:00
|
|
|
|
exclude = ["docs/**/*"]
|
2019-07-10 19:09:45 +02: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 05:23:03 +02:00
|
|
|
|
|
|
|
|
|
[dependencies]
|
2019-04-18 06:06:31 +02:00
|
|
|
|
clap = "2.33.0"
|
2019-07-15 19:33:54 +02:00
|
|
|
|
ansi_term = "0.12.0"
|
2019-07-29 17:11:13 +02:00
|
|
|
|
dirs = "2.0.2"
|
2019-07-25 17:32:19 +02:00
|
|
|
|
git2 = "0.9.2"
|
2019-05-17 19:02:25 +02:00
|
|
|
|
toml = "0.5.1"
|
2019-07-01 18:24:11 +02:00
|
|
|
|
serde_json = "1.0.40"
|
2019-06-13 16:59:39 +02:00
|
|
|
|
rayon = "1.1.0"
|
2019-05-14 06:43:11 +02:00
|
|
|
|
pretty_env_logger = "0.3.0"
|
2019-07-12 05:28:57 +02:00
|
|
|
|
log = "0.4.7"
|
2019-06-05 15:55:04 +02:00
|
|
|
|
battery = "0.7.4"
|
2019-07-02 22:12:53 +02:00
|
|
|
|
lazy_static = "1.3.0"
|
2019-07-29 02:15:40 +02:00
|
|
|
|
path-slash = "0.1.1"
|
2019-04-16 02:54:52 +02:00
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-07-02 00:21:27 +02:00
|
|
|
|
tempfile = "3.1.0"
|