6 releases

0.0.5 Jan 26, 2025
0.0.4 Jan 24, 2025
0.0.3 Mar 1, 2024
0.0.2 Dec 14, 2023
0.0.1 Nov 25, 2023

#1377 in Network programming

Download history 2/week @ 2025-05-18 1/week @ 2025-05-25 8/week @ 2025-06-15 9/week @ 2025-06-22 35/week @ 2025-06-29 33/week @ 2025-07-06 14/week @ 2025-07-13 19/week @ 2025-07-20 1/week @ 2025-07-27 6/week @ 2025-08-03 1/week @ 2025-08-10 20/week @ 2025-08-17 29/week @ 2025-08-24 39/week @ 2025-08-31

92 downloads per month
Used in 11 crates

Apache-2.0

43KB
790 lines

AWS CLI alternative written in Rust

This crate is a part of RAWS project - AWS CLI wriiten in Rust using AWS SDK for Rust

Code layout overview

  1. Each service support lives in its own crate under services/
  2. Text output is driven by implementing show::Show trait via config::Config object.

Adding new service

  1. workspace Cargo.toml - add respective aws-sdk-xxx crate as new dependency
  2. cargo new --lib services/xxx
  3. workspace Cargo.toml - add new crate to members
  4. services/xxx/Cargo.toml
  5. add "description = RAWS xxx component"
  6. add dependencies
  7. add lints
  8. In config crate: add Config::xxx() to produce a client object
  9. in show crate: impl Show for xxx::types::xxx
  10. if needed add specialized parsers in parsers crate

Dependencies

~125MB
~1.5M SLoC