Files
notfiles/Cargo.toml
Joseph O'Brien 0ff89234e8
Some checks failed
Public Repo Readiness / Check Public Repo Readiness (push) Failing after 4s
chore: add dual MIT/Apache-2.0 license, update Cargo.toml and README
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-31 22:00:10 -04:00

36 lines
824 B
TOML

[workspace.package]
license = "MIT OR Apache-2.0"
[workspace]
members = [
"crates/notcore",
"crates/notfiles",
"crates/notsecrets",
"crates/nothooks",
"crates/notstrap",
]
resolver = "2"
[workspace.dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
chrono = { version = "0.4", default-features = false, features = ["clock"] }
dirs = "6"
globset = "0.4"
serde = { version = "1", features = ["derive"] }
thiserror = "2"
toml = "0.8"
which = "7"
rpassword = "7"
tempfile = "3"
assert_fs = "1"
notcore = { path = "crates/notcore" }
notfiles = { path = "crates/notfiles" }
notsecrets = { path = "crates/notsecrets" }
nothooks = { path = "crates/nothooks" }
[profile.release]
opt-level = 3
lto = "thin"
strip = true