init_data_rs/lib.rs
1#![warn(clippy::pedantic)]
2// We ignore this warning because the only literals we use
3// are telegram ids, which are not meant to be read
4#![allow(clippy::unreadable_literal)]
5mod error;
6mod model;
7mod parse;
8mod sign;
9mod third_party_validation;
10mod validation;
11
12pub use error::InitDataError;
13pub use model::*;
14pub use parse::parse;
15pub use sign::sign;
16pub use third_party_validation::validate_third_party;
17pub use validation::validate;