[package]
edition = "2021"
rust-version = "1.73.0"
name = "rocket-sentry"
version = "1.1.0"
authors = ["Marti Raudsepp <marti@juffo.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simplifies integration between the Rocket web framework and Sentry application monitoring system."
homepage = "https://github.com/intgr/rocket-sentry"
readme = "README.md"
keywords = [
"rocket",
"fairing",
"sentry",
"monitoring",
"error-reporting",
]
categories = [
"web-programming",
"development-tools",
]
license = "MIT"
repository = "https://github.com/intgr/rocket-sentry"
[lib]
name = "rocket_sentry"
path = "src/lib.rs"
[[example]]
name = "panic"
path = "examples/panic.rs"
[[example]]
name = "performance"
path = "examples/performance.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dependencies.figment]
version = "0.10.6"
[dependencies.log]
version = "0.4.17"
[dependencies.rocket]
version = "0.5.0-rc.2"
default-features = false
[dependencies.sentry]
version = "0.47.0"
[dependencies.serde]
version = "1.0.137"