[package]
edition = "2024"
name = "scriv"
version = "1.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast local CLI note manager with optional password encryption"
homepage = "https://github.com/mooship/scriv"
documentation = "https://docs.rs/scriv"
readme = "README.md"
keywords = [
"notes",
"cli",
"productivity",
"local",
]
categories = ["command-line-utilities"]
license = "GPL-3.0-only"
repository = "https://github.com/mooship/scriv"
[lib]
name = "scriv"
path = "src/lib.rs"
[[bin]]
name = "scriv"
path = "src/main.rs"
[[test]]
name = "crypto_tests"
path = "tests/crypto_tests.rs"
[[test]]
name = "format_tests"
path = "tests/format_tests.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[[test]]
name = "storage_tests"
path = "tests/storage_tests.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
]
default-features = false
[dependencies.once_cell]
version = "1.20"
[dependencies.pbkdf2]
version = "0.12"
[dependencies.rand]
version = "0.10"
[dependencies.rpassword]
version = "7.3"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3.13"
[dependencies.zeroize]
version = "1"