-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 976 Bytes
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 976 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
40
41
[package]
name = "one2html"
version = "1.3.0"
authors = ["Markus Siemens <markus@m-siemens.de>"]
edition = "2024"
description = "Convert Microsoft OneNote® notebooks to HTML"
license = "MIT"
repository = "https://github.com/msiemens/one2html"
keywords = ["onenote"]
categories = ["command-line-utilities", "encoding"]
[features]
default = ["backtrace"]
backtrace = ["onenote_parser/backtrace"]
[dependencies]
askama = "0.15"
color-eyre = "0.6"
console = "0.16"
env_logger = "0.11"
indicatif = "0.18"
itertools = "0.14"
log = "0.4"
mime_guess = "2.0"
once_cell = "1.21"
onenote_parser = { version = "1.1", default-features = false }
palette = "0.7"
percent-encoding = "2.3"
regex = "1.12"
sanitize-filename = "0.6"
clap = { version = "4.5", features = ["derive"] }
bitflags = "2.10"
enum-primitive-derive = "0.3"
unicode-blocks = "0.1"
phf = { version = "0.13", features = ["macros"] }
num-traits = "0.2"
finl_unicode = "1.4"
[profile.dev.package.backtrace]
opt-level = 3