[package]
edition = "2021"
rust-version = "1.81"
name = "sentry-types"
version = "0.46.2"
authors = ["Sentry <hello@sentry.io>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Common reusable types for implementing the sentry.io protocol.
"""
homepage = "https://sentry.io/welcome/"
readme = "README.md"
keywords = [
"sentry",
"protocol",
]
license = "MIT"
repository = "https://github.com/getsentry/sentry-rust"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["protocol"]
protocol = []
[lib]
name = "sentry_types"
path = "src/lib.rs"
[[test]]
name = "test_auth"
path = "tests/test_auth.rs"
[[test]]
name = "test_protocol_v7"
path = "tests/test_protocol_v7.rs"
[dependencies.debugid]
version = "0.8.0"
features = ["serde"]
[dependencies.hex]
version = "0.4.3"
[dependencies.rand]
version = "0.9.0"
[dependencies.serde]
version = "1.0.104"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.46"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.time]
version = "0.3.5"
features = [
"formatting",
"parsing",
]
[dependencies.url]
version = "2.1.1"
features = ["serde"]
[dependencies.uuid]
version = "1.0.0"
features = ["serde"]
[dev-dependencies.rstest]
version = "0.25.0"