500f0fb86b
Bumps [rayon](https://github.com/rayon-rs/rayon) from 1.5.3 to 1.6.0. - [Release notes](https://github.com/rayon-rs/rayon/releases) - [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md) - [Commits](https://github.com/rayon-rs/rayon/compare/v1.5.3...rayon-core-v1.6.0) --- updated-dependencies: - dependency-name: rayon dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
[package]
|
|
name = "obsidian-export"
|
|
version = "22.11.0"
|
|
authors = ["Nick Groenen <nick@groenen.me>"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
readme = "README.md"
|
|
repository = "https://github.com/zoni/obsidian-export"
|
|
documentation = "https://docs.rs/obsidian-export"
|
|
description = """
|
|
Rust library and associated CLI program to export an Obsidian vault to regular Markdown.
|
|
"""
|
|
categories = ["command-line-utilities", "text-processing"]
|
|
keywords = ["markdown", "obsidian"]
|
|
|
|
[lib]
|
|
name = "obsidian_export"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "obsidian-export"
|
|
path = "src/main.rs"
|
|
doc = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
eyre = "0.6.8"
|
|
gumdrop = "0.8.1"
|
|
ignore = "0.4.18"
|
|
lazy_static = "1.4.0"
|
|
matter = "0.1.0-alpha4"
|
|
pathdiff = "0.2.1"
|
|
percent-encoding = "2.2.0"
|
|
pulldown-cmark = "0.9.2"
|
|
pulldown-cmark-to-cmark = "10.0.4"
|
|
rayon = "1.6.0"
|
|
regex = "1.7.0"
|
|
serde_yaml = "0.9.14"
|
|
slug = "0.1.4"
|
|
snafu = "0.7.3"
|
|
unicode-normalization = "0.1.22"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.3.0"
|
|
rstest = "0.15.0"
|
|
tempfile = "3.3.0"
|
|
walkdir = "2.3.2"
|