[package]
name = "throw"
version = "0.1.5"
authors = ["David Ross <daboross@daboross.net>"]
include = ["Cargo.toml", "src/**/*", "tests/**/*", "examples/**/*", "LICENSE", "README.md"]
description = "Efficiently add statically-calculated stack traces to errors."
documentation = "https://docs.rs/throw/"
readme = "README.md"
keywords = ["error"]
categories = ["rust-patterns"]
license = "MIT"
repository = "https://github.com/daboross/rust-throw/"
[dependencies.serde]
version = "1.0"
optional = true
default-features = false
[dependencies.serde_derive]
version = "1.0"
optional = true
[dev-dependencies.regex]
version = "1.0"
[dev-dependencies.serde_json]
version = "1.0"
[features]
default = ["std", "unlimited-points"]
serde-1 = ["serde", "serde_derive", "serde/alloc"]
serde-1-std = ["serde", "serde_derive", "serde/std"]
std = []
unlimited-points = []
[badges.travis-ci]
repository = "daboross/rust-throw"