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

19 lines
517 B
TOML
Raw Normal View History

2024-03-18 13:39:50 -03:00
[package]
name = "mdparser"
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-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"] }