-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (31 loc) · 1001 Bytes
/
Cargo.toml
File metadata and controls
36 lines (31 loc) · 1001 Bytes
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
[package]
name = "mq-rest-admin"
version = "1.2.3"
edition = "2024"
rust-version = "1.92"
description = "Rust wrapper for the IBM MQ administrative REST API"
license = "GPL-3.0-or-later"
repository = "https://github.com/mq-rest-admin-project/mq-rest-admin-rust"
keywords = ["ibm-mq", "rest-api", "mqsc", "message-queue"]
categories = ["api-bindings"]
readme = "README.md"
documentation = "https://mq-rest-admin-project.github.io/mq-rest-admin-rust/"
[dependencies]
reqwest = { version = "0.12", features = ["json", "rustls-tls", "blocking"], default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
base64 = "0.22"
[dev-dependencies]
paste = "1"
[features]
integration = []
examples = []
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
cargo = { level = "deny", priority = -1 }
multiple_crate_versions = "allow"