Skip to content

Commit

Permalink
feat: - loggy | + logi
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelrcamargo committed Jan 21, 2023
1 parent 1217ea3 commit f7579bb
Show file tree
Hide file tree
Showing 11 changed files with 119 additions and 107 deletions.
45 changes: 2 additions & 43 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,3 @@
{
"terminal.integrated.gpuAcceleration": "on",
"workbench.colorCustomizations": {
"[Atom One Dark]": {
"editorBracketHighlight.foreground1": "#d19a66",
"editorBracketHighlight.foreground2": "#c678dd",
"editorBracketHighlight.foreground3": "#e5c07b",
"editorBracketHighlight.foreground4": "#56b6c2",
"editorBracketHighlight.foreground5": "#98c379",
"editorBracketHighlight.foreground6": "#61afef",
"editorBracketHighlight.unexpectedBracket.foreground": "#db6165",
"editorInlayHint.background": "#5c63711e",
"editorInlayHint.foreground": "#5C6371",
"editorInlayHint.parameterForeground": "#5C6371",
"editorInlayHint.typeForeground": "#5C6371"
},
"[Gruvbox Material Dark]": {
"activityBar.border": "#7d716530",
"editorBracketHighlight.foreground1": "#df894c",
"editorBracketHighlight.foreground2": "#d18492",
"editorBracketHighlight.foreground3": "#d5a14f",
"editorBracketHighlight.foreground4": "#70b381",
"editorBracketHighlight.foreground5": "#9cb565",
"editorBracketHighlight.foreground6": "#c578b9",
"editorBracketHighlight.unexpectedBracket.foreground": "#d56861",
"menu.border": "#00000000",
"panel.border": "#7d716510",
"sideBar.border": "#7d716510",
"sideBar.foreground": "#7d7165",
"statusBar.border": "#00000000",
"tab.activeBackground": "#00000000",
"tab.activeBorder": "#7d7165a0",
"tab.activeForeground": "#91867b",
"tab.border": "#00000000",
"tab.hoverBackground": "#7d716530",
"tab.hoverBorder": "#7d716530",
"tab.inactiveForeground": "#7d7165b0",
"titleBar.border": "#7d716510"
},
"editorHint.foreground": "#db6165",
"sideBar.foreground": "#b1b1b1",
"minimap.background": "#00000000"
}
}
"terminal.integrated.gpuAcceleration": "off"
}
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ debounce = "0.2.1"
eventsource = "0.5.0"
home = "0.5.4"
human-panic = "1.0.3"
loggy = {path = "./libs/loggy"}
logi = {path = "./libs/logi"}
minifier = "0.2.1"
notify = "5.0.0"
reqwest = {version = "0.11.13", features = ["blocking", "json"]}
Expand Down
98 changes: 49 additions & 49 deletions libs/loggy/Cargo.lock → libs/logi/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions libs/loggy/Cargo.toml → libs/logi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
[package]
authors = ["rafaelrcamargo"]
categories = ["log", "cli", "utility"]
description = "A modern, cool and nice lokkig logger"
categories = ["command-line-interface"]
description = "A modern, cool and nice looking logger for better DX on your CLI apps."
edition = "2021"
homepage = "https://github.com/rafaelrcamargo/quix/tree/main/libs/loggy"
keywords = ["cli", "search", "demo"]
homepage = "https://github.com/rafaelrcamargo/quix/tree/main/libs/logi"
keywords = ["cli", "log", "logger", "logging", "DX"]
license = "Apache-2.0"
name = "loggy"
repository = "https://github.com/rafaelrcamargo/quix/tree/main/libs/loggy"
name = "logi"
readme = "README.md"
repository = "https://github.com/rafaelrcamargo/quix/tree/main/libs/logi"
version = "0.0.1"

[dependencies]
Expand Down
Loading

0 comments on commit f7579bb

Please sign in to comment.