-
Notifications
You must be signed in to change notification settings - Fork 6
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
1 parent
97e09c7
commit 83cd1d5
Showing
10 changed files
with
999 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
/target |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
sudo: false | ||
|
||
os: linux | ||
dist: trusty | ||
|
||
language: rust | ||
|
||
rust: | ||
- stable | ||
- beta | ||
- nightly | ||
|
||
matrix: | ||
allow_failures: | ||
- rust: nightly | ||
|
||
cache: cargo | ||
|
||
env: | ||
global: | ||
- CARGO_BUILD_JOBS="2" |
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[package] | ||
name = "strace-analyzer" | ||
version = "0.3.0" | ||
authors = ["Christian Krause <[email protected]>"] | ||
description = "analyze strace output" | ||
license = "GPL-3.0-or-later" | ||
readme = "README.md" | ||
documentation = "https://github.com/wookietreiber/strace-analyzer" | ||
homepage = "https://github.com/wookietreiber/strace-analyzer" | ||
repository = "https://github.com/wookietreiber/strace-analyzer" | ||
keywords = ["strace"] | ||
categories = ["command-line-utilities"] | ||
|
||
[dependencies] | ||
bytesize = "^1" | ||
clap = "^2" | ||
lazy_static = "^1" | ||
regex = "^1" |
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
Oops, something went wrong.