git remote add origin https://github.com/tendguo/cli-projects-rust.git git branch -M main git push -u origin main
echo "# test" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com/tendguo/test.git git push -u origin main
cargo run -- csv -i assets/smallpop.csv cargo run -- csv -i assets/smallpop.csv --format yaml
cargo run -- gen_pass
cargo run -- base64 encode
cargo run -- text generate --path encryption --format blake3
cargo run -- text generate --path encryption --format ed25519
cargo run -- text sign --format blake3 --message encryption/message.txt --key encryption/blake3.txt
cargo run -- text sign --message encryption/message.txt --key encryption/ed25519.sk
cargo run -- text verify --format blake3 --message encryption/message.txt --key encryption/blake3.txt --sig Ey37iAVJo41c4fBCyCJpyXopC8l_I93MEGwUxAI_8UY
cargo run -- text verify --format ed25519 --message encryption/message.txt --key encryption/ed25519.sk --sig Ey37iAVJo41c4fBCyCJpyXopC8l_I93MEGwUxAI_8UY
cargo run -- http serve