-
-
Notifications
You must be signed in to change notification settings - Fork 175
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 821 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 821 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
37
38
39
[package]
name = "deebot_client"
version = "0.0.0"
edition = "2024"
authors = ["Robert Resch <robert@resch.dev>"]
rust-version = "1.87"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "deebot_client"
crate-type = ["cdylib", "rlib"]
[dependencies]
base64 = "0.22.1"
byteorder = "1.5.0"
crc32fast = "1.4.2"
image = { version = "0.25.5", default-features = false }
liblzma = "0.4.0"
log = "0.4.26"
once_cell = "1.20.3"
png = "0.18.0"
pyo3 = "0.28.0"
pyo3-log = ">=0.13.1"
svg = "0.18.0"
zstd = "0.13.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ordermap = "1.0.0"
itertools = "0.14.0"
[dev-dependencies]
rstest = "0.26.0"
strum = "0.28.0"
strum_macros = "0.28.0"
[profile.codspeed]
inherits = "release"
debug = true
strip = false