[package]
name = "sentry-core"
version = "0.27.0"
authors = ["Sentry <hello@sentry.io>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/getsentry/sentry-rust"
homepage = "https://sentry.io/welcome/"
description = """
Core sentry library used for instrumentation and integration development.
"""
edition = "2021"
rust-version = "1.57"
[package.metadata.docs.rs]
all-features = true
[[bench]]
name = "scope_benchmark"
harness = false
[features]
default = []
client = ["rand"]
debug-logs = ["log_"]
test = ["client"]
[dependencies]
log_ = { package = "log", version = "0.4.8", optional = true, features = ["std"] }
once_cell = "1"
rand = { version = "0.8.1", optional = true }
sentry-types = { version = "0.27.0", path = "../sentry-types" }
serde = { version = "1.0.104", features = ["derive"] }
serde_json = "1.0.46"
[dev-dependencies]
sentry = { path = "../sentry", default-features = false, features = ["test", "transport"] }
thiserror = "1.0.15"
anyhow = "1.0.30"
tokio = { version = "1.0", features = ["rt", "rt-multi-thread", "macros"] }
criterion = "0.3"