1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-10-03 23:53:07 +00:00
starship/Cargo.toml
Matan Kushner 463ec26024
feat: Add a disabled configuration option for modules (#86)
• Add support for the disabled configuration option
This will allow you to selectively disable modules that you don't want or need. 😄
• Overwrite starship configuration file path with STARSHIP_CONFIG environment variable
• Write tests for the two configuration options that are available
2019-07-02 16:12:53 -04:00

27 lines
437 B
TOML

[package]
name = "starship"
version = "0.1.0"
authors = ["Matan Kushner <hello@matchai.me>"]
edition = "2018"
[dependencies]
clap = "2.33.0"
ansi_term = "0.11.0"
dirs = "2.0.1"
git2 = "0.9.1"
toml = "0.5.1"
serde_json = "1.0.40"
rayon = "1.1.0"
pretty_env_logger = "0.3.0"
log = "0.4.6"
battery = "0.7.4"
lazy_static = "1.3.0"
[dev-dependencies]
tempfile = "3.1.0"
criterion = "0.2.11"
[[bench]]
name = "my_benchmark"
harness = false