-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (30 loc) · 974 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
[package]
name = "mackerel_client"
version = "0.6.6"
authors = ["itchyny <[email protected]>"]
description = "An API client library for Mackerel"
repository = "https://github.com/itchyny/mackerel-client-rs"
readme = "README.md"
license = "MIT"
keywords = ["api", "mackerel"]
categories = ["api-bindings"]
edition = "2021"
[dependencies]
chrono = { version = "0.4.38", features = ["serde"] }
derivative = "2.2.0"
fixedstr = { version = "0.5.8", features = ["serde"] }
http = "1.1.0"
reqwest = { version = "0.12.8", features = ["json"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_derive = "1.0.210"
serde_json = "1.0.128"
serde_with = { version = "3.11.0", features = ["chrono"] }
strum = { version = "0.26.3", features = ["derive"] }
thiserror = "1.0.64"
typed-builder = "0.20.0"
url = "2.5.2"
[dev-dependencies]
async-std = { version = "1.13.0", features = ["attributes", "tokio1"] }
httptest = "0.16.1"
pretty_env_logger = "0.5.0"
rstest = "0.23.0"