Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ description = "Shared TOML config primitives for the curator, warden, and lector
repository = "https://github.com/Lockyc/config-core"

[dependencies]
thiserror = "1"
thiserror = "2"
# `~` resolution for the shared config-path helper (paths.rs). Deliberately only home_dir() —
# NOT dirs::config_dir(), which on macOS is ~/Library/Application Support (see paths.rs).
dirs = "5"
dirs = "6"
# House-style TOML formatter (see fmt.rs), embedded as a library so a consuming app can format
# its own config — no standalone taplo binary required.
taplo = "0.13"
taplo = "0.14"
# Atomic in-place rewrite for format_file (temp file in the same dir + rename).
tempfile = "3"
# Structural, comment-preserving TOML editing for edit::add_tab (append a tab table without
# reformatting the rest of the file).
toml_edit = "0.22"
toml_edit = "0.25"
Loading