-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
30 lines (26 loc) · 872 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 = "healthchecks"
version = "3.1.7"
authors = ["Harsh Shandilya <[email protected]>"]
edition = "2021"
description = "Simple library to notify healthchecks.io from inside applications"
repository = "https://github.com/msfjarvis/healthchecks-rs"
homepage = "https://github.com/msfjarvis/healthchecks-rs"
license = "MIT/Apache-2.0"
keywords = ["healthchecks"]
readme = "README.md"
include = ["src/**/*", "../LICENSE-*", "README.md"]
rust-version = "1.72.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror = ">=1.0.2"
serde = { version = "1.0.200", default-features = false }
serde_derive = "1.0.200"
serde_json = "1.0.116"
ureq = { version = "2.9.7", features = ["json"] }
uuid.workspace = true
[features]
v2 = []
v3 = ["v2"]
[badges]
maintenance = { status = "actively-developed" }