-
-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 624 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 624 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "sentry-anyhow"
version = "0.47.0"
authors = { workspace = true }
license = "MIT"
readme = "README.md"
repository = { workspace = true }
homepage = { workspace = true }
description = """
Sentry integration for anyhow.
"""
edition = { workspace = true }
rust-version = { workspace = true }
[features]
default = ["backtrace"]
backtrace = []
[dependencies]
sentry-backtrace = { version = "0.47.0", path = "../sentry-backtrace" }
sentry-core = { version = "0.47.0", path = "../sentry-core" }
anyhow = "1.0.77"
[dev-dependencies]
sentry = { path = "../sentry", default-features = false, features = ["test"] }