forked from esp-rs/esp-idf-part
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 1.22 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.4.1"
authors = ["Jesse Braham <[email protected]>"]
edition = "2021"
rust-version = "1.67.0"
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.2.2", optional = true }
deku = { version = "0.16.0", optional = true }
heapless = { version = "0.7.16", features = ["serde"]}
md5 = { version = "0.7.0", default-features = false }
parse_int = { version = "0.6.0", optional = true }
regex = { version = "1.8.4", optional = true }
serde = { version = "1.0.163", default-features = false, features = ["derive"] }
serde_plain = "1.0.1"
strum = { version = "0.24.1", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.40", optional = true }
[features]
default = ["std"]
std = ["csv", "deku", "md5/std", "parse_int", "regex", "serde/std", "strum/std", "thiserror"]