Details
Details
cargo run succeeds and prints hello world.
Diff Detail
Diff Detail
- Repository
- rCOMM Comm
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
- Moved service module from service.rs to service/mod.rs as it is going to be a multi-file module
- Introduced a few more dependencies:
- async_stream - To conveniently manage data chunks when pulling backups. Was already used in old blob_client.
- clap - A command-line parser, also used in identity service. Will be used to configure the service
- once_cell - To conveniently store global config read from cmdline. This lib is extremely popular and powerfull, it's planned to be merged into Rust std lib.
- rand and uuid - To generate backup/log IDs, unique holders, etc. These are also used in our other services.
cc @ashoat on new dependencies