-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (19 loc) · 662 Bytes
/
Copy pathCargo.toml
File metadata and controls
21 lines (19 loc) · 662 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "smol-epub"
version = "0.1.0"
edition = "2024"
rust-version = "1.88"
authors = ["Hans Martin <https://github.com/hansmrtn>"]
description = "Minimal no_std EPUB parser with streaming decompression, HTML stripping, and optional 1-bit image decoders"
license = "MIT OR Apache-2.0"
repository = "https://github.com/hansmrtn/smol-epub"
keywords = ["epub", "no_std", "embedded", "e-ink", "ebook"]
categories = ["no-std", "parser-implementations", "embedded"]
readme = "README.md"
[dependencies]
miniz_oxide = { version = "0.8", default-features = false, features = ["with-alloc"] }
log = "0.4"
[features]
default = ["images"]
images = []
async = []