forked from NationTech/harmony
		
	- Introduce `bootstrap_load_balancer` module for handling initial load balancing configuration. - Add `bootstrap_dhcp` module for bootstrapping DHCP settings. - Create `harmony_types` crate to house shared types, including `MacAddress`. - Update `harmony_macros` to use `harmony_types` instead of directly referencing `harmony`.
		
			
				
	
	
		
			13 lines
		
	
	
		
			188 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			188 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "harmony_macros"
 | |
| edition = "2024"
 | |
| version = "1.0.0"
 | |
| 
 | |
| [lib]
 | |
| proc-macro = true
 | |
| 
 | |
| [dependencies]
 | |
| harmony_types = { path = "../harmony_types" }
 | |
| quote = "1.0.37"
 | |
| syn = "2.0.90"
 |