-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (34 loc) · 961 Bytes
/
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
31
32
33
34
35
36
37
38
[package]
name = "mdbook-codeblocks"
authors = ["Roms1383"]
version = "0.1.18"
edition = "2021"
readme = "README.md"
repository = "https://github.com/Roms1383/mdbook-codeblocks"
documentation = "https://docs.rs/mdbook-codeblocks"
homepage = "https://github.com/Roms1383/mdbook-codeblocks"
license = "MIT OR Apache-2.0"
exclude = ["example.png", "justfile", "/.github/*", "/example/*"]
keywords = ["mdbook", "preprocessor"]
description = """
A mdbook preprocessor to prepend customizable vignette to code blocks.
"""
[dependencies]
anyhow = "1.0.95"
env_logger = "0.11.6"
color-name = "1.1.0"
hex_color = "3.0.0"
log = "0.4.25"
mdbook = "0.4.44"
pulldown-cmark = "0.10.3"
pulldown-cmark-to-cmark = "14.0.1"
semver = "1.0.25"
serde_json = "1.0.138"
[dependencies.clap]
version = "4.5.27"
features = ["std", "derive", "cargo", "unicode", "error-context"]
[dependencies.serde]
version = "1.0.217"
features = ["derive"]
[profile.dev.build-override]
debug = true