-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
36 lines (32 loc) · 959 Bytes
/
Cargo.toml
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
32
33
34
35
36
[package]
description = "An experimental Tauri Plugin for Sentry"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "tauri-plugin-sentry"
readme = "README.md"
repository = "https://github.com/timfish/sentry-tauri"
version = "0.4.0"
links = "tauri-plugin-sentry"
exclude = ["/examples", "/node_modules", "/target"]
[features]
default = ["sentry/default"]
anyhow = ["sentry/anyhow"]
backtrace = ["sentry/backtrace"]
contexts = ["sentry/contexts"]
debug-images = ["sentry/debug-images"]
native-tls = ["sentry/native-tls"]
panic = ["sentry/panic"]
reqwest = ["sentry/reqwest"]
tracing = ["sentry/tracing"]
transport = ["sentry/transport"]
[dependencies]
base64 = "0.22"
sentry = { version = "0.36", default-features = false }
serde = "1"
tauri = "2"
thiserror = "2"
schemars = "0.8"
[target.'cfg(not(target_os = "ios"))'.dependencies]
sentry-rust-minidump = { version = "0.10" }
[build-dependencies]
tauri-plugin = { version = "2", features = ["build"] }