staph 0.0.2

Track and put down bugs using simple concise error handling
Documentation
[package]
name = "staph"
version = "0.0.2"
edition = "2018"
authors = ["phR0ze"]
license = "MIT OR Apache-2.0"
description = "Track and put down bugs using simple concise error handling"
readme = "README.md"
homepage = "https://github.com/phR0ze/staph"
repository = "https://github.com/phR0ze/staph"
exclude = [
  "docs",
	"examples",
  ".git",
  ".githooks",
  ".github",
	"tests",
	"benches",
	"target",
	".vscode"
]

# Higher the opt-level value the slower the compile time
[profile.release]
opt-level = 3   # Optimize for speed over size
lto = true      # Futher assist in optimization
debug = true    # keep symbols in release for debug

[profile.dev]
opt-level = 0   # Default no optimization

[dependencies]
colored = "2"
libc = { version = "0.2", default-features = false }

[dev-dependencies]