-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (32 loc) · 897 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]
name = "mightybadger"
description = "Honeybadger Notifier for Rust"
version = "0.1.0"
authors = ["Masaki Hara <ackie.h.gmai@gmail.com>"]
edition = "2018"
build = "build.rs"
homepage = "https://github.com/qnighy/mightybadger-rs"
repository = "https://github.com/qnighy/mightybadger-rs.git"
readme = "README.md"
keywords = ["honeybadger"]
categories = ["web-programming", "api-bindings", "development-tools"]
license = "MIT"
[dependencies]
lazy_static = "1.2.0"
scoped-tls = "1.0.0"
rand = "0.8.0"
uuid = { version = "0.8.0", features = ["serde"] }
chrono = "0.4.0"
serde = "1.0.56"
serde_derive = "1.0.59"
serde_json = "1.0.3"
failure = "0.1.5"
attohttpc = { version = "0.17.0", features = ["json"] }
rustc_version_runtime = "0.2.0"
[dev-dependencies]
mightybadger-test-server = { path = "mightybadger-test-server" }
[workspace]
members = [
".",
"mightybadger-test-server",
]