-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
30 lines (27 loc) · 1.21 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
[package]
name = "esp-idf-part"
version = "0.5.0"
authors = ["Jesse Braham <jesse@beta7.io>"]
edition = "2021"
rust-version = "1.71"
description = "A library for parsing and generating ESP-IDF partition tables"
repository = "https://github.com/esp-rs/esp-idf-part"
license = "MIT OR Apache-2.0"
keywords = ["esp-idf", "partition", "partition-table"]
categories = ["embedded", "parsing"]
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
csv = { version = "1.3.0", optional = true }
deku = { version = "0.17.0", optional = true }
heapless = { version = "0.8.0", features = ["serde"]}
md-5 = { version = "0.10.6", default-features = false }
parse_int = { version = "0.6.0", optional = true }
regex = { version = "1.10.3", optional = true }
serde = { version = "1.0.196", default-features = false, features = ["derive"] }
serde_plain = "1.0.2"
strum = { version = "0.26.1", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.57", optional = true }
[features]
default = ["std"]
std = ["csv", "deku", "parse_int", "regex", "serde/std", "strum/std", "thiserror"]