mdja 0.1.3

日本語に最適化されたMarkdownパーサー - CommonMark + GFM対応、目次生成、読了時間計算
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "mdja"
version = "0.1.3"
authors = ["0809android"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "日本語に最適化されたMarkdownパーサー - CommonMark + GFM対応、目次生成、読了時間計算"
readme = "README.md"
keywords = [
    "markdown",
    "japanese",
    "parser",
    "commonmark",
    "gfm",
]
categories = [
    "text-processing",
    "parser-implementations",
    "internationalization",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0809android/mdja"

[features]
default = []
python = [
    "dep:pyo3",
    "dep:pyo3-build-config",
    "pyo3/extension-module",
]
wasm = [
    "dep:wasm-bindgen",
    "dep:serde-wasm-bindgen",
]

[lib]
name = "mdja"
crate-type = [
    "cdylib",
    "rlib",
]
path = "src/lib.rs"

[[bin]]
name = "mdja"
path = "src/bin/cli.rs"
required-features = []

[[example]]
name = "basic"
path = "examples/basic.rs"

[dependencies.comrak]
version = "0.30"

[dependencies.pyo3]
version = "0.20"
optional = true

[dependencies.regex]
version = "1.10"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde-wasm-bindgen]
version = "0.6"
optional = true

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"

[dependencies.wasm-bindgen]
version = "0.2"
optional = true

[dev-dependencies.pretty_assertions]
version = "1.4"

[build-dependencies.pyo3-build-config]
version = "0.20"
optional = true

[profile.release]
opt-level = 3
lto = true
codegen-units = 1