The HolidayAPI client wrapper written in Rust
| Service | Status |
| ------- | :----: |
| AppveyorCI | |
| CodeCov |
|
| crates.io |
|
Pure Rust bindings to the Holiday API.
holiday-api-rust is intended to work on all tier 1 supported Rust systems:
holiday-api-rust supports [rustls] and [rust-native-tls] for TLS connectivity.
rustls
is used by default, but one can toggle support with Cargo features:
Due to the use of certain features github-rs requires rustc
version 1.18 or
higher.
Add the following to your Cargo.toml
toml
[dependencies]
holiday_api_rust = "0.1"
serde_json = "1.0"
Then in your lib.rs
or main.rs
file add:
```rust extern crate holidayapirust;
let client = HolidayAPIClient::new("HolidayAPI key here"); match client.search_holidays("2019", "BR") { Err(e) => eprintln!("{:?}", e), Ok(holidays) => { for holiday in holidays { println!("Holiday: {} | Date: {} | Country: {}", holiday.name, holiday.date, holiday.country); } } } ```
Licensed under