forked from vkrasnov/appcenter-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (23 loc) · 948 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
[package]
name = "app-center"
version = "0.1.1"
description = "Automatically upload panic traces to [Microsoft AppCenter](https://docs.microsoft.com/en-us/appcenter/diagnostics/upload-crashes)"
authors = ["Vlad Krasnov <[email protected]>"]
edition = "2018"
license = "BSD-3-Clause"
repository = "https://github.com/vkrasnov/appcenter-rs"
keywords = ["macos", "windows", "linux", "panic", "appcenter"]
[dependencies]
log = "0.4"
backtrace = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "0.8", features = ["serde", "v4"] }
chrono = { version = "0.4", features = ["serde"] }
reqwest = { version = "0.11", default-features = false, features = ["blocking", "rustls-tls"] }
base64 = "0.13"
sysinfo = { version = "0.19", default-features = false }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winnls"] }
[target.'cfg(target_os = "macos")'.dependencies]
libc = "0.2"