#const

aws-ip-ranges

https://ip-ranges.amazonaws.com/ip-ranges.json as const structs

693 breaking releases

new 0.874.0 Oct 21, 2024
0.872.0 Oct 21, 2024
0.760.0 Jul 27, 2024
0.167.0 Mar 30, 2024
0.14.0 Nov 30, 2023

#821 in Rust patterns

Download history 7433/week @ 2024-07-02 6299/week @ 2024-07-09 1492/week @ 2024-07-16 2639/week @ 2024-07-23 1020/week @ 2024-07-30 1002/week @ 2024-08-06 1083/week @ 2024-08-13 1197/week @ 2024-08-20 736/week @ 2024-08-27 2022/week @ 2024-09-03 1966/week @ 2024-09-10 1671/week @ 2024-09-17 1065/week @ 2024-09-24 2092/week @ 2024-10-01 1927/week @ 2024-10-08 2552/week @ 2024-10-15

7,671 downloads per month

MIT/Apache

87KB
135 lines

aws-ip-ranges

https://ip-ranges.amazonaws.com/ip-ranges.json as const structs

Description

If the data from https://ip-ranges.amazonaws.com/ip-ranges.json is used in a Rust program, it can be slow to fetch it every time. This crate provides the data as const structs, so it can be compiled into the program.

An hourly GitHub Actions workflow updates the data in this crate automatically and releases a new version of the crate if the data has changed.

Usage

fn main() {
  let ip_ranges = aws_ip_ranges::IP_RANGES;
  println!("{ip_ranges:#?}");
}

License

This project is licensed under either of

at your option.

No runtime deps