838881fea0
This commit upgrades all dependencies to their current latest versions. Most notably, this includes upgrades to the following most critical libraries: pulldown-cmark v0.8.0 -> v0.9.0 pulldown-cmark-to-cmark v7.1.1 -> v9.0.0 In total, these dependencies were upgraded: bstr v0.2.16 -> v0.2.17 ignore v0.4.17 -> v0.4.18 libc v0.2.101 -> v0.2.112 memoffset v0.6.4 -> v0.6.5 num_cpus v1.13.0 -> v1.13.1 once_cell v1.8.0 -> v1.9.0 ppv-lite86 v0.2.10 -> v0.2.16 proc-macro2 v1.0.29 -> v1.0.36 pulldown-cmark v0.8.0 -> v0.9.0 pulldown-cmark-to-cmark v7.1.1 -> v9.0.0 quote v1.0.9 -> v1.0.14 rayon v1.5.0 -> v1.5.1 regex v1.5.3 -> v1.5.4 serde v1.0.130 -> v1.0.132 syn v1.0.75 -> v1.0.84 unicode-width v0.1.8 -> v0.1.9 version_check v0.9.3 -> v0.9.4
47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[package]
|
|
name = "obsidian-export"
|
|
version = "21.9.1"
|
|
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.5"
|
|
gumdrop = "0.8.0"
|
|
ignore = "0.4.18"
|
|
lazy_static = "1.4.0"
|
|
matter = "0.1.0-alpha4"
|
|
pathdiff = "0.2.1"
|
|
percent-encoding = "2.1.0"
|
|
pulldown-cmark = "0.9.0"
|
|
pulldown-cmark-to-cmark = "9.0.0"
|
|
rayon = "1.5.1"
|
|
regex = "1.5.4"
|
|
serde_yaml = "0.8.23"
|
|
slug = "0.1.4"
|
|
snafu = "0.6.10"
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions = "1.0.0"
|
|
tempfile = "3.2.0"
|
|
walkdir = "2.3.2"
|