[[bin]]
doc = false
name = "obsidian-export"
path = "src/main.rs"
[dependencies.eyre]
version = "0.6.12"
[dependencies.filetime]
version = "0.2.23"
[dependencies.gumdrop]
version = "0.8.1"
[dependencies.ignore]
version = "0.4.22"
[dependencies.pathdiff]
version = "0.2.1"
[dependencies.percent-encoding]
version = "2.3.1"
[dependencies.pulldown-cmark]
version = "0.12.0"
[dependencies.pulldown-cmark-to-cmark]
version = "16.0.0"
[dependencies.rayon]
version = "1.10.0"
[dependencies.regex]
version = "1.10.5"
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.slug]
version = "0.1.5"
[dependencies.snafu]
version = "0.8.3"
[dependencies.unicode-normalization]
version = "0.1.23"
[dev-dependencies.pretty_assertions]
version = "1.4.0"
[dev-dependencies.rstest]
version = "0.23.0"
[dev-dependencies.tempfile]
version = "3.10.1"
[dev-dependencies.walkdir]
version = "2.5.0"
[lib]
name = "obsidian_export"
path = "src/lib.rs"
[lints.clippy]
arithmetic_side_effects = "warn"
as_conversions = "warn"
assertions_on_result_states = "warn"
clone_on_ref_ptr = "warn"
dbg_macro = "warn"
default_numeric_fallback = "warn"
else_if_without_else = "warn"
empty_enum_variants_with_brackets = "warn"
error_impl_error = "warn"
exhaustive_enums = "warn"
exhaustive_structs = "warn"
filetype_is_file = "warn"
float_cmp_const = "warn"
fn_to_numeric_cast_any = "warn"
if_then_some_else_none = "warn"
impl_trait_in_params = "warn"
indexing_slicing = "warn"
infinite_loop = "warn"
integer_division = "warn"
large_include_file = "warn"
lossy_float_literal = "warn"
map_err_ignore = "warn"
match_bool = "allow"
mem_forget = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
multiple_inherent_impl = "warn"
multiple_unsafe_ops_per_block = "warn"
panic_in_result_fn = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
redundant_type_annotations = "warn"
same_name_method = "warn"
self_named_module_files = "warn"
shadow_unrelated = "warn"
similar_names = "allow"
str_to_string = "warn"
string-add = "allow"
string_add = "warn"
string_slice = "warn"
string_to_string = "warn"
suspicious_xor_used_as_pow = "warn"
todo = "warn"
try_err = "warn"
undocumented_unsafe_blocks = "warn"
unneeded_field_pattern = "warn"
unseparated_literal_suffix = "warn"
vec_init_then_push = "warn"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
noop_method_call = "warn"
redundant-lifetimes = "warn"
unsafe_op_in_unsafe_fn = "warn"
unused_qualifications = "warn"
[lints.rust.nonstandard_style]
level = "warn"
priority = -1
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1
[package]
authors = ["Nick Groenen <nick@groenen.me>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["command-line-utilities", "text-processing"]
description = """
Rust library and associated CLI program to export an Obsidian vault to regular Markdown.
"""
documentation = "https://docs.rs/obsidian-export"
edition = "2018"
keywords = ["markdown", "obsidian"]
license = "BSD-2-Clause-Patent"
name = "obsidian-export"
readme = "README.md"
repository = "https://github.com/zoni/obsidian-export"
version = "24.11.0"
[profile.dist]
inherits = "release"
lto = "thin"
[[test]]
name = "export_test"
path = "tests/export_test.rs"
[[test]]
name = "postprocessors_test"
path = "tests/postprocessors_test.rs"