mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-24 21:57:41 +00:00
chore: Publish crate to Crates.io (#92)
* Add all the necessary Cargo.toml details for crates.io * Update the image on README.md to be a full URL so crates.io can load it * Update installation instructions to encourage installing from crates.io
This commit is contained in:
parent
d7754f38e7
commit
67537ae753
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -702,7 +702,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "starship"
|
name = "starship"
|
||||||
version = "0.1.0"
|
version = "0.1.0-beta.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"battery 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
"battery 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
18
Cargo.toml
18
Cargo.toml
@ -1,8 +1,22 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "starship"
|
name = "starship"
|
||||||
version = "0.1.0"
|
version = "0.1.0-beta.4"
|
||||||
authors = ["Matan Kushner <hello@matchai.me>"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
authors = ["Matan Kushner <hello@matchai.me>"]
|
||||||
|
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. ☄🌌️
|
||||||
|
"""
|
||||||
|
|
||||||
|
[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" }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
clap = "2.33.0"
|
clap = "2.33.0"
|
||||||
|
13
README.md
13
README.md
@ -1,7 +1,8 @@
|
|||||||
<h1 align="center">
|
<h1 align="center">
|
||||||
<br>
|
<br>
|
||||||
<img width="400" src="media/logo.png" alt="Starship – Cross-shell prompt">
|
<img width="400" src="https://raw.githubusercontent.com/starship/starship/master/media/logo.png" alt="Starship – Cross-shell prompt">
|
||||||
<p align="center">
|
<p align="center">
|
||||||
|
<a href="https://crates.io/crates/starship"><img src="https://badgen.net/crates/v/starship" alt="Crates.io version"></a>
|
||||||
<a href="https://dev.azure.com/starship-control/starship/_build"><img src="https://badgen.net/azure-pipelines/starship-control/starship/Starship%20Test%20Suite" alt="Azure Pipelines Build Status"></a>
|
<a href="https://dev.azure.com/starship-control/starship/_build"><img src="https://badgen.net/azure-pipelines/starship-control/starship/Starship%20Test%20Suite" alt="Azure Pipelines Build Status"></a>
|
||||||
<a href="#contributors"><img src="https://badgen.net/badge/all%20contributors/7/orange" alt="All Contributors"></a>
|
<a href="#contributors"><img src="https://badgen.net/badge/all%20contributors/7/orange" alt="All Contributors"></a>
|
||||||
<a href="https://discord.gg/8Jzqu3T"><img src="https://badgen.net/badge/chat/on%20discord/7289da" alt="Chat on Discord"></a>
|
<a href="https://discord.gg/8Jzqu3T"><img src="https://badgen.net/badge/chat/on%20discord/7289da" alt="Chat on Discord"></a>
|
||||||
@ -9,7 +10,7 @@
|
|||||||
<br>
|
<br>
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
> ⚠️ This is very much work in progress, so please don't try to use it just yet!
|
> ⚠️ Starship is still a work in progress but is now far enough along to be used as a prompt (I personally use it as my daily driver)
|
||||||
|
|
||||||
Starship is a Rust port of the minimalistic, powerful, and extremely customizable prompt [Spaceship ZSH](https://github.com/denysdovhan/spaceship-prompt).
|
Starship is a Rust port of the minimalistic, powerful, and extremely customizable prompt [Spaceship ZSH](https://github.com/denysdovhan/spaceship-prompt).
|
||||||
|
|
||||||
@ -80,12 +81,10 @@ I'm very new to Rust, so any help is appreciated when it comes to improving deve
|
|||||||
|
|
||||||
### Getting Started
|
### Getting Started
|
||||||
|
|
||||||
1. `cd` to the root of the **starship** repo
|
|
||||||
|
|
||||||
1. Install the **starship** binary:
|
1. Install the **starship** binary:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
cargo install --path .
|
cargo install starship
|
||||||
```
|
```
|
||||||
|
|
||||||
1. Add the init script to your shell's config file:
|
1. Add the init script to your shell's config file:
|
||||||
@ -110,6 +109,10 @@ I'm very new to Rust, so any help is appreciated when it comes to improving deve
|
|||||||
eval (starship init fish)
|
eval (starship init fish)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
> 🚧 Configuration features and documentation are in the process of being developed
|
||||||
|
|
||||||
## Contributors
|
## Contributors
|
||||||
|
|
||||||
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
|
||||||
|
Loading…
Reference in New Issue
Block a user