2019-10-04 15:30:46 +02:00
|
|
|
|
[package]
|
|
|
|
|
name = "starship"
|
2022-12-13 17:01:35 +01:00
|
|
|
|
version = "1.12.0"
|
2021-11-09 22:30:28 +01:00
|
|
|
|
authors = ["Starship Contributors"]
|
2022-01-20 09:32:09 +01:00
|
|
|
|
build = "build.rs"
|
|
|
|
|
categories = ["command-line-utilities"]
|
2019-10-04 15:30:46 +02:00
|
|
|
|
documentation = "https://starship.rs/guide/"
|
2022-01-20 09:32:09 +01:00
|
|
|
|
edition = "2021"
|
|
|
|
|
homepage = "https://starship.rs"
|
|
|
|
|
# Keep `/` in front of `README.md` to exclude localized readmes
|
2022-03-09 09:05:02 +01:00
|
|
|
|
include = [
|
|
|
|
|
"src/**/*",
|
|
|
|
|
"/starship.exe.manifest",
|
2022-06-19 10:33:42 +02:00
|
|
|
|
"media/icon.ico",
|
2022-03-09 09:05:02 +01:00
|
|
|
|
"build.rs",
|
|
|
|
|
"LICENSE",
|
|
|
|
|
"/README.md",
|
|
|
|
|
"docs/.vuepress/public/presets/toml/",
|
2022-04-18 17:42:47 +02:00
|
|
|
|
".github/config-schema.json",
|
2022-03-09 09:05:02 +01:00
|
|
|
|
]
|
2019-10-04 15:30:46 +02:00
|
|
|
|
keywords = ["prompt", "shell", "bash", "fish", "zsh"]
|
2022-01-20 09:32:09 +01:00
|
|
|
|
license = "ISC"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
repository = "https://github.com/starship/starship"
|
2022-03-12 22:23:24 +01:00
|
|
|
|
# Note: MSRV is only intended as a hint, and only the latest version is officially supported in starship.
|
2023-01-04 09:22:02 +01:00
|
|
|
|
rust-version = "1.65"
|
2019-10-04 15:30:46 +02:00
|
|
|
|
description = """
|
2020-02-13 03:46:00 +01:00
|
|
|
|
The minimal, blazing-fast, and infinitely customizable prompt for any shell! ☄🌌️
|
2019-10-04 15:30:46 +02:00
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
[features]
|
2022-10-15 03:39:31 +02:00
|
|
|
|
default = ["battery", "notify", "git-repository-max-perf"]
|
2021-11-09 12:35:45 +01:00
|
|
|
|
battery = ["starship-battery"]
|
2022-04-01 17:14:05 +02:00
|
|
|
|
config-schema = ["schemars"]
|
2022-04-12 12:07:36 +02:00
|
|
|
|
notify = ["notify-rust"]
|
2020-03-15 02:07:34 +01:00
|
|
|
|
|
2022-10-15 03:39:31 +02:00
|
|
|
|
# Enables most of the `max-performace` features of the `git_repository` module for better performance.
|
|
|
|
|
# This can be more difficult to build in some conditions and requires cmake.
|
|
|
|
|
git-repository-max-perf = ["git-features/zlib-ng", "git-repository/fast-sha1"]
|
|
|
|
|
# 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.
|
|
|
|
|
git-repository-faster = ["git-features/zlib-stock", "git-repository/fast-sha1"]
|
|
|
|
|
|
2019-10-04 15:30:46 +02:00
|
|
|
|
[dependencies]
|
2022-12-23 10:35:24 +01:00
|
|
|
|
chrono = { version = "0.4.23", default-features = false, features = ["clock", "std", "wasmbind"] }
|
2023-01-25 01:44:41 +01:00
|
|
|
|
clap = { version = "4.1.4", features = ["derive", "cargo", "unicode"] }
|
2023-01-24 01:01:05 +01:00
|
|
|
|
clap_complete = "4.1.1"
|
2022-03-24 20:06:24 +01:00
|
|
|
|
dirs-next = "2.0.0"
|
2022-10-07 01:59:27 +02:00
|
|
|
|
dunce = "1.0.3"
|
2022-12-01 15:18:19 +01:00
|
|
|
|
gethostname = "0.4.1"
|
2023-01-10 16:17:05 +01:00
|
|
|
|
git-features = { version = "0.26.1", optional = true }
|
2022-10-15 03:39:31 +02:00
|
|
|
|
# default feature restriction addresses https://github.com/starship/starship/issues/4251
|
2023-01-10 16:17:05 +01:00
|
|
|
|
git-repository = { version = "0.33.0", default-features = false, features = ["max-performance-safe"] }
|
2022-11-17 23:20:58 +01:00
|
|
|
|
indexmap = { version = "1.9.2", features = ["serde"] }
|
2022-10-04 23:27:11 +02:00
|
|
|
|
log = { version = "0.4.17", features = ["std"] }
|
2022-04-12 12:07:36 +02:00
|
|
|
|
# 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
|
2023-01-08 16:34:34 +01:00
|
|
|
|
notify-rust = { version = "4.7.0", optional = true }
|
2022-09-04 18:44:54 +02:00
|
|
|
|
nu-ansi-term = "0.46.0"
|
2022-12-29 19:04:11 +01:00
|
|
|
|
once_cell = "1.17.0"
|
2022-11-21 12:02:27 +01:00
|
|
|
|
open = "3.2.0"
|
2022-11-06 22:37:58 +01:00
|
|
|
|
# update os module config and tests when upgrading os_info
|
2023-02-07 12:52:14 +01:00
|
|
|
|
os_info = "3.6.0"
|
2022-08-08 09:05:37 +02:00
|
|
|
|
path-slash = "0.2.1"
|
2023-01-24 18:08:40 +01:00
|
|
|
|
pest = "2.5.4"
|
|
|
|
|
pest_derive = "2.5.4"
|
2022-12-28 22:48:24 +01:00
|
|
|
|
quick-xml = "0.27.1"
|
2022-02-15 08:45:02 +01:00
|
|
|
|
rand = "0.8.5"
|
2022-12-10 01:13:09 +01:00
|
|
|
|
rayon = "1.6.1"
|
2023-01-09 19:16:01 +01:00
|
|
|
|
regex = "1.7.1"
|
2022-02-22 09:06:29 +01:00
|
|
|
|
rust-ini = "0.18.0"
|
2022-12-18 20:19:33 +01:00
|
|
|
|
semver = "1.0.16"
|
2022-12-26 19:36:15 +01:00
|
|
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
2023-02-05 09:47:04 +01:00
|
|
|
|
serde_json = "1.0.92"
|
2022-11-28 20:34:21 +01:00
|
|
|
|
sha1 = "0.10.5"
|
2022-12-30 12:28:56 +01:00
|
|
|
|
shadow-rs = { version = "0.20.0", default-features = false }
|
2022-01-20 09:32:09 +01: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 22:12:37 +02:00
|
|
|
|
strsim = "0.10.0"
|
2023-01-23 09:48:48 +01:00
|
|
|
|
systemstat = "=0.2.3"
|
2022-11-29 07:11:25 +01:00
|
|
|
|
terminal_size = "0.2.3"
|
2023-01-31 00:53:00 +01:00
|
|
|
|
toml = { version = "0.7.1", features = ["preserve_order"] }
|
2023-02-07 02:48:39 +01:00
|
|
|
|
toml_edit = "0.19.2"
|
2023-01-31 23:02:13 +01:00
|
|
|
|
unicode-segmentation = "1.10.1"
|
2022-09-18 18:35:39 +02:00
|
|
|
|
unicode-width = "0.1.10"
|
2022-09-07 11:23:05 +02:00
|
|
|
|
urlencoding = "2.1.2"
|
2022-04-23 21:05:33 +02:00
|
|
|
|
versions = "4.1.0"
|
2023-01-20 10:31:13 +01:00
|
|
|
|
which = "4.4.0"
|
2022-01-20 09:32:09 +01:00
|
|
|
|
yaml-rust = "0.4.5"
|
2021-01-22 20:14:51 +01:00
|
|
|
|
|
2023-01-29 19:11:24 +01:00
|
|
|
|
process_control = { version = "4.0.2", features = ["crossbeam-channel"] }
|
2019-10-04 15:30:46 +02:00
|
|
|
|
|
2022-05-04 22:40:44 +02:00
|
|
|
|
guess_host_triple = "0.1.3"
|
2022-10-11 23:09:07 +02:00
|
|
|
|
home = "0.5.4"
|
2022-02-07 15:28:17 +01:00
|
|
|
|
shell-words = "1.1.0"
|
2020-03-15 02:07:34 +01:00
|
|
|
|
|
2022-04-01 17:14:05 +02:00
|
|
|
|
[dependencies.schemars]
|
2022-10-03 12:03:04 +02:00
|
|
|
|
version = "0.8.11"
|
2022-04-01 17:14:05 +02:00
|
|
|
|
optional = true
|
|
|
|
|
features = ["preserve_order", "indexmap"]
|
|
|
|
|
|
2020-07-13 23:55:42 +02:00
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-04-01 17:47:49 +02:00
|
|
|
|
deelevate = "0.2.0"
|
2020-07-13 23:55:42 +02:00
|
|
|
|
|
2022-04-21 20:59:00 +02:00
|
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
2023-01-12 21:05:45 +01:00
|
|
|
|
version = "0.44.0"
|
2022-04-21 20:59:00 +02:00
|
|
|
|
features = [
|
|
|
|
|
"Win32_Foundation",
|
|
|
|
|
"Win32_UI_Shell",
|
|
|
|
|
"Win32_Security",
|
|
|
|
|
"Win32_System_Threading",
|
|
|
|
|
"Win32_Storage_FileSystem",
|
|
|
|
|
]
|
|
|
|
|
|
2020-07-13 23:55:42 +02:00
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
2023-01-18 08:06:13 +01:00
|
|
|
|
nix = { version = "0.26.2", default-features = false, features = ["feature", "fs", "user"] }
|
2020-07-13 23:55:42 +02:00
|
|
|
|
|
2021-01-22 20:14:51 +01:00
|
|
|
|
[build-dependencies]
|
2022-12-30 12:28:56 +01:00
|
|
|
|
shadow-rs = { version = "0.20.0", default-features = false }
|
2022-10-07 01:59:27 +02:00
|
|
|
|
dunce = "1.0.3"
|
2021-01-22 20:14:51 +01:00
|
|
|
|
|
2022-02-20 18:12:40 +01:00
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
|
|
|
winres = "0.1.12"
|
|
|
|
|
|
2019-10-04 15:30:46 +02:00
|
|
|
|
[dev-dependencies]
|
2021-12-13 08:05:49 +01:00
|
|
|
|
mockall = "0.11"
|
2022-10-05 13:25:39 +02:00
|
|
|
|
tempfile = "3.3.0"
|
2019-10-04 15:30:46 +02:00
|
|
|
|
|
2019-10-13 06:33:47 +02:00
|
|
|
|
[profile.release]
|
|
|
|
|
codegen-units = 1
|
|
|
|
|
lto = true
|
2022-08-14 21:31:08 +02:00
|
|
|
|
strip = true
|
2019-10-13 06:33:47 +02:00
|
|
|
|
|
2019-10-04 15:30:46 +02:00
|
|
|
|
[[bin]]
|
|
|
|
|
name = "starship"
|
|
|
|
|
path = "src/main.rs"
|