-
-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 721 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 721 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
27
28
29
30
31
[package]
name = "sentry-contexts"
version = "0.47.0"
authors = { workspace = true }
license = "MIT"
readme = "README.md"
repository = { workspace = true }
homepage = { workspace = true }
description = """
Sentry integration for os, device, and rust contexts.
"""
build = "build.rs"
edition = { workspace = true }
rust-version = { workspace = true }
[dependencies]
sentry-core = { version = "0.47.0", path = "../sentry-core" }
libc = "0.2.66"
hostname = "0.4"
[target."cfg(not(windows))".dependencies]
uname = "0.1.1"
[target."cfg(windows)".dependencies]
os_info = "3.5.0"
[build-dependencies]
rustc_version = "0.4.0"
[dev-dependencies]
sentry = { path = "../sentry", default-features = false, features = ["test"] }