Some checks failed
Public Repo Readiness / Check Public Repo Readiness (push) Failing after 4s
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
622 B
TOML
29 lines
622 B
TOML
[package]
|
|
name = "notfiles"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license.workspace = true
|
|
description = "A modern dotfiles manager — pure Rust alternative to GNU Stow"
|
|
|
|
[[bin]]
|
|
name = "notfiles"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "notfiles"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
notcore = { workspace = true }
|
|
clap = { workspace = true }
|
|
globset = { workspace = true }
|
|
chrono = { workspace = true }
|
|
serde = { workspace = true }
|
|
toml = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
dirs = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
assert_fs = { workspace = true }
|