mikufans_proto/
lib.rs

1#[allow(clippy::empty_docs)]
2#[cfg(feature = "datacenter")]
3pub mod datacenter {
4    #[cfg(feature = "datacenter_hakase")]
5    pub mod hakase {
6        #[cfg(feature = "datacenter_hakase_protobuf")]
7        pub mod protobuf {
8            include!("datacenter.hakase.protobuf.rs");
9        }
10    }
11}
12
13#[allow(deprecated)]
14#[allow(clippy::empty_docs)]
15mod generated;
16
17#[allow(unused_imports)]
18// re-export generated types
19pub use generated::*;
20
21/// The version code.
22pub const TARGET_VERSION: &str = "8.52.0";
23
24/// The version code number.
25pub const TARGET_VERSION_CODE: i32 = 8520200;
26
27/// The build serial number.
28pub const TARGET_BUILD_SN: i32 = 19546312;