-
-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathmod.rs
More file actions
122 lines (93 loc) · 2.75 KB
/
mod.rs
File metadata and controls
122 lines (93 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// 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(crate) use argentina::*;
/// Australia holidays and calendars.
pub mod australia;
pub(crate) use australia::*;
/// Austria holidays and calendars.
pub mod austria;
pub(crate) use austria::*;
/// Botswana holidays and calendars.
pub mod botswana;
pub(crate) use botswana::*;
/// Brazil holidays and calendars.
pub mod brazil;
pub(crate) use brazil::*;
/// Canada holidays and calendars.
pub mod canada;
pub(crate) use canada::*;
/// Chile holidays and calendars.
pub mod chile;
pub(crate) use chile::*;
/// China holidays and calendars.
pub mod china;
pub(crate) use china::*;
/// Czech Republic holidays and calendars.
pub mod czech_republic;
pub(crate) use czech_republic::*;
/// Denmark holidays and calendars.
pub mod denmark;
pub(crate) use denmark::*;
/// Finland holidays and calendars.
pub mod finland;
pub(crate) use finland::*;
/// France holidays and calendars.
pub mod france;
pub(crate) use france::*;
/// Germany holidays and calendars.
pub mod germany;
pub(crate) use germany::*;
/// Hong Kong holidays and calendars.
pub mod hong_kong;
pub(crate) use hong_kong::*;
/// Hungary holidays and calendars.
pub mod hungary;
pub(crate) use hungary::*;
/// Iceland holidays and calendars.
pub mod iceland;
pub(crate) use iceland::*;
/// India holidays and calendars.
pub mod india;
pub(crate) use india::*;
/// Indonesia holidays and calendars.
pub mod indonesia;
pub(crate) use indonesia::*;
/// Israeli (Jewish) holidays and calander, implemented with an external API.
pub mod israel;
pub(crate) use israel::*;
/// Italy holidays and calendars.
pub mod italy;
pub(crate) use italy::*;
/// Mexico holidays and calendars
pub mod mexico;
pub(crate) use mexico::*;
/// Netherlands holidays and calendars.
pub mod netherlands;
pub(crate) use netherlands::*;
/// New Zealand holidays and calendars.
pub mod new_zealand;
pub(crate) use new_zealand::*;
/// Singapore holidays and calendars.
pub mod singapore;
pub(crate) use singapore::*;
/// United Kingdom holidays and calendars.
pub mod united_kingdom;
pub(crate) use united_kingdom::*;
/// United States holidays and calendars.
pub mod united_states;
pub(crate) use united_states::*;
/// Switzerland holidays and calendars.
pub mod switzerland;
pub(crate) use switzerland::*;
/// Turkey holidays and calendars.
pub mod turkey;
pub use turkey::*;