├── .art └── settings.toml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── default.nix ├── design ├── cli.toml └── purpose.toml ├── justfile ├── novault.nix └── src ├── cmds.rs ├── main.rs ├── secure.rs └── types.rs /.art/settings.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/.art/settings.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | **/*.rs.bk 3 | gh-pages 4 | result 5 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/default.nix -------------------------------------------------------------------------------- /design/cli.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/design/cli.toml -------------------------------------------------------------------------------- /design/purpose.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/design/purpose.toml -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/justfile -------------------------------------------------------------------------------- /novault.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/novault.nix -------------------------------------------------------------------------------- /src/cmds.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/src/cmds.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/secure.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/src/secure.rs -------------------------------------------------------------------------------- /src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitiral/novault/HEAD/src/types.rs --------------------------------------------------------------------------------