2019-10-04 13:30:46 +00:00
|
|
|
|
[package]
|
|
|
|
|
name = "starship"
|
2023-04-12 18:46:13 +00:00
|
|
|
|
version = "1.14.2"
|
2021-11-09 21:30:28 +00:00
|
|
|
|
authors = ["Starship Contributors"]
|
2022-01-20 08:32:09 +00:00
|
|
|
|
build = "build.rs"
|
|
|
|
|
categories = ["command-line-utilities"]
|
2019-10-04 13:30:46 +00:00
|
|
|
|
documentation = "https://starship.rs/guide/"
|
2022-01-20 08:32:09 +00:00
|
|
|
|
edition = "2021"
|
|
|
|
|
homepage = "https://starship.rs"
|
|
|
|
|
# Keep `/` in front of `README.md` to exclude localized readmes
|
2022-03-09 08:05:02 +00:00
|
|
|
|
include = [
|
|
|
|
|
"src/**/*",
|
|
|
|
|
"/starship.exe.manifest",
|
2022-06-19 08:33:42 +00:00
|
|
|
|
"media/icon.ico",
|
2022-03-09 08:05:02 +00:00
|
|
|
|
"build.rs",
|
|
|
|
|
"LICENSE",
|
|
|
|
|
"/README.md",
|
|
|
|
|
"docs/.vuepress/public/presets/toml/",
|
2022-04-18 15:42:47 +00:00
|
|
|
|
".github/config-schema.json",
|
2022-03-09 08:05:02 +00:00
|
|
|
|
]
|
2019-10-04 13:30:46 +00:00
|
|
|
|
keywords = ["prompt", "shell", "bash", "fish", "zsh"]
|
2022-01-20 08:32:09 +00:00
|
|
|
|
license = "ISC"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
repository = "https://github.com/starship/starship"
|
2022-03-12 21:23:24 +00:00
|
|
|
|
# Note: MSRV is only intended as a hint, and only the latest version is officially supported in starship.
|
2023-01-04 08:22:02 +00:00
|
|
|
|
rust-version = "1.65"
|
2019-10-04 13:30:46 +00:00
|
|
|
|
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
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
[features]
|
2023-02-21 04:03:17 +00:00
|
|
|
|
default = ["battery", "notify", "gix-max-perf"]
|
2021-11-09 11:35:45 +00:00
|
|
|
|
battery = ["starship-battery"]
|
2022-04-01 15:14:05 +00:00
|
|
|
|
config-schema = ["schemars"]
|
2022-04-12 10:07:36 +00:00
|
|
|
|
notify = ["notify-rust"]
|
2020-03-15 01:07:34 +00:00
|
|
|
|
|
2023-03-22 18:42:46 +00:00
|
|
|
|
# Enables most of the `max-performance` features of the `gix` module for better performance.
|
2022-10-15 01:39:31 +00:00
|
|
|
|
# This can be more difficult to build in some conditions and requires cmake.
|
2023-02-21 04:03:17 +00:00
|
|
|
|
gix-max-perf = ["gix-features/zlib-ng", "gix/fast-sha1"]
|
2022-10-15 01:39:31 +00:00
|
|
|
|
# Slower than `git-repository-max-perf`, but better than the default.
|
|
|
|
|
# Unlike `git-repository-max-perf` this does not require cmake and allows dynamic zlib linking.
|
2023-02-21 04:03:17 +00:00
|
|
|
|
gix-faster = ["gix-features/zlib-stock", "gix/fast-sha1"]
|
2022-10-15 01:39:31 +00:00
|
|
|
|
|
2019-10-04 13:30:46 +00:00
|
|
|
|
[dependencies]
|
2023-03-12 20:58:28 +00:00
|
|
|
|
chrono = { version = "0.4.24", default-features = false, features = ["clock", "std", "wasmbind"] }
|
2023-03-29 19:22:02 +00:00
|
|
|
|
clap = { version = "4.2.1", features = ["derive", "cargo", "unicode"] }
|
2023-03-28 23:42:29 +00:00
|
|
|
|
clap_complete = "4.2.0"
|
2022-03-24 19:06:24 +00:00
|
|
|
|
dirs-next = "2.0.0"
|
2022-10-06 23:59:27 +00:00
|
|
|
|
dunce = "1.0.3"
|
2022-12-01 14:18:19 +00:00
|
|
|
|
gethostname = "0.4.1"
|
2022-10-15 01:39:31 +00:00
|
|
|
|
# default feature restriction addresses https://github.com/starship/starship/issues/4251
|
2023-03-30 15:27:45 +00:00
|
|
|
|
gix = { version = "0.43.1", default-features = false, features = ["max-performance-safe"] }
|
2023-03-14 13:01:40 +00:00
|
|
|
|
gix-features = { version = "0.28.1", optional = true }
|
2023-03-28 03:24:35 +00:00
|
|
|
|
indexmap = { version = "1.9.3", features = ["serde"] }
|
2022-10-04 21:27:11 +00:00
|
|
|
|
log = { version = "0.4.17", features = ["std"] }
|
2023-03-22 18:42:46 +00:00
|
|
|
|
# notify-rust is optional (on by default) because the crate doesn't currently build for darwin with nix
|
2022-04-12 10:07:36 +00:00
|
|
|
|
# see: https://github.com/NixOS/nixpkgs/issues/160876
|
2023-02-19 21:23:23 +00:00
|
|
|
|
notify-rust = { version = "4.8.0", optional = true }
|
2023-03-14 00:27:23 +00:00
|
|
|
|
nu-ansi-term = "0.47.0"
|
2023-02-14 16:57:42 +00:00
|
|
|
|
once_cell = "1.17.1"
|
2023-03-20 22:24:56 +00:00
|
|
|
|
open = "4.0.1"
|
2022-11-06 21:37:58 +00:00
|
|
|
|
# update os module config and tests when upgrading os_info
|
2023-04-10 11:07:30 +00:00
|
|
|
|
os_info = "3.7.0"
|
2022-08-08 07:05:37 +00:00
|
|
|
|
path-slash = "0.2.1"
|
2023-04-03 20:42:17 +00:00
|
|
|
|
pest = "2.5.7"
|
|
|
|
|
pest_derive = "2.5.7"
|
2023-04-12 21:43:28 +00:00
|
|
|
|
quick-xml = "0.28.2"
|
2022-02-15 07:45:02 +00:00
|
|
|
|
rand = "0.8.5"
|
2023-03-04 05:30:45 +00:00
|
|
|
|
rayon = "1.7.0"
|
2023-03-28 03:22:36 +00:00
|
|
|
|
regex = "1.7.3"
|
2022-02-22 08:06:29 +00:00
|
|
|
|
rust-ini = "0.18.0"
|
2023-03-12 21:02:20 +00:00
|
|
|
|
semver = "1.0.17"
|
2023-04-11 06:17:51 +00:00
|
|
|
|
serde = { version = "1.0.160", features = ["derive"] }
|
2023-03-27 17:24:07 +00:00
|
|
|
|
serde_json = "1.0.95"
|
2022-11-28 19:34:21 +00:00
|
|
|
|
sha1 = "0.10.5"
|
2023-02-27 16:30:10 +00:00
|
|
|
|
shadow-rs = { version = "0.21.0", default-features = false }
|
2022-01-20 08:32:09 +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
|
|
|
|
|
starship-battery = { version = "0.7.9", optional = true }
|
2021-04-06 20:12:37 +00:00
|
|
|
|
strsim = "0.10.0"
|
2023-01-23 08:48:48 +00:00
|
|
|
|
systemstat = "=0.2.3"
|
2023-04-03 06:21:06 +00:00
|
|
|
|
terminal_size = "0.2.6"
|
2023-03-13 19:16:48 +00:00
|
|
|
|
toml = { version = "0.7.3", features = ["preserve_order"] }
|
2023-03-23 01:26:09 +00:00
|
|
|
|
toml_edit = "0.19.8"
|
2023-01-31 22:02:13 +00:00
|
|
|
|
unicode-segmentation = "1.10.1"
|
2022-09-18 16:35:39 +00:00
|
|
|
|
unicode-width = "0.1.10"
|
2022-09-07 09:23:05 +00:00
|
|
|
|
urlencoding = "2.1.2"
|
2022-04-23 19:05:33 +00:00
|
|
|
|
versions = "4.1.0"
|
2023-01-20 09:31:13 +00:00
|
|
|
|
which = "4.4.0"
|
2022-01-20 08:32:09 +00:00
|
|
|
|
yaml-rust = "0.4.5"
|
2021-01-22 19:14:51 +00:00
|
|
|
|
|
2023-04-03 20:41:58 +00:00
|
|
|
|
process_control = { version = "4.0.3", features = ["crossbeam-channel"] }
|
2019-10-04 13:30:46 +00:00
|
|
|
|
|
2022-05-04 20:40:44 +00:00
|
|
|
|
guess_host_triple = "0.1.3"
|
2022-10-11 21:09:07 +00:00
|
|
|
|
home = "0.5.4"
|
2022-02-07 14:28:17 +00:00
|
|
|
|
shell-words = "1.1.0"
|
2020-03-15 01:07:34 +00:00
|
|
|
|
|
2022-04-01 15:14:05 +00:00
|
|
|
|
[dependencies.schemars]
|
2023-02-26 21:26:53 +00:00
|
|
|
|
version = "0.8.12"
|
2022-04-01 15:14:05 +00:00
|
|
|
|
optional = true
|
|
|
|
|
features = ["preserve_order", "indexmap"]
|
|
|
|
|
|
2020-07-13 21:55:42 +00:00
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-04-01 15:47:49 +00:00
|
|
|
|
deelevate = "0.2.0"
|
2020-07-13 21:55:42 +00:00
|
|
|
|
|
2022-04-21 18:59:00 +00:00
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
2023-03-31 13:36:31 +00:00
|
|
|
|
version = "0.48.0"
|
2022-04-21 18:59:00 +00:00
|
|
|
|
features = [
|
|
|
|
|
"Win32_Foundation",
|
|
|
|
|
"Win32_UI_Shell",
|
|
|
|
|
"Win32_Security",
|
|
|
|
|
"Win32_System_Threading",
|
|
|
|
|
"Win32_Storage_FileSystem",
|
|
|
|
|
]
|
|
|
|
|
|
2020-07-13 21:55:42 +00:00
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
2023-01-18 07:06:13 +00:00
|
|
|
|
nix = { version = "0.26.2", default-features = false, features = ["feature", "fs", "user"] }
|
2020-07-13 21:55:42 +00:00
|
|
|
|
|
2021-01-22 19:14:51 +00:00
|
|
|
|
[build-dependencies]
|
2023-02-27 16:30:10 +00:00
|
|
|
|
shadow-rs = { version = "0.21.0", default-features = false }
|
2022-10-06 23:59:27 +00:00
|
|
|
|
dunce = "1.0.3"
|
2021-01-22 19:14:51 +00:00
|
|
|
|
|
2022-02-20 17:12:40 +00:00
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
|
|
|
winres = "0.1.12"
|
|
|
|
|
|
2019-10-04 13:30:46 +00:00
|
|
|
|
[dev-dependencies]
|
2021-12-13 07:05:49 +00:00
|
|
|
|
mockall = "0.11"
|
2023-03-29 05:50:45 +00:00
|
|
|
|
tempfile = "3.5.0"
|
2019-10-04 13:30:46 +00:00
|
|
|
|
|
2019-10-13 04:33:47 +00:00
|
|
|
|
[profile.release]
|
|
|
|
|
codegen-units = 1
|
|
|
|
|
lto = true
|
2022-08-14 19:31:08 +00:00
|
|
|
|
strip = true
|
2019-10-13 04:33:47 +00:00
|
|
|
|
|
2019-10-04 13:30:46 +00:00
|
|
|
|
[[bin]]
|
|
|
|
|
name = "starship"
|
|
|
|
|
path = "src/main.rs"
|