2019-10-04 13:30:46 +00:00
|
|
|
|
[package]
|
|
|
|
|
name = "starship"
|
2020-10-08 16:52:54 +00:00
|
|
|
|
version = "0.46.0"
|
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 = """
|
2020-02-13 02:46:00 +00:00
|
|
|
|
The minimal, blazing-fast, and infinitely customizable prompt for any shell! ☄🌌️
|
2019-10-04 13:30:46 +00:00
|
|
|
|
"""
|
2020-02-06 15:30:43 +00:00
|
|
|
|
exclude = ["docs/**/*", "media/**/*"]
|
2019-10-04 13:30:46 +00:00
|
|
|
|
|
|
|
|
|
[badges]
|
|
|
|
|
is-it-maintained-issue-resolution = { repository = "starship/starship" }
|
|
|
|
|
is-it-maintained-open-issues = { repository = "starship/starship" }
|
|
|
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
|
|
|
|
|
|
[features]
|
2020-03-05 15:53:58 +00:00
|
|
|
|
default = ["battery", "http"]
|
2020-03-15 01:07:34 +00:00
|
|
|
|
http = ["attohttpc"]
|
|
|
|
|
# Vendor OpenSSL, use this if you have trouble cross-compiling starship
|
|
|
|
|
tls-vendored = ["native-tls/vendored"]
|
|
|
|
|
|
2019-10-04 13:30:46 +00:00
|
|
|
|
|
|
|
|
|
[dependencies]
|
2020-08-14 17:03:33 +00:00
|
|
|
|
clap = "2.33.3"
|
2019-10-04 13:30:46 +00:00
|
|
|
|
ansi_term = "0.12.1"
|
2020-06-20 17:59:35 +00:00
|
|
|
|
dirs-next = "1.0.1"
|
2020-09-14 06:33:19 +00:00
|
|
|
|
git2 = { version = "0.13.11", default-features = false }
|
2020-04-11 16:37:24 +00:00
|
|
|
|
toml = { version = "0.5.6", features = ["preserve_order"] }
|
2020-10-08 07:58:00 +00:00
|
|
|
|
rust-ini = "0.16"
|
2020-10-01 08:18:38 +00:00
|
|
|
|
serde_json = "1.0.58"
|
2020-09-30 05:20:00 +00:00
|
|
|
|
rayon = "1.4.1"
|
2020-09-28 20:38:50 +00:00
|
|
|
|
log = { version = "0.4.11", features = ["std"] }
|
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
|
2020-08-26 05:21:36 +00:00
|
|
|
|
battery = { version = "0.7.6", optional = true }
|
2020-07-02 05:39:15 +00:00
|
|
|
|
path-slash = "0.1.3"
|
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-08-18 05:48:13 +00:00
|
|
|
|
once_cell = "1.4.1"
|
2019-10-04 13:30:46 +00:00
|
|
|
|
chrono = "0.4"
|
2020-09-17 05:20:22 +00:00
|
|
|
|
sysinfo = "0.15.2"
|
2020-07-29 05:47:05 +00:00
|
|
|
|
byte-unit = "4.0.9"
|
2020-09-30 20:16:26 +00:00
|
|
|
|
starship_module_config_derive = { version = "0.1.2", path = "starship_module_config_derive" }
|
2019-10-04 13:30:46 +00:00
|
|
|
|
yaml-rust = "0.4"
|
2020-04-06 17:16:18 +00:00
|
|
|
|
pest = "^2.1"
|
|
|
|
|
pest_derive = "^2.1"
|
2020-10-13 16:27:37 +00:00
|
|
|
|
regex = "1.4.1"
|
2020-09-29 21:06:45 +00:00
|
|
|
|
os_info = "3.0.0"
|
2020-06-22 09:18:41 +00:00
|
|
|
|
urlencoding = "1.1.1"
|
2020-03-09 05:49:03 +00:00
|
|
|
|
open = "1.4.0"
|
2020-07-02 05:39:33 +00:00
|
|
|
|
unicode-width = "0.1.8"
|
2020-05-04 11:53:24 +00:00
|
|
|
|
term_size = "0.3.2"
|
2020-09-28 05:25:16 +00:00
|
|
|
|
quick-xml = "0.19.0"
|
2020-09-28 20:38:50 +00:00
|
|
|
|
rand = "0.7.3"
|
2020-10-13 15:38:36 +00:00
|
|
|
|
serde_derive = "1.0.115"
|
2020-08-11 16:44:25 +00:00
|
|
|
|
notify-rust = { version = "4.0.0", optional = true }
|
2019-10-04 13:30:46 +00:00
|
|
|
|
|
2020-03-15 01:07:34 +00:00
|
|
|
|
# Optional/http:
|
2020-10-13 16:09:05 +00:00
|
|
|
|
attohttpc = { version = "0.16.0", optional = true, default-features = false, features = ["tls", "form"] }
|
2020-03-15 01:07:34 +00:00
|
|
|
|
native-tls = { version = "0.2", optional = true }
|
2020-08-21 16:41:36 +00:00
|
|
|
|
shell-words = "1.0.0"
|
2020-03-15 01:07:34 +00:00
|
|
|
|
|
2020-07-13 21:55:42 +00:00
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2020-08-07 19:13:12 +00:00
|
|
|
|
winapi = { version = "0.3", features = [
|
|
|
|
|
"winuser",
|
|
|
|
|
"securitybaseapi",
|
|
|
|
|
"processthreadsapi",
|
|
|
|
|
"handleapi",
|
|
|
|
|
"impl-default",
|
|
|
|
|
] }
|
2020-07-13 21:55:42 +00:00
|
|
|
|
|
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
2020-07-27 05:54:47 +00:00
|
|
|
|
nix = "0.18.0"
|
2020-07-13 21:55:42 +00:00
|
|
|
|
|
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"
|