A rust port of EJSON with a few extra bells and whistles. Full credit should go to the team that made EJSON. No innovation here other than needing Rust bindings and wanting a few extra features I'm not sure belonged upstream.
ln -s -f ../../build/pre-commit .git/hooks/pre-commit
See rejson -h
or (cargo run -- -h
) for usage details.
A docker image is published for each release of rEJSON. Usage is similar to using the binary, only the /keys
and
/files
volumes are required for encrypt/decrypt functionality.
```
docker run --rm -it rejson:0.1.0 keygen
docker run --rm -it \ -v ~/.config/ejson:/keys \ -v $(pwd)/tmp:/files \ rejson:0.1.0 decrypt /files/secrets.ejson ```