4 Star 1 Fork 1

mirrors_rlidwka/markdown-it.rs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Cargo.toml 1.52 KB
一键复制 编辑 原始数据 按行查看 历史
Alex Kocharin 提交于 2024-07-07 21:51 . 0.6.1
[package]
name = "markdown-it"
version = "0.6.1"
authors = ["Alex Kocharin <alex@kocharin.ru>"]
description = "Rust port of popular markdown-it.js library."
documentation = "https://docs.rs/markdown-it"
homepage = "https://github.com/markdown-it-rust/markdown-it"
repository = "https://github.com/markdown-it-rust/markdown-it"
readme = "README.md"
keywords = ["markdown", "commonmark"]
license = "MIT"
categories = ["text-processing", "parsing"]
edition = "2021"
[lib]
name = "markdown_it"
path = "src/lib.rs"
[[bin]]
name = "markdown-it"
path = "src/bin.rs"
doc = false
[features]
default = ["linkify", "syntect"]
[dependencies]
# Lower range limit of these dependencies was manually checked to work with
# minimal versions possible, higher range limit is best guess based on semver.
# So older versions will not work, but newer versions might.
argparse = ">= 0.2.1, < 0.3"
const_format = ">= 0.1.0, < 0.3"
derivative = ">= 1.0.2, < 3"
derive_more = ">= 0.99.0, < 1"
downcast-rs = ">= 1.0.2, < 2"
entities = ">= 0.1.0, < 2"
html-escape = ">= 0.1.0, < 0.3"
linkify = { version = ">= 0.5.0, < 0.11", optional = true }
mdurl = ">= 0.3.1, < 0.4"
once_cell = ">= 1.0.1, < 2"
readonly = ">= 0.2.0, < 0.3"
regex = ">= 1.0.0, < 2"
stacker = ">= 0.1.2, < 0.2"
syntect = { version = ">= 5.0.0, < 6", optional = true, default-features = false, features = ["default-fancy"] }
unicode-general-category = ">= 0.1.0, < 0.7"
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tarpaulin_include)'] }
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_rlidwka/markdown-it.rs.git
git@gitee.com:mirrors_rlidwka/markdown-it.rs.git
mirrors_rlidwka
markdown-it.rs
markdown-it.rs
master

搜索帮助