- Added builder methods to `PhysicalHost` for configuring CPU, memory size, storage, MAC address, labels, and management interface. - Updated the edition of various Cargo.toml files to 2024. - Implemented workspace inheritance for version, readme, and license fields in Cargo.toml files.
		
			
				
	
	
		
			18 lines
		
	
	
		
			414 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			414 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "harmony_tui"
 | |
| edition = "2024"
 | |
| version.workspace = true
 | |
| readme.workspace = true
 | |
| license.workspace = true
 | |
| 
 | |
| [dependencies]
 | |
| harmony = { path = "../harmony" }
 | |
| log = { workspace = true }
 | |
| env_logger = { workspace = true }
 | |
| tokio = { workspace = true }
 | |
| ratatui = "0.29.0"
 | |
| crossterm = { version = "0.28.1", features = [ "event-stream" ] }
 | |
| color-eyre = "0.6.3"
 | |
| tokio-stream = "0.1.17"
 | |
| tui-logger = "0.14.1"
 |