refactor: Refactoring config (#383)

This PR refactors config and puts configuration files for all modules in `configs/`.
This commit is contained in:
Zhenhui Xie
2019-09-30 20:10:35 +08:00
committed by Matan Kushner
parent 9e9eb6a8ef
commit dd0b1a1aa2
48 changed files with 1290 additions and 946 deletions
+28
View File
@@ -0,0 +1,28 @@
[package]
name = "starship_module_config_derive"
version = "0.20.0"
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 = """
The cross-shell prompt for astronauts. ☄🌌️
"""
exclude = ["docs/**/*"]
[lib]
name = "starship_module_config_derive"
proc-macro = true
[dependencies]
proc-macro2 = "~1"
quote = "~1"
syn = "~1"
[dev-dependencies]
starship = { version = "0.20.0", path = "../starship" }