2020-11-28 15:14:50 +03:00
|
|
|
[package]
|
|
|
|
name = "obsidian-export"
|
2022-11-19 19:09:43 +03:00
|
|
|
version = "22.11.0"
|
2020-11-28 15:14:50 +03:00
|
|
|
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"
|
2021-09-12 15:42:07 +03:00
|
|
|
doc = false
|
2020-11-28 15:14:50 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-11-05 16:20:24 +03:00
|
|
|
eyre = "0.6.8"
|
|
|
|
gumdrop = "0.8.1"
|
2022-01-02 01:34:46 +03:00
|
|
|
ignore = "0.4.18"
|
2020-11-28 15:14:50 +03:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
matter = "0.1.0-alpha4"
|
2021-10-06 20:38:25 +03:00
|
|
|
pathdiff = "0.2.1"
|
2022-11-05 16:20:24 +03:00
|
|
|
percent-encoding = "2.2.0"
|
|
|
|
pulldown-cmark = "0.9.2"
|
2022-11-05 16:34:18 +03:00
|
|
|
pulldown-cmark-to-cmark = "10.0.4"
|
2022-11-05 16:20:24 +03:00
|
|
|
rayon = "1.5.3"
|
2022-11-07 22:01:24 +03:00
|
|
|
regex = "1.7.0"
|
2022-11-05 16:25:33 +03:00
|
|
|
serde_yaml = "0.9.14"
|
2021-01-04 23:17:46 +03:00
|
|
|
slug = "0.1.4"
|
2022-11-05 16:36:47 +03:00
|
|
|
snafu = "0.7.3"
|
2022-11-19 18:34:17 +03:00
|
|
|
unicode-normalization = "0.1.22"
|
2020-11-28 15:14:50 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-11-05 16:20:24 +03:00
|
|
|
pretty_assertions = "1.3.0"
|
2022-11-19 18:34:17 +03:00
|
|
|
rstest = "0.15.0"
|
2022-01-10 22:03:30 +03:00
|
|
|
tempfile = "3.3.0"
|
2021-03-29 09:26:37 +03:00
|
|
|
walkdir = "2.3.2"
|