mirror of https://github.com/fafhrd91/actix-web
				
				
				
			
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TOML
		
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TOML
		
	
	
	
[package]
 | 
						|
name = "actix-web-actors"
 | 
						|
version = "4.3.1+deprecated"
 | 
						|
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
 | 
						|
description = "Actix actors support for Actix Web"
 | 
						|
keywords = ["actix", "http", "web", "framework", "async"]
 | 
						|
homepage.workspace = true
 | 
						|
repository.workspace = true
 | 
						|
license.workspace = true
 | 
						|
edition.workspace = true
 | 
						|
rust-version.workspace = true
 | 
						|
 | 
						|
[package.metadata.cargo_check_external_types]
 | 
						|
allowed_external_types = [
 | 
						|
  "actix::*",
 | 
						|
  "actix_http::*",
 | 
						|
  "actix_web::*",
 | 
						|
  "bytes::*",
 | 
						|
  "bytestring::*",
 | 
						|
  "futures_core::*",
 | 
						|
]
 | 
						|
 | 
						|
[dependencies]
 | 
						|
actix = { version = ">=0.12, <0.14", default-features = false }
 | 
						|
actix-codec = "0.5"
 | 
						|
actix-http = "3"
 | 
						|
actix-web = { version = "4", default-features = false, features = ["ws"] }
 | 
						|
 | 
						|
bytes = "1"
 | 
						|
bytestring = "1"
 | 
						|
futures-core = { version = "0.3.17", default-features = false }
 | 
						|
pin-project-lite = "0.2"
 | 
						|
tokio = { version = "1.38.2", features = ["sync"] }
 | 
						|
tokio-util = { version = "0.7", features = ["codec"] }
 | 
						|
 | 
						|
[dev-dependencies]
 | 
						|
actix-rt = "2.2"
 | 
						|
actix-test = "0.1"
 | 
						|
actix-web = { version = "4", features = ["macros"] }
 | 
						|
awc = { version = "3", default-features = false }
 | 
						|
 | 
						|
env_logger = "0.11"
 | 
						|
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
 | 
						|
mime = "0.3"
 | 
						|
 | 
						|
[lints]
 | 
						|
workspace = true
 |