mirror of
				https://github.com/edera-dev/krata.git
				synced 2025-11-03 23:29:39 +00:00 
			
		
		
		
	Co-authored-by: edera-cultivation[bot] <165992271+edera-cultivation[bot]@users.noreply.github.com>
		
			
				
	
	
		
			38 lines
		
	
	
		
			915 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			915 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
[package]
 | 
						|
name = "krata-xenclient"
 | 
						|
description = "An implementation of Xen userspace for krata"
 | 
						|
license.workspace = true
 | 
						|
version.workspace = true
 | 
						|
homepage.workspace = true
 | 
						|
repository.workspace = true
 | 
						|
edition = "2021"
 | 
						|
resolver = "2"
 | 
						|
 | 
						|
[dependencies]
 | 
						|
async-trait = { workspace = true }
 | 
						|
indexmap = { workspace = true }
 | 
						|
libc = { workspace = true }
 | 
						|
log = { workspace = true }
 | 
						|
krata-xencall = { path = "../xencall", version = "^0.0.11" }
 | 
						|
krata-xenplatform = { path = "../xenplatform", version = "^0.0.11" }
 | 
						|
krata-xenstore = { path = "../xenstore", version = "^0.0.11" }
 | 
						|
regex = { workspace = true }
 | 
						|
thiserror = { workspace = true }
 | 
						|
tokio = { workspace = true }
 | 
						|
uuid = { workspace = true }
 | 
						|
 | 
						|
[dev-dependencies]
 | 
						|
env_logger = { workspace = true }
 | 
						|
tokio = { workspace = true }
 | 
						|
 | 
						|
[lib]
 | 
						|
name = "xenclient"
 | 
						|
 | 
						|
[[example]]
 | 
						|
name = "xenclient-boot"
 | 
						|
path = "examples/boot.rs"
 | 
						|
 | 
						|
[[example]]
 | 
						|
name = "xenclient-pci"
 | 
						|
path = "examples/pci.rs"
 |