This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mdparser/Cargo.toml

26 lines
669 B
TOML
Raw Permalink Normal View History

2024-03-18 13:39:50 -03:00
[package]
2024-04-30 19:31:45 -03:00
name = "dot013-mdparser"
2024-03-18 13:39:50 -03:00
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-03-18 14:13:40 -03:00
clap = "4.5.3"
2024-03-26 15:13:33 -03:00
clio = { version = "0.3.5", features = ["clap-parse"] }
color-art = "0.3.8"
2024-03-18 14:13:40 -03:00
comrak = "0.21.0"
2024-04-24 20:27:21 -03:00
itertools = "0.12.1"
2024-04-29 14:50:06 -03:00
mime_guess = "2.0.4"
mime_serde_shim = "0.2.2"
2024-03-18 14:13:40 -03:00
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
serde_with = { version = "3.7.0", features = [ "macros" ] }
serde_yaml = "0.9.34"
url = { version = "2.5.0", features = ["serde"] }
[features]
default = ["uuid-link-to-mention"]
uuid-link-to-mention = []
npf-runtime-asserts = []