-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
30 lines (28 loc) · 838 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
[package]
name = "airbrake"
version = "0.2.0"
authors = ["Kyrylo Silin <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/kyrylo/airbrake-rust"
homepage = "https://github.com/kyrylo/airbrake-rust"
documentation = "https://github.com/kyrylo/airbrake-rust"
description = """
Airbrake Rust is an Airbrake (https://airbrake.io) notifier library for the Rust
Programming language. The library provides minimalist API that enables the
ability to send Rust errors to the Airbrake dashboard.
"""
edition = "2018"
[dependencies]
reqwest = { version = "0.10.4", features = ["blocking", "json"] }
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
log = "0.3"
backtrace = "0.3"
[dev-dependencies]
more-asserts = "0.2.1"
# Used in the actix_web_example
actix-web = "2"
actix-rt = "1"
env_logger = "0.7.1"