mirror of https://github.com/fafhrd91/actix-web
				
				
				
			
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
digraph {
 | 
						|
    rankdir=TB
 | 
						|
 | 
						|
    subgraph cluster_net {
 | 
						|
        label="actix-net"
 | 
						|
        "actix-codec" "actix-macros" "actix-rt" "actix-server" "actix-service"
 | 
						|
        "actix-tls" "actix-tracing" "actix-utils"
 | 
						|
    }
 | 
						|
    
 | 
						|
    subgraph cluster_other {
 | 
						|
        label="other actix owned crates"
 | 
						|
        { rank=same; "local-channel" "local-waker" "bytestring" }
 | 
						|
    }
 | 
						|
 | 
						|
    subgraph cluster_tokio {
 | 
						|
        label="tokio"
 | 
						|
        "tokio" "tokio-util"
 | 
						|
    }
 | 
						|
 | 
						|
    "actix-codec" -> { "tokio" }
 | 
						|
    "actix-codec" -> { "tokio-util" }[color=red]
 | 
						|
    "actix-utils" -> { "local-waker" }
 | 
						|
    "actix-tracing" -> { "actix-service" }
 | 
						|
    "actix-tls" -> { "actix-service" "actix-codec" "actix-utils" "actix-rt" }
 | 
						|
    "actix-tls" -> { "tokio-util" }[color="#009900"]
 | 
						|
    "actix-server" -> { "actix-service" "actix-rt" "actix-utils" "tokio" }
 | 
						|
    "actix-rt" -> { "actix-macros" "tokio" }
 | 
						|
 | 
						|
    "local-channel" -> { "local-waker" }
 | 
						|
 | 
						|
    // invisible edges to force nicer layout
 | 
						|
    edge [style=invis]
 | 
						|
    "actix-macros" -> "tokio"
 | 
						|
    "actix-service" -> "bytestring"
 | 
						|
    "actix-macros" -> "bytestring"
 | 
						|
}
 |