33 lines
773 B
TOML
33 lines
773 B
TOML
[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
|