📝 Adds rbw as a runtime dependency

Signed-off-by: Ash Svitan <selfsigned-ash@proton.me>
This commit is contained in:
2026-04-30 15:23:45 +02:00
parent 4337534f1a
commit e61ff4b825
2 changed files with 5 additions and 3 deletions
+4 -3
View File
@@ -1,13 +1,14 @@
# bitwarden-proton-sync # bitwarden-proton-sync
This is a cron-based CLI tool to sync Bitwarden to Proton Pass. This is a simple CLI tool to sync Bitwarden to Proton Pass. It can be set up as a cron jo to automate the syncing.
### Runtime requirements: ### Runtime requirements:
- `pass-cli` - Proton Pass CLI (must be logged in) - `pass-cli` - Proton Pass CLI (must be logged in)
- `rbw` - Unofficial Bitwarden CLI (must be logged in)
### Building ### Running
```sh ```sh
cargo build cargo run
``` ```
+1
View File
@@ -37,6 +37,7 @@ fn main() -> Result<(), Error> {
let items = pass::get_items(&vault).items; let items = pass::get_items(&vault).items;
println!("{:?}", items[0]); println!("{:?}", items[0]);
println!("{}", items.len());
return Ok(()); return Ok(());
} }