
- [x] Handle uploading minidumps from the remote_server - [x] Associate minidumps with panics with some sort of ID (we don't use session_id on the remote) - [x] Update the protobufs and client/server code to request panics - [x] Upload minidumps with no corresponding panic - [x] Fill in panic info when there _is_ a corresponding panic - [x] Use an env var for the sentry endpoint instead of hardcoding it Release Notes: - Zed now generates minidumps for crash reporting --------- Co-authored-by: Max Brunsfeld <maxbrunsfeld@gmail.com>
31 lines
573 B
TOML
31 lines
573 B
TOML
[package]
|
|
name = "http_client"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[features]
|
|
test-support = []
|
|
|
|
[lib]
|
|
path = "src/http_client.rs"
|
|
doctest = true
|
|
|
|
[dependencies]
|
|
bytes.workspace = true
|
|
anyhow.workspace = true
|
|
derive_more.workspace = true
|
|
futures.workspace = true
|
|
http.workspace = true
|
|
http-body.workspace = true
|
|
log.workspace = true
|
|
parking_lot.workspace = true
|
|
reqwest.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
url.workspace = true
|
|
workspace-hack.workspace = true
|