-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
29 lines (26 loc) · 951 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
[package]
name = "bugzilla_query"
authors = ["Marek Suchánek <[email protected]>"]
version = "1.1.0"
edition = "2021"
# Check the Rust version using `cargo msrv verify`.
rust-version = "1.63"
license = "Apache-2.0"
description = "Access bugs on a remote Bugzilla instance."
readme = "README.md"
documentation = "https://docs.rs/bugzilla_query/"
homepage = "https://github.com/msuchane/bugzilla_query"
repository = "https://github.com/msuchane/bugzilla_query"
keywords = ["bugzilla", "rest"]
categories = ["api-bindings"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4"
thiserror = "1.0"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Version with a security patch:
chrono = { version = ">=0.4.20", features = ["serde"] }
[dev-dependencies]
tokio = { version = ">=1.34", features = ["full"] }