-
-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 657 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 657 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
26
[package]
name = "sentry-log"
version = "0.47.0"
authors = { workspace = true }
license = "MIT"
readme = "README.md"
repository = { workspace = true }
homepage = { workspace = true }
description = """
Sentry integration for the log and env_logger crates.
"""
edition = { workspace = true }
rust-version = { workspace = true }
[features]
default = []
logs = ["sentry-core/logs"]
[dependencies]
sentry-core = { version = "0.47.0", path = "../sentry-core" }
log = { version = "0.4.8", features = ["std", "kv"] }
bitflags = "2.9.4"
[dev-dependencies]
sentry = { path = "../sentry", default-features = false, features = ["test"] }
pretty_env_logger = "0.5.0"