-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
70 lines (58 loc) · 1.78 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
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "tes"
description = "A crate for working with the Task Execution Service (TES) specification"
version = "0.2.0"
edition = "2021"
authors = ["The St. Jude Rust Labs developers"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/stjude-rust-labs/tes"
repository = "https://github.com/stjude-rust-labs/tes"
rust-version = "1.80.0"
[dependencies]
anyhow = { version = "1.0.87", optional = true }
chrono = { version = "0.4.38", features = ["serde"] }
ordered-float = { version = "4.2.2", features = ["serde"] }
reqwest = { version = "0.12.7", features = ["json"] }
reqwest-middleware = "0.3.3"
reqwest-retry = "0.6.1"
serde = { version = "1.0.209", features = ["derive"], optional = true }
serde_json = { version = "1.0.128", optional = true }
tokio = { version = "1.40.0", features = ["full", "time"] }
tracing = "0.1.40"
url = { version = "2.5.2", features = ["serde"], optional = true }
[dev-dependencies]
pretty_assertions = "1.4.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[features]
default = ["types"]
client = ["dep:anyhow", "types", "dep:serde_json", "dep:url"]
ord = []
serde = ["dep:serde", "dep:serde_json"]
types = ["dep:url"]
[[example]]
name = "simple"
required-features = ["client"]
[[example]]
name = "service-info"
required-features = ["client"]
[[example]]
name = "task-get"
required-features = ["client"]
[[example]]
name = "task-list-all"
required-features = ["client"]
[[example]]
name = "task-submit"
required-features = ["client"]
[lints.rust]
missing_docs = "warn"
nonstandard-style = "warn"
rust-2018-idioms = "warn"
rust-2021-compatibility = "warn"
rust-2024-compatibility = "warn"
[lints.rustdoc]
broken_intra_doc_links = "warn"
[lints.clippy]
missing_docs_in_private_items = "warn"
[package.metadata.docs.rs]
all-features = true