Unofficial library for Holiday API written in Rust. This repo implements interface for original HolidayAPI endpoints seen here.
This project is heavily inspired by holidayapi-node and holiday-api-rust repositories.
Add the following to your Cargo.toml
toml
[dependencies]
holidayapi_rust = "0.1.3"
```rust use holidayapi_rust::HolidayAPI;
let holiday_api = HolidayAPI::new("00000000-0000-0000-0000-000000000000").unwrap();
async fn main() {
// Fetch supported countries and subdivisions
let countries: Vec
// Fetch supported languages
let languages: Vec<Language> = holiday_api.languages().get().await.unwrap();
// Fetch holidays with minimum parameters
let holidays: Vec<Holiday> = holiday_api.holidays("US", 2020).get().await.unwrap();
} ```
```rust let holidayapi = HolidayAPI::new(VALIDKEY).unwrap();
// Holidays
let specificrequest: Vec
// Countries
let specificrequest: Vec
// Languages
let specificrequest: Vec
.get()
calls.