-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
57 lines (48 loc) · 1.39 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "redmine-api"
description = "API for the Redmine issue tracker"
readme = "README.md"
license = "MIT OR Apache-2.0"
version = "0.4.0"
authors = ["Matthias Hörmann <mhoermann@gmail.com>"]
repository = "https://github.com/taladar/redmine-api"
keywords = [ "redmine", "api" ]
categories = [ "api-bindings" ]
edition = "2021"
exclude = [ ".env", "tarpaulin-report.html", "tarpaulin-report.json" ]
[features]
rustls-tls = ["reqwest/rustls-tls"]
[profile.release]
# do not strip debug info from release builds, useful for debugging those, cargo-flamegraph profiling or similar use cases
debug = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
thiserror= "2.0.11"
futures= "0.3.31"
url= "2.5.4"
serde_json= "1.0.138"
serde_with= "3.12.0"
envy= "0.4.2"
http= "1.2.0"
derive_builder= "0.20.2"
bytes= "1.9.0"
derive_more = { version = "1.0.0", features = ["debug"] }
[dependencies.tracing]
version = "0.1.41"
features = [ "log" ]
[dependencies.reqwest]
version = "0.12"
features = [ "blocking", "json" ]
[dependencies.time]
version = "0.3.37"
features = [ "serde", "serde-human-readable" ]
[dependencies.serde]
version = "1.0.217"
features = [ "derive" ]
[dev-dependencies]
pretty_assertions= "1.4.1"
dotenvy= "0.15.7"
tracing-test= "0.2.5"
function_name= "0.3.0"
finally-block= "0.2.0"
tokio = { version = "1.43.0", features = ["full"] }