mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 21:07:52 +00:00
131 lines
3.5 KiB
TOML
131 lines
3.5 KiB
TOML
[package]
|
|
name = "starship"
|
|
version = "1.10.2"
|
|
authors = ["Starship Contributors"]
|
|
build = "build.rs"
|
|
categories = ["command-line-utilities"]
|
|
documentation = "https://starship.rs/guide/"
|
|
edition = "2021"
|
|
homepage = "https://starship.rs"
|
|
# Keep `/` in front of `README.md` to exclude localized readmes
|
|
include = [
|
|
"src/**/*",
|
|
"/starship.exe.manifest",
|
|
"media/icon.ico",
|
|
"build.rs",
|
|
"LICENSE",
|
|
"/README.md",
|
|
"docs/.vuepress/public/presets/toml/",
|
|
".github/config-schema.json",
|
|
]
|
|
keywords = ["prompt", "shell", "bash", "fish", "zsh"]
|
|
license = "ISC"
|
|
readme = "README.md"
|
|
repository = "https://github.com/starship/starship"
|
|
# Note: MSRV is only intended as a hint, and only the latest version is officially supported in starship.
|
|
rust-version = "1.59"
|
|
description = """
|
|
The minimal, blazing-fast, and infinitely customizable prompt for any shell! ☄🌌️
|
|
"""
|
|
|
|
[features]
|
|
default = ["battery", "notify"]
|
|
battery = ["starship-battery"]
|
|
config-schema = ["schemars"]
|
|
notify = ["notify-rust"]
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.22", features = ["clock", "std"] }
|
|
clap = { version = "=3.2.20", features = ["derive", "cargo", "unicode", "unstable-v4"] }
|
|
clap_complete = "3.2.4"
|
|
dirs-next = "2.0.0"
|
|
dunce = "1.0.2"
|
|
gethostname = "0.2.3"
|
|
# Addresses https://github.com/starship/starship/issues/4251
|
|
git-features = { version = "0.22.3", features = ["fs-walkdir-single-threaded"] }
|
|
git-repository = "0.23.1"
|
|
indexmap = { version = "1.9.1", features = ["serde"] }
|
|
local_ipaddress = "0.1.3"
|
|
log = { version = "0.4.16", features = ["std"] }
|
|
# nofity-rust is optional (on by default) because the crate doesn't currently build for darwin with nix
|
|
# see: https://github.com/NixOS/nixpkgs/issues/160876
|
|
notify-rust = { version = "4.5.8", optional = true }
|
|
nu-ansi-term = "0.46.0"
|
|
once_cell = "1.13.1"
|
|
open = "3.0.2"
|
|
os_info = "3.5.0"
|
|
path-slash = "0.2.1"
|
|
pest = "2.2.1"
|
|
pest_derive = "2.3.0"
|
|
quick-xml = "0.24.0"
|
|
rand = "0.8.5"
|
|
rayon = "1.5.3"
|
|
regex = "1.6.0"
|
|
rust-ini = "0.18.0"
|
|
semver = "1.0.13"
|
|
serde = { version = "1.0.144", features = ["derive"] }
|
|
serde_json = "1.0.85"
|
|
sha-1 = "0.10.0"
|
|
shadow-rs = { version = "0.16.3", default-features = false }
|
|
# battery is optional (on by default) because the crate doesn't currently build for Termux
|
|
# see: https://github.com/svartalf/rust-battery/issues/33
|
|
starship-battery = { version = "0.7.9", optional = true }
|
|
strsim = "0.10.0"
|
|
systemstat = "=0.2.0"
|
|
terminal_size = "0.2.1"
|
|
toml = { version = "0.5.9", features = ["preserve_order"] }
|
|
toml_edit = "0.14.4"
|
|
unicode-segmentation = "1.9.0"
|
|
unicode-width = "0.1.9"
|
|
urlencoding = "2.1.0"
|
|
versions = "4.1.0"
|
|
which = "4.3.0"
|
|
yaml-rust = "0.4.5"
|
|
|
|
process_control = { version = "3.5.1", features = ["crossbeam-channel"] }
|
|
|
|
guess_host_triple = "0.1.3"
|
|
home = "0.5.3"
|
|
shell-words = "1.1.0"
|
|
|
|
[dependencies.schemars]
|
|
version = "0.8.10"
|
|
optional = true
|
|
features = ["preserve_order", "indexmap"]
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
deelevate = "0.2.0"
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
|
version = "0.39.0"
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_UI_Shell",
|
|
"Win32_Security",
|
|
"Win32_System_Threading",
|
|
"Win32_Storage_FileSystem",
|
|
]
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
nix = { version = "0.25.0", default-features = false, features = ["feature", "fs", "user"] }
|
|
|
|
[build-dependencies]
|
|
shadow-rs = { version = "0.16.3", default-features = false }
|
|
dunce = "1.0.2"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1.12"
|
|
|
|
[dev-dependencies]
|
|
mockall = "0.11"
|
|
tempfile = "3.2.0"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
strip = true
|
|
|
|
[[bin]]
|
|
name = "starship"
|
|
path = "src/main.rs"
|