mirror of
				https://git.proxmox.com/git/proxmox
				synced 2025-11-04 10:07:04 +00:00 
			
		
		
		
	so we can use the types without having openssl, proxmox-sys, etc. as dependencies. Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			442 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			442 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
 | 
						|
 | 
						|
mod subscription_info;
 | 
						|
#[cfg(feature = "impl")]
 | 
						|
pub use subscription_info::{
 | 
						|
    get_hardware_address, ProductType, SubscriptionInfo, SubscriptionStatus,
 | 
						|
};
 | 
						|
 | 
						|
#[cfg(not(feature = "impl"))]
 | 
						|
pub use subscription_info::{ProductType, SubscriptionInfo, SubscriptionStatus};
 | 
						|
 | 
						|
#[cfg(feature = "impl")]
 | 
						|
pub mod check;
 | 
						|
#[cfg(feature = "impl")]
 | 
						|
pub mod files;
 | 
						|
#[cfg(feature = "impl")]
 | 
						|
pub mod sign;
 |