4 releases

0.0.3 Mar 1, 2024
0.0.2 Dec 14, 2023
0.0.1 Nov 25, 2023
0.0.0 Nov 24, 2023

#1905 in Network programming

Download history 4/week @ 2024-01-24 3/week @ 2024-01-31 12/week @ 2024-02-07 30/week @ 2024-02-14 21/week @ 2024-02-21 147/week @ 2024-02-28 48/week @ 2024-03-06 31/week @ 2024-03-13 56/week @ 2024-03-20 62/week @ 2024-03-27 38/week @ 2024-04-03 26/week @ 2024-04-10 28/week @ 2024-04-17 35/week @ 2024-04-24 34/week @ 2024-05-01 15/week @ 2024-05-08

120 downloads per month
Used in 12 crates (11 directly)

Apache-2.0

25KB
646 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

~99MB
~1.5M SLoC