-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Mikusa
committed
Apr 17, 2019
1 parent
f166727
commit fbfb024
Showing
6 changed files
with
1,055 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/target | ||
**/*.rs.bk | ||
data/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,5 +3,17 @@ name = "top-logs" | |
version = "0.1.0" | ||
authors = ["Daniel Mikusa <[email protected]>"] | ||
edition = "2018" | ||
description = "Tops logs is a tool which can be used to parse through access logs to understand usage trends and hunt for problems" | ||
repository = "https://github.com/dmikusa-pivotal/top-logs" | ||
readme = "README.md" | ||
license = "Apache-2.0" | ||
keywords = ["access", "logs", "parse"] | ||
categories = ["parsing", "parser-implementations"] | ||
|
||
[dependencies] | ||
access_log_parser = "^0.1" | ||
chrono = "^0.4" | ||
http = "^0.1" | ||
defaultmap = "^0.3" | ||
prettytable-rs = "^0.8" | ||
clap = "^2" |
Oops, something went wrong.