https://github.com/turbo87/aws-ip-ranges
https://ip-ranges.amazonaws.com/ip-ranges.json as const structs
https://github.com/turbo87/aws-ip-ranges
Last synced: 8 months ago
JSON representation
https://ip-ranges.amazonaws.com/ip-ranges.json as const structs
- Host: GitHub
- URL: https://github.com/turbo87/aws-ip-ranges
- Owner: Turbo87
- Created: 2023-11-14T09:40:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-08-13T07:48:49.000Z (10 months ago)
- Last Synced: 2025-08-13T09:28:00.135Z (10 months ago)
- Language: Rust
- Homepage: https://crates.io/crates/aws-ip-ranges
- Size: 5.63 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
aws-ip-ranges
==============================================================================
as const structs
Description
------------------------------------------------------------------------------
If the data from 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
------------------------------------------------------------------------------
```rust
fn main() {
let ip_ranges = aws_ip_ranges::IP_RANGES;
println!("{ip_ranges:#?}");
}
```
License
------------------------------------------------------------------------------
This project is licensed under either of
- Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
)
- MIT license ([LICENSE-MIT](LICENSE-MIT) or
)
at your option.