RustQuant_time 0.4.0

A Rust library for quantitative finance.
Documentation
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// RustQuant: A Rust library for quantitative finance tools.
// Copyright (C) 2022-2024 https://github.com/avhz
// Dual licensed under Apache 2.0 and MIT.
// See:
//      - LICENSE-APACHE.md
//      - LICENSE-MIT.md
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

//! calendars and holidays for different countries.

/// Argentina holidays and calendars.
pub mod argentina;
pub use argentina::*;
/// Australia holidays and calendars.
pub mod australia;
pub use australia::*;
/// Austria holidays and calendars.
pub mod austria;
pub use austria::*;
/// Botswana holidays and calendars.
pub mod botswana;
pub use botswana::*;
/// Brazil holidays and calendars.
pub mod brazil;
pub use brazil::*;
/// Canada holidays and calendars.
pub mod canada;
pub use canada::*;
/// Chile holidays and calendars.
pub mod chile;
pub use chile::*;
/// China holidays and calendars.
pub mod china;
pub use china::*;
/// Czech Republic holidays and calendars.
pub mod czech_republic;
pub use czech_republic::*;
/// Denmark holidays and calendars.
pub mod denmark;
pub use denmark::*;
/// Finland holidays and calendars.
pub mod finland;
pub use finland::*;
/// France holidays and calendars.
pub mod france;
pub use france::*;
/// Germany holidays and calendars.
pub mod germany;
pub use germany::*;
/// Hong Kong holidays and calendars.
pub mod hong_kong;
pub use hong_kong::*;
/// Hungary holidays and calendars.
pub mod hungary;
pub use hungary::*;
/// Iceland holidays and calendars.
pub mod iceland;
pub use iceland::*;
/// India holidays and calendars.
pub mod india;
pub use india::*;
/// Indonesia holidays and calendars.
pub mod indonesia;
pub use indonesia::*;
/// Israeli (Jewish) holidays and calander, implemented with an external API.
pub mod israel;
pub use israel::*;
/// Mexico holidays and calendars
pub mod mexico;
pub use mexico::*;
/// Netherlands holidays and calendars.
pub mod netherlands;
pub use netherlands::*;
/// New Zealand holidays and calendars.
pub mod new_zealand;
pub use new_zealand::*;
/// Singapore holidays and calendars.
pub mod singapore;
pub use singapore::*;
/// United Kingdom holidays and calendars.
pub mod united_kingdom;
pub use united_kingdom::*;
/// United States holidays and calendars.
pub mod united_states;
pub use united_states::*;