mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-19 03:25:20 +00:00
22dc419a3e
This PR implements the parser of format strings described in #624.
14 lines
229 B
Rust
14 lines
229 B
Rust
#[macro_use]
|
|
extern crate pest_derive;
|
|
|
|
// Lib is present to allow for benchmarking
|
|
pub mod config;
|
|
pub mod configs;
|
|
pub mod context;
|
|
pub mod formatter;
|
|
pub mod module;
|
|
pub mod modules;
|
|
pub mod print;
|
|
pub mod segment;
|
|
mod utils;
|