-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
38 lines (32 loc) · 1012 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
33
34
35
36
37
38
[package]
name = "bambulab"
version = "0.4.17"
edition = "2021"
repository = "https://github.com/markhaehnel/bambulab"
authors = ["Mark Hähnel <[email protected]>"]
description = "API client for Bambu Lab printers"
license = "MIT OR Apache-2.0"
keywords = ["3d-printer", "api", "client", "mqtt", "bambu"]
categories = ["network-programming", "api-bindings"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = { version = "0.3.31", default-features = false }
nanoid = "0.4.0"
paho-mqtt = { version = "0.13.0" }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = { version = "1.0.138" }
tokio = { version = "1.43.0", features = ["macros", "sync", "time"] }
[dev-dependencies]
tokio = { version = "1.43.0", features = ["full"] }
[features]
default = ["verify-tls"]
verify-tls = []
[profile.release]
lto = true
opt-level = "s"
strip = true
[lints.clippy]
all = "warn"
pedantic = "warn"
nursery = "warn"
cargo = "warn"