diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index d7c985f..204e671 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -12,9 +12,9 @@ mod config; | |||
12 | mod error; | 12 | mod error; |
13 | mod requests; | 13 | mod requests; |
14 | 14 | ||
15 | static OVERVIEW_STYLE: &str = "{spinner:.green} {wide_msg}({elapsed})"; | 15 | static OVERVIEW_STYLE: &str = "{spinner:.green} ({elapsed}{wide_msg}"; |
16 | static OVERVIEW_ERROR: &str = "✗ {wide_msg}({elapsed})"; | 16 | static OVERVIEW_ERROR: &str = "✗ ({elapsed}) {wide_msg}"; |
17 | static OVERVIEW_DONE: &str = "✓ {wide_msg}({elapsed})"; | 17 | static OVERVIEW_DONE: &str = "✓ ({elapsed}) {wide_msg}"; |
18 | static DEFAULT_STYLE: &str = " {spinner:.green} {wide_msg}"; | 18 | static DEFAULT_STYLE: &str = " {spinner:.green} {wide_msg}"; |
19 | static DONE_STYLE: &str = " ✓ {wide_msg}"; | 19 | static DONE_STYLE: &str = " ✓ {wide_msg}"; |
20 | static ERROR_STYLE: &str = " ✗ {wide_msg}"; | 20 | static ERROR_STYLE: &str = " ✗ {wide_msg}"; |